/*@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
body {
  font-family: "Nunito", sans-serif;
}*/
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Poppins", sans-serif;
}

.l {
  -webkit-box-shadow: inset 0 0 0 1px red;
          box-shadow: inset 0 0 0 1px red;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-22 {
  font-size: 22px;
}

.fs-28 {
  font-size: 1.75rem !important;
}

.minh-208 {
  min-height: 208px;
}

.minh-340 {
  min-height: 340px;
}

.minh-440 {
  min-height: 440px;
}

.text-navyblue {
  color: #385A83 !important;
}

.text-gray {
  color: #515456;
}

.heading-liner {
  display: inline-block;
  width: 80px;
  height: 8px;
  background: #BD212D;
}

.bg-gray {
  background: #F8FBFF;
}

.my-row {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}

.my-row .my-col {
  -webkit-transition: 350ms ease-in-out;
  transition: 350ms ease-in-out;
  width: calc(33.33% - 16px);
}

.my-row .set-50 {
  width: calc(50% - 16px);
}

.my-row .set-50 .my-card .my-cardtext .my-cardpara {
  font-size: 15px;
}

.my-row .set-50 .my-card .my-cardtext .my-cardpara p {
  padding: 8px 0 10px 0;
  line-height: 21px;
}

.my-row .set-25 {
  width: calc(25% - 16px);
}

.my-card {
  height: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #5095E7;
  border-radius: 6px;
  overflow: hidden;
}

.my-card .my-cardavatar {
  width: 100%;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.my-card .my-cardavatar img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.my-card .my-cardtext {
  -webkit-transition: 300ms;
  transition: 300ms;
  padding: 15px;
  color: #fff;
}

.my-card .my-cardtext h2 {
  margin: 0;
  font-size: 18px;
}

.my-card .my-cardtext .my-cardpara {
  float: none;
  clear: both;
  -webkit-transition: 300ms;
  transition: 300ms;
  font-size: 0;
}

.my-card .my-cardtext .my-cardpara::after {
  content: '';
  display: table;
  clear: both;
  float: none;
}

.my-card .my-cardtext .my-cardpara p {
  margin: 0;
  opacity: 0.90;
}

.my-card .my-cardtext .my-cardpara a {
  text-underline-offset: 4px;
  float: right;
  color: #fff;
  opacity: 0.85;
}

.my-card .my-cardtext .my-cardpara a:hover {
  opacity: 1;
}

.list li {
  padding-bottom: 10px;
}

/*.card-vendor {
  height: 96px;
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 200ms;
  transition: 200ms;
  text-decoration: none;
  padding: 20px;
}*/
.card-vendor {
  height: 96px;
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 200ms;
  text-decoration: none;
  color: #D9D9D9 !important;
  &:hover {
    border: 4px solid #3F79C7;
    box-shadow: 0px 0px 14.4px 0px #03255380;
    color: #000000 !important;
  }
  padding: 20px;
  .img-card {
    overflow: hidden;
    height: 100%;
    width:140px;
    display: flex;
    justify-content: center;
    align-items: center;
    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
}

.card-vendor:hover {
  border: 4px solid #3F79C7;
  -webkit-box-shadow: 0px 0px 14.4px 0px #03255380;
          box-shadow: 0px 0px 14.4px 0px #03255380;
}

.card-vendor .img-card {
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card-vendor .img-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contracts-card .img-contracts {
  width: 100%;
  height: 236px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}

.contracts-card .img-contracts img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.accordion-button::after {
  background-image: url("../images/plus.svg");
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../images/minus.svg");
}

.accordion-button:not(.collapsed) {
  color: #90387F;
  border: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.accordion-button::after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.accordion-button {
  font-size: 24px;
  font-weight: 600;
}

.accordion-item {
  border: none;
  border: none !important;
  margin-bottom: 20px;
  border-radius: 15px !important;
  background: #F8F8F8;
}

.accordion-item .accordion-header {
  margin-bottom: 0;
}

.accordion-item .accordion-header .accordion-button {
  border: none !important;
  border-radius: 15px !important;
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
  background: #F8F8F8;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
  border: none !important;
}

.accordion {
  border: none !important;
}

.vendor-list {
  padding-left: 5px;
  list-style-type: none;
  margin: 0;
}

.vendor-list li {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 10px;
}

.companies .card-companies {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
}

.companies .card-companies img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.companies .medium-card-companies {
  width: 100%;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
}

.companies .medium-card-companies img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.companies .large-card-companies {
  width: 100%;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
}

.companies .large-card-companies img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.companies .anchor-link {
  color: #2A2A2A;
}

.companies .anchor-link:hover {
  color: #5095E7;
}

.companies .card-br {
  border: none;
}

.companies .card-br:hover {
  border-radius: 12px;
  -webkit-transition: 100ms;
  transition: 100ms;
  border: 2px solid #3F79C7;
  color: #3F79C7;
}

.br-none:hover {
  -webkit-transition: 100ms;
  transition: 100ms;
  border: 2px solid #3F79C7 !important;
  -webkit-box-shadow: 0px 0px 12.4px 0px #03255380;
          box-shadow: 0px 0px 12.4px 0px #03255380;
}

.cards {
  min-height: 314px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 15px 2px #00000026;
          box-shadow: 0px 0px 15px 2px #00000026;
  border-radius: 20px;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.cards a {
  text-decoration: none;
  color: black;
}

.cards a:hover {
  color: #fff !important;
}

.cards:hover {
  background: #5095E7;
  color: #fff !important;
}

.cards .card-body {
  display: -ms-grid;
  display: grid;
  min-height: 314px;
}

.cards .card-body .card-img {
  width: 100%;
  height: 200px;
  padding: 20px;
}

.cards .card-body .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cards .card-body .card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-weight: 600;
}

.slide-box {
  margin: 20px;
}

.slide-vendor {
  margin: 10px;
}

@media only screen and (max-width: 768px) {
  .my-col {
    width: calc(100% - 16px) !important;
  }
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev:before {
  content: "〈";
  background: #D9D9D9;
  border-radius: 50%;
}

.slick-prev:before {
  font-family: "slick";
  font-size: 14px !important;
  line-height: 1;
  color: #252525;
  padding: 8px 5px;
  padding-right: 12px;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-next:before {
  content: "〉";
  background: #D9D9D9;
  border-radius: 50%;
}

.slick-next:before {
  font-family: "slick";
  font-size: 14px !important;
  line-height: 1;
  color: #252525;
  padding: 8px 4px;
  padding-left: 14px;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn-darknavy {
  --bs-btn-color: #fff;
  --bs-btn-bg: #375A83;
  --bs-btn-border-color: #375A83;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #29507e;
  --bs-btn-hover-border-color: #29507e;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #29507e;
  --bs-btn-active-border-color: #29507e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #375A83;
  --bs-btn-disabled-border-color: #375A83;
  text-decoration: none;
}

.writing-assistant-box {
  position: relative;
  background: #3775C0;
  min-height: 340px;
}

.writing-assistant-box .wrting-imgbg2 {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
  opacity: 0.2;
}

.writing-assistant-box-footer {
  position: relative;
  background: #375A83;
  min-height: 340px;
}

.writing-assistant-box-footer .wrting-imgbg3 {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
  opacity: 0.12;
}

.wrting-imgbgtext {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
  opacity: 0.82;
}

.product-card .card {
  -webkit-box-shadow: 0px 0px 18px 0px #0000002E;
          box-shadow: 0px 0px 18px 0px #0000002E;
  border: none;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.product-card .card .card-body {
  padding: 20px;
}

.product-card .card .card-body a {
  text-decoration: none;
}

.product-card .card .card-body .img-box {
  width: 220px;
  height: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow: hidden;
}

.product-card .card .card-body .img-box img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-card .card:hover {
  background: #5095E7;
  color: #fff;
}

.team-card .card {
  -webkit-box-shadow: 0px 0px 20px 0px #0E2F5633;
          box-shadow: 0px 0px 20px 0px #0E2F5633;
  border: 1px solid #C0C0C0;
  border-radius: 20px;
}

.team-card .card .card-body {
  padding: 30px 20px;
}

.team-card .card .card-body .img-box {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.team-card .card .card-body .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.career-content .career-aside {
  position: -webkit-sticky;
  position: sticky;
  top: 122px;
  left: 0;
}

.career-content .nav-pills ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.career-content .nav-pills ul li {
  border-bottom: 1px solid #ABABAB;
  padding: 15px 0;
}

.career-content .nav-pills ul li button {
  color: black;
  width: 100%;
  text-align: start;
}

.career-content .nav-pills .nav-link.active,
.career-content .nav-pills .show > .nav-link {
  color: black;
  background-color: #F8F8F8;
}

.maxw-1140 {
  max-width: 1140px;
}

/*.hero .tab-pane {
  width: 100%;
  height: calc(100vh - 117px - 90px);
  background-color: #000000 !important;
}*/
.hero .tab-pane {
  width: 100%;
  height: calc(80vh - 117px - 90px);
  background-color: #000000 !important;
}

/*.hero .tab-pane .wrting-imgbg1 {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
  opacity: 80%;
}*/
.hero .tab-pane .wrting-imgbg1 {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
  opacity: 80%;
}

.hero .nav-item .nav-link {
  width: 100%;
  border-radius: 0;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  padding: 18px 0;
}

.hero #pills-One-tab {
  background: #58A4FF;
}

.hero #pills-Two-tab {
  background: #1E79E5;
}

.hero #pills-Three-tab {
  background: #58A4FF;
}

.hero #pills-Four-tab {
  background: #1E79E5;
}

.hero .nav-pills .nav-link.active,
.hero .nav-pills .show > .nav-link {
  color: #FFFFFF;
  background-color: #385A83 !important;
}

footer .logo-box {
  max-width: 180px;
  margin-bottom: 25px;
}

footer .logo-box a {
  text-decoration: none;
}

footer h6 {
  padding-bottom: 15px;
  font-size: 30px;
  font-weight: 700;
}

footer p {
  font-size: 22px;
  font-weight: 600;
}

footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 15px;
}

footer ul li a {
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
}

footer ul li a:hover {
  color: #1297cd !important;
}

footer .social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .social-icon a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #375A83;
  margin-right: 20px;
}

footer .social-icon a div {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .social-icon .facebook:hover {
  color: #1877f2;
}

footer .social-icon .linkedin:hover {
  color: #0077af;
}

footer .social-icon .instagram:hover {
  color: #a033ad;
}

footer .social-icon .youtube:hover {
  color: #d12322;
}

/*.hero-box {
  width: 100%;
  height: calc(100vh - 350px);
}*/
.hero-box {
  width: 100%;
  height: calc(60vh - 117px);
}

.hero-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pdf-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pdf-box div {
  width: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pdf-box div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pdf-box button {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  margin-left: 20px;
}

.vendor-details .card:hover {
  color: #3F79C7;
}

.main {
  width: 350px;
  text-align: center;
}

.main .form {
  width: 100%;
  height: 100%;
  position: relative;
}

.main .form input {
  width: 100%;
  height: 100%;
  padding: 0 20px 0 40px;
  border-radius: 7px;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  border: 1px solid #375A84;
}

.main a.search-button {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 6px;
  left: 0px;
  overflow: hidden;
  text-decoration: none;
}

.main a.search-button span {
  color: #B1BAC5;
}

.main a.search-button .icon {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  left: 14px;
  border-radius: 8px;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

.landing-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}

.landing-header .header-row {
  background-color: #FFFFFF;
}

.navbar-brand {
  width: 180px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-brand img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.dropdown-menu {
  border-radius: 0;
}

.dropdown-btn {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 10px 10px;
}

.dropdown-btn:hover {
  background: #fff;
  color: #1A8CD1 !important;
}

.show .dropdown-toggle {
  background: white;
  color: #385A83 !important;
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  right: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.navbar {
  background: #385A83;
}

.navbar ul {
  padding: 0;
  margin: 0;
}

.navbar ul li {
  list-style-type: none;
  cursor: pointer;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
}

.navbar ul li:hover {
  color: #1A8CD1;
}

.navbar .search-btn {
  border: none;
  background: #dfdfdf;
  color: #000;
}

.navbar .dropdown .dropdown-toggle:hover {
  color: #385A83 !important;
}

.navbar .dropdown .dropdown-item {
  border-radius: 5px;
}

.rg-arrow strong {
  font-size: 18px;
}

.navbar .nav-pills .nav-link.active,
.navbar .nav-pills .show > .nav-link {
  color: #1986C8;
  background-color: transparent;
}

.navbar .nav-pills .nav-link.active::after,
.navbar .nav-pills .show > .nav-link::after {
  content: "";
  color: #1986C8;
  border-right: 2px solid currentcolor;
  border-bottom: 2px solid currentcolor;
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  left: 250px;
}

.navbar .nav-pills .nav-link.active::after,
.navbar .nav-pills .show > .nav-link::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 5px;
}

.landing-header .dropdown-toggle::after {
  display: none;
}

.header-btn {
  margin-left: 20px;
}

.header-btn .dropdown-toggle {
  font-size: 18px;
}

.header-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
}

.header-icon .link {
  text-decoration: none;
}

.header-icon .icon-count {
  width: 22px !important;
  height: 22px !important;
  background-color: #375A83 !important;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  color: #FFFFFF;
  margin-top: -11px;
  margin-right: -11px;
  z-index: 10;
}

.header-icon .kart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-icon .kart i {
  color: #375A83 !important;
}

.header-icon .kart img {
  width: 30px;
  height: 30px;
}

.header-icon .kart span {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: #375A83 !important;
}

.left-aside {
  padding: 10px !important;
}

.menu-list-box {
  width: 262px !important;
  display: none !important;
  height: 100%;
}

.menu-tog-btn {
  display: none;
}

.menu-tog-btn button {
  color: #FFFFFF;
  background: none;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}

@media (max-width: 992px) {
  .reset-box-blue {
    display: none;
  }
  .reset-box-white {
    width: 100%;
  }
  header {
    background: #375A83 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .logo-box {
    display: none;
  }
  .left-aside {
    width: 120px;
    padding: 10px !important;
    top: 40px;
  }
  .left-aside ul li span {
    font-size: 18px;
  }
  .left-aside ul li .small {
    padding-left: 34px;
  }
  .menu-box {
    display: block;
    width: 260px;
    height: calc(100vh - 75px);
    bottom: 0;
  }
  .wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-btn .dropdown-toggle {
    color: #FFFFFF;
  }
  .nav-btn {
    display: none;
  }
  .header-icon {
    margin-left: 0px;
  }
  .header-icon img {
    width: 60px;
  }
  .menu-list-box {
    display: block !important;
  }
  .menu-list-box .logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .menu-list-box h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
  }
  .menu-list-box .button-blue {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
  }
  .modal-open {
    display: block;
    overflow: hidden;
  }
  .menu-tog-btn {
    display: block;
  }
  .offcanvas {
    position: fixed;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-clip: padding-box;
    outline: 0;
  }
  .offcanvas.offcanvas-start {
    top: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .offcanvas.offcanvas-end {
    top: 0;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .offcanvas.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    max-height: 100%;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .offcanvas.offcanvas-bottom {
    right: 0;
    left: 0;
    max-height: 100%;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .offcanvas.showing, .offcanvas.show:not(.hiding) {
    -webkit-transform: none;
            transform: none;
  }
  .offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
    visibility: visible;
  }
  .offcanvas-header {
    display: none !important;
  }
  .offcanvas-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
  .offcanvas-backdrop.show {
    opacity: .5 !important;
  }
  .main {
    display: none;
  }
  .icon-count {
    min-width: 18px;
    max-width: 19px;
    min-height: 18px;
    max-height: 18px;
    background: green !important;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 10px !important;
    color: #FFFFFF !important;
  }
}

@media screen and (max-width: 575px) {
  .order-imgbox {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    max-height: 60px;
  }
  .icon-count {
    min-width: 18px;
    max-width: 19px;
    min-height: 18px;
    max-height: 18px;
    background-color: green !important;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 10px !important;
    color: #FFFFFF !important;
  }
  .kart .icon {
    font-size: 22px;
  }
  .kart span {
    font-size: 16px !important;
    padding-left: 5px;
    font-style: normal;
    font-weight: 400;
  }
  .droplist {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
  }
  .droplist .icon {
    font-size: 18px;
  }
  .main {
    display: none;
  }
  .brand-btn,
  .resources-btn,
  .list-w,
  .about-btn-box {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .about-btn.dropdown-menu.show {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .navbar .show .dropdown-toggle {
    background-color: transparent !important;
    color: #FFFFFF !important;
  }
  .career-btn {
    display: inline;
  }
  .career-btn .dropdown-btn {
    background-color: transparent;
    display: inline-block;
  }
  .career-btn .dropdown-btn:active {
    background-color: transparent !important;
    color: #FFFFFF !important;
  }
  .slick-prev,
  .slick-next {
    display: none !important;
  }
  .slick-dots {
    display: block !important;
  }
  .navbar-brand {
    width: 70px !important;
    height: 70px;
  }
  .navbar-brand img {
    width: 100%;
    min-width: 60px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .form-box button {
    padding: 2px 5px;
  }
}

/*.btn-outline-darknavy {
  --bs-btn-color: #375A83;
  --bs-btn-border-color: #375A83;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #375A83;
  --bs-btn-hover-border-color: #375A83;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #375A83;
  --bs-btn-active-border-color: #375A83;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #375A83;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #375A83;
  --bs-gradient: none;
}*/
.btn-outline-darknavy {
  --bs-btn-color: #2A2A2A;
  --bs-btn-border-color: #2A2A2A;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #375A83;
  --bs-btn-hover-border-color: #375A83;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #375A83;
  --bs-btn-active-border-color: #375A83;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #375A83;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #375A83;
  --bs-gradient: none;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: #EEEEEE;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #385A83;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}

.product-img-box {
  position: -webkit-sticky;
  position: sticky;
  top: 122px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-img-box .multiple-img {
  width: 100px;
  min-width: 100px;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.product-img-box .multiple-img .img-box {
  border: 1px solid #E9E9E9;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFFFFF;
  padding: 20px;
}

.product-img-box .multiple-img .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-img-box .view-box {
  min-height: 360px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  padding-left: 30px;
}

.product-img-box .view-img {
  background: #FFFFFF;
  border: 1px solid #E9E9E9;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-img-box .view-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.br-bottom {
  border-bottom: 1px solid #C3C3C3;
}

@media (max-width: 762px) {
  .table-cartitems thead {
    display: none;
  }
  .table-cartitems tbody {
    display: block;
  }
  .table-cartitems tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .table-cartitems tbody tr td:nth-child(1) {
    width: 100%;
  }
  .table-cartitems tbody tr td:nth-child(2), .table-cartitems tbody tr td:nth-child(3) {
    width: 50%;
  }
  .table-cartitems tbody tr td:nth-child(3) {
    text-align: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: auto;
    margin-left: auto;
  }
  .table-cartitems tbody hr {
    display: block;
  }
  .table-cartitems .br-bottom {
    border: none;
  }
}

.bg-lightgreen {
  background: #F8FBFF;
}

.breadcrumb a {
  text-decoration: none;
  color: #2A2A2A;
  font-size: 16px;
  font-weight: 400;
}

.breadcrumb a:hover {
  color: #385A83;
}

.mmw-140px {
  min-width: 140px;
  max-width: 140px;
}

.mmw-60px {
  min-width: 60px;
  max-width: 60px;
}

.bg-login {
  background: #F3F3FF;
}

.btn-eye {
  position: absolute;
  right: 15px;
  top: 12px;
  background: none;
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  color: #B9B9B9;
}

.forget-anchor a {
  text-decoration: none;
  color: #515456;
}

.forget-anchor a:hover {
  color: #1297cd;
}

.regsiter-achor a {
  text-decoration: none;
  color: #375A83;
}

.regsiter-achor a:hover {
  color: #1297cd;
}

.text-green {
  color: #5EC95B;
}

.mxw-840px {
  max-width: 840px;
}

.btn-green {
  --bs-btn-color: #fff;
  --bs-btn-bg: #5EC95B;
  --bs-btn-border-color: #5EC95B;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(17, 160, 93);
  --bs-btn-hover-border-color: rgb(17, 160, 93);
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(17, 160, 93);
  --bs-btn-active-border-color: rgb(17, 160, 93);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #5EC95B;
  --bs-btn-disabled-border-color: #5EC95B;
}

.otp-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.otp-input input {
  width: 60px;
  height: 60px;
  margin: 5px 10px;
  border-radius: 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  color: #0c0d25;
  text-align: center;
}

.otp-input input {
  border: 2px solid #375A83;
  background: #96bce888;
}

.otp-input input:invalid {
  border: 1.5px solid #6A738D !important;
  background: #ffffff;
}

.input-arrow input::-webkit-outer-spin-button,
.input-arrow input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wrapper {
  width: 100%;
  padding-top: 75px;
  padding-left: calc(260px + 40px);
  padding-right: calc(0px + 40px);
  background-color: #F8FBFF;
  min-height: 100vh;
}

.wrapper .heading {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
}

header {
  width: 100%;
  top: 0;
  left: 0;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  padding: 12px 15px;
  height: 75px;
  position: fixed;
  z-index: 11;
}

header .logo img {
  width: 160px;
  height: 50px;
}

.header-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
}

.header-icon .link {
  text-decoration: none;
  color: #4D5059;
}

.header-icon .icon-count {
  width: 22px;
  height: 22px;
  background-color: #1A8CD1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  color: #FFFFFF;
  margin-top: -11px;
  margin-right: -11px;
  z-index: 10;
}

.header-icon .kart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-icon .kart span {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
}

.header-icon .icon {
  font-size: 34px;
}

.left-aside {
  position: fixed;
  left: 0;
  top: auto;
  bottom: 0;
  height: calc(100% - 75px);
  width: 260px;
  background: #FFFFFF;
  z-index: 10;
}

.left-aside h2 {
  font-weight: 700;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  padding-bottom: 28px;
}

.left-aside ul li a {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #8B9CA4;
  padding: 5px 0;
  border-radius: 8px;
  padding-left: 20px;
}

.left-aside ul li a .active,
.left-aside ul li a :hover {
  color: #000000 !important;
  background: #F8FBFF !important;
}

.left-aside ul li a span {
  padding-left: 10px;
}

.active {
  background: #F8FBFF !important;
  color: #000 !important;
}

.mobile-overlay {
  background: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -9;
  visibility: hidden;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.outline-btn {
  outline: none;
  border: none;
}

@media (max-width: 992px) {
  .reset-box-blue {
    display: none;
  }
  .reset-box-white {
    width: 100%;
  }
  header {
    background-color: #1A8CD1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .logo-box {
    display: none;
  }
  .left-aside {
    width: 240px;
    left: -240px;
    padding: 10px !important;
    top: 75px;
    height: calc(100vh - 75px);
    overflow: hidden;
    overflow-y: auto;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    -webkit-transition: 300ms;
    transition: 300ms;
  }
  .left-aside ul li span {
    font-size: 18px;
  }
  .menu-box {
    display: block;
    width: 260px;
    height: calc(100vh - 75px);
    bottom: 0;
  }
  .wrapper {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .header-btn .navdropdown {
    background-color: transparent;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
  }
  .w-75 {
    width: 100% !important;
  }
  .nav-btn {
    display: none;
  }
  .header-icon {
    margin-left: 0px;
  }
  .header-icon img {
    width: 60px !important;
  }
  .btn-cart .icon-count {
    background: #108914 !important;
  }
  .btn-cart .link .kart span,
  .btn-cart .link .kart i {
    color: #FFFFFF !important;
  }
  .menu-list-box {
    display: block !important;
  }
  .menu-list-box .logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .menu-list-box h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
  }
  .menu-list-box .button-blue {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
  }
  .modal-open {
    display: block;
    overflow: hidden;
  }
  .offcanvas {
    position: fixed;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-clip: padding-box;
    outline: 0;
  }
  .offcanvas.offcanvas-start {
    top: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .offcanvas.offcanvas-end {
    top: 0;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .offcanvas.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    max-height: 100%;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .offcanvas.offcanvas-bottom {
    right: 0;
    left: 0;
    max-height: 100%;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .offcanvas.showing, .offcanvas.show:not(.hiding) {
    -webkit-transform: none;
            transform: none;
  }
  .offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
    visibility: visible;
  }
  .offcanvas-header {
    display: none !important;
  }
  .offcanvas-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
  .offcanvas-backdrop.show {
    opacity: .5 !important;
  }
  .menu-active .left-aside {
    left: 0;
    visibility: visible;
  }
  .menu-active .mobile-overlay {
    z-index: 9;
    visibility: visible;
  }
}

.offcanvas {
  width: 265px !important;
}

.myorder .card {
  border: none;
  background: transparent;
}

.myorder .card .card-body {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 20px;
}

.myorder .card .card-body p {
  color: #2A2A2A;
}

.myorder .order-imgbox {
  min-width: 100px;
  max-width: 100px;
  height: 100px;
  max-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.18);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.myorder .order-imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.text-bg-lightblue {
  width: 120px;
  color: #518FD8 !important;
  background-color: #DDEDFF !important;
}

.text-bg-lightorange {
  width: 120px;
  color: #DB901F !important;
  background-color: #FFEACA !important;
}

.text-bg-lightgreen {
  width: 120px;
  color: #79BA46 !important;
  background-color: #E1FFCA !important;
}
.chevron {
  .dropdown-toggle::after {
    display: inline-block !important;
    margin-left: .255em !important;
    vertical-align: .255em !important;
    content: "" !important;
    border-top: .3em solid !important;
    border-right: .3em solid transparent !important;
    border-bottom: 0 !important;
    border-left: .3em solid transparent !important;
  }
}

.medical-supplier {
  .card-box {
    background: #00000080;
    border-radius: 8px;
    position: relative;
    min-width: 265px;
    min-height: 260px;
    &:hover {
      h5 {
        // display: none;
        font-size: 22px;
      }
      img {
        opacity: 10%;
      }
      button {
        display: block;
      }
      ul {
        display: block;
      }
    }
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 40%;
      top: 0;
      left: 0;
      display: block;
      position: absolute;
    }
    h5 {
      color: #FFFFFF;
      position: absolute;
      top: 10px;
      left: 15px;
      font-weight: 600;
    }
    button {
      background: transparent;
      border: 1px solid #FFFFFF;
      border-radius: 4px;
      padding: 15px;
      color: #FFFFFF;
      position: absolute;
      left: 60px;
      right: 60px;
      bottom: 20px;
      display: none;
      &:hover {
        background: #FFFFFF;
        border: 1px solid white;
        color: #1A8CD1;
      }
    }
    ul {
      position: absolute;
      display: none;
      font-style: normal;
      font-weight: 700;
      font-size: 18px;
      list-style: none;
      padding: 0;
      margin-left: 15px;
      top: 32px;
      li {
        color: #FFFFFF;
      }
    }
  }
}
.vendor-product {
  .img-box {
    width: 100%;
    height: 240px;
    img {
      width: 100%;
      height: 100%;
      object-fit: fill;
    }
  }
  .content {
    display: flex;
    align-items: center;
    p {
      font-size: 20px;
      font-weight: 400;
      padding-bottom: 20px;
    }
  }
}
/* Firefox */

* {
  scrollbar-width: auto;
  // scrollbar-color: #C8A366;
}


/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  // background: #c6c6c6;
  background: transparent;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: #385A83;
  // background-color: #097ba9;
  border-radius: 10px;
  border: 2px solid #ffffff;
}

/*# sourceMappingURL=style.css.map */
