body {
  font-family: "Nunito";
  font-weight: 400;
  background-color: #fff;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.strongest {
  font-weight: 900 !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.text-nowrap {
  text-wrap: nowrap !important;
}

.text-justify {
  text-align: justify !important;
}

.text-underline {
  text-decoration: underline !important;
}

.w-100 {
  width: 100% !important;
}

.highlight {
  color: #3cbfad !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.font-montserrat {
  font-family: "Montserrat", sans-serif !important;
}

.contacts .contacts__item {
  color: #6f6f6f;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1em;
}

.contacts .contacts__item:not(:first-child) {
  margin: 0 10px;
}

#logo svg {
  width: 110px;
  height: auto;
}

#footer-logo svg {
  width: 105px;
  height: auto;
}

.buy-btn,
.search-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.buy-btn > img,
.search-btn > img {
  display: block;
  max-width: 100%;
  max-width: 100%;
  height: auto;
  width: 24px;
}

.header {
  height: 120px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #232323;
  display: flex;
  align-items: center;
}

.gradient-divider {
  display: block;
  width: 100%;
  height: 10px;
  background: url("../images/gradient-line.webp") no-repeat center center;
  background-size: cover;
}

.navbar {
  height: 120px;
  padding: 0;
}

.nav-menu {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.nav-menu .nav-menu__item {
  height: 100%;
  font-size: 20px;
  color: #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: all 0.2s ease;
}

.nav-menu .nav-menu__item.nav-menu__item--has-submenu {
  position: relative;
}

.nav-menu .nav-menu__item.nav-menu__item--has-submenu .nav-menu__submenu {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-menu .nav-menu__item.nav-menu__item--has-submenu:hover .nav-menu__submenu {
  pointer-events: all;
  opacity: 1;
}

.nav-menu .nav-menu__item.nav-menu__item--active {
  font-weight: 900;
}

.nav-menu .nav-menu__item:not(:last-child) {
  height: 100%;
  margin-right: 20px;
}

.nav-menu .nav-menu__link {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
  padding: 0 5px;
  display: flex;
  align-items: center;
}

.submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  background-color: rgba(255, 255, 255, 0.85);
  padding: 30px;
  z-index: 999;
  width: 555px;
}

.submenu__header {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #6f6f6f;
}

.submenu__header picture {
  margin-right: 15px;
}

.submenu__header h2 {
  font-weight: 400;
  font-size: 25px;
  color: #232323;
  line-height: 1.1em;
  margin: 0;
}

.submenu__body {
  padding-top: 30px;
  display: flex;
}

.submenu__body h3 {
  font-weight: 600;
  font-size: 19px;
  color: #4c4c4c;
  margin-top: 0;
  margin-bottom: 30px;
}

.submenu__nav {
  flex: 0 0 50%;
  max-width: 50%;
}

.submenu__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.submenu__item {
  font-size: 14px;
  color: #4c4c4c;
  font-weight: 400;
}

.submenu__item:not(:last-child) {
  margin-bottom: 7px;
}

.submenu__link {
  text-decoration: none !important;
  color: inherit !important;
}

@media (max-width: 767.98px) {
  .header {
    height: 100px;
  }

  #logo svg {
    width: 90px;
  }
}

.button {
  display: inline-flex;
  width: 90px;
  height: 33px;
  border-radius: 20px;
  transition: all 0.1s ease-in;
  font-size: 12px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.large-button {
  display: inline-flex;
  width: 170px;
  height: 60px;
  border-radius: 60px;
  transition: all 0.1s ease-in;
  font-size: 24px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.button:hover {
  font-weight: 700;
}

.large-button.button--primary,
.button.button--primary {
  color: #fff;
  background-color: #3cbfad;
  border: 2px solid #3cbfad;
}

.button.button--primary:hover {
  color: #3cbfad;
  background-color: transparent;
}

.button.button--secondary {
  color: #fff;
  background-color: #232323;
  border: 2px solid #232323;
}

.button.button--secondary:hover {
  color: #232323;
  background-color: transparent;
}

.button.button--outline {
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
}

.button.button--outline:hover {
  color: #3cbfad;
  background-color: #fff;
}

.button.button--outline-secondary {
  color: #000;
  background-color: transparent;
  border: 2px solid #000;
}

.button.button--outline-secondary:hover {
  color: #fff;
  background-color: #000;
}

.hamburger {
  padding: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0 10px 0 -10px;
  overflow: visible;
  z-index: 99;
  height: 45px;
}

.hamburger-box {
  width: 25px;
  height: 25px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
  width: 25px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.hamburger-inner::after,
.hamburger-inner::before {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger.is_active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.hamburger.is_active .hamburger-inner,
.hamburger.is_active .hamburger-inner::after,
.hamburger.is_active .hamburger-inner::before {
  background-color: #fff;
}

.hamburger.is_active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger.is_active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.mobile-site-nav .toggle_nav {
  position: absolute;
  top: 25px;
  left: 15px;
}

.mobile-site-nav {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(40, 40, 40, 0.9);
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 35px 0 10px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: opacity 100ms;
  -o-transition: opacity 100ms;
  transition: opacity 100ms;
  z-index: 9998;
}

.mobile-site-nav.show {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mobile-nav-menu {
  -webkit-padding-start: 0px;
  padding-inline-start: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin-bottom: 20px;
  margin-top: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-menu .mobile-nav-menu__item {
  display: block;
  width: 100%;
  font-size: 1.2em;
  font-weight: 700;
  color: #fff;
  margin: 5px 0;
}

.mobile-nav-menu .mobile-nav-menu__item.active .mobile-nav-menu__link {
  font-weight: 900;
}

.mobile-nav-menu .mobile-nav-menu__link {
  opacity: 0;
  display: block;
  width: 100%;
  padding: 7px 15px;
  font-weight: inherit;
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
  color: inherit;
}

.mobile-site-nav.show .mobile-nav-menu__link {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 500ms 100ms;
  -o-transition: all 500ms 100ms;
  transition: all 500ms 100ms;
}

.mobile-nav-submenu {
  list-style: none;
  margin-bottom: 7px;
}

.mobile-nav-submenu .mobile-nav-submenu__item {
  opacity: 0;
  font-weight: 400;
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
}

.mobile-nav-submenu .mobile-nav-submenu__item.active {
  color: #232323;
  font-weight: 700;
}

.mobile-site-nav.show .mobile-nav-submenu .mobile-nav-submenu__item {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 500ms 100ms;
  -o-transition: all 500ms 100ms;
  transition: all 500ms 100ms;
}

.mobile-nav-submenu .mobile-nav-submenu__link {
  display: block;
  padding: 5px 0;
  width: 100%;
  color: #232323;
}

@media (max-width: 991.98px) {
  .mobile-nav-menu .mobilenav-menu__item {
    font-size: 15px;
  }

  .mobilenav-menu .mobilenav-menu__link {
    padding: 2px 10px;
  }

  .toggle_nav {
    display: inline-flex;
  }
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-top: 0;
  border-bottom: 0;
  border-radius: 50%;
  opacity: 1;
}

.carousel-indicators .active {
  background-color: #232323;
}

#call-us-banner {
  background-color: #e6e6e6;
  padding: 25px 0;
}

#call-us-banner h2 {
  margin: 0;
  font-weight: 400;
  font-size: 34px;
}

#call-us-banner p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  text-align: justify;
}

#call-us-banner a,
#call-us-banner a:hover {
  text-decoration: none;
  color: #232323;
  font-size: 14px;
  font-weight: 400;
}

#call-us-banner-grid {
  display: flex;
  align-items: center;
  gap: 30px;
}

#call-us-banner-grid > :nth-child(2) {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

#call-us-banner-grid > :nth-child(1),
#call-us-banner-grid > :nth-child(3) {
  flex: 1;
}

@media (max-width: 991.98px) {
  #call-us-banner-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  #call-us-banner-grid > :nth-child(2),
  #call-us-banner-grid > :nth-child(1),
  #call-us-banner-grid > :nth-child(3) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.footer {
  padding: 50px 0;
  background-color: #3cbfad;
}

.footer .footer-column {
  padding: 0;
}

.footer-section {
  margin-bottom: 50px;
}

.footer p,
.footer a,
.footer h3,
.footer li {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: nowrap;
}

.footer h3 {
  font-weight: 700;
  margin-bottom: 7px;
}

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

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: inline-block;
  width: 25px;
}

.social-link img {
  width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  .footer-socials {
    margin-left: 120px;
  }
}

@media (max-width: 991.98px) {
  .footer-socials {
    margin-bottom: 20px;
  }

  .footer-row {
    gap: 0px;
    flex-wrap: wrap;
  }

  .footer .footer-column {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer-section {
    margin-bottom: 30px;
  }
}

@media (max-width: 577.98px) {
  .footer .footer-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.values {
  display: flex;
  align-items: center;
  margin: 50px 0;
}

.values__title {
  display: flex;
  align-items: center;
  padding-right: 30px;
}

.values__title h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3em;
  color: #3cbfad;
  margin: 0 20px 0 0;
}

.values__list {
  display: flex;
  flex: 1;
}

.values__item {
  flex: 1;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.value .value__icon {
  display: flex;
  justify-items: center;
  align-items: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
}

.value .value__icon img {
  max-width: 100%;
  height: auto;
}

.value .value__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3em;
  color: #4c4c4c;
  margin-bottom: 5px;
}

.value .value__description {
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5em;
  color: #4c4c4c;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .values__title {
    padding-right: 20px;
  }

  .values__title h2 {
    font-size: 28px;
  }

  .value .value__title {
    font-size: 26px;
  }
}

@media (max-width: 991.98px) {
  .values {
    display: block;
  }

  .values .values__title {
    margin-bottom: 30px;
    padding-right: 0;
  }

  .values .values__title svg {
    transform: rotate(90deg);
  }
}

@media (max-width: 767.98px) {
  .values .values__list {
    display: block;
  }

  .values .values__item {
    justify-content: flex-start;
    padding: 5px 10px;
  }

  .value .value__description {
    font-size: 14px;
  }
}

.banner-section h2 {
  font-size: 42.8px;
}

.banner-section p {
  font-size: 12px;
}

#autoclaves,
#ultrassom {
  background-repeat: no-repeat;
  height: 520px;
  display: flex;
  align-items: center;
  position: relative;
}

#autoclaves::before,
#ultrassom::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  position: absolute;
  background-image: url(../images/banner-ovelayer.webp);
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

#autoclaves {
  background-color: #0c0a0b;
  background-image: url("../images/banner-autoclaves.webp");
  background-position: right calc(50% - 50px) center;
  background-size: auto 100%;
  margin-bottom: 20px;
}

#ultrassom {
  background-color: #2f2f2f;
  background-image: url("../images/banner-ultrassom-dental.webp");
  background-position: center;
  background-size: cover;
}

#autoclaves .content {
  max-width: 280px;
}

#ultrassom .content {
  max-width: 440px;
}

@media (max-width: 1299.98px) {
  #autoclaves,
  #ultrassom {
    height: 400px;
  }
}

@media (max-width: 991.98px) {
  #autoclaves,
  #ultrassom {
    height: 350px;
  }

  #autoclaves .content,
  #ultrassom .content {
    max-width: 100%;
  }

  .banner-section h2 {
    font-size: 38px;
  }

  #autoclaves {
    background-position: right calc(50% + 90px) center;
  }
}

.product-line {
  padding-bottom: 20px;
  overflow: hidden;
}

.product-line .product-line__box {
  padding: 20px 60px;
  height: 320px;
  display: flex;
  align-items: center;
}

.product-line .carousel-inner {
  overflow: visible;
}

.product-line .carousel-control-next,
.product-line .carousel-control-prev {
  width: 60px;
}

.product-line .carousel-control-next {
  right: -60px;
}

.product-line .carousel-control-prev {
  left: -60px;
}

.product-line img {
  position: relative;
}

.product-line h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}

.product-line h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.product-line p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: #fff;
}

.product-line .buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

#ava-products {
  margin-bottom: 20px;
}

#ava-products .product-line__box {
  background-color: #008ea6;
}

#ava-products img {
  bottom: -40px;
  width: calc(100% + 50px);
  max-width: unset;
}

#bless-products .product-line__box {
  background-color: #232323;
}

#bless-products img {
  width: calc(100% + 40px);
  bottom: -20px;
  max-width: unset;
}

#aha-products .product-line__box {
  background-color: #39bfa7;
}

#aha-products img {
  bottom: calc(50% - 20px);
  transform: translateY(50%);
  width: calc(100% + 80px);
  right: -15px;
  max-width: unset;
}

#ultrasound-products .product-line__box {
  background-color: #238d83;
}

#ultrasound-products {
  padding-bottom: 0;
  padding-top: 40px;
  position: relative;
  margin-top: -40px;
}

#ultrasound-products .row .col-md-6:nth-child(2) {
  position: static;
}

#ultrasound-products img {
  bottom: 0;
  position: absolute;
}

#packaging-products .product-line__box {
  background-color: #bfbfbf;
  background-image: url(../images/banner-embalagens.webp);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

#baskets-products .product-line__box {
  background-color: #033536;
  background-image: url(../images/banner-cestos-e-bandejas.webp);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1199.98px) {
  #ultrasound-products img {
    width: 450px;
  }
}

@media (max-width: 991.98px) {
  #ultrasound-products img {
    width: 380px;
  }

  .product-line .product-line__box {
    height: 400px;
  }
}

@media (max-width: 767.98px) {
  .product-line .product-line__box {
    align-items: flex-start;
    height: auto;
  }

  .product-line img {
    width: 140%;
    max-width: 140%;
  }

  .product-line p {
    font-size: 14px;
  }

  #ultrasound-products img {
    position: relative;
    width: 100%;
    bottom: -30px;
  }

  .product-line .product-line__box {
    padding: 30px 60px;
  }

  #bless-products img {
    bottom: -40px;
  }

  #aha-products img {
    bottom: -45px;
    transform: unset;
    width: 100%;
    right: unset;
    max-width: unset;
  }

  #product-page .product-line .product-line__box {
    padding: 30px 20px;
  }

  #baskets-products .product-line__box,
  #packaging-products .product-line__box {
    height: 600px;
    background-position: right bottom;
    background-size: auto 300px;
    position: relative;
  }

  #baskets-products .product-line__box::before,
  #packaging-products .product-line__box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
  }

  #baskets-products .product-line__box::before {
    background: linear-gradient(
      180deg,
      rgba(3, 53, 54, 1) 50%,
      rgba(3, 53, 54, 0) 100%
    );
  }

  #packaging-products .product-line__box::before {
    background: linear-gradient(
      180deg,
      rgba(191, 191, 191, 1) 50%,
      rgba(191, 191, 191, 0) 100%
    );
  }
}

.page-section {
  padding: 50px 0;
  overflow-x: hidden;
}

.section-title {
  margin-bottom: 30px;
  font-weight: 700;
  columns: #232323;
  font-size: 55px;
}

.section-paragraph {
  margin-bottom: 15px;
  font-weight: 400;
  columns: #232323;
  font-size: 18px;
}

@media (max-width: 767.98px) {
  .page-section {
    padding: 30px 0;
  }

  .section-title {
    margin-bottom: 20px;
    font-size: 42px;
  }

  .section-paragraph {
    font-size: 16px;
  }
}

.page-banner {
  width: 100%;
  height: 250px;
}

.page-banner img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}

@media (max-width: 767.98px) {
  .page-banner {
    height: 100px;
  }
}

.page-main-title {
  font-size: 48px;
  line-height: 1.5em;
  font-weight: 400;
  margin-bottom: 40px;
  color: #4c4c4c;
  position: relative;
  display: inline-block;
}

.page-main-title.has-divider::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  width: 100vw;
  height: 5px;
  background-color: #3cbfad;
}

.page-section-title {
  font-size: 35px;
  line-height: 1.5em;
  font-weight: 400;
  margin-bottom: 25px;
  color: #4c4c4c;
}

.page-paragraph {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #636363;
  text-align: justify;
}

.product-section-title {
  display: inline-block;
  line-height: 1em;
  font-size: 16px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 400;
  padding: 8px 10px;
  border-radius: 20px;
  background-color: #3cbfad;
  margin: 30px 0 20px 0;
}

@media (max-width: 768.98px) {
  .page-main-title {
    font-size: 38px;
    margin-bottom: 30px;
  }

  .page-section-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .page-paragraph {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.mvpv-grid-wrapper {
  margin-left: -20px;
  margin-right: -20px;
}

.mvpv-grid {
  display: flex;
  margin-top: 40px;
}

.mvpv-grid .mvpv-item {
  flex: 0 0 25%;
  padding: 0 20px;
}

.mvpv-grid .mvpv-item:not(:last-child) {
  border: 0;
  border-color: #3cbfad;
  border-right-width: 3px;
  border-right-style: solid;
}

.mvpv-grid .mvpv-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.mvpv-grid .mvpv-title h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 28px;
  margin: 0;
}

.mvpv-grid .mvpv-title svg {
  position: relative;
  top: -2px;
}

.mvpv-grid p,
.mvpv-grid ul li {
  font-size: 14px;
  line-height: 1.3em;
  margin: 0;
  text-align: justify;
}

.mvpv-grid p > strong,
.mvpv-grid ul li > strong {
  font-weight: 900;
}

.mvpv-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 991.98px) {
  .mvpv-grid-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .mvpv-grid {
    flex-wrap: wrap;
  }

  .mvpv-grid .mvpv-item {
    flex: 0 0 100%;
    padding: 30px 0;
  }

  .mvpv-grid .mvpv-item:first-child {
    padding-top: 0;
  }

  .mvpv-grid .mvpv-item:not(:last-child) {
    border-right-width: 0;
    border-bottom-width: 3px;
    border-bottom-style: solid;
  }

  .mvpv-grid p,
  .mvpv-grid ul li {
    font-size: 16px;
    line-height: 1.5em;
  }
}

#services-page h3,
#contact-page h3 {
  font-size: 20px;
  font-weight: 700;
  color: #3cbfad;
  position: relative;
  margin-bottom: 20px;
}

#services-page h3::after,
#contact-page h3::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 5px;
  background-color: #3cbfad;
  bottom: -7px;
  left: 0;
}

#services-page h3 + a {
  display: inline-block;
  padding: 7.5px 0;
  color: #a8a8a8 !important;
  font-weight: 700;
  text-decoration: none !important;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 30px;
}

.business-principles {
  display: flex;
  align-items: center;
}

.principle {
  flex: 0 0 33.333333%;
  padding: 30px;
}

.principle:not(:last-child) {
  border-right: 1px solid #fff;
}

.principle h3 {
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
}

.principle h3 img {
  margin-left: 10px;
  position: relative;
  top: -4px;
}

.principle p {
  color: #fff;
  font-weight: 400;
  margin: 0;
}

.principle ul {
  padding: 0;
  margin: 0;
  columns: 2;
}

.principle ul li {
  list-style: none;
  color: #fff;
  font-weight: 400;
  line-height: 1.1em;
}

@media (max-width: 1199.98px) {
  .principle {
    padding: 20px;
  }

  .principle h3 {
    font-size: 24px;
  }

  .principle p {
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  .business-principles {
    flex-wrap: wrap;
  }

  .principle {
    flex: 0 0 100%;
    padding: 30px;
  }

  .principle:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}

@media (max-width: 575.98px) {
  .principle {
    padding: 30px 0;
  }
  .principle ul {
    columns: 1;
  }

  .principle ul li {
    line-height: 1.3em;
  }
}

#academy-main-video {
  margin: 50px 0;
}

.academy-content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -10px;
  margin-right: -10px;
}

.academy-content-col {
  padding: 10px;
  flex: 0 0 50%;
}

.academy-content-col-full {
  padding: 10px;
  flex: 0 0 100%;
}

.academy-featured-card {
  max-width: 100%;
  overflow: hidden;
}

.academy-featured-card {
  max-width: 100%;
  background-color: #232323;
  background-image: url(../images/card-orange-gradient-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  overflow: visible;
}

.academy-featured-card__header,
.academy-featured-card__body {
  flex: 0 0 50%;
}

.academy-featured-card__header {
  padding-right: 10px;
}

.academy-featured-card__body {
  padding: 20px 30px;
}

.academy-card__header {
  width: 100%;
  height: 215px;
  position: relative;
  overflow: hidden;
}

.academy-card__header img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}

.academy-featured-card__header {
  display: flex;
  flex-direction: column;
}

.academy-featured-card__picture {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: visible;
  border-bottom-right-radius: 80px;
}

.academy-featured-card__picture::before {
  content: "";
  display: inline-block;
  width: 195px;
  height: 95px;
  position: absolute;
  top: 10px;
  left: -10px;
  background-image: url(../images/feature-tag.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.academy-featured-card__picture img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 80px;
}

.academy-featured-card__buttons {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.academy-featured-card__description {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #fff !important;
}

.academy-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.academy-card__body {
  padding: 30px;
  flex: 1;
}

.academy-featured-card .academy-featured-card__title,
.academy-card .academy-card__title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px 0;
  max-width: 60%;
  line-height: 1.1em;
}

.academy-card__topics {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
}

.academy-card__description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.academy-featured-card__description > *,
.academy-card__description > * {
  color: #fff !important;
}

.academy-card__description,
.academy-card__topics li {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #fff !important;
}

.academy-card__footer {
  padding: 0 30px 30px 30px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

#transferlab-logo {
  width: 350px;
  height: 99.41px;
}

@media (max-width: 767.98px) {
  .academy-card__header {
    height: 180px;
  }

  .academy-card__body {
    padding: 15px;
  }

  .academy-featured-card .academy-featured-card__title,
  .academy-card .academy-card__title {
    font-size: 22px;
    max-width: 100%;
  }

  .academy-featured-card .academy-featured-card__title + h4,
  .academy-card .academy-card__title + h4 {
    font-size: 14px;
  }

  .academy-card__topics li {
    font-size: 14px;
  }

  .academy-card__footer {
    padding: 0 15px 15px 15px;
  }
}

@media (max-width: 991.98px) {
  .academy-featured-card {
    flex-wrap: wrap;
  }

  .academy-content-col {
    flex: 0 0 100%;
  }

  .academy-featured-card__header,
  .academy-featured-card__body {
    flex: 0 0 100%;
  }

  .academy-featured-card__header {
    padding: 0;
  }

  .academy-featured-card__picture {
    height: 250px;
  }

  .academy-featured-card__buttons {
    padding: 20px 0;
  }

  #transferlab-logo {
    width: 250px;
    height: 71px;
  }

  .academy-contents
    .academy-content-row:nth-child(odd)
    .academy-content-col:nth-child(odd)
    .academy-card,
  .academy-contents
    .academy-content-row:nth-child(even)
    .academy-content-col:nth-child(odd)
    .academy-card {
    background-color: #ba273c;
  }

  .academy-contents
    .academy-content-row:nth-child(odd)
    .academy-content-col:nth-child(even)
    .academy-card,
  .academy-contents
    .academy-content-row:nth-child(even)
    .academy-content-col:nth-child(even)
    .academy-card {
    background-color: #232323;
    background-image: url("../images/card-orange-gradient-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (min-width: 992px) {
  .academy-contents
    .academy-content-row:nth-child(odd)
    .academy-content-col:nth-child(even)
    .academy-card,
  .academy-contents
    .academy-content-row:nth-child(even)
    .academy-content-col:nth-child(odd)
    .academy-card {
    background-color: #ba273c;
  }

  .academy-contents
    .academy-content-row:nth-child(even)
    .academy-content-col:nth-child(even)
    .academy-card,
  .academy-contents
    .academy-content-row:nth-child(odd)
    .academy-content-col:nth-child(odd)
    .academy-card {
    background-color: #232323;
    background-image: url("../images/card-orange-gradient-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.see-more {
  display: block;
  background-color: transparent;
  border: 1px solid #232323;
  font-size: 19px;
  padding: 10px 20px;
  color: #232323 !important;
  font-weight: 400;
  text-decoration: none !important;
  text-align: center;
  margin: 50px 0;
}

@media (max-width: 767.98px) {
  .see-more {
    font-size: 16px;
    padding: 10px;
    margin: 30px 0;
  }
}

.service {
  display: flex;
  align-items: stretch;
  margin-bottom: 50px;
}

.service .service__picture,
.service .service__content {
  flex: 0 0 50%;
}

.service .service__content {
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service .service__picture img {
  max-width: 100%;
  height: auto;
}

.service .service__title {
  font-size: 26px;
  font-weight: 600;
  color: #232323;
  margin-top: 0;
  margin-bottom: 15px;
}

.service .service__description {
  margin: 0 0 15px 0;
  line-height: 1.5em;
  color: #6f6f6f;
  font-size: 14px;
}

.service .service__button {
  font-size: 14px;
  font-weight: 600;
  color: #232323 !important;
  text-decoration: none !important;
  display: inline-block;
  text-align: center;
  width: 170px;
  height: 35px;
  line-height: 35px;
  border: 1px solid #232323;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .service .service__picture {
    order: 1;
  }

  .service .service__content {
    order: 0;
  }
}

@media (max-width: 768px) {
  .service {
    flex-wrap: wrap;
  }

  .service .service__picture {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }

  .service .service__content {
    flex: 0 0 100%;
  }
}

.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  border: 2px solid #cdced3;
  border-radius: 5px;
  min-height: 45px;
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  color: #6f6c6c;
  font-weight: 500;
}

.form-select option {
  color: #6f6c6c;
}

.form-submit {
  display: inline-block;
  height: 45px;
  width: 140px;
  border-radius: 45px;
  color: #fff;
  background-color: #3cbfad;
  border: none;
  font-size: 19px;
  font-weight: 400;
  margin-top: 15px;
}

@media (min-width: 1199.98px) {
  .form-textarea {
    height: 250px;
  }
}

#map {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 60%;
}

#map iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767.98px) {
  #map {
    padding-top: 100%;
  }
}

.post {
  margin-bottom: 30px;
  display: flex;
  padding: 20px;
  gap: 25px;
  border: 1.5px solid #d1d1d1;
  height: 300px;
}

.post.post--feature {
  margin-bottom: 100px;
}

.post .post__title {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 0;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #4c4c4c;
  font-weight: 700;
  text-transform: uppercase;
}

.post.post--feature .post__title {
  font-size: 30px;
}

.post .post__info {
  font-size: 12px;
  font-weight: 400;
  color: #6c6c6c;
  margin: 0 0 20px 0;
}

.post .post__thumb {
  display: block;
  overflow: hidden;
  margin: 0;
  position: relative;
  text-decoration: none;
  flex: 0 0 35%;
  max-width: 35%;
  min-height: 260px;
}

.post .post__thumb img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.post .post__excerpt {
  font-size: 16px;
  font-weight: 300;
  color: #6c6c6c;
  line-height: 1.4em;
  margin: 0 0 15px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.post .post__link,
.post .post__link:hover {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  height: 35px;
  width: 120px;
  border-radius: 35px;
  color: #fff;
  background-color: #3cbfad;
  border: none;
  font-size: 14px;
  font-weight: 400;
}

.single-post {
  margin-bottom: 50px;
}

.single-post .single-post__title {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 0;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #6c6c6c;
  font-weight: 400;
  text-transform: uppercase;
}

.single-post .single-post__info {
  font-size: 16px;
  font-weight: 300;
  color: #6c6c6c;
  margin: 0 0 20px 0;
}

.single-post .single-post__category {
  font-size: 16px;
  font-weight: 700;
  color: #6c6c6c;
  text-decoration: none;
}

.single-post .single-post__cover {
  display: block;
  margin-bottom: 30px;
  width: 100%;
  height: auto;
}

.single-post .single-post__share {
  margin-bottom: 30px;
}

.post .post__share,
.single-post .single-post__share {
  display: flex;
  align-items: center;
}

.post .post__share {
  justify-content: flex-end;
  max-height: 25px;
}

.post .post__share strong,
.single-post .single-post__share strong {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #6c6c6c;
  margin-right: 15px;
}

.post .post__share a,
.single-post .single-post__share a {
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
  color: #636363;
}

.single-post .single-post__content {
  color: #636363;
  margin-bottom: 10px;
  padding-bottom: 30px;
  border-bottom: 1.5px solid #d1d1d1;
}

.post__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post__content > div {
  flex: 1;
}

.blog-search-form {
  display: flex;
  align-items: center;
  background-color: #4c4c4c;
  margin: 20px 0 15px 0;
  padding: 7.5px 15px;
  gap: 10px;
}

.blog-search-form input {
  background-color: transparent;
  color: #fff;
  border: 1px solid transparent;
  flex: 1;
  font-weight: 700;
  font-size: 15px;
  outline: none;
}

.blog-search-form input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.blog-search-form input:focus-within,
.blog-search-form input:not(:placeholder-shown) {
  border-bottom: 1px solid #fff;
}

.blog-search-form input::placeholder {
  color: #fff;
  font-weight: 700;
}

.sidebar {
  padding: 15px;
  border: 1.5px solid #d1d1d1;
  margin-bottom: 30px;
}

.sidebar .sidebar__title {
  font-size: 20px;
  font-weight: 700;
  color: #3cbfad;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1.5px solid #d1d1d1;
  position: relative;
}

.sidebar .sidebar__title::after {
  content: "";
  display: inline-block;
  height: 5px;
  width: 100px;
  background-color: #3cbfad;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.popular-posts,
.categories,
.archives {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories .categories__item {
  padding: 7.5px 0;
  color: #a8a8a8;
  font-size: 18px;
  font-weight: 700;
}

.categories .categories__item:not(:last-child) {
  border-bottom: 1.5px solid #d1d1d1;
}

.categories .categories__item > a,
.archives .archives__item > a {
  color: inherit;
  text-decoration: none;
}

.archives .archives__item {
  color: #a8a8a8;
  font-size: 16px;
  font-weight: 700;
  text-transform: initial;
}

.popular-posts .popular_posts__item:not(:last-child) {
  margin-bottom: 20px;
}

.archives .archives__item:not(:last-child) {
  margin-bottom: 10px;
}

.popular-posts .popular_posts__item a {
  display: flex;
  gap: 15px;
  text-decoration: none;
}

.popular-posts .popular_posts__item-title {
  font-size: 18px;
  color: #a8a8a8;
  font-weight: 300;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 85px;
}

.popular-posts .popular_posts__item-thumb {
  display: block;
  overflow: hidden;
  margin: 0;
  position: relative;
  text-decoration: none;
  min-width: 95px;
  width: 95px;
  height: 95px;
}

.popular-posts .popular_posts__item-thumb img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.results-label {
  display: block;
  margin: 15px 0 30px 0;
  color: #6c6c6c;
}

.results-label i {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .post {
    flex-direction: column;
    height: 480px;
    padding: 15px;
    gap: 15px;
  }

  .post .post__thumb {
    flex: unset;
    max-width: 100%;
    height: 180px;
    min-height: 180px;
  }
}

.not-found {
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin: 100px 0;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 7px;
}

.pagination .page-link,
.pagination .page-display {
  text-decoration: none;
  font-size: 19px;
  color: #6c6c6c;
  display: inline-block;
  height: 32px;
  line-height: 28px;
  padding: 0 10px;
  border: 1px solid #e6e6e6;
}

.pagination .page-link:not(.disabled) {
  cursor: pointer;
  font-weight: 700;
}

.pagination .page-link.disabled {
  font-weight: 300;
  cursor: default;
  pointer-events: none;
}

.customNextBtn,
.customPreviousBtn {
  width: 60px;
  height: 60px;
  pointer-events: all;
  position: relative;
  cursor: pointer;
  z-index: 999;
}

.customNextBtn {
  transform: rotate(180deg);
  left: -60px;
}

.customPreviousBtn {
  right: -60px;
}

.clients .owl-dots {
  display: none;
}

@media (max-width: 575.98px) {
  .customNextBtn,
  .customPreviousBtn {
    width: 15px;
  }

  .customNextBtn {
    left: 0px;
  }

  .customPreviousBtn {
    right: 0px;
  }
}

.product-page-title {
  margin-bottom: 15px !important;
}

.product-page-subtitle {
  font-weight: 600;
  color: #a9a9a9;
  margin: 0;
  font-size: 30px;
}

.product-filters {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-filter-select {
  flex: 0 0 60%;
}

.product-filter-select select {
  border: 1px solid #c0c0c0;
  height: 38px;
  min-height: 38px;
}

.product-filter-select select,
.product-filter-search input {
  font-size: 14px;
  margin: 0;
}

.product-picture-box {
  padding: 20px;
  border: 1px solid #c0c0c0;
  border-radius: 10px;
  margin-bottom: 10px;
}

.selected-product-picture {
  display: flex;
  justify-content: center;
}

.selected-product-picture > a {
  cursor: zoom-in;
}

.selected-product-picture > a > img {
  max-width: 100%;
  width: 400px;
  height: auto;
}

.product-color-select {
  margin: 15px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.product-color-select-item.active {
  border: 2px solid #3cbfad;
}

.product-picture-select {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.product-picture-select-item {
  width: 90px;
  height: 90px;
  cursor: pointer;
  border: 1px solid #c0c0c0;
  border-radius: 3px;
  display: block;
  margin-right: 10px;
  max-width: calc(100% - 10px);
}

.product-picture-select-item * {
  pointer-events: none;
}

.product-picture-select-item img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.product-color-select-item {
  width: 25px;
  height: 25px;
  cursor: pointer;
  border-radius: 100%;
  display: inline-block;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 10px inset;
}

.product-picture-box p {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 12px;
  margin: 0;
}

.product-description h4 {
  font-size: 22px;
  color: #4c4c4c;
  margin: 30px 0 10px 0;
  font-weight: 600;
}

.product-description p {
  font-size: 16px;
  color: #4c4c4c;
  margin: 0 0 16px 0;
  font-weight: 400;
  line-height: 1.5em;
}

.product-description ul {
  font-size: 16px;
  color: #4c4c4c;
  font-weight: 400;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-description ul li {
  line-height: 1.8em;
}

.applications-box {
  padding: 20px;
  border: 1px solid #c0c0c0;
  border-radius: 3px;
}

.applications-box ul {
  columns: 3;
}


#thanks-page {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#thanks-page .page-section h2 {
  margin-bottom: 20px;
}

#thanks-page p {
  color: #fff;
  font-size: 23px;
  margin: 0;
  text-align: center;
}

#thanks-page #logo {
  width: 470px;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

#thanks-page .telephone {
  font-size: 28px;
  margin-top: 20px;
}

#thanks-page .telephone a {
  text-decoration: none !important;
  color: inherit !important;
}

@media (max-width: 575.98px) {
  #thanks-page p {
    font-size: 16px;
  }

  #thanks-page #logo {
    width: 300px;
    margin-bottom: 20px;
  }

  #thanks-page .telephone {
    font-size: 18px;
    margin-top: 20px;
  }
}

.product-preview {
  padding: 10px;
  border-radius: 5px;
  display: block;
  text-decoration: none !important;
}

.product-preview img {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.product-preview .product-title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #232323;
  margin: 15px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-preview .product-button {
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 170px;
  height: 35px;
  line-height: 35px;
  border: 1px solid #232323;
  border-radius: 3px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .product-preview .product-title {
    font-size: 18px;
  }

  .product-picture-select-item {
    width: 70px;
    height: 70px;
  }

}

@media (min-width: 768px) {
  .product-preview .product-title {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  display: inline-flex;
  position: relative;
}

.breadcrumb.has-divider::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  width: 100vw;
  height: 5px;
  background-color: #3cbfad;
}

.breadcrumb .breadcrumb-item {
  color: #4c4c4c;
  text-transform: uppercase;
  font-size: 26px;
}

.breadcrumb .breadcrumb-item > a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb .breadcrumb-item::before {
  font-weight: 400 !important;
}

.breadcrumb .breadcrumb-item.active {
  font-weight: 900;
}

.product-button {
  display: inline-flex;
  align-items: center;
  height: 35px;
  padding: 10px 20px;
  border-radius: 3px;
  color: #fff;
  background-color: #232323;
  border: none;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  text-decoration: none;
}

.product-button:hover {
  color: #fff;
  background-color: #232323;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .breadcrumb .breadcrumb-item {
    font-size: 20px;
  }
}

.custom-search-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 40px;
  margin: 30px 0;
}

.custom-search-input input {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
}

.custom-search-input button {
  width: 80px;
  height: 100%;
  background-color: #3cbfad;
  border: none;
  margin-left: 10px;
}

#search-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: opacity 0.3s ease-in;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(40, 40, 40, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 15px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

#search-modal form {
  width: 100%;
  max-width: 700px;
}

#search-modal .close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #FFF;
  font-size: 2rem;
}

body.search-modal-open {
  overflow: hidden;
}

body.search-modal-open #search-modal {
  opacity: 1;
  pointer-events: all;
}


#cookieNotice.display-right {
  right: 30px;
  bottom: 30px;
  max-width: 395px;
}
#cookieNotice.light {
  background-color: #fff;
  color: #393d4d;
}
#cookieNotice {
  box-sizing: border-box;
  position: fixed;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
  font-family: inherit;
  z-index: 999997;
}
#cookieNotice #closeIcon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: #bfb9b9;
  overflow: hidden;
  opacity: .85;
  z-index: 999999;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/close-icon.svg) 0 0 / 20px 20px no-repeat;
}
#cookieNotice * {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}
#cookieNotice .title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  background: url(../images/cookie-icon.svg) 0 0 / 40px 40px no-repeat;
  padding-left: 45px;
  height: 40px;
}
#cookieNotice .title-wrap svg {
  margin-right: 10px;
}
#cookieNotice h4 {
  font-family: inherit;
  font-weight: 700;
  font-size: 18px;
}
#cookieNotice.light p, #cookieNotice.light ul {
  color: #393d4d;
}
#cookieNotice p, #cookieNotice ul {
  font-size: 14px;
  margin-bottom: 20px;
}
#cookieNotice .btn-wrap {
  display: flex;
  flex-direction: row;
  font-weight: 700;
  justify-content: center;
  margin: 0 -5px 0 -5px;
  flex-wrap: wrap;
}
#cookieNotice .btn-wrap button {
  flex-grow: 1;
  padding: 0 7px;
  margin: 0 5px 10px 5px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  min-width: 130px;
  line-height: 36px;
  border: none;
  font-family: inherit;
  font-size: 16px;
  transition: box-shadow .3s;
}
#cookieNotice button {
  outline: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
#cookieNotice .btn-wrap button:hover {
  transition: box-shadow .4s cubic-bezier(.25,.8,.25,1),transform .4s cubic-bezier(.25,.8,.25,1);
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 30%);
  transform: translate3d(0,-1px,0);
}
.btn-primary{
  color:#ffffff;
  background:#115cfa;
  border: 1px solid #115cfa;
}

@media (max-width: 575.98px) {
  #cookieNotice.display-right {
    right: 0px;
    bottom: 0px;
    max-width: 100%;
}
}

body:not(.show-loader) #page-loader {
  display: none;
}

body.show-loader {
  overflow: hidden;
}

.loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}