body, html {
  scroll-behavior: smooth;
  font-family: "Raleway";
  scroll-padding-top: 0px;
}

section {
  max-width: 2600px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 0;
}

.text-link {
  text-decoration: underline;
}
.text-link:hover {
  text-decoration: none;
}

button:focus {
  outline: none;
}

.stretched-link:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.absolute-img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 2600px;
  margin-top: -230px;
}

.img-radius {
  border-radius: 20px;
}

.action-bar {
  background-color: #49A760;
  color: #FFF;
  font-size: 0.82rem;
  font-weight: 500;
  height: 40px;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.action-bar.is-hidden {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.action-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0.5rem;
}
.action-bar__text {
  flex: 1;
  text-align: center;
}
.action-bar__text a {
  color: #FFF;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.action-bar__text a:hover {
  color: hsla(0, 0%, 100%, 0.8);
}
.action-bar__text i {
  margin-right: 0.35rem;
}
.action-bar__close {
  background: transparent;
  border: none;
  color: hsla(0, 0%, 100%, 0.75);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 0.25rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s;
}
.action-bar__close:hover {
  color: #FFF;
}

.info-bar {
  background-color: #ffb900;
  color: #153353;
  font-size: 0.82rem;
  font-weight: 500;
  height: 44px;
  border-bottom: 1px solid rgba(21, 51, 83, 0.1);
}
.info-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
  flex-wrap: nowrap;
  overflow: hidden;
}
.info-bar__items {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
}
.info-bar__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.info-bar__item i {
  font-size: 0.9rem;
  color: #153353;
  opacity: 0.7;
}
.info-bar__item a {
  color: #153353;
  text-decoration: none;
}
.info-bar__item a:hover {
  text-decoration: underline;
}
.info-bar__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.info-bar__social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.info-bar__social a {
  color: #153353;
  opacity: 0.65;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.info-bar__social a:hover {
  opacity: 1;
}

.main-nav {
  background-color: #22567C;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: none;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.main-nav--scrolled {
  box-shadow: 0 2px 20px rgba(21, 51, 83, 0.2);
  background-color: #0f2440;
}
.main-nav .navbar-brand {
  padding: 0;
  margin-right: 2rem;
}
.main-nav .navbar-brand img {
  height: 65px;
  width: auto;
  filter: brightness(0) invert(1);
}
.main-nav .nav-link {
  color: hsla(0, 0%, 100%, 0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  border-radius: 4px;
  transition: all 0.15s ease;
  position: relative;
}
.main-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: #00bbe0;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.main-nav .nav-link:hover, .main-nav .nav-link:focus {
  color: #FFF !important;
  background: hsla(0, 0%, 100%, 0.08);
}
.main-nav .nav-link:hover::after, .main-nav .nav-link:focus::after {
  transform: scaleX(1);
}
.main-nav .nav-link.active {
  color: #00bbe0 !important;
}
.main-nav .nav-link.active::after {
  transform: scaleX(1);
}
.main-nav .dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(21, 51, 83, 0.16);
  margin-top: 0.25rem;
  padding: 0.5rem;
  min-width: 220px;
  animation: dropdownFadeIn 0.2s ease;
}
.main-nav .dropdown-item {
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #153353;
  transition: all 0.15s ease;
}
.main-nav .dropdown-item:hover {
  background: #d4e6f0;
  color: #22567C;
}
.main-nav .btn-nav-cta {
  background: #00bbe0;
  color: #153353 !important;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.45rem 1.2rem;
  transition: all 0.25s ease;
  border: 2px solid #00bbe0;
  white-space: nowrap;
}
.main-nav .btn-nav-cta:hover {
  background: rgb(0, 144.4241071429, 173);
  border-color: rgb(0, 144.4241071429, 173);
  transform: translateY(-1px);
}
.main-nav .navbar-toggler {
  border-color: hsla(0, 0%, 100%, 0.3);
  padding: 0.4rem 0.6rem;
}
.main-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(0, 187, 224, 0.5);
}
.main-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mega-menu {
  position: static !important;
}
.mega-menu > .dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
  padding: 1.5rem;
  display: none;
  border-radius: 0 0 8px 8px;
}
.mega-menu > .dropdown-menu.show {
  display: flex;
  gap: 1rem;
}
.mega-menu__col {
  flex: 1;
  min-width: 160px;
}
.mega-menu__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00bbe0;
  padding: 0 1rem 0.5rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid rgba(21, 51, 83, 0.08);
}
.mega-menu .dropdown-item {
  font-size: 0.85rem;
}
.mega-menu__card {
  display: flex;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: #D2DADC;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  transition: background 0.2s;
  color: #2c2c2c;
  text-decoration: none;
  cursor: pointer;
}
.mega-menu__card:hover {
  background: rgb(181.3125, 194.4125, 197.6875);
  color: #2c2c2c;
}
.mega-menu__card-icon {
  font-size: 1.5rem;
  color: #49A760;
  flex-shrink: 0;
  align-self: flex-start;
}
.mega-menu__card-body strong {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: #2c2c2c;
}
.mega-menu__card-body p {
  font-size: 0.78rem;
  margin: 0.2rem 0 0.4rem;
  opacity: 0.7;
  color: #2c2c2c;
}
.mega-menu__card-cta {
  font-size: 0.78rem;
  color: #49A760;
  font-weight: 600;
}

.offcanvas-nav {
  background-color: #153353;
}
.offcanvas-nav .offcanvas-header {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}
.offcanvas-nav .offcanvas-header .btn-close {
  filter: invert(1);
}
.offcanvas-nav .offcanvas-title {
  color: #FFF;
}
.offcanvas-nav .nav-link {
  color: hsla(0, 0%, 100%, 0.85) !important;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-weight: 500;
}
.offcanvas-nav .nav-link:hover {
  background: hsla(0, 0%, 100%, 0.08);
  color: #FFF !important;
}
.offcanvas-nav .accordion-button {
  background: transparent;
  color: hsla(0, 0%, 100%, 0.85);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: none;
}
.offcanvas-nav .accordion-button::after {
  filter: invert(1);
}
.offcanvas-nav .accordion-button:not(.collapsed) {
  background: hsla(0, 0%, 100%, 0.06);
  color: #FFF;
}
.offcanvas-nav .accordion-body {
  padding: 0.25rem 0;
}
.offcanvas-nav .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.07);
}
.offcanvas-nav .sub-link {
  display: block;
  color: hsla(0, 0%, 100%, 0.65);
  font-size: 0.875rem;
  padding: 0.45rem 2rem;
  border-radius: 4px;
  transition: all 0.15s ease;
  text-decoration: none;
}
.offcanvas-nav .sub-link:hover {
  color: #FFF;
  background: hsla(0, 0%, 100%, 0.06);
}
.offcanvas-nav .btn-nav-cta {
  display: block;
  margin: 1rem;
  text-align: center;
}

.sub-nav {
  background-color: #6c757d;
  color: #FFF;
  font-size: 0.82rem;
  height: 36px;
  display: none !important;
}
.sub-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-static {
  border-bottom: 1px solid #D2DADC;
  padding: 10px 0;
  transition: all 0.5s;
  background-color: #FFF;
  z-index: 1035;
  position: relative;
}
.nav-static .container {
  display: block;
}
.nav-static .navbar-nav {
  flex-direction: row;
}
.nav-static .nav-item {
  padding: 5px 12px;
}
.nav-static .nav-item:last-child {
  padding-right: 0 !important;
}
.nav-static .nav-link {
  color: #49A760 !important;
  font-size: 16px;
  padding: 0;
}
.nav-static .nav-link:hover {
  color: #F7C35F !important;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:focus-visible {
  background-color: #49A760;
  color: #FFF;
  outline: none;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00bbe0;
  color: #153353;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  border: 2px solid #00bbe0;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-cyan:hover, .btn-cyan:focus {
  background: rgb(0, 144.4241071429, 173);
  border-color: rgb(0, 144.4241071429, 173);
  color: #153353;
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-cyan.btn-lg {
  font-size: 1rem;
  padding: 0.75rem 2rem;
}
.btn-cyan.w-100 {
  width: 100%;
}

.btn-primary-solid {
  background: #153353;
  color: #fff;
  border: 2px solid #153353;
  font-weight: 600;
  border-radius: 4px;
  padding: 0.6rem 1.5rem;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-outline-light-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #FFF;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-outline-light-custom:hover, .btn-outline-light-custom:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFF;
  color: #FFF;
  text-decoration: none;
}

.btn-outline-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #153353;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  border: 2px solid #153353;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-outline-primary-custom:hover, .btn-outline-primary-custom:focus {
  background: #153353;
  color: #FFF;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url(https://images.unsplash.com/photo-1560448205-4d9b3e6bb6db?auto=format&fit=crop&w=1600&q=80) center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 51, 83, 0.6);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  color: #FFF;
  padding: 5rem 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 187, 224, 0.2);
  border: 1px solid rgba(0, 187, 224, 0.4);
  color: #00bbe0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50rem;
  margin-bottom: 1.25rem;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #FFF;
}
.hero__title .accent {
  color: #00bbe0;
}
.hero__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: hsla(0, 0%, 100%, 0.85);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
}
.hero__trust-item i {
  color: #00bbe0;
  font-size: 1.1rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 1.5rem;
  animation: heroScrollBounce 2s infinite;
  text-decoration: none;
}
.hero__scroll:hover {
  color: #00bbe0;
}

@keyframes heroScrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
.page-hero {
  background: linear-gradient(135deg, #153353 0%, #22567C 100%);
  position: relative;
  padding: 3.5rem 0;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -5%;
  top: -20%;
  width: 45%;
  height: 140%;
  background: rgba(0, 187, 224, 0.06);
  border-radius: 50%;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}
.page-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: hsla(0, 0%, 100%, 0.4);
}
.page-hero__breadcrumb .breadcrumb-item, .page-hero__breadcrumb .breadcrumb-item a {
  color: hsla(0, 0%, 100%, 0.65);
  font-size: 0.85rem;
  text-decoration: none;
}
.page-hero__breadcrumb .breadcrumb-item.active {
  color: hsla(0, 0%, 100%, 0.9);
}
.page-hero__breadcrumb .breadcrumb-item a:hover {
  color: #00bbe0;
}
.page-hero h1 {
  color: #FFF;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.page-hero__lead {
  color: hsla(0, 0%, 100%, 0.75);
  max-width: 600px;
  margin: 0;
}
.page-hero--sale {
  background: linear-gradient(135deg, #b91c1c 0%, #e53e3e 100%);
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.section--bg-light {
  background-color: #d4e6f0;
}
.section--bg-dark {
  background: linear-gradient(135deg, #153353 0%, #22567C 100%);
  color: #FFF;
}

.section-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.section-intro .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00bbe0;
  margin-bottom: 0.5rem;
}
.section-intro h2 {
  color: #153353;
  margin-bottom: 1rem;
}
.section-intro .section-lead {
  color: #6b7280;
  max-width: 560px;
  margin: 0 auto;
}

.section-more {
  text-align: center;
  margin-top: 2.5rem;
}

.stats-section {
  padding: 3.5rem 0;
  background: #153353;
  color: #FFF;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}
.stat-item__number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #00bbe0;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item__label {
  font-size: 0.9rem;
  color: hsla(0, 0%, 100%, 0.75);
  font-weight: 500;
}
.stat-item + .stat-item {
  border-left: 1px solid hsla(0, 0%, 100%, 0.12);
}

.product-cat-card {
  display: block;
  text-decoration: none;
  background: #FFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(21, 51, 83, 0.08);
  transition: all 0.25s ease;
  height: 100%;
}
.product-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(21, 51, 83, 0.16);
}
.product-cat-card:hover .product-cat-card__img img {
  transform: scale(1.05);
}
.product-cat-card:hover .product-cat-card__title {
  color: #22567C;
}
.product-cat-card:hover .product-cat-card__arrow {
  transform: translateX(4px);
}
.product-cat-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #d4e6f0;
}
.product-cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-cat-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.product-cat-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 187, 224, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.product-cat-card__icon i {
  font-size: 1.3rem;
  color: #22567C;
}
.product-cat-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #153353;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.product-cat-card__text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.product-cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #22567C;
}
.product-cat-card__arrow {
  transition: transform 0.2s;
}

.product-sub-card {
  background: #FFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(21, 51, 83, 0.08);
  transition: all 0.25s ease;
  height: 100%;
}
.product-sub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(21, 51, 83, 0.16);
}
.product-sub-card:hover img {
  transform: scale(1.04);
}
.product-sub-card__img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #d4e6f0;
  position: relative;
}
.product-sub-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-sub-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-block;
  padding: 0.25em 0.65em;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50rem;
  background-color: #00bbe0;
  color: #153353;
}
.product-sub-card__body {
  padding: 1.25rem;
}
.product-sub-card__name {
  font-weight: 700;
  color: #153353;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.product-sub-card__desc {
  font-size: 0.82rem;
  color: #6b7280;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.product-sub-card__cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: #22567C;
  text-decoration: none;
}
.product-sub-card__cta:hover {
  color: #00bbe0;
}

.promo-card {
  background: #FFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(21, 51, 83, 0.08);
  transition: all 0.25s ease;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(21, 51, 83, 0.16);
}
.promo-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #d4e6f0;
}
.promo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-card__badge-discount {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #dc3545;
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50rem;
}
.promo-card__body {
  padding: 1.25rem;
}
.promo-card__name {
  font-weight: 700;
  color: #153353;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.promo-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.promo-card__price-new {
  font-size: 1.2rem;
  font-weight: 700;
  color: #dc3545;
}
.promo-card__price-old {
  font-size: 0.85rem;
  color: #aaa;
  text-decoration: line-through;
}

.product-categories {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #d4e6f0;
}
.product-categories .section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.how-it-works {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.how-it-works .section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 2px 16px rgba(21, 51, 83, 0.08);
  position: relative;
  transition: all 0.25s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(21, 51, 83, 0.16);
}
.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #153353;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.step-card__icon {
  font-size: 2rem;
  color: #00bbe0;
  margin-bottom: 0.75rem;
}
.step-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #153353;
  margin-bottom: 0.5rem;
}
.step-card__text {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
.step-card__arrow {
  position: absolute;
  top: 2.5rem;
  right: -1.5rem;
  font-size: 1.2rem;
  color: #00bbe0;
  z-index: 1;
}

.advantages-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #d4e6f0;
}
.advantages-section .section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.advantage-item {
  text-align: center;
  padding: 1.75rem 1rem;
}
.advantage-item__icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #153353, #22567C);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.advantage-item__icon-wrap i {
  font-size: 1.6rem;
  color: #00bbe0;
}
.advantage-item__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #153353;
  margin-bottom: 0.35rem;
}
.advantage-item__text {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0;
}

.promo-banner {
  background: linear-gradient(135deg, #49A760 0%, rgb(49.73125, 113.76875, 65.4) 100%);
  color: #FFF;
  border-radius: 12px;
  padding: 2.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.promo-banner::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 200px;
  height: 200px;
  background: hsla(0, 0%, 100%, 0.06);
  border-radius: 50%;
}
.promo-banner__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsla(0, 0%, 100%, 0.7);
  margin-bottom: 0.5rem;
}
.promo-banner h3 {
  color: #FFF;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  margin-bottom: 0.5rem;
}
.promo-banner p {
  color: hsla(0, 0%, 100%, 0.8);
  margin-bottom: 1.25rem;
}

.inspiration-grid {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.inspiration-grid .section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item--tall {
  aspect-ratio: 3/4;
}
.gallery-item--wide {
  aspect-ratio: 4/3;
}
.gallery-item--square {
  aspect-ratio: 1/1;
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 51, 83, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item__overlay i {
  font-size: 2rem;
  color: #FFF;
}

.reviews-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #153353;
  color: #FFF;
}
.reviews-section .section-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-section .section-intro h2 {
  color: #FFF;
}
.reviews-section .section-intro .section-label {
  color: #00bbe0;
}
.reviews-section .section-intro .section-lead {
  color: hsla(0, 0%, 100%, 0.7);
}

.review-card {
  background: hsla(0, 0%, 100%, 0.06);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 8px;
  padding: 1.75rem;
  height: 100%;
}
.review-card__stars {
  color: #ffb900;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.review-card__text {
  font-size: 0.9rem;
  color: hsla(0, 0%, 100%, 0.8);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00bbe0, #22567C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #FFF;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #FFF;
  margin: 0;
}
.review-card__location {
  font-size: 0.8rem;
  color: hsla(0, 0%, 100%, 0.5);
  margin: 0;
}

.blog-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.blog-section .section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-card {
  background: #FFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(21, 51, 83, 0.08);
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(21, 51, 83, 0.16);
}
.blog-card:hover img {
  transform: scale(1.04);
}
.blog-card:hover .blog-card__title {
  color: #22567C;
}
.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-card__cat {
  display: inline-block;
  padding: 0.25em 0.65em;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 50rem;
  background-color: #00bbe0;
  color: #153353;
  margin-bottom: 0.6rem;
}
.blog-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #153353;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.blog-card__excerpt {
  font-size: 0.85rem;
  color: #6b7280;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  flex: 1;
  margin-bottom: 1rem;
}
.blog-card__meta {
  font-size: 0.78rem;
  color: #6b7280;
  display: flex;
  gap: 1rem;
}
.blog-card__meta i {
  margin-right: 0.25rem;
}

.cta-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, #153353 0%, #22567C 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: rgba(0, 187, 224, 0.04);
  border-radius: 50%;
  transform: rotate(-15deg);
}
.cta-section__inner {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  color: #FFF;
  margin-bottom: 0.75rem;
}
.cta-section .lead-text {
  color: hsla(0, 0%, 100%, 0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.cta-section .cta-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 520px;
}
.cta-section .cta-form input {
  flex: 1;
  min-width: 200px;
  border-radius: 4px;
  border: none;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  color: #153353;
}
.cta-section .cta-form input:focus {
  outline: 2px solid #00bbe0;
  outline-offset: 2px;
}
.cta-section__contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}
.cta-section__phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #FFF;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
}
.cta-section__phone i {
  color: #00bbe0;
  font-size: 1.4rem;
}
.cta-section__phone:hover {
  color: #00bbe0;
}
.cta-section__phone small {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: hsla(0, 0%, 100%, 0.65);
}

.site-footer {
  background: #0f2440;
  color: hsla(0, 0%, 100%, 0.7);
  padding: 4rem 0 0;
}
.site-footer__top {
  padding-bottom: 3rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
}
.site-footer__brand img {
  height: 48px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.site-footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: hsla(0, 0%, 100%, 0.55);
  max-width: 280px;
  margin-bottom: 1.25rem;
}
.site-footer__social {
  display: flex;
  gap: 0.75rem;
}
.site-footer__social a {
  width: 36px;
  height: 36px;
  background: hsla(0, 0%, 100%, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsla(0, 0%, 100%, 0.65);
  font-size: 1rem;
  transition: all 0.15s ease;
  text-decoration: none;
}
.site-footer__social a:hover {
  background: #00bbe0;
  color: #153353;
}
.site-footer__heading {
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__links li {
  margin-bottom: 0.5rem;
}
.site-footer__links a {
  color: hsla(0, 0%, 100%, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.site-footer__links a:hover {
  color: #00bbe0;
}
.site-footer__contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.site-footer__contact-item i {
  color: #00bbe0;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.site-footer__contact-item a {
  color: hsla(0, 0%, 100%, 0.65);
  text-decoration: none;
}
.site-footer__contact-item a:hover {
  color: #00bbe0;
}
.site-footer__bottom {
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: hsla(0, 0%, 100%, 0.4);
}
.site-footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.site-footer__bottom a {
  color: hsla(0, 0%, 100%, 0.5);
  text-decoration: none;
}
.site-footer__bottom a:hover {
  color: #00bbe0;
}

.contact-form-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.contact-card {
  background: #FFF;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(21, 51, 83, 0.08);
  padding: 2rem;
  height: 100%;
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 187, 224, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.contact-card__icon i {
  font-size: 1.4rem;
  color: #22567C;
}
.contact-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #153353;
  margin-bottom: 0.35rem;
}
.contact-card__value {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}
.contact-card__value a {
  color: #22567C;
  text-decoration: none;
}
.contact-card__value a:hover {
  color: #00bbe0;
}

.faq-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.faq-section .section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00bbe0;
  margin-bottom: 0.5rem;
}

.container-sm {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: 56px;
  font-weight: 700;
}

h2 {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1;
  position: relative;
}

h3 {
  font-size: 24px;
  margin: 0;
}

.font-caveat {
  font-family: "Caveat";
  display: block;
  font-size: 22px;
  text-align: right;
  margin-top: 35px;
  color: #F7C35F;
}

.img-arrow {
  position: absolute;
  right: -105px;
  bottom: 10px;
  height: 65px;
  z-index: 2;
}

.btn-check:focus + .btn-primary, .btn-primary:active:focus, .btn-primary:focus, .btn-primary:focus-visible, .btn-check:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
  background-color: #F7C35F;
  border: 0px;
  color: #FFF;
  outline: none;
  box-shadow: none;
}

.btn-check:active + .btn-secondary, .btn-secondary:active:focus, .btn-secondary:focus-visible, .btn-check:checked + .btn-secondary, .btn-secondary.active, .btn-secondary:active, .show > .btn-secondary.dropdown-toggle, .btn-check:focus + .btn-secondary, .btn-secondary:focus {
  background-color: transparent;
  border: 0px;
  color: #2c2c2c;
  outline: none;
  box-shadow: none;
}

.btn {
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-weight: 700;
}

.btn-primary {
  color: #2c2c2c;
  border: 0px;
  background-color: #F7C35F;
}
.btn-primary:hover {
  background-color: #49A760;
}

.btn-secondary {
  color: #49A760;
  border: 0px;
  background-color: transparent;
  border-radius: 0px;
  padding: 0px;
}
.btn-secondary:hover {
  background-color: #49A760;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: #2c2c2c;
  margin-bottom: 0;
}

.special-list {
  padding-left: 0px;
}
.special-list li {
  position: relative;
  padding-left: 25px;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.special-list li:before {
  content: "-";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  width: 10px;
  position: absolute;
  left: 0px;
  font-size: 25px;
  color: #F7C35F;
}
.special-list li a {
  color: #2c2c2c;
}
.special-list li a:hover {
  color: #F7C35F;
}

header {
  position: relative;
  overflow: hidden;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
header .container {
  z-index: 2;
  position: relative;
}
header .container h1 {
  margin-top: 100px;
  color: #FFF;
  font-size: 45px;
  text-shadow: 0 0 35px rgba(0, 0, 6, 0.4);
  margin-bottom: 10px;
}
header .container h1 span {
  text-transform: uppercase;
  font-size: 50px;
  display: block;
}
header .container .title-h2 {
  color: #FFF2DE;
  display: block;
  font-size: 32px;
  margin-bottom: 30px;
}
header .container .btn {
  margin-bottom: 100px;
}
header .header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
header .header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
header:before {
  position: absolute;
  left: 0;
  bottom: -90px;
  content: "";
  height: 100px;
  width: 100%;
  background: url(../img/1.png);
  z-index: 3;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  transform: rotate(-180deg);
}

.subpage {
  height: auto;
  z-index: 1;
  position: relative;
  overflow: hidden;
  padding: 0px;
}
.subpage:before {
  position: absolute;
  left: 0;
  bottom: -91px;
  content: "";
  height: 100px;
  width: 100%;
  background: url(../img/1.png);
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  transform: rotate(-180deg);
}
.subpage-in {
  margin: 35px 0 100px 0;
  max-width: 100%;
  position: relative;
}
.subpage h1 {
  color: #FFF;
  margin-top: 40px;
}
.subpage img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
}

.breadcrumb-item a {
  color: #FFF;
}
.breadcrumb-item:before {
  color: #FFF !important;
}
.breadcrumb-item.active {
  color: #FFF;
  text-decoration: none;
}

.about-in {
  padding-right: 20px;
}
.about-item {
  padding: 45px;
  height: 100%;
  background-color: #F7C35F;
  color: #2c2c2c;
}
.about-item p {
  line-height: 1.4;
  margin-top: 15px;
}
.about-item img {
  height: 75px;
  margin-bottom: 30px;
}
.about-item-2 {
  background-color: #49A760;
  color: #FFF;
}
.about-item-2 p {
  color: #FFF;
}
.about-row {
  margin-right: -200px;
  z-index: 2;
  position: relative;
}
.about .img-absolute {
  position: absolute;
  left: -80px;
  bottom: -45px;
  height: 150px;
}

.commodities {
  background-color: #FFF2DE;
}
.commodities .swiper {
  padding: 0 60px;
}
.commodities .swiper-button-prev,
.commodities .swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #1F4E3D;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.commodities .swiper-button-prev::after,
.commodities .swiper-button-next::after {
  font-size: 16px;
  font-weight: 900;
  color: #F7C35F;
  transition: color 0.3s ease;
}
.commodities .swiper-button-prev:hover,
.commodities .swiper-button-next:hover {
  background-color: #F7C35F;
  transform: scale(1.1);
}
.commodities .swiper-button-prev:hover::after,
.commodities .swiper-button-next:hover::after {
  color: #1F4E3D;
}
.commodities .swiper-button-prev.swiper-button-disabled,
.commodities .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.commodities .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.commodities .swiper-slide-img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 300px;
}
.commodities .swiper-slide img {
  transition: 0.5s;
  z-index: -1;
  position: relative;
}
.commodities .swiper-slide h3 {
  color: #2c2c2c;
}
.commodities .swiper-slide:after {
  content: "";
  background: #2c2c2c;
  background: url(../img/zoom.svg);
  transition: 0.3s;
  background-repeat: no-repeat;
  height: 50px;
  width: 50px;
  position: absolute;
  opacity: 0;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
}
.commodities .swiper-slide:hover:after {
  opacity: 1;
}

#instafeed {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin: 0 3px;
  margin-left: auto;
  margin-right: auto;
}

.instagrid .instagram-photo {
  flex: 1 1 30%;
  position: relative;
}

.instagrid .instagram-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  max-height: 300px;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px;
}

footer {
  padding: 50px 0 25px 0;
  background-color: #1F4E3D;
  color: #D2DADC;
}
footer ul {
  margin-bottom: 30px;
}
footer ul, footer li {
  list-style: none;
  padding-left: 0px;
  color: #FFF;
  font-size: 16px;
  line-height: 1.8;
}
footer ul a, footer li a {
  text-decoration: none;
  color: #FFF;
}
footer ul a:hover, footer li a:hover {
  color: #F7C35F;
}
footer .footer-right {
  text-align: right;
  font-size: 14px;
}
footer .footer-right span {
  display: block;
}
footer .footer-right span a {
  color: #FFF;
  text-decoration: underline;
}
footer .footer-right span a:hover {
  text-decoration: none;
}

#partners .logo {
  align-items: center;
  justify-content: center;
  text-align: center;
}
#partners .logo img {
  max-height: 90px;
}

#partnerss .row {
  align-items: center;
  justify-content: center;
  text-align: center;
}
#partnerss .row img {
  max-height: 120px;
}

.mySwiper2 {
  width: 100%;
  height: 370px;
}
.mySwiper2 .swiper-slide {
  cursor: grab;
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: 600px;
  width: auto;
  display: flex;
}
.mySwiper2 .swiper-slide img {
  max-width: 100%;
  max-height: 350px;
}

:root {
  --swiper-theme-color: rgb(0, 0, 0);
}

.swiper-pagination-progressbar {
  bottom: 0 !important;
  top: unset !important;
}

#before-after-slider {
  width: fit-content;
  position: relative;
  overflow: hidden;
  max-height: 450px;
  max-width: 100%;
}

#after-image {
  display: block;
}

#before-image {
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 2;
}

#resizer {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 5;
  top: 0;
  left: 50%;
  height: 100%;
  width: 4px;
  background: white;
  /*Stop vertical scrolling on touch*/
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

#resizer:after {
  background-color: #49A760;
  font-family: "Font Awesome 5 Free";
  content: "\f337";
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: absolute;
  margin: 0 0 0 -19px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
}

.services-block {
  display: flex;
  flex-direction: row;
}
.services-block-img {
  display: contents;
  margin-right: 20px;
}
.services-block-img img {
  height: 80px;
  width: auto;
}
.services-block-content {
  padding: 0px 20px;
}
.services-block-content h3 {
  margin-bottom: 10px;
}
.services-how-items {
  background-color: #2c2c2c;
  color: #FFF;
  padding: 70px 30px;
  border-radius: 10px;
}
.services-how-items-item {
  display: flex;
  flex-direction: row;
}
.services-how-items-item h3 {
  font-size: 20px;
  margin-bottom: 5px;
}
.services-how-items-item p {
  color: #D2DADC;
}
.services-how-items-item .services-block-content {
  padding: 0px;
  padding-left: 20px;
}
.services-circle .swiper-slide {
  padding-right: 30px;
}
.services-circle .swiper-slide:after {
  content: "";
  width: 45px;
  height: 30px;
  background: url("/img/arrow.svg") no-repeat;
  background-size: 45px;
  top: 10px;
  right: 5px;
  position: absolute;
  display: inline-block;
}

.contact {
  padding-bottom: 0px;
  position: relative;
}
.contact h2::after {
  display: none;
}
.contact .socials svg {
  height: 50px;
  margin: 0px 10px;
}
.contact .socials a {
  display: inline-block;
}
.contact .socials a:hover path, .contact .socials a:hover circle {
  fill: #49A760;
}

.pie-chart {
  background: radial-gradient(circle closest-side, white 0, white 39.6%, transparent 39.6%, transparent 66%, white 0), conic-gradient(from 95deg, #FFF2DE 0, #FFF2DE 20%, #F7C35F 0, #F7C35F 55%, #49A760 0, #49A760 90%, #1F4E3D 0, #1F4E3D 99.9%);
  position: relative;
  width: 500px;
  min-height: 350px;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

.pie-chart h2 {
  position: absolute;
  margin: 1rem;
}

.pie-chart cite {
  position: absolute;
  bottom: 0;
  font-size: 80%;
  padding: 1rem;
  color: gray;
}

.pie-chart figcaption {
  position: absolute;
  bottom: 1em;
  right: 1em;
  font-size: smaller;
  text-align: right;
}

.pie-chart span:after {
  display: inline-block;
  content: "";
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.4em;
  height: 0.8em;
  border-radius: 0.2em;
  background: currentColor;
}

@media (max-width: 1200px) {
  .navbar {
    background-color: #FFF;
  }
  .navbar .col-xl-3 {
    display: flex;
    align-items: center;
  }
  .navbar .col-xl-3 .navbar-toggler {
    height: 40px;
  }
  .about-row {
    margin-right: 0px;
  }
}
@media (max-width: 767.98px) {
  .action-bar {
    font-size: 0.75rem;
    height: 36px;
  }
  .info-bar {
    display: none;
  }
  .hero {
    min-height: 70vh;
  }
  .hero__trust {
    gap: 1rem;
  }
  .hero__trust-item {
    font-size: 0.8rem;
  }
  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .stat-item + .stat-item {
    border-left: none;
    border-top: 1px solid hsla(0, 0%, 100%, 0.12);
    padding-top: 1.5rem;
  }
  .promo-banner {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 991.98px) {
  .info-bar .info-bar__item--hide-md {
    display: none;
  }
  .step-card__arrow {
    display: none;
  }
}
@media (max-width: 992px) {
  .navbar {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  .navbar:before {
    bottom: -7px;
  }
  header:before {
    bottom: -95px;
  }
  section {
    padding: 75px 0;
  }
  h1 {
    font-size: 36px !important;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 24px;
  }
  footer .footer-right {
    text-align: left;
    margin-top: 30px;
  }
  .absolute-img {
    margin-top: 0px;
  }
  .pie-chart {
    max-width: 100%;
  }
  .pie-chart figcaption {
    bottom: -40px;
  }
  .font-caveat {
    text-align: left;
  }
  .img-arrow {
    display: none;
  }
  #partnerss .row img {
    max-height: 80px;
  }
}/*# sourceMappingURL=style.css.map */