@import "https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap";
html {
  font-family: Jost, serif;
  font-size: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
}

body {
  background-color: #f1f6ff;
  overflow-x: hidden;
}

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

p, span, a, table, div, article, figcaption {
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Jost, serif;
  line-height: 1.4;
}

h1, .h1 {
  font-size: 4.6rem;
}

h2, .h2 {
  font-size: 3.5rem;
}

h3, .h3 {
  font-size: 3rem;
}

h4, .h4 {
  font-size: 2.5rem;
}

h5, .h5 {
  font-size: 2.25rem;
}

h6, .h6 {
  font-size: 2rem;
}

.cta {
  cursor: pointer;
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  padding: 12px 38px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.cta--primary {
  color: #000;
  background-color: #f9b740;
}

.cta--primary:hover {
  color: #000;
  background-color: #fff;
}

.cta--secondary {
  color: #fff;
  background-color: #0000;
  border: 2px solid #fff;
}

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

.fill-cta {
  color: #000;
  background-color: #fff;
  border-radius: 100px;
  padding: 13px 67px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
}

.fill-cta:hover {
  transition: all .5s;
  transform: translateY(-5px);
  box-shadow: 0 25px 45px #1417514d;
  -webkit-transition: all .3s ease-in-out !important;
}

.site-topbar {
  background-color: #1b1c4a;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  display: flex;
}

.site-topbar__container {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.site-topbar__need-help {
  color: #fff;
}

.site-topbar__contact-info {
  gap: 15px;
  display: flex;
}

.site-topbar__phone-no, .site-topbar__email {
  color: #fff;
  text-decoration: none;
}

.site-header {
  background-color: #fff;
  padding: 20px 0;
}

.site-header__row {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.site-header__site-logo {
  color: #000;
  width: 150px;
  height: auto;
  font-size: 16px;
}

@media (width <= 767px) {
  .site-header__nav {
    display: none;
  }
}

.site-header__nav-list {
  gap: 30px;
  list-style: none;
  display: flex;
}

.site-header__hamburger .hamburger-btn {
  border: none;
}

.site-header__hamburger .drawer-overlay {
  z-index: 999;
  background: #00000080;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.site-header__hamburger .side-drawer.active .drawer-toggle {
  display: flex;
}

.site-header__hamburger .side-drawer.active .drawer-toggle .icon-box {
  width: 24px;
  height: 24px;
  position: relative;
}

.site-header__hamburger .side-drawer.active .drawer-toggle .icon-arrow, .site-header__hamburger .side-drawer.active .drawer-toggle .icon-close {
  transition: transform .4s, opacity .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.site-header__hamburger .side-drawer.active .drawer-toggle .icon-close {
  opacity: 0;
  transform: rotate(-90deg);
}

.site-header__hamburger .side-drawer.active .drawer-toggle:hover {
  background-color: #283593;
}

.site-header__hamburger .side-drawer.active .drawer-toggle:hover .icon-arrow {
  opacity: 0;
  transform: rotate(90deg);
}

.site-header__hamburger .side-drawer.active .drawer-toggle:hover .icon-close {
  opacity: 1;
  transform: rotate(0);
}

.site-header__hamburger .drawer-logo {
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: bold;
}

.site-header__hamburger .drawer-description {
  color: #666;
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.8;
}

.site-header__hamburger .drawer-info h3 {
  color: #1a1d2e;
  margin-bottom: 20px;
  font-size: 24px;
}

.site-header__hamburger .drawer-info li {
  color: #555;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  display: flex;
}

.site-header__hamburger .drawer-overlay.active {
  display: block;
}

.site-header__hamburger .side-drawer {
  z-index: 999;
  background: #fff;
  width: 100%;
  max-width: 450px;
  height: 100%;
  padding: 80px 50px;
  transition: all .5s cubic-bezier(.77, 0, .175, 1);
  position: fixed;
  top: 0;
  right: -500px;
  overflow-y: auto;
}

.site-header__hamburger .side-drawer.active {
  right: 0;
}

.site-header__hamburger .drawer-toggle {
  cursor: pointer;
  background-color: #1a237e;
  border: none;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  transition: background-color .5s;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.site-header__hamburger .close-btn {
  cursor: pointer;
  color: #fff;
  background: #00f;
  border: none;
  width: 20%;
  height: 20%;
  font-size: 30px;
  font-weight: 300;
  position: absolute;
  top: 0;
  right: 0;
}

.site-header__hamburger .drawer-logo img {
  max-width: 150px;
  margin-bottom: 40px;
}

.site-header__hamburger .drawer-description {
  color: #6d717a;
  margin-bottom: 50px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.site-header__hamburger .drawer-info h3 {
  color: #1a1d2e;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}

.site-header__hamburger .drawer-info ul {
  padding: 0;
  list-style: none;
}

.site-header__hamburger .drawer-info li {
  color: #6d717a;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 16px;
  display: flex;
}

.site-header__hamburger .drawer-info li i {
  color: #ff5e3a;
  margin-top: 3px;
  font-size: 18px;
}

.menu-item a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
}

#mega-menu-wrap-primary_menu #mega-menu-primary_menu > li.mega-menu-item > a.mega-menu-link {
  color: #000;
  font-size: 18px;
}

#mega-menu-wrap-primary_menu #mega-menu-primary_menu[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-primary_menu #mega-menu-primary_menu[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
  margin-top: 27px !important;
}

.footer {
  background-color: #1b1c4a;
  padding: 113px 0 25px;
}

.footer__col {
  flex-direction: column;
  gap: 23px;
  display: flex;
}

.footer__heading {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.footer__about-text {
  color: #e5e5e5;
  font-size: 17px;
}

.footer__list {
  flex-direction: column;
  gap: 15px;
  list-style: none;
  display: flex;
}

.footer__item {
  color: #fff;
  align-items: flex-start;
  gap: 8px;
  font-size: 17px;
  display: flex;
}

.footer__item-link {
  color: #fff;
  text-decoration: none;
}

.footer__item-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 2px solid #fff;
  justify-content: center;
  margin-top: 80px;
  padding-top: 20px;
  display: flex;
}

.footer__bottom-copyright-text {
  color: #fff;
}

.footer__bottom-links {
  gap: 30px;
  list-style: none;
  display: flex;
}

.footer__bottom-link {
  color: #fff;
}

.social-icons {
  gap: 14px;
  margin-top: 20px;
  display: flex;
}

.social-icon {
  background: #ffffff14;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  transition: all .35s;
  display: flex;
}

.social-icon svg {
  fill: #fff;
  width: 20px;
  height: 20px;
  transition: transform .35s, fill .35s;
}

.social-icon:hover {
  background: #f5b023;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px #f5b02373;
}

.social-icon:hover svg {
  fill: #1b1c4a;
  transform: scale(1.15);
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

@media (width <= 1199px) {
  .container {
    max-width: 100%;
  }
}

@media (width >= 1200px) {
  .container {
    max-width: 1240px;
  }
}

.row {
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.row.align-center {
  align-items: center;
}

.row.justify-center {
  justify-content: center;
}

.row.align-bottom {
  align-items: flex-end;
}

.row.align-top {
  align-items: flex-start;
}

.row.align-self-start {
  align-self: flex-start;
}

[class^="col"] {
  -moz-box: 0;
  flex: 0 0 100%;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (width >= 992px) {
  .col1 {
    -moz-box: 0;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col2 {
    -moz-box: 0;
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col3 {
    -moz-box: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col4 {
    -moz-box: 0;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media (width >= 768px) and (width <= 991px) {
  .col4md {
    -moz-box: 0;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media (width >= 992px) {
  .col5 {
    -moz-box: 0;
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col6 {
    -moz-box: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (width >= 768px) and (width <= 991px) {
  .col6md {
    -moz-box: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (width <= 767px) {
  .col6sm {
    -moz-box: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (width >= 992px) {
  .col7 {
    -moz-box: 0;
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col8 {
    -moz-box: 0;
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
}

@media (width >= 992px) and (width <= 1199px) {
  .col8lg {
    -moz-box: 0;
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
}

@media (width >= 992px) {
  .col9 {
    -moz-box: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col10 {
    -moz-box: 0;
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col11 {
    -moz-box: 0;
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }
}

@media (width <= 575px) {
  .colxs12 {
    -moz-box: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (width >= 1200px) {
  .offsetxl1 {
    margin-left: 8.33333%;
  }
}

@media (width >= 992px) {
  .order-lg-1 {
    order: 1;
  }

  .order-lg-12 {
    order: 12;
  }
}

.hero-slider {
  background: url("../hero-bg.e04e4337.jpg") bottom / cover no-repeat;
  padding: 120px 0 280px;
  position: relative;
}

.hero-slider .hero-slider__wrapper .slick-prev, .hero-slider .hero-slider__wrapper .slick-next {
  z-index: 10;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 10px #0000001a;
}

.hero-slider .hero-slider__wrapper .slick-prev svg, .hero-slider .hero-slider__wrapper .slick-next svg {
  width: 20px;
  height: 20px;
  transition: stroke .3s;
}

.hero-slider .hero-slider__wrapper .slick-prev:hover, .hero-slider .hero-slider__wrapper .slick-next:hover {
  background: #000;
}

.hero-slider .hero-slider__wrapper .slick-prev:hover svg, .hero-slider .hero-slider__wrapper .slick-next:hover svg {
  stroke: #fff;
}

.hero-slider .hero-slider__wrapper .slick-prev {
  left: 20px;
}

.hero-slider .hero-slider__wrapper .slick-prev:before {
  color: #000;
  display: none;
}

@media (width <= 767px) {
  .hero-slider .hero-slider__wrapper .slick-prev {
    left: 10px;
  }
}

.hero-slider .hero-slider__wrapper .slick-next {
  right: 20px;
}

.hero-slider .hero-slider__wrapper .slick-next:before {
  color: #000;
  content: "<";
  display: none;
}

@media (width <= 767px) {
  .hero-slider .hero-slider__wrapper .slick-next {
    right: 10px;
  }
}

.hero-slider .hero__cta-outer {
  z-index: 5;
  gap: 20px;
  display: flex;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}

@media (width <= 767px) {
  .hero-slider .hero__cta-outer {
    flex-direction: column;
    align-items: center;
    bottom: 30px;
  }
}

.hero-slider .hero__cta-outer .cta {
  border-radius: 25px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: all .3s;
}

.hero-slider .hero__cta-outer .cta--primary {
  color: #fff;
  background-color: #000;
}

.hero-slider .hero__cta-outer .cta--primary:hover {
  background-color: #333;
}

.hero-slider .hero__cta-outer .cta--secondary {
  color: #fff;
  background-color: #0000;
  border: 2px solid #fff;
}

.hero-slider .hero__cta-outer .cta--secondary:hover {
  color: #000;
  background-color: #fff;
}

.hero__content {
  color: #fff;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 418px;
  padding-bottom: 20px;
  display: flex;
}

.hero__tagline {
  text-transform: uppercase;
  letter-spacing: 1.32px;
  font-family: Outfit, serif;
  font-size: 12px;
}

.hero__heading {
  z-index: 2;
  font-weight: 500;
  position: relative;
}

.hero__heading:after {
  content: "";
  z-index: -1;
  background-image: url("../hero-heading-effect.704a7694.svg");
  width: 212px;
  height: 29px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.hero__description {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.hero__image-wrap {
  width: 530px;
}

@media (width <= 767px) {
  .hero__image-wrap {
    width: 100%;
  }
}

.hero__image-figure {
  margin: 0;
}

.hero__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.hero__cta-wrap {
  gap: 15px;
  display: flex;
}

.partners {
  padding: 100px 0;
}

.partners__wrapper {
  background-color: #f5ede5;
  border-radius: 100px;
  padding: 60px 80px;
  overflow: hidden;
}

@media (width <= 768px) {
  .partners__wrapper {
    border-radius: 60px;
    padding: 40px 20px;
  }
}

.partners__wrapper .slick-slide {
  padding: 0 40px;
}

@media (width <= 768px) {
  .partners__wrapper .slick-slide {
    padding: 0 20px;
  }
}

@media (width <= 480px) {
  .partners__wrapper .slick-slide {
    padding: 0 10px;
  }
}

.partners__wrapper .slick-list {
  margin: 0 -40px;
}

@media (width <= 768px) {
  .partners__wrapper .slick-list {
    margin: 0 -20px;
  }
}

@media (width <= 480px) {
  .partners__wrapper .slick-list {
    margin: 0 -10px;
  }
}

.partners__logo {
  object-fit: contain;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media (width <= 480px) {
  .partners__logo {
    width: 120px;
  }
}

.about {
  padding: 85px 0;
}

.about .about-row {
  align-items: center;
  display: flex;
}

.about__image img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.about__content {
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  display: flex;
}

.about__tag {
  color: #f2543f;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 5px;
  align-self: flex-start;
  padding: 8px 32px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}

.about__heading {
  max-width: 405px;
  margin: 0;
  font-size: 42px;
  font-weight: 500;
}

.about__description {
  color: #6b6b6b;
  max-width: 542px;
  margin: 0;
  font-size: 17px;
  font-weight: 400;
}

.about__features {
  margin: 0;
  padding-top: 30px;
  padding-left: 0;
  list-style: none;
}

.about__feature-item {
  margin-bottom: 25px;
  padding-left: 40px;
  font-size: 20px;
  font-weight: 400;
  position: relative;
}

.about__feature-item:before {
  content: "";
  background-image: url("../dotted-round-check.8c7aa009.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  left: 0;
}

.pcss-counter {
  background-color: #f5ede5;
  padding: 120px 0;
}

.pcss-counter__col.col4:last-child {
  border-right: none;
}

.pcss-counter__col.col4 {
  border-right: 1px solid;
}

.pcss-counter__item {
  justify-content: center;
  align-items: center;
  gap: 35px;
  display: flex;
}

.pcss-counter__item--no-boder {
  border: none;
}

.pcss-counter__icon-img {
  object-fit: contain;
  width: 70px;
  height: 70px;
}

.pcss-counter__value {
  color: #ff5a36;
  font-size: 50px;
  font-weight: 500;
}

.pcss-counter__label {
  width: 100%;
  max-width: 58px;
  font-size: 17px;
  font-weight: 400;
}

.pcss-services {
  padding: 100px 0;
}

.pcss-services__title {
  text-align: center;
  font-size: 48px;
}

.pcss-services__description {
  text-align: center;
  font-size: 18px;
}

.pcss-services__row {
  justify-content: space-between;
  padding: 80px 0;
  display: flex;
}

.pcss-services__col {
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 274px;
  max-height: 320px;
  padding: 30px 34px;
  display: flex;
  position: relative;
  box-shadow: 0 17.2px 47.31px 6.02px #082d750f;
}

.pcss-services__col:nth-of-type(odd) {
  min-height: 350px;
  margin-top: 40px;
}

.pcss-services__line {
  background-color: #f2543f;
  border: none;
  width: 51px;
  height: 2px;
}

.pcss-services__heading {
  font-size: 20px;
  font-weight: 500;
}

.pcss-services__icon-img {
  max-width: 70px;
}

.pcss-services__arrow {
  background-color: red;
  border-radius: 50px 0 0 50px;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.pcss-services__content {
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  width: 100%;
  max-width: 300px;
  height: auto;
  display: -webkit-box;
  overflow: hidden;
}

.what-we-do {
  background-color: #f5ede5;
  padding: 100px 0;
}

.what-we-do__strategy-icon {
  object-fit: contain;
  width: 55px;
  height: 55px;
}

.what-we-do__left {
  flex-direction: column;
  gap: 24px;
  display: flex;
}

.what-we-do__tag {
  color: #fb5850;
  background-color: #fff;
  border-radius: 10px;
  width: auto;
  padding: 10px 26px;
  font-size: 12px;
}

.what-we-do__title {
  width: 100%;
  max-width: 387px;
  font-size: 36px;
  font-weight: 500;
}

.what-we-do__right {
  flex-wrap: wrap;
  justify-content: space-around;
  row-gap: 34px;
  display: flex;
}

.what-we-do__highlight {
  gap: 17px;
  max-width: 380px;
  display: flex;
}

.what-we-do__highlight-text {
  flex-direction: column;
  gap: 15px;
  display: flex;
}

.what-we-do__highlight-icon {
  width: 100%;
  max-width: 52px;
}

.what-we-do__highlight-icon-img {
  width: 52px;
  height: 52px;
}

.what-we-do__highlight-title {
  font-size: 20px;
  font-weight: 500;
}

.what-we-do__highlight-description {
  font-size: 15px;
}

.what-we-do__bottom {
  padding-top: 60px;
}

.what-we-do__feature {
  background-color: #fff;
  border-radius: 50px;
  gap: 25px;
  padding: 34px 25px 40px 30px;
  display: flex;
  box-shadow: 0 29.52px 58.05px #1548a62b;
}

.what-we-do__feature--border {
  border-bottom: 2.95px solid #1b1c4a;
  box-shadow: 0 29.52px 58.05px #1548a62b;
}

.what-we-do__feature:hover {
  border: 0 solid #1e4ec4;
  border-bottom-width: 3px;
  transition: border-color .3s;
}

.what-we-do__feature-text {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.what-we-do__feature-title {
  font-size: 24px;
}

.what-we-do__feature-content {
  font-size: 15px;
}

.work-together {
  z-index: 1;
  background-image: url("../m9.9bb44dde.webp");
  background-position: center;
  background-size: cover;
  padding-top: 95px;
  padding-bottom: 67px;
  position: relative;
}

.work-together__title {
  color: #fff;
  font-size: 48px;
}

.work-together:before {
  content: "";
  z-index: 0;
  background-color: #00000023;
  position: absolute;
  inset: 0;
}

.work-together__content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 59px;
  display: flex;
}

.work-together__content-inner {
  flex-direction: column;
  align-items: center;
  gap: 32px;
  display: flex;
}

.work-together__description {
  text-align: center;
  width: 100%;
  max-width: 475px;
}

.work-together__title {
  font-size: 46px;
}

.work-together__description {
  color: #fff;
  font-size: 16px;
}

.header-banner {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0;
  position: relative;
}

.header-banner:before {
  content: "";
  z-index: 0;
  background-color: #00000059;
  position: absolute;
  inset: 0;
}

.header-banner__content {
  justify-content: center;
  display: flex;
}

.header-banner__title {
  text-align: center;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
}

@media (width <= 768px) {
  .header-banner__title {
    font-size: 32px;
  }
}

.product-range-head {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 720px;
  padding: 100px 0 150px;
}

.product-range-head__row {
  align-items: center;
}

.product-range-head__wrap {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.product-range-head__title {
  color: #fff;
  width: 100%;
  max-width: 424px;
  font-size: 46px;
  font-weight: 600;
}

.product-range-head__single-img {
  width: 100%;
  max-width: 560px;
  height: 100%;
  max-height: 370px;
}

.contact-us {
  padding: 100px 0;
}

.contact-us__title {
  font-size: 58px;
  font-weight: 500;
}

.contact-us__title--get {
  font-size: 29px;
  font-weight: 400;
}

.contact-us__desc {
  font-size: 18px;
  font-weight: 300;
}

.contact-us__left-col {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.contact-us__img {
  width: 530px;
  height: auto;
}

.contact-us__right-col {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 31.71px 51.89px #081f432b;
}

.contact-us__map {
  padding: 100px 0 0;
}

.contact-us__map iframe {
  width: 100% !important;
}

#wpcf7-f253-o1 .wpcf7-text, #wpcf7-f253-o1 textarea {
  border: none;
  border-bottom: 1px solid #000;
  width: 100%;
  padding: 12px 5px;
  font-size: 16px;
}

#wpcf7-f253-o1 .wpcf7-text::placeholder, #wpcf7-f253-o1 textarea::placeholder {
  color: #999;
  font-family: Jost, serif;
  font-size: 14px;
}

.wpcf7-submit {
  color: #fff;
  background-color: #1b1c4a;
  border-radius: 100px;
  margin-top: 20px;
  padding: 15px 62px;
  font-family: Jost, serif;
  font-size: 18px;
  display: inline-flex;
}

.about-us-wrap {
  padding: 60px 0 0;
  position: relative;
  overflow: visible;
}

.about-us-wrap__row {
  align-items: center;
  display: flex;
}

.about-us-wrap__content {
  max-width: 540px;
}

.about-us-wrap__title {
  letter-spacing: -.04px;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-size: 60px;
  font-weight: 500;
  line-height: 60px;
}

.about-us-wrap__description {
  letter-spacing: .01px;
  color: #555;
  font-size: 19px;
  font-weight: 400;
  line-height: 28px;
}

.about-us-wrap__media {
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-us-wrap__image {
  object-fit: contain;
  width: 100%;
  max-width: 520px;
  height: auto;
}

@media (width <= 991px) {
  .about-us-wrap {
    padding: 70px 0 50px;
  }

  .about-us-wrap__title {
    font-size: 44px;
    line-height: 50px;
  }

  .about-us-wrap__description {
    font-size: 17px;
    line-height: 26px;
  }
}

@media (width <= 575px) {
  .about-us-wrap {
    padding: 50px 0 40px;
  }

  .about-us-wrap__title {
    font-size: 36px;
    line-height: 42px;
  }
}

.success {
  z-index: 1;
  background-color: #f5ede57a;
  padding: 100px 0;
  position: relative;
}

.success__content {
  max-width: 520px;
}

.success__title {
  letter-spacing: -.04px;
  text-transform: capitalize;
  margin-bottom: 16px;
  font-family: Jost;
  font-size: 35px;
  font-weight: 500;
  line-height: 43px;
}

.success__description {
  letter-spacing: .01px;
  color: #555;
  font-family: Outfit;
  font-size: 17px;
  line-height: 26px;
}

.success__stats {
  gap: 20px;
  display: flex;
}

.success-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  flex-direction: column;
  justify-content: space-between;
  width: 194px;
  height: 229px;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 40px #00000017;
}

.success-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 60px #00000026;
}

.success-card__icon, .success-card__info {
  z-index: 2;
  position: relative;
}

.success-card__icon {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-end;
  padding: 18px;
  display: flex;
}

.success-card__icon svg {
  stroke-width: 2px;
  width: 70px;
  height: 70px;
}

.success-card__info {
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  display: flex;
}

.success-card__value {
  letter-spacing: -.04px;
  color: #1e1e1e;
  font-size: 38px;
  font-weight: 400;
  line-height: 48px;
}

.success-card__label {
  color: #6b6b6b;
  max-width: 90px;
  font-family: Outfit, sans-serif;
  font-size: 17px;
  line-height: 26px;
}

@media (width <= 991px) {
  .success__background {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .success__stats {
    flex-wrap: wrap;
  }
}

.services {
  background-color: #f5ede5;
  padding: 60px 0;
}

.services__left {
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: 100%;
  display: flex;
}

.services__left-title {
  color: #1e1e1e;
  max-width: 260px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
}

.services__cards {
  gap: 24px;
  display: flex;
}

.services__card {
  background-color: #0000;
  border: 1px solid #e5dcd3;
  border-radius: 16px;
  flex: 1;
  padding: 26px 24px 44px;
  transition: all .35s;
  position: relative;
  overflow: hidden;
}

.services__card:hover {
  background-color: #fff;
  background-image: url("../consult-hover.1e8713cc.png");
  background-size: cover;
  border-color: #0000;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px #00000014;
}

.services__card--active {
  background-color: #fff;
  border-color: #0000;
  box-shadow: 0 20px 40px #00000014;
}

.services__card-title {
  color: #1e1e1e;
  min-height: 50px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.services__card-text {
  color: #666;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.6;
}

.services__card-link {
  color: #ff6b35;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s, gap .3s;
  display: inline-flex;
}

.services__card-link:hover {
  color: #e85a28;
  gap: 10px;
}

.services__card-number {
  color: #f2c9b9;
  font-size: 20px;
  font-weight: 700;
  transition: color .3s;
  position: absolute;
  bottom: 14px;
  right: 18px;
}

.services__card--active .services__card-number, .services__card:hover .services__card-number {
  color: #ff6b35;
}

@media (width <= 991px) {
  .services__cards {
    flex-direction: column;
  }

  .services__left-title {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.core-values {
  --primary-green: #8ebb0f;
  --text-dark: #1a1d23;
  --text-gray: #5f5f5f;
  --bg-light: #f0f2f5;
  padding: 80px 20px;
}

.core-values .core-values__label {
  font-family: Outfit;
  font-weight: 500;
  font-style: Medium;
  letter-spacing: .18px;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: #ff5a36;
  font-size: 24px;
  line-height: 24px;
}

.core-values .core-values__subtitle {
  color: var(--text-gray);
  letter-spacing: -.04px;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  width: 99%;
  max-width: 600px;
  margin: 24px auto;
  font-size: 18px;
  font-weight: 400;
  line-height: 38px;
}

.core-values .core-values__cards {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
  display: flex;
}

.core-values .core-values__cards .value-card {
  background: #fff;
  border-radius: 20px;
  flex: 1;
  min-width: 300px;
  padding: 40px 30px;
  transition: transform 3s;
  box-shadow: 0 10px 30px #0000000d;
}

.core-values .core-values__cards .value-card:hover {
  background: #c3ebf6;
}

.core-values .core-values__cards .card-header {
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  display: flex;
}

.core-values .core-values__cards .card-header h3 {
  color: var(--text-dark);
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.core-values .core-values__cards .divider {
  background: #e5e7eb;
  height: 1px;
  margin: 20px 0;
  position: relative;
}

.core-values .core-values__cards .divider:after {
  content: "×";
  color: #8ebb0f;
  background: #fff;
  padding: 0 10px;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.core-values .core-values__cards .description {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
}

.our-team {
  text-align: center;
  padding: 80px 20px;
}

.our-team .team-label {
  color: #ff5e3a;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: bold;
}

.our-team .team-subtitle {
  color: #555;
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 15px;
  line-height: 1.6;
}

.our-team .team-cards {
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  display: flex;
}

.our-team .team-cards .team-card {
  text-align: left;
  background-color: #f1e9e0;
  border-radius: 25px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  min-width: 450px;
  padding: 40px;
  display: flex;
}

.our-team .team-cards .member-info {
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
  display: flex;
}

.our-team .team-cards .member-info .image-wrapper img {
  object-fit: cover;
  border-radius: 50%;
  max-width: 100%;
  height: auto;
}

.our-team .team-cards .member-info .image-wrapper .member-identity h3 {
  vertical-align: middle;
  font-weight: 500;
  line-height: 32.42px;
}

.our-team .team-cards .member-info .image-wrapper .member-identity span {
  vertical-align: middle;
  color: #4d4d4d;
  font-family: Inter;
  font-size: 15.26px;
  font-weight: 400;
  line-height: 24.79px;
}

.our-team .team-cards .member-info .member-details {
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  display: flex;
}

.our-team .team-cards .member-info .member-details .member-bio {
  color: #4d4d4d;
  font-size: 15.26px;
  font-weight: 400;
  line-height: 26.7px;
}

.our-team .social-links {
  gap: 20px;
  display: flex;
}

.our-team .social-links a {
  color: #333;
  font-size: 16px;
  text-decoration: none;
  transition: color .3s;
}

.our-team .social-links a:hover {
  color: #ff5e3a;
}

.connect {
  margin: 50px 0;
}

.connect__wrapper {
  background: #ea4f3c;
  border-radius: 50px;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 77px 100px;
  display: flex;
}

.connect__content {
  color: #fff;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  min-width: 600px;
  display: flex;
}

.connect__title {
  letter-spacing: -.04px;
  text-transform: capitalize;
  margin: 0;
  font-size: 42px;
  font-weight: 500;
  line-height: 48px;
}

.connect__text {
  max-width: 520px;
  font-size: 17px;
  line-height: 26px;
}

.connect__action {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.connect__button {
  color: #000;
  background-color: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 17px 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all .35s;
  display: inline-flex;
}

.connect__button:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px #1417514d;
}

@media (width <= 991px) {
  .connect__wrapper {
    text-align: center;
    flex-direction: column;
    padding: 60px 40px;
  }

  .connect__content {
    align-items: center;
    max-width: 100%;
  }

  .connect__text {
    max-width: 100%;
  }
}

@media (width <= 575px) {
  .connect__wrapper {
    border-radius: 30px;
    padding: 45px 25px;
  }

  .connect__title {
    font-size: 32px;
    line-height: 38px;
  }

  .connect__text {
    font-size: 15px;
    line-height: 24px;
  }

  .connect__button {
    padding: 15px 40px;
    font-size: 15px;
  }
}

:root {
  --primary-blue: #f4f8ff;
  --text-dark: #060815;
  --accent-orange: #ff5e3a;
}

.about-experience {
  padding: 50px 20px;
  font-family: Inter, sans-serif;
}

.about-experience__header {
  text-align: center;
}

.about-experience__heading {
  max-width: 720px;
  color: var(--text-dark);
  margin: 0 auto 20px;
  font-size: 42px;
  font-weight: 600;
}

.about-experience__intro {
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.about-experience__content {
  align-items: center;
  gap: 80px;
  padding-top: 80px;
  display: flex;
}

.about-experience__visuals {
  flex: 1;
  position: relative;
}

.about-experience__image-main {
  width: 450px;
  height: 450px;
  padding: 15px;
}

.about-experience__image-main img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.about-experience__activity {
  background: #fff;
  border-radius: 50px;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  display: flex;
  position: absolute;
  bottom: 10px;
  right: -60px;
  box-shadow: 0 10px 30px #0000001a;
}

.about-experience__activity-icon {
  font-size: 20px;
}

.about-experience__activity-text {
  font-size: 14px;
}

.about-experience__activity-text strong {
  font-weight: 600;
  display: block;
}

.about-experience__activity-text span {
  color: #777;
}

.about-experience__text {
  flex: 1;
}

.about-experience__badge {
  color: var(--accent-orange);
  background: #fff;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.about-experience__title {
  color: var(--text-dark);
  margin: 20px 0;
  font-size: 42px;
}

.about-experience__description {
  color: #666;
  max-width: 520px;
}

.about-experience__cards {
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  display: flex;
}

.about-experience__card {
  background: #fff;
  border-radius: 16px;
  align-items: center;
  gap: 18px;
  padding: 20px;
  display: flex;
  box-shadow: 0 5px 15px #0000000d;
}

.about-experience__card-icon {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: flex;
}

.about-experience__card-icon--pink {
  background: #fff0f0;
}

.about-experience__card-icon--yellow {
  background: #fffcf0;
}

.about-experience__card-text h4 {
  margin-bottom: 6px;
  font-size: 16px;
}

.about-experience__card-text p {
  color: #666;
  font-size: 14px;
}

.privacy-policy {
  padding: 100px 0;
}

.privacy-policy p {
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 27px;
}

.privacy-policy h3 {
  padding: 20px 0;
}

.product-ranges {
  padding: 100px 0;
}

.product-ranges__wrap {
  flex-direction: column;
  align-items: center;
  gap: 5px;
  display: flex;
}

.product-ranges__title {
  font-size: 56px;
  font-weight: 600;
}

.product-ranges__description {
  font-size: 17px;
  font-weight: 400;
}

.product-ranges__row {
  flex-wrap: wrap;
  padding: 60px 0;
  display: flex;
}

.product-ranges__item {
  flex-direction: column;
  gap: 8px;
  max-width: 25%;
  padding: 10px;
  display: flex;
}

.product-ranges__link {
  text-decoration: none;
}

.product-ranges__thumb {
  background-color: #f5ede5;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 292px;
  padding: 20px;
  display: flex;
  overflow: hidden;
}

.product-ranges__thumb img {
  object-fit: contain;
  width: 247px;
  height: 175px;
  max-height: 100%;
}

.product-ranges__item-cat {
  font-size: 12px;
  font-weight: 400;
}

.product-ranges__item-title {
  color: #222529;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 400;
}

.product-ranges__item-rating {
  object-fit: contain;
  width: 60px;
  height: auto;
}

.product-ranges__item-price {
  color: #444;
  font-size: 16px;
  font-weight: 500;
}

.contact-page {
  margin: 0;
  padding: 60px 0;
  line-height: 0;
}

.contact-page__row {
  align-items: center;
}

.contact-page__content {
  flex-direction: column;
  gap: 25px;
  display: flex;
}

.contact-page__main-heading {
  font-size: 56px;
}

.contact-page__main-content {
  font-weight: 400;
}

.contact-page__image {
  width: 100%;
}

.contact-page__form {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 25px 50px -12px #00000040;
}

.contact-page__form-heading {
  color: #262626;
  font-size: 28px;
}

.contact-page__form-content {
  color: #676767;
  padding-top: 15px;
  font-size: 16px;
}

.contact-map iframe {
  border: 0;
  width: 100%;
  height: 456px;
  display: block;
}

.product-category {
  padding: 160px 0;
}

.product-category__name {
  color: #fff;
  font-size: 40px;
}

.products-grid {
  padding: 60px 0;
}

.products-grid__wrapper {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  display: grid;
}

.products-grid__header {
  justify-content: space-between;
  display: flex;
}

.products-grid__header-left {
  letter-spacing: 0;
  font-size: 28.91px;
  font-weight: 700;
  line-height: 120%;
}

.products-grid__header-right {
  font-size: 13px;
}

.products-grid__item {
  background: #fff;
  border: 1px solid #e0e6ef;
  border-radius: 25px;
  padding: 20px;
  transition: all .3s;
  position: relative;
}

.products-grid__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px #0000001f;
}

.products-grid__link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.products-grid__item-thumb {
  background-color: #fafafa;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  height: 260px;
  margin-bottom: 14px;
  display: flex;
  overflow: hidden;
}

.products-grid__item-thumb img {
  object-fit: contain;
  width: 100%;
  max-width: 240px;
  height: auto;
  transition: transform .3s;
}

.products-grid__item:hover .products-grid__item-thumb img {
  transform: scale(1.05);
}

.products-grid__item-info {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.products-grid__item-info-cat {
  color: #ea4f3c;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-size: 12px;
  font-weight: 500;
}

.products-grid__item-title {
  color: #000;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.products-grid__item-rating {
  gap: 4px;
  margin-top: 4px;
  display: flex;
}

.products-grid__item-rating svg {
  width: 14px;
  height: 14px;
}

.products-grid__item-price {
  color: #000;
  font-size: 17px;
  font-weight: 500;
}

.products-grid__item-price span {
  opacity: .7;
  font-weight: 500;
}

@media (width <= 1200px) {
  .products-grid__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width <= 768px) {
  .products-grid__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    padding: 40px 0;
  }
}

@media (width <= 480px) {
  .products-grid__wrapper {
    grid-template-columns: 1fr;
  }

  .products-grid__item {
    padding: 18px;
  }

  .products-grid__item-thumb {
    height: 220px;
  }
}

.product-range-head__product-name {
  line-height: 1.7;
}

.enquiry-page {
  padding: 100px 0;
}

.enquiry-page__form {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 12px 40px #10182814;
}

.enquiry-page__heading {
  color: #0f172a;
  margin-bottom: 24px;
  font-size: 26px;
  font-weight: 600;
}

.enquiry-page label {
  color: #0f172a;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.enquiry-page input[type="text"], .enquiry-page input[type="email"], .enquiry-page input[type="tel"], .enquiry-page textarea {
  background: #f9fafb;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  outline: none;
  width: 100%;
  margin-top: 10px;
  padding: 12px 14px;
  font-size: 14px;
  transition: all .2s;
}

.enquiry-page input::placeholder, .enquiry-page textarea::placeholder {
  color: #94a3b8;
}

.enquiry-page textarea {
  resize: vertical;
  min-height: 120px;
}

.enquiry-page input[type="submit"] {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  transition: all .3s;
}

.enquiry-page input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px #1e1b4b59;
}

.wpcf7-not-valid-tip {
  color: #dc2626;
  margin-top: 6px;
  font-size: 12px;
}

.wpcf7-response-output {
  border-radius: 10px;
  margin-top: 20px;
  font-size: 14px;
}

@media (width <= 480px) {
  .enquiry-card {
    padding: 24px;
  }
}

.help-card {
  background: #fff;
  border-radius: 16px;
  max-width: 360px;
  padding: 26px;
  box-shadow: 0 16px 40px #0f172a14;
}

.help-card__heading {
  color: #0f172a;
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 600;
}

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

.help-card__item {
  color: #475569;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 18px;
  display: flex;
}

.help-card__icon {
  background: #fff4dc;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  display: flex;
}

.help-card__icon svg {
  stroke: #f4b000;
  stroke-width: 2px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 16px;
  height: 16px;
}

.help-card__icon--check {
  background: #fff4dc;
}

.help-card__text {
  color: #334155;
  line-height: 1.5;
}

.help-card__divider {
  background: #e5e7eb;
  height: 1px;
  margin: 22px 0;
}

@media (width <= 768px) {
  .help-card {
    max-width: 100%;
  }
}

.product-page {
  margin-top: 60px;
}

.product-page .link-list {
  align-items: center;
  margin-top: 32px;
  margin-bottom: 17px;
  display: flex;
}

.product-page .link-list a {
  text-align: center;
  vertical-align: middle;
  color: #9a9ca5;
  border-radius: 4px;
  min-width: 134px;
  margin: 0 5px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  text-decoration: none;
}

.product-page .link-list a sup {
  text-align: center;
  font-family: Lato;
  font-size: 10px;
  font-weight: 900;
  line-height: 150%;
}

.product-page .link-list a.active {
  color: #17696a;
  border: 1px solid #17696a;
}

.product-page .general-info {
  margin: 50px 0;
}

.product-page .general-info .box.box-left {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.product-page .general-info .box .product-images-box {
  background-color: #e5e5e5;
  border: 1px solid #83838360;
  border-radius: 8px;
  height: 70px;
  overflow: hidden;
}

.product-page .general-info .box .product-images-box.active {
  border: 1px solid #1b1c4a;
}

.product-page .general-info .box .product-images-box-icon {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.product-page .general-info .box.product-gallery {
  background: #fff;
  border-radius: 6px;
  align-items: center;
  gap: 10px;
  height: -webkit-fill-available;
  padding: 0 15px;
  display: flex;
}

.product-page .general-info .box.product-gallery .right-arrow svg:hover, .product-page .general-info .box.product-gallery .left-arrow svg:hover {
  cursor: pointer;
}

.product-page .general-info .box.product-gallery .product-thumbs {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.product-page .general-info .box.product-gallery .product-thumbs img {
  object-fit: contain;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 70px;
  height: 70px;
  padding: 6px;
  transition: border .2s;
}

.product-page .general-info .box.product-gallery .product-thumbs img.active {
  border: 2px solid #000;
}

.product-page .general-info .box.product-gallery .product-main-image {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.product-page .general-info .box.product-gallery .product-main-image img {
  object-fit: contain;
  width: 100%;
  max-height: 420px;
}

.product-page .general-info .box.box-right .sub-title {
  letter-spacing: -.16px;
  color: #f2543f;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.product-page .general-info .box.box-right .title {
  letter-spacing: -.3px;
  vertical-align: middle;
  padding: 8px 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
}

.product-page .general-info .box.box-right .sort-info span {
  vertical-align: middle;
  color: #666;
  font-family: Jost;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}

.product-page .general-info .box.box-right .divider hr {
  width: 100%;
  max-width: 40px;
  margin: 20px 0;
}

.product-page .general-info .box.box-right .price {
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}

.product-page .general-info .box.box-right .description {
  letter-spacing: -.16px;
  color: #666;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.product-page .general-info .box.box-right .details {
  margin: 8px 0;
}

.product-page .general-info .box.box-right .details .list {
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
}

.product-page .general-info .box.box-right .details .list span {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}

.product-page .general-info .box.box-right .purchase {
  justify-content: space-between;
  padding: 14px 0;
  display: flex;
}

.product-page .general-info .box.box-right .purchase .quantity {
  border: 1px solid #d7dadd;
  border-radius: 4px;
  justify-content: space-around;
  align-items: center;
  min-width: 80px;
  min-height: 44px;
  display: flex;
}

.product-page .general-info .box.box-right .purchase .add-cart {
  background: #ea4f3c;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 244px;
  min-height: 44px;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
}

.product-page .general-info .box.box-right .purchase .add-cart span {
  letter-spacing: .5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.product-page .general-info .box.box-right .purchase .add-cart:hover {
  transition: all .5s;
  transform: translateY(-5px);
  box-shadow: 0 25px 45px #1417514d;
  -webkit-transition: all .3s ease-in-out !important;
}

.product-page .general-info .box.box-right .purchase .enquire-btn {
  text-decoration: none;
}

.product-page .general-info .box.box-right .purchase .mark-favourite {
  border: 1px solid #f5b023;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 152px;
  min-height: 44px;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
}

.product-page .general-info .box.box-right .purchase .mark-favourite span {
  letter-spacing: .5px;
  text-align: center;
  color: #f5b023;
  font-size: 14px;
  font-weight: 700;
  line-height: 44px;
}

.product-page .general-info .box.box-right .share {
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  display: flex;
}

.product-page .general-info .box.box-right .share .share-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}

.product-page .general-info .box.box-right .share .share-links {
  justify-content: space-evenly;
  align-items: center;
  gap: 16px;
  display: flex;
}

.product-page .general-info .box.box-right .share .share-links a {
  padding: 3px 0;
}

.product-page .product-details {
  padding: 40px 0;
}

.product-page .product-details [role="tablist"] {
  border-top: 1px solid #000;
  flex-wrap: wrap;
  gap: 5px;
  display: flex;
}

.product-page .product-details [role="tab"] {
  text-transform: uppercase;
  color: #9a9ca5;
  background: none;
  border: none;
  flex: 1 0 auto;
  padding: 10px 35px;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  transition: background .15s ease-in-out;
}

.product-page .product-details [role="tab"]:hover {
  curspor: pointer;
  color: #17696a;
  border-top: 2px solid #17696a;
}

.product-page .product-details [role="tab"][aria-selected="true"] {
  color: #17696a;
  border-top: 2px solid #17696a;
  position: relative;
}

.product-page .product-details [role="tab"][aria-selected="true"]:after {
  content: "";
  width: 45px;
  display: block;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.product-page .product-details [role="tabpanel"] {
  z-index: 2;
  min-height: 200px;
  margin-top: -2px;
  padding: 40px;
  position: relative;
}

.product-page .product-details [role="tabpanel"]:not([tabindex]) {
  display: none;
}

.product-page .product-details .tabpanel-content {
  flex-direction: column;
  gap: 25px;
  display: flex;
}

@media (width >= 660px) {
  .product-page .product-details [role="tab"] {
    flex: unset;
  }

  .product-page .product-details [role="tabpanel"] {
    border-radius: 0 15px 15px;
  }
}

@media (width >= 768px) {
  .product-page .product-details .tabpanel-content {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }

  .product-page .product-details .content-img {
    flex: 0 0 200px;
  }

  .product-page .product-details .heading {
    font-size: 2rem;
  }
}

.product-page .review {
  width: 100%;
}

.product-page .review .review__header {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}

.product-page .review .review__details {
  border: 1px dashed #ddd;
  border-radius: 8px;
  align-items: center;
  gap: 40px;
  padding: 24px;
  display: flex;
}

.product-page .review .review__summary {
  text-align: center;
  width: 200px;
}

.product-page .review .review__score-circle {
  border: 4px solid orange;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  display: flex;
}

.product-page .review .review__score-circle .score {
  font-size: 24px;
  font-weight: 700;
}

.product-page .review .review__stars {
  color: orange;
  margin-bottom: 6px;
  font-size: 18px;
}

.product-page .review .review__count {
  color: #777;
  font-size: 13px;
}

.product-page .review .review__breakdown {
  flex: 1;
}

.product-page .review .rating-row {
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
}

.product-page .review .rating-row span:first-child {
  width: 50px;
}

.product-page .review .rating-row .count {
  text-align: right;
  color: #555;
  width: 40px;
  font-size: 13px;
  font-weight: 500;
}

.product-page .review .bar {
  background: #e9ecef;
  border-radius: 6px;
  flex: 1;
  height: 6px;
  overflow: hidden;
}

.product-page .review .bar span {
  background: #222;
  border-radius: 6px;
  height: 100%;
  display: block;
}

.product-page .product-ranges {
  width: 100%;
  padding: 0;
}

.product-page .product-ranges .product-ranges__header {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.product-page .product-ranges .product-ranges__header-left {
  letter-spacing: 0;
  font-size: 28.91px;
  font-weight: 700;
  line-height: 120%;
}

.product-page .product-ranges .product-ranges__header-right a {
  text-align: right;
  vertical-align: bottom;
  font-size: 16.52px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: underline 0%;
}

.product-page .product-ranges .product-ranges__row {
  padding-top: 24px;
}

.product-page .connect {
  background: #ea4f3c;
  border-radius: 50px;
  justify-content: space-between;
  margin: 50px 0;
  padding: 77px 100px;
  display: flex;
}

.product-page .connect .connect-left {
  color: #fff;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 60%;
  display: flex;
}

.product-page .connect .connect-left h1 {
  letter-spacing: -.04px;
  text-transform: capitalize;
  font-size: 42px;
  font-weight: 500;
  line-height: 48px;
}

.product-page .connect .connect-left p {
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
}

.product-page .connect .connect-right {
  border-radius: 80px;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  padding: 14px;
  display: flex;
}

.product-page .connect .connect-right .mail {
  background: #fff;
  border-radius: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 243px;
  height: 80px;
  display: flex;
}

.product-page .connect .connect-right .mail .title {
  color: #9a9ca5;
}

.product-page .connect .connect-right .mail .content {
  letter-spacing: -.04px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
}

.product-page .connect .connect-right .contact {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 243px;
  height: 80px;
  display: flex;
}

.product-page .connect .connect-right .contact .title {
  color: #9a9ca5;
}

.product-page .connect .connect-right .contact .content {
  letter-spacing: -.04px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
}

.product-page .contact-btn {
  color: #000;
  background-color: #fff;
  border-radius: 50px;
  padding: 17px 50px;
  text-decoration: none;
}

.product-page .contact-btn:hover {
  transition: all .5s;
  transform: translateY(-5px);
  box-shadow: 0 25px 45px #1417514d;
  -webkit-transition: all .3s ease-in-out !important;
}

.product-attributes {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
}

.attribute-row {
  background: #fafafa;
  border-bottom: 1px solid #e5e5e5;
  padding: 12px;
  display: flex;
}

.attribute-row:last-child {
  border-bottom: none;
}

.attribute-label {
  color: #666;
  width: 200px;
  font-size: 14px;
  font-weight: 600;
}

.attribute-value {
  color: #888;
  font-size: 14px;
}

.product-additional-description {
  letter-spacing: -.16px;
  color: #666;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.related-products__header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.related-products__header-left {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
}

.related-products__header-right {
  font-size: 13px;
}

.related-products__header-right a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.related-products__wrapper {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  display: grid;
}

.related-products__item {
  background: #fff;
  border: 1px solid #e0e6ef;
  border-radius: 25px;
  padding: 20px;
  transition: all .3s;
}

.related-products__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px #0000001f;
}

.related-products__link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.related-products__item-thumb {
  background: #fafafa;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  height: 240px;
  margin-bottom: 14px;
  display: flex;
  overflow: hidden;
}

.related-products__item-thumb img {
  object-fit: contain;
  width: 100%;
  max-width: 220px;
  transition: transform .3s;
}

.related-products__item:hover .related-products__item-thumb img {
  transform: scale(1.05);
}

.related-products__item-info {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.related-products__item-info-cat {
  color: #b19200;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-size: 12px;
  font-weight: 500;
}

.related-products__item-title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.related-products__item-rating {
  margin-top: 4px;
  display: flex;
}

.related-products__item-price {
  font-size: 17px;
  font-weight: 500;
}

@media (width <= 1200px) {
  .related-products__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width <= 768px) {
  .related-products__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 480px) {
  .related-products__wrapper {
    grid-template-columns: 1fr;
  }

  .related-products__item-thumb {
    height: 200px;
  }
}
/*# sourceMappingURL=main.css.map */
