*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --site-font-family: "Roboto", Arial, sans-serif;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--site-font-family);
  background: #ffffff;
  color: #000000;
}

body,
button,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
label,
blockquote,
cite,
figcaption,
small,
strong,
em {
  font-family: var(--site-font-family);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
}

/* div {
  border: 1px solid red;
} */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 30px, 1140px);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
}

.header-top {
  padding: 18px 0 20px;
}

.header-top__layout {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
}

.social-media {
  grid-column: 3;
  justify-self: end;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}

.social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  color: #4d4d4d;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.social-media a:hover,
.social-media a:focus-visible {
  color: #ffffff;
  background: #ff0000;
  border-color: #ff0000;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 119px;
  height: 119px;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  border-radius: 50%;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.navbar-brand:hover,
.navbar-brand:focus-visible {
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.navbar-brand__image {
  display: block;
  width: 93%;
  height: auto;
  transform: translateY(-4%);
}

.navbar-brand span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
}

.searchform {
  display: flex;
  justify-content: flex-start;
}

.searchform__group {
  display: flex;
  width: 300px;
  height: 50px;
  overflow: hidden;
  border-radius: 40px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.searchform__input {
  width: calc(100% - 50px);
  height: 50px;
  padding: 0 0 0 18px;
  border: 0;
  color: rgba(0, 0, 0, 0.7);
  background: #ffffff;
  outline: none;
}

.searchform__input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

.searchform__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #ffffff;
  background: #ff0000;
}

.site-nav-wrap {
  background: #252525;
}

.site-nav {
  position: relative;
}

.navbar-toggler {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.navbar-toggler__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.navbar-toggler__icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.navbar-collapse {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 24px 20px;
  font-size: 0.8em;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-item--button {
  margin-left: 12px;
}

.nav-link--button {
  justify-content: center;
  padding: 24px 12px;
  color: #111111;
}

.nav-link__icon {
  display: block;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  transition: stroke 0.2s ease;
}

.nav-link__label {
  display: none;
}

.nav-link--button::before {
  display: none;
}

.nav-link--button:hover,
.nav-link--button:focus-visible {
  color: #ff0000;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ff0000;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #ff0000;
}

.nav-link:hover::before,
.nav-link:focus-visible::before,
.nav-item--active > .nav-link::before {
  width: 100%;
}

.nav-item--active > .nav-link {
  color: #ff0000;
}

.dropdown-toggle svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  display: none;
  min-width: 172px;
  padding: 8px 0;
  margin: 0;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 10px 34px -20px rgba(0, 0, 0, 0.41);
}

.dropdown-menu.is-open {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 18px;
  font-size: 0.9em;
  color: #000000;
  white-space: nowrap;
}

.dropdown-item:hover,
.dropdown-item:focus-visible {
  color: #ffffff;
  background: #ff0000;
}

.banner-slider {
  width: 100%;
  margin: 0;
}

.banner-slider__carousel {
  width: 100%;
  position: relative;
  background: #ffffff;
  --banner-nav-size: clamp(24px, 4vw, 40px);
  --banner-nav-icon-size: clamp(16px, 1.8vw, 20px);
}

.banner-slider__carousel:not(.owl-loaded) {
  overflow: hidden;
}

.banner-slider__carousel:not(.owl-loaded)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(236, 238, 241, 0.92) 0%,
      rgba(245, 246, 248, 1) 35%,
      rgba(224, 228, 233, 0.92) 50%,
      rgba(245, 246, 248, 1) 65%,
      rgba(236, 238, 241, 0.92) 100%
    );
  background-size: 200% 100%;
  animation: banner-skeleton-shimmer 1.6s linear infinite;
}

.banner-slider__carousel:not(.owl-loaded) .banner-slide__image {
  opacity: 0;
}

.banner-slider__carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 2em;
  right: 2em;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.banner-slider__carousel .owl-nav button.owl-prev,
.banner-slider__carousel .owl-nav button.owl-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--banner-nav-size);
  height: var(--banner-nav-size);
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #111317;
  pointer-events: auto;
  box-shadow: 0 8px 24px rgba(15, 17, 21, 0.12);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.banner-slider__carousel .owl-nav button.owl-prev:hover,
.banner-slider__carousel .owl-nav button.owl-prev:focus-visible,
.banner-slider__carousel .owl-nav button.owl-next:hover,
.banner-slider__carousel .owl-nav button.owl-next:focus-visible {
  background: #ffffff;
  color: #f24b3a;
  transform: scale(1.04);
}

.banner-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--banner-nav-icon-size);
  height: var(--banner-nav-icon-size);
}

.banner-slider__arrow svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.banner-slider__carousel .owl-dots {
  margin-top: 0;
}

.banner-slider__carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 6px;
  background: rgba(0, 0, 0, 0.2);
}

.banner-slider__carousel .owl-dots .owl-dot.active span,
.banner-slider__carousel .owl-dots .owl-dot:hover span {
  background: #f24b3a;
}

.banner-slider__carousel .owl-stage-outer,
.banner-slider__carousel .owl-stage,
.banner-slider__carousel .owl-item,
.banner-slide {
  height: 100%;
}

.banner-slide {
  aspect-ratio: 4 / 1;
  overflow: hidden;
  background: #ffffff;
}

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

.banner-slide--content {
  position: relative;
  color: #18333a;
  background: var(--banner-bg) center right / cover no-repeat;
}

.banner-slide__inner {
  width: 100%;
  height: 100%;
}

.banner-slide__container {
  display: flex;
  align-items: center;
  height: 100%;
  padding: clamp(24px, 4vw, 64px) clamp(0, 4vw, 32px);
}

.banner-slide__content {
  display: grid;
  gap: clamp(14px, 1.4vw, 22px);
  width: min(46%, 500px);
}

.banner-slide__title {
  font-family: "Montserrat", Arial, sans-serif;
  margin: 0;
  font-size: clamp(16px, 4vw, 32px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #0c5667;
}

.banner-slide__title-line {
  display: block;
}

.banner-slide__title-line--accent {
  font-family: "Montserrat", Arial, sans-serif;
  margin: 0;
  font-size: clamp(12px, 4vw, 24px);
  color: #0c5667;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.banner-slide__text {
  font-family: "Montserrat", Arial, sans-serif;
  max-width: 34ch;
  margin: 0;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.5;
  color: #000000;
}

.banner-slide__title-line__white {
  color: #ffffff;
}

.banner-slide__text__white {
  color: #ffffff;
}

.banner-slide__button {
  font-family: "Montserrat", Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: clamp(20px, 4vw, 34px);
  padding: 0 clamp(16px, 2.2vw, 22px);
  border-radius: 999px;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 300;
  color: #ffffff;
  background: #0c5667;
  
  /* box-shadow: 0 14px 28px rgba(15, 123, 115, 0.22); */
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.banner-slide__button:hover,
.banner-slide__button:focus-visible {
  background: #ffffff;
  transform: translateY(-1px);
  color: #000000;
  border: 1px solid #000000;
  /* box-shadow: 0 16px 30px rgba(12, 103, 95, 0.26); */
}

.stores-logos {
  padding: 4em 0;
  background: #ffffff;
}

.stores-logos__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: clamp(16px, 2.4vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.stores-logos__item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.stores-logos__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: clamp(92px, 11vw, 150px);
  max-height: clamp(22px, 3vw, 40px);
  object-fit: contain;
}

.ftco-counter {
  overflow-x: hidden;
  position: relative;
  padding: 2em 0;
  background: #f8f9fd;
}

.ftco-counter__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.ftco-counter .counter-wrap {
  display: flex;
  justify-content: center;
}

.ftco-counter .block-18 {
  display: block;
  width: 100%;
}

.ftco-counter .text {
  position: relative;
  text-align: center;
}

.ftco-counter .text .number {
  display: block;
  margin-bottom: 10px;
  color: #df4b4b;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}

.ftco-counter .text span {
  display: block;
  color: #000000;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.call-to-action {
  --call-to-action-background-color: #060606;
  --call-to-action-default-color: #ffffff;
  --call-to-action-accent-color: #199eb8;
  --call-to-action-contrast-color: #ffffff;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  clip-path: inset(0);
}

.call-to-action__background {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(6, 6, 6, 0.5);
  background: color-mix(in srgb, var(--call-to-action-background-color), transparent 50%);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action__content {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.call-to-action h3 {
  margin: 0 0 16px;
  color: var(--call-to-action-default-color);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.call-to-action p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--call-to-action-default-color);
  line-height: 1.5;
}

.call-to-action .cta-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 40px;
  border: 2px solid var(--call-to-action-contrast-color);
  border-radius: 5px;
  color: var(--call-to-action-contrast-color);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.5s;
}

.call-to-action .cta-btn:hover,
.call-to-action .cta-btn:focus-visible {
  background: var(--call-to-action-accent-color);
  border-color: var(--call-to-action-accent-color);
}

@font-face {
  font-family: "Flaticon";
  src: url("../fonts/flaticon/Flaticon.eot");
  src:
    url("../fonts/flaticon/Flaticon.eot?#iefix") format("embedded-opentype"),
    url("../fonts/flaticon/Flaticon.woff2") format("woff2"),
    url("../fonts/flaticon/Flaticon.woff") format("woff"),
    url("../fonts/flaticon/Flaticon.ttf") format("truetype"),
    url("../fonts/flaticon/Flaticon.svg#Flaticon") format("svg");
  font-weight: 400;
  font-style: normal;
}

[class^="flaticon-"]::before,
[class*=" flaticon-"]::before {
  font-family: "Flaticon";
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.flaticon-accountant::before {
  content: "\f100";
}

.flaticon-accounting::before {
  content: "\f101";
}

.flaticon-tax::before {
  content: "\f102";
}

.flaticon-wealth::before {
  content: "\f103";
}

.flaticon-accounting-1::before {
  content: "\f104";
}

.flaticon-loan::before {
  content: "\f105";
}

.flaticon-teamwork::before {
  content: "\f106";
}

.flaticon-budget::before {
  content: "\f107";
}

.ftco-section {
  padding: 1em 0 6em 0;
  position: relative;
}

.ftco-no-pt {
  padding-top: 0;
}

.bg-light {
  background: #f8f9fd;
}

.accounting-master-services .row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 0;
}

.accounting-master-services .col-md-6,
.accounting-master-services .col-lg-3 {
  min-width: 0;
  padding: 0 24px;
}

.services {
  display: block;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.services .d-block {
  position: relative;
}

.services .icon {
  line-height: 1.3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 50%;
}

.services .icon span {
  display: block;
  font-size: 80px;
  color: #e6e6e6;
}

.services .icon .service-step-number {
  font-family: inherit;
  font-weight: 700;
  line-height: 1;
}

.services .media-body {
  position: relative;
  z-index: 1;
}

.services .media-body h3 {
  margin: 0 0 16px 0.9em;
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.services .media-body p {
  margin: 0;
  color: #808080;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .services .icon {
    top: -30px;
    left: -30px;
  }
}

.fa {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
}

.fa-quote-left::before {
  content: "\201c";
  font-family: var(--site-font-family);
  font-size: 24px;
  font-weight: 700;
}

.testimony-section {
  padding-top: 4em;
  padding-bottom: 4em;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.testimony-section .overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 660px;
  background-color: #8fd0d2;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 100%),
    url("../images/system/noroot.png.webp");
  background-position:
    center center,
    center 65%;
  background-repeat:
    no-repeat,
    no-repeat;
  background-size:
    100% 100%,
    cover;
  will-change: background-position;
}

.testimony-section .container {
  position: relative;
  z-index: 1;
}

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

.testimony-section .col-md-7,
.testimony-section .col-md-12 {
  position: relative;
  width: 100%;
  min-width: 0;
  padding-right: 15px;
  padding-left: 15px;
}

.testimony-section .d-flex {
  display: flex !important;
}

.testimony-section .justify-content-center {
  justify-content: center !important;
}

.testimony-section .align-items-center {
  align-items: center !important;
}

.testimony-section .text-center {
  text-align: center !important;
}

.testimony-section .pb-5 {
  padding-bottom: 3rem !important;
}

.testimony-section .pl-3 {
  padding-left: 1rem !important;
}

.testimony-section .py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.testimony-section .mb-3 {
  margin-bottom: 1rem !important;
}

.testimony-section .mb-4 {
  margin-bottom: 1.5rem !important;
}

.testimony-section .heading-section.heading-section-white .subheading,
.testimony-section .heading-section.heading-section-white h2 {
  color: #ffffff;
}

.testimony-section__heading {
  text-align: left;
}

.testimony-section .owl-carousel {
  margin: 0;
}

.testimony-section .owl-carousel .owl-stage-outer {
  position: relative;
  padding: 20px 0 2em;
}

.testimony-section .owl-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.testimony-section .owl-nav button.owl-prev,
.testimony-section .owl-nav button.owl-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #111317;
  box-shadow: 0 8px 24px rgba(15, 17, 21, 0.12);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.testimony-section .owl-nav button.owl-prev:hover,
.testimony-section .owl-nav button.owl-prev:focus-visible,
.testimony-section .owl-nav button.owl-next:hover,
.testimony-section .owl-nav button.owl-next:focus-visible {
  background: #f8f9fd;
  color: #1ba12d;
  transform: scale(1.04);
}

.testimony-section__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimony-section__arrow svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.testimony-section .owl-dots {
  text-align: center;
}

.testimony-section .owl-dots .owl-dot {
  background: rgba(0, 0, 0, 0.1);
}

.testimony-section .owl-dots .owl-dot.active {
  background: #1ba12d;
}

.testimony-wrap {
  display: block;
  position: relative;
  padding: 0 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.02);
  border-radius: 5px;
  box-shadow: 0 30px 33px -41px rgba(0, 0, 0, 0.24);
}

.testimony-wrap .icon {
  position: absolute;
  top: -20px;
  left: 20px;
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1ba12d;
}

.testimony-wrap .icon span {
  color: #ffffff;
}

.testimony-wrap .user-img {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
}

.testimony-wrap .name {
  margin-bottom: 0;
  color: #000000;
  font-size: 20px;
  font-weight: 500;
}

.testimony-wrap .position {
  color: #333333;
  font-size: 14px;
}

@media (min-width: 768px) {
  .testimony-section .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .testimony-section .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.accounting-services {
  padding: 0 0 7em;
  background: #f8f9fd;
}

.accounting-services__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.accounting-services__media {
  min-width: 0;
}

.accounting-services__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.accounting-services__content {
  min-width: 0;
  padding: 80px min(8vw, 72px) 48px min(4vw, 48px);
  background: #ffffff;
}

.accounting-services__heading {
  margin-bottom: 64px;
}

.heading-section .subheading {
  display: block;
  margin-bottom: 12px;
  color: #1ba12d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.heading-section h2 {
  margin: 0;
  color: #000000;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
}

.services-2 {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dee2e6;
}

.services-2:last-child {
  margin-bottom: 0;
}

.services-2 .icon {
  display: flex;
  flex: 0 0 70px;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #1ba12d;
  box-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.15);
}

.services-2 .icon span {
  color: #ffffff;
  font-size: 40px;
}

.services-2 .text {
  min-width: 0;
}

.services-2 .text h4 {
  margin: 0 0 10px;
  color: #000000;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.4;
}

.services-2 .text p {
  margin: 0;
  color: #808080;
  font-size: 1em;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 300;
  line-height: 1.8;
}

.bell-services {
  padding: 88px 0;
  background: #f8f9fd;
}

.bell-services__section-title {
  padding-bottom: 88px;
  text-align: left;
}

.bell-services__section-title h2 {
  margin: 0 0 15px;
  color: #df4b4b;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.bell-services__section-title p {
  margin: 0;
  color: #555555;
  font-size: 16px;
  line-height: 1.5;
}

.bell-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 32px;
}

.bell-services__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-width: 0;
}

.bell-services__icon {
  display: flex;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid #44808b;
  border-radius: 4px;
  background: #44808b;
  transition:
    background-color 0.5s ease,
    border-color 0.5s ease;
}

.bell-services__icon img {
  display: block;
  width: 24px;
  height: 24px;
}

.bell-services__content {
  min-width: 0;
}

.bell-services__title {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #225a65;
}

.bell-services__title a {
  color: #225a65;
  transition: color 0.3s ease;
}

.bell-services__description {
  margin: 0;
  color: #555555;
  font-size: 14px;
  line-height: 24px;
}

.bell-services__item:hover .bell-services__title a,
.bell-services__item:focus-within .bell-services__title a {
  color: #0e363e;
}

.clearwave-carousel-section {
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --surface-2: #ffffff;
  --accent: #1a7a6e;
  --accent-mid: #2a9d8f;
  --accent-light: #5bbfb5;
  --accent-ghost: rgba(26, 122, 110, 0.08);
  --accent-border: rgba(26, 122, 110, 0.15);
  --text-1: #0d1e1c;
  --text-2: #000000;
  --text-3: #6b8c88;
  --border: rgba(133, 133, 133, 0.08);
  --shadow-sm: 0 2px 12px rgba(13, 30, 28, 0.06);
  --shadow-md: 0 8px 32px rgba(13, 30, 28, 0.1);
  --shadow-lg: 0 24px 64px rgba(13, 30, 28, 0.13);
  --silk: cubic-bezier(0.16, 1, 0.3, 1);
  --silk-dur: 0.8s;
  --radius: 16px;
  --radius-lg: 24px;
  --pw: clamp(180px, 14vw, 300px);
  --gap1: clamp(200px, 19vw, 380px);
  --gap2: clamp(360px, 34vw, 660px);
  --gap-hide: clamp(500px, 48vw, 900px);
  display: block;
  padding: 56px 0 72px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.clearwave-carousel-section .carousel-header {
  text-align: center;
  margin-bottom: 0;
}

.clearwave-carousel-section .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  background: var(--accent-ghost);
  color: var(--accent);
  font-family: var(--site-font-family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.clearwave-carousel-section .section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.clearwave-carousel-section .section-title {
  margin: 0;
  color: var(--text-1);
  font-family: var(--site-font-family);
  font-size: clamp(1.2rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.clearwave-carousel-section .section-title em {
  color: var(--accent);
  font-family: var(--site-font-family);
  font-style: italic;
}

.clearwave-carousel-section .section-sub {
  max-width: 720px;
  margin: 8px auto 0;
  color: var(--text-2);
  font-family: var(--site-font-family);
  font-size: 1.0625rem;
  line-height: 1.75;
  text-align: center;
}

.clearwave-carousel-section .carousel-zoom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 21px 0 0;
}

.clearwave-carousel-section .zoom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--accent-border);
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  transition: all 0.35s var(--silk);
}

.clearwave-carousel-section .zoom-btn:hover:not(:disabled),
.clearwave-carousel-section .zoom-btn:focus-visible:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.clearwave-carousel-section .zoom-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.clearwave-carousel-section .zoom-pips {
  display: flex;
  align-items: center;
  gap: 5px;
}

.clearwave-carousel-section .zoom-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-border);
  cursor: pointer;
  transition:
    background 0.3s var(--silk),
    transform 0.3s var(--silk);
}

.clearwave-carousel-section .zoom-pip.active {
  background: var(--accent);
  transform: scale(1.4);
}

.clearwave-carousel-section .carousel-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(480px, 52vw, 780px);
  perspective: clamp(900px, 120vw, 1800px);
  perspective-origin: center center;
}

.clearwave-carousel-section .carousel-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.clearwave-carousel-section .phone-card {
  position: absolute;
  cursor: pointer;
  transition:
    transform 0.6s var(--silk),
    opacity 0.6s var(--silk);
}

.clearwave-carousel-section .phone-shell {
  position: relative;
  padding: 5px;
  border: none;
  border-radius: 24px;
  background: #c8d4d2;
  box-shadow:
    0 0 0 1px rgba(150, 175, 170, 0.5),
    0 24px 56px rgba(13, 30, 28, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: box-shadow 0.6s var(--silk);
}

.clearwave-carousel-section .phone-screen {
  overflow: hidden;
  border-radius: 18px;
  background: var(--bg);
  aspect-ratio: 9 / 13.5;
}

.clearwave-carousel-section .phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clearwave-carousel-section .phone-card[data-pos="center"] {
  z-index: 10;
}

.clearwave-carousel-section .phone-card[data-pos="left1"],
.clearwave-carousel-section .phone-card[data-pos="right1"] {
  z-index: 8;
}

.clearwave-carousel-section .phone-card[data-pos="left2"],
.clearwave-carousel-section .phone-card[data-pos="right2"] {
  z-index: 6;
}

.clearwave-carousel-section .phone-card[data-pos="hidden-left"],
.clearwave-carousel-section .phone-card[data-pos="hidden-right"] {
  z-index: 4;
}

.clearwave-carousel-section__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin-top: 34px;
}

.clearwave-carousel-section .carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--accent-border);
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent);
  cursor: pointer;
  transition: all 0.4s var(--silk);
}

.clearwave-carousel-section .carousel-btn:hover,
.clearwave-carousel-section .carousel-btn:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: scale(1.05);
}

.clearwave-carousel-section .carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.clearwave-carousel-section .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-border);
  cursor: pointer;
  transition: all 0.4s var(--silk);
}

.clearwave-carousel-section .carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--accent);
}

.faq-section {
  --accent: #1a7a6e;
  --accent-light: #5bbfb5;
  --accent-ghost: rgba(26, 122, 110, 0.08);
  --accent-border: rgba(26, 122, 110, 0.15);
  --text-1: #0d1e1c;
  --text-2: #556562;
  --border: rgba(133, 133, 133, 0.08);
  --silk: cubic-bezier(0.16, 1, 0.3, 1);
  padding: 100px 0;
  background: #ffffff;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2.6fr;
  gap: 80px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq-section .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  background: var(--accent-ghost);
  color: var(--accent);
  font-family: var(--site-font-family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-section .section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.faq-section .section-title {
  margin: 0;
  color: var(--text-1);
  font-family: var(--site-font-family);
  font-size: clamp(1.1rem, 3.2vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.faq-section .section-title em {
  color: var(--accent);
  font-family: var(--site-font-family);
  font-style: italic;
}

.faq-section .section-sub {
  max-width: 720px;
  margin: 16px 0 32px;
  color: var(--text-2);
  font-family: var(--site-font-family);
  font-size: 1rem;
  line-height: 1.75;
}

.faq-toggle-all {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.3s;
}

.faq-toggle-all:hover,
.faq-toggle-all:focus-visible {
  opacity: 0.75;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  color: var(--text-1);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.faq-question:hover,
.faq-question:focus-visible {
  color: var(--accent);
}

.faq-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--accent-border);
  border-radius: 50%;
  color: var(--accent);
  font-size: 16px;
  font-weight: 300;
  transition:
    transform 0.5s var(--silk),
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--silk);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  padding-bottom: 0;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
  transition: padding-bottom 0.5s var(--silk);
}

.faq-answer-inner > :first-child {
  margin-top: 0;
}

.faq-answer-inner > :last-child {
  margin-bottom: 0;
}

.faq-answer-inner p,
.faq-answer-inner ol,
.faq-answer-inner ul {
  margin: 0 0 14px;
}

.faq-answer-inner ol,
.faq-answer-inner ul {
  padding-left: 20px;
}

.faq-answer-inner li + li {
  margin-top: 8px;
}

.faq-answer-inner ul ul,
.faq-answer-inner ol ul,
.faq-answer-inner ul ol,
.faq-answer-inner ol ol {
  margin-top: 8px;
  margin-bottom: 0;
}

.faq-answer-inner strong {
  color: var(--text-1);
}

.faq-answer-inner a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item.open .faq-answer-inner {
  padding-bottom: 20px;
}

@keyframes banner-skeleton-shimmer {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

.calculator-page {
  padding: 32px 0 96px;
  /* background:
    radial-gradient(circle at top left, rgba(255, 0, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #fff8f8 0%, #ffffff 100%); */
}

.calculator-page__hero {
  margin-bottom: 36px;
}

.calculator-page__lead {
  max-width: 760px;
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.calculator-page__lead strong {
  font-weight: 700;
}

.calculator-page__lead-block {
  display: grid;
  gap: 18px;
}

.calculator-page__status {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.7;
}

.calculator-page__alert {
  max-width: 900px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 0, 0, 0.16);
  border-left: 4px solid #ff0000;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
}

.calculator-page__alert--warning {
  margin-top: 0;
}

.calculator-page__alert p {
  margin: 0;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.7;
}

.calculator-page__alert p + p {
  margin-top: 12px;
}

.calculator-page__alert a,
.calculator-form__subtitle a,
.calculator-info a {
  color: #ff0000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calculator-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.95fr);
  gap: 30px;
  align-items: start;
}

.calculator-sidebar {
  display: grid;
  gap: 24px;
  align-content: start;
}

.calculator-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(20, 20, 20, 0.08);
}

.calculator-form {
  padding: 32px;
}

.calculator-summary {
  padding: 28px;
}

.calculator-form__section + .calculator-form__section {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.calculator-form__section-title {
  margin: 0 0 18px;
  color: #111111;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.5;
}

.calculator-info__title {
  margin: 0;
  color: #111111;
  font-size: 28px;
  line-height: 1.2;
}

.calculator-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.calculator-column {
  display: grid;
  gap: 24px;
  align-content: start;
}

.calculator-group {
  display: grid;
  gap: 18px;
  align-content: start;
}

.input-wrapper {
  display: grid;
  gap: 10px;
}

.calculator-field__label,
.label {
  color: #111111;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.calculator-field__input {
  width: 100%;
  min-height: auto;
  padding: 0.55em 0.7em;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  color: #111111;
  background: #ffffff;
  font-size: 1em;
  line-height: 1.4;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.calculator-field__input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.calculator-field__input:focus {
  border-color: rgba(255, 0, 0, 0.5);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.08);
}

.calculator-field__input.is-empty {
  border-color: rgba(255, 0, 0, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 0, 0, 0.1);
}

.calculator-form__section--results .calculator-field__input {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #27b7b0;
  font-size: 1.35em;
  font-weight: 700;
  line-height: 1.3;
  pointer-events: none;
}

.calculator-form__section--results .calculator-field__input:focus,
.calculator-form__section--results .calculator-field__input.is-empty {
  border: 0;
  box-shadow: none;
}

.input-wrapper--accent .calculator-field__input,
.input-wrapper--total .calculator-field__input {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #27b7b0;
  font-size: 1.35em;
  font-weight: 700;
  line-height: 1.3;
  pointer-events: none;
}

.input-wrapper--accent .calculator-field__input:focus,
.input-wrapper--total .calculator-field__input:focus,
.input-wrapper--accent .calculator-field__input.is-empty,
.input-wrapper--total .calculator-field__input.is-empty {
  border: 0;
  box-shadow: none;
}

.calculator-info {
  padding: 28px;
}

.calculator-info__section + .calculator-info__section {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.calculator-info__section p {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.75;
}

.calculator-info__section p + p {
  margin-top: 12px;
}

.calculator-info__list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: rgba(0, 0, 0, 0.72);
}

.calculator-info__list li + li {
  margin-top: 10px;
}

.calculator-info__section--meta {
  color: rgba(0, 0, 0, 0.52);
  font-size: 14px;
}

.calculator-info__section--warning {
  color: #b00000;
}

@media (max-width: 991.98px) {
  .header-top__layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .searchform {
    justify-content: center;
    width: 100%;
  }

  .social-media {
    justify-content: center;
  }

  .site-nav-wrap {
    background: #000000;
  }

  .navbar-toggler {
    display: inline-flex;
  }

  .navbar-collapse {
    display: none;
    justify-content: stretch;
    justify-self: center;
    padding-bottom: 10px;
  }

  .navbar-collapse.is-open {
    display: flex;
    justify-content: center;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    width: max-content;
  }

  .nav-link {
    justify-content: space-between;
    padding: 11px 0;
    color: rgba(0, 0, 0, 0.7);
  }

  .nav-link::before {
    display: none;
  }

  .nav-link:hover,
  .nav-link:focus-visible,
  .nav-item--active > .nav-link {
    color: #ff0000;
  }

  .banner-slider__carousel .owl-nav {
    display: none;
  }

  .banner-slide--content {
    background-position: 68% center;
  }

  .banner-slide__content {
    width: min(56%, 480px);
  }

  .banner-slide__text {
    max-width: 30ch;
  }

  .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-item--button {
    margin-left: 0;
  }

  .nav-item:last-child {
    border-bottom: 0;
  }

  .nav-link--button {
    padding: 11px 0;
    color: rgba(0, 0, 0, 0.7);
  }

  .nav-link--button .nav-link__icon {
    display: none;
  }

  .nav-link--button .nav-link__label {
    display: inline-block;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    padding: 0 0 8px;
    box-shadow: none;
    background: transparent;
  }

  .dropdown-item {
    padding: 8px 0 8px 18px;
    color: rgba(0, 0, 0, 0.8);
  }

  .dropdown-item:hover,
  .dropdown-item:focus-visible {
    background: transparent;
    color: #ff0000;
  }

  .accounting-services {
    padding-bottom: 6em;
  }

  .accounting-master-services .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services {
    margin-bottom: 30px;
  }

  .accounting-services__layout {
    grid-template-columns: 1fr;
  }

  .accounting-services__image {
    min-height: 520px;
  }

  .accounting-services__content {
    padding: 48px 24px 0;
  }

  .ftco-counter__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .call-to-action {
    padding: 72px 0;
  }

  .bell-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }

  .clearwave-carousel-section {
    --pw: 150px;
    --gap1: 168px;
    --gap2: 300px;
    --gap-hide: 430px;
  }

  .clearwave-carousel-section .carousel-stage {
    height: 400px;
  }

  .clearwave-carousel-section .phone-card[data-pos="left2"],
  .clearwave-carousel-section .phone-card[data-pos="right2"] {
    opacity: 0.35;
  }

  .faq-inner {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

  .calculator-page {
    padding: 64px 0 84px;
  }

  .calculator-page__layout {
    grid-template-columns: 1fr;
  }

  .calculator-columns {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 575.98px) {
  .container {
    width: min(100% - 24px, 1140px);
  }

  .testimony-section {
    padding-top: 6em;
  }

  .testimony-section .owl-nav {
    display: flex;
  }

  .ftco-section {
    padding: 6em 0;
  }

  .header-top {
    padding: 16px 0 18px;
  }

  .navbar-brand {
    font-size: 24px;
  }

  .searchform__group {
    width: min(100%, 300px);
  }

  .stores-logos {
    padding: 3em 0;
  }

  .banner-slide--content {
    aspect-ratio: 16 / 10;
    background: var(--banner-bg) 72% center / cover no-repeat;
  }

  .banner-slide__container {
    align-items: flex-end;
    padding: 28px 0 32px;
  }

  .banner-slide__content {
    width: min(100%, 320px);
    gap: 14px;
  }

  .banner-slide__title {
    font-size: clamp(20px, 4vw, 32px);
  }

  .banner-slide__text {
    max-width: 24ch;
    font-size: 15px;
  }

  .banner-slide__button {
    min-height: 46px;
    padding: 0 24px;
  }

  .stores-logos__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .stores-logos__image {
    max-width: clamp(62px, 22vw, 91px);
    max-height: clamp(16px, 5.2vw, 27px);
  }

  .ftco-counter {
    padding: 1em 0;
  }

  .ftco-counter__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ftco-counter .text .number {
    font-size: 44px;
  }

  .call-to-action {
    padding: 56px 0;
  }

  .call-to-action h3 {
    font-size: 26px;
  }

  .call-to-action p {
    font-size: 15px;
  }

  .call-to-action .cta-btn {
    padding: 12px 28px;
  }

  .accounting-services {
    padding-bottom: 4.5em;
  }

  .accounting-master-services .row {
    grid-template-columns: 1fr;
  }

  .accounting-master-services .col-md-6,
  .accounting-master-services .col-lg-3 {
    padding: 0 12px;
  }

  .accounting-services__image {
    min-height: 320px;
  }

  .accounting-services__content {
    padding: 32px 16px 0;
  }

  .accounting-services__heading {
    margin-bottom: 24px;
  }

  .heading-section .subheading {
    margin-bottom: 10px;
  }

  .heading-section h2 {
    font-size: 28px;
  }

  .services-2 {
    gap: 16px;
  }

  .services .icon {
    top: -10px;
    left: -10px;
  }

  .services .icon span {
    font-size: 64px;
  }

  .services .media-body h3 {
    font-size: 18px;
    margin-left: 2em;
  }

  .services .media-body p {
    font-size: 15px;
    line-height: 1.7;
  }

  .services-2 .icon {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }

  .services-2 .icon span {
    font-size: 30px;
  }

  .services-2 .text h4 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .services-2 .text p {
    font-size: 15px;
    line-height: 1.7;
  }

  .bell-services {
    padding: 64px 0 56px;
  }

  .bell-services__section-title {
    padding-bottom: 40px;
  }

  .bell-services__section-title h2 {
    font-size: 28px;
  }

  .bell-services__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bell-services__item {
    gap: 16px;
  }

  .bell-services__icon {
    flex-basis: 31px;
    width: 31px;
    height: 31px;
  }

  .bell-services__icon img {
    width: 14px;
    height: 14px;
  }

  .bell-services__title {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .bell-services__description {
    line-height: 1.65;
  }

  .clearwave-carousel-section {
    padding: 88px 0;
  }

  .clearwave-carousel-section .container {
    width: min(100% - 24px, 1140px);
  }

  .clearwave-carousel-section .section-title {
    font-size: 28px;
  }

  .clearwave-carousel-section .section-sub {
    font-size: 15px;
    line-height: 1.7;
  }

  .clearwave-carousel-section__controls {
    gap: 18px;
    margin-top: 36px;
  }

  .clearwave-carousel-section .carousel-stage {
    height: 340px;
  }

  .clearwave-carousel-section {
    --pw: 128px;
    --gap1: 136px;
    --gap2: 228px;
    --gap-hide: 320px;
  }

  .faq-section {
    padding: 88px 0;
  }

  .faq-section .section-title {
    font-size: 28px;
  }

  .faq-section .section-sub {
    font-size: 15px;
    line-height: 1.7;
  }

  .calculator-page {
    padding: 52px 0 72px;
  }

  .calculator-page__lead {
    font-size: 16px;
  }

  .calculator-page__alert,
  .calculator-form,
  .calculator-info {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .calculator-info__title {
    font-size: 24px;
  }

  .calculator-field__input {
    padding: 0.55em 0.7em;
  }

  .calculator-form__section--results .calculator-field__input,
  .input-wrapper--accent .calculator-field__input,
  .input-wrapper--total .calculator-field__input {
    font-size: 1.35em;
  }
}
