@import "./fonts/stylesheet.css";
html,
body {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

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

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "Proxima Nova", sans-serif;
  color: #495464;
  background: #f5f5f5;
  font-weight: 500;
  font-size: 28px;
  line-height: 140%;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #fdfdfd;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}

h1 {
  font-family: "Futura", sans-serif;
  font-weight: 500;
  font-size: 65px;
  line-height: 135%;
  color: #04134a;
}
h1 span {
  color: #64ccc5;
}

h2 {
  font-family: "Futura", sans-serif;
  font-weight: 500;
  font-size: 65px;
  line-height: 135%;
}

h3 {
  font-family: "Futura", sans-serif;
  font-weight: 500;
  font-size: 45px;
  line-height: 133%;
}

h4 {
  font-weight: 700;
  font-size: 28px;
  line-height: 122%;
}

p.big {
  font-weight: 500;
  font-size: 32px;
  line-height: 139.6%;
  color: #495464;
}
p.sm {
  font-size: 21px;
  line-height: 125%;
}

.main {
  overflow: hidden;
}

.anchor {
  position: relative;
  top: -60px;
}

.topBtn {
  position: fixed;
  right: 3.5vw !important;
  bottom: 4vh;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
  cursor: pointer;
  filter: brightness(50%) saturate(100%); 
}

.topBtn:hover {
  opacity: 0.8;
}
.topBtn img {
  width: 100%;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: "Proxima Nova", sans-serif;
}
.button.primary {
  font-weight: 600;
  font-size: 21px;
  line-height: 26px;
  color: #fdfdfd;
  padding: 16px 32px;
  background: #64ccc5;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 100px;
}
.button.primary:hover {
  opacity: 1;
  background-color: #04134a;
}
.button.big {
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
}
.button svg {
  width: 44px;
  height: 44px;
  color: #fdfdfd;
  margin-right: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.header {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header .auto__container {
  max-width: 1440px;
  padding: 0 17px;
}
.header.sticky {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  -webkit-animation-name: sticky;
          animation-name: sticky;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}
.header__inner {
  padding: 28px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.header__inner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(244, 244, 242, 0.85);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.header__inner-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 192px;
  position: relative;
}
.header__inner-logo img {
  width: 100%;
}

@-webkit-keyframes sticky {
  0% {
    top: 0;
    opacity: 0;
  }
  100% {
    top: 20px;
    opacity: 1;
  }
}

@keyframes sticky {
  0% {
    top: 0;
    opacity: 0;
  }
  100% {
    top: 20px;
    opacity: 1;
  }
}
.nav {
  width: calc(100% - 224px);
  position: relative;
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav__inner-logo {
  display: none;
}
.nav__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner-links.mob {
  display: none;
}
.nav__inner-links li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner-links li a {
  font-weight: 600;
  font-size: 21px;
  line-height: 26px;
  color: #04134a;
  padding: 16px 32px;
  white-space: nowrap;
}
.nav__inner-links li a:hover {
  color: #64ccc5;
  opacity: 1;
}

.burger {
  display: none;
}

.footer {
  position: relative;
  padding: 128px 0 20px;
  overflow: hidden;
}
.footer .auto__container {
  max-width: 1440px;
  padding: 0 17px;
  position: static;
}
.footer__bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 103%;
  height: 200%;
  border-radius: 48% 48% 0 0;
  overflow: hidden;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}
.footer__bg::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 97%;
  height: 50%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(237, 237, 237, 0.38)), color-stop(23.44%, rgba(236, 236, 236, 0.38)), color-stop(47.59%, rgba(229, 229, 229, 0.38)), to(rgba(0, 0, 0, 0.38)));
  background: linear-gradient(180deg, rgba(237, 237, 237, 0.38) 0%, rgba(236, 236, 236, 0.38) 23.44%, rgba(229, 229, 229, 0.38) 47.59%, rgba(0, 0, 0, 0.38) 100%);
  z-index: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footer__bg::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 97%;
  height: 50%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e6e6), color-stop(35.57%, #e5e5e5), color-stop(48.38%, #e3e3e3));
  background: linear-gradient(180deg, #e6e6e6 0%, #e5e5e5 35.57%, #e3e3e3 48.38%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footer__inner-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 120px;
}
.footer__inner-image {
  width: 212px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.footer__inner-image img {
  width: 100%;
}
.footer__inner h2 {
  margin-bottom: 32px;
  color: #fdfdfd;
  position: relative;
  z-index: 2;
}
.footer__inner .button {
  position: relative;
  z-index: 2;
}
.footerMain {
  border-radius: 200px;
  padding: 44px 90px 10px;
  background: rgba(244, 244, 242, 0.85);
  position: relative;
  z-index: 2;
}
.footerMain__row {
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1150px;
  margin: 0 auto 16px;
}
.footerMain__row hr {
  width: 35%;
  height: 24px;
  background: #fdfdfd;
  border-radius: 60px;
}
.footerMain__logo {
  width: 255px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footerMain__logo img {
  width: 100%;
}
.footerMain__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1070px;
  margin: 0 auto 16px;
}
.footerMain__links a {
  font-weight: 600;
  font-size: 21px;
  line-height: 124%;
  color: #04134a;
  padding: 16px 32px;
  margin-right: 16px;
}
.footerMain__links a:hover {
  opacity: 1;
  color: #64ccc5;
}
.footerMain__links a:last-child {
  margin: 0;
}
.footerMain__links a b {
  display: none;
}
.footerMain__copy {
  text-align: center;
}
.footerMain__copy p {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #c5c5c5;
}

.treat .auto__container {
  max-width: 1360px;
}
.treat__inner {
  padding: 80px 0 104px;
  position: relative;
}
.treat__inner.last::before {
  display: none;
}
.treat__inner::before {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(244, 244, 242, 0.85);
  border-radius: 60px;
  width: 100%;
  height: 24px;
  content: "";
}
.treat__inner-title {
  text-align: center;
  margin-bottom: 16px;
}
.treat__inner-row {
  max-width: 1090px;
  margin: 0 auto 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.treat__inner-row.big {
  max-width: 1260px;
}
.treat__inner-row.big .treat__inner-content {
  max-width: 828px;
}
.treat__inner-content {
  width: calc(66% - 15px);
  max-width: 670px;
}
.treat__inner-content h3 {
  margin-bottom: 16px;
  color: #04134a;
}
.treat__inner-content h3 b {
  font-weight: 500;
}
.treat__inner-content p b {
  font-weight: 700;
}
.treat__inner-image {
  width: calc(34% - 15px);
  max-width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.treat__inner-image img {
  width: 100%;
  border-radius: 9999px;
  mix-blend-mode: multiply;
}
.treat__inner-image img.mob {
  display: none;
}
.treat__inner h2 {
  color: #04134a;
}
.treatMain {
  max-width: 1216px;
  margin: 0 auto;
}
.treatMain__title {
  text-align: center;
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.treatMain__title h3 {
  color: #04134a;
}
.treatMain__title hr {
  width: 35%;
  height: 24px;
  background: #f4f4f2;
  border-radius: 60px;
}
.treatMain__content {
  position: relative;
}
.treatMain__image {
  width: 51%;
  max-width: 615px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.treatMain__image.big {
  width: 54%;
  max-width: 653px;
}
.treatMain__image img {
  width: 100%;
}
.treatMain__image img.mob {
  display: none;
}
.treatMain__list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.treatItem {
  width: calc(45% - 6px);
  max-width: 543px;
  position: absolute;
}
.treatItem.topl {
  left: 0;
  top: 22px;
}
.treatItem.topl2 {
  left: 10px;
  top: 8%;
}
.treatItem.topl3 {
  left: 0;
  top: 6%;
}
.treatItem.topr {
  right: 6%;
  top: 0;
}
.treatItem.topr2 {
  top: 0;
  right: 7%;
}
.treatItem.topr3 {
  top: 20%;
  right: 0;
}
.treatItem.midl {
  top: 39%;
  left: 3%;
}
.treatItem.midl2 {
  top: 38%;
  left: 18px;
}
.treatItem.midl3 {
  top: 39%;
  left: 0;
}
.treatItem.midr {
  top: 28%;
  right: 4%;
}
.treatItem.midr2 {
  top: 30%;
  right: 10px;
}
.treatItem.botl {
  top: 74%;
  left: 0;
}
.treatItem.botl2 {
  top: 79%;
  left: 18px;
}
.treatItem.botl p {
  width: 75%;
  max-width: unset;
}
.treatItem.botr {
  top: 60%;
  right: 6%;
}
.treatItem.botr2 {
  top: 71%;
  right: 4%;
}
.treatItem.right {
  text-align: end;
}
.treatItem.right .treatItem__body {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-left: unset;
  border-right: 4px solid #64ccc5;
}
.treatItem.right span::before {
  right: unset;
  left: 0;
}
.treatItem__title {
  position: relative;
  padding: 0 16px 16px 16px;
  cursor: pointer;
  > h4:hover{
    color: #64ccc5;
    transition: all 0.2s ease;
  }
}
.treatItem__title h4 {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.treatItem__title span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #64ccc5;
  pointer-events: none;
}
.treatItem__title span::before {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #64ccc5;
  content: "";
  border-radius: 50%;
}
.treatItem__body {
  padding: 16px 16px 0;
  border-left: 4px solid #64ccc5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.treatItem__body p {
  width: 70%;
  max-width: 340px;
}
.treatItem h4 {
  color: #04134a;
}

.hero {
  background: -webkit-gradient(linear, left top, left bottom, from(#e2e2e2), color-stop(49%, #e3e3e3), to(#e4e4e4));
  background: linear-gradient(180deg, #e2e2e2 0%, #e3e3e3 49%, #e4e4e4 100%);
  position: relative;
}
.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(126, 126, 126, 0.08);
}
.hero .auto__container {
  max-width: 1260px;
}
.hero__inner {
  padding: 210px 0;
  /* min-height: 100vh; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: center;
  position: relative;
}
.hero__inner-content {
  width: calc(56% - 15px);
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.hero__inner-image {
  width: calc(44% - 15px);
  max-width: 500px;
  padding-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero__inner-image img {
  width: 100%;
}
.hero__inner-arrow {
  position: absolute;
  bottom: 85px;
  left: 0;
  width: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero__inner-arrow img {
  width: 100%;
}
.hero__inner h1 {
  /* margin-bottom: 32px; */
  line-height: 1.2;
}
.heroFoot {
  display: none;
}

.about {
  padding: 160px 0;
}
.about__inner-title {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.about__inner h2 {
  margin-bottom: 16px;
  color: #04134a;
}

.banner {
  position: relative;
  padding: 152px 0;
  margin-bottom: 80px;
}
.banner.big {
  margin: 80px 0 0 0;
}
.banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.banner__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(100, 204, 197, 0)), to(rgba(100, 204, 197, 0.4)));
  background: linear-gradient(90deg, rgba(100, 204, 197, 0) 0%, rgba(100, 204, 197, 0.4) 100%);
  content: "";
}
.banner__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.2);
}
.banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.banner__inner-title {
  width: 80%;
  max-width: 1064px;
  margin: 0 auto;
  text-align: center;
}
.banner__inner h2 {
  color: #fdfdfd;
}

.solution {
  padding: 160px 0;
}
.solution__inner-title {
  text-align: center;
  margin-bottom: 32px;
}
.solution__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 952px;
  margin: 0 auto;
}
.solution__inner h2 {
  color: #04134a;
  margin-bottom: 16px;
}
.solutionItem {
  position: relative;
  width: calc(50% - 20px);
  max-width: 396px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.solutionItem:hover{
  color: #64ccc5;
}

.solutionItem:hover .solutionItem__image img {
  filter: brightness(1) sepia(0.6) hue-rotate(135deg) saturate(1) contrast(1);
  transition: all 0.2s ease;
}
/* .solutionItem:hover .solutionItem__image::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #64ccc517;
  
} */



.solutionItem__image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}



.solutionItem__image img {
  width: 100%;
}
.solutionItem h3 {
  margin-bottom: 32px;
}

.team {
  padding-bottom: 160px;
}
.team .auto__container {
  max-width: 1310px;
}
.team__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.team__inner-content {
  width: calc(45% - 15px);
  max-width: 520px;
}
.team__inner-content p {
  margin-bottom: 32px;
}
.team__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(55% - 15px);
  max-width: 632px;
}
.team__inner h2 {
  color: #04134a;
  margin-bottom: 16px;
}
.team__inner h2 span {
  color: #64ccc5;
}
.teamItem {
  width: calc(50% - 12px);
  max-width: 300px;
  text-align: center;
  position: relative;
  margin-top: 140px;
}
.teamItem:first-child {
  margin: 0;
}
.teamItem__image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.teamItem__image img {
  width: 100%;
}
.teamItem__content {
  position: absolute;
  bottom: 9%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  padding: 0 30px;
}
.teamItem h4 {
  color: #64ccc5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.teamItem p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.terms {
  padding: 210px 0 100px;
  background-color: #fdfdfd;
}
.terms .auto__container {
  padding: 0 40px;
  max-width: 1370px;
}
.terms__inner-title {
  margin-bottom: 32px;
}
.terms__inner-title h3 {
  color: #04134a;
  margin: 16px 0 24px;
}
.terms__inner ul {
  padding-left: 35px;
}
.terms__inner ul li {
  list-style: disc;
}

@media (max-width: 1380px) {
  h1,
  h2 {
    font-size: 55px;
  }
  h3 {
    font-size: 40px;
  }
  /* .topBtn {
    right: 40px;
    bottom: 40px;
  } */



  .header {
    top: 15px;
  }
  .header.sticky {
    top: 15px;
  }
  .header .auto__container {
    padding: 0 10px;
  }
  .header__inner {
    padding: 24px 30px;
  }
  .header__inner-logo {
    width: 170px;
  }
  @-webkit-keyframes sticky {
    0% {
      top: 0;
      opacity: 0;
    }
    100% {
      top: 15px;
      opacity: 1;
    }
  }
  @keyframes sticky {
    0% {
      top: 0;
      opacity: 0;
    }
    100% {
      top: 15px;
      opacity: 1;
    }
  }
  .nav {
    width: calc(100% - 200px);
    max-width: 1000px;
  }
  .nav__inner-links li a {
    font-size: 20px;
    line-height: 24px;
    padding: 14px 24px;
  }
  .nav__inner .button {
    font-size: 20px;
    line-height: 24px;
    padding: 14px 24px;
  }
  .hero__inner-arrow {
    width: 70px;
    bottom: 40px;
  }
  .footer {
    padding: 70px 0 20px;
  }
  .footer__inner-top {
    margin-bottom: 70px;
  }
  .footer__inner-image {
    margin-bottom: 20px;
  }
  .footer__inner h2 {
    margin-bottom: 20px;
  }
  .footerMain {
    padding: 30px 70px 5px;
  }
  .footerMain__row hr {
    height: 20px;
  }
  .footerMain__logo {
    width: 230px;
  }
  .footerMain__links a {
    font-size: 18px;
    padding: 14px 25px;
  }
}
@media (max-width: 1180px) {
  .auto__container {
    padding: 0 30px;
  }
  h1,
  h2 {
    font-size: 45px;
  }
  h3 {
    font-size: 35px;
  }
  h4 {
    font-size: 24px;
  }
  p.big {
    font-size: 26px;
  }
  p.sm {
    font-size: 18px;
  }
  body {
    font-size: 24px;
  }
  /* .topBtn {
    right: 30px;
    bottom: 30px;
  } */
  .button.big {
    font-size: 22px;
  }
  .button svg {
    width: 34px;
    height: 34px;
  }
  .header__inner {
    padding: 20px;
  }
  .header__inner-logo {
    width: 150px;
  }
  .nav {
    width: calc(100% - 170px);
    max-width: 900px;
  }
  .nav__inner-links li a {
    font-size: 18px;
    line-height: 24px;
    padding: 14px 24px;
  }
  .nav__inner .button {
    font-size: 18px;
    line-height: 24px;
    padding: 14px 24px;
  }
  .hero__inner {
    padding: 180px 0;
  }
  .hero__inner-image {
    padding-top: 20px;
  }
  .hero__inner-arrow {
    bottom: 30px;
  }
  .about {
    padding: 120px 0;
  }
  .banner {
    padding: 110px 0;
    margin-bottom: 60px;
  }
  .banner.big {
    margin-top: 60px;
  }
  .solution {
    padding: 110px 0;
  }
  .team {
    padding-bottom: 110px;
  }
  .teamItem {
    margin-top: 100px;
    width: calc(50% - 8px);
  }
  .treat__inner {
    padding: 60px 0 80px;
  }
  .treat__inner::before {
    height: 20px;
  }
  .treat__inner-row {
    margin-bottom: 60px;
  }
  .treatMain__title {
    margin-bottom: 60px;
  }
  .treatMain__title hr {
    height: 20px;
  }
  .treatItem {
    width: calc(48% - 6px);
  }
  .treatItem.topl {
    top: 14px;
  }
  .treatItem.topr {
    right: 2%;
  }
  .treatItem.topr2 {
    right: 2%;
  }
  .treatItem.midl {
    left: 2%;
  }
  .treatItem.midr {
    right: 0;
  }
  .treatItem.midr2 {
    right: 0;
  }
  .treatItem.botr {
    right: 2%;
  }
  .treatItem.botr2 {
    right: 2%;
  }
  .treatItem__title {
    padding: 0 14px 14px;
  }
  .treatItem__body {
    padding: 14px 14px 0;
  }
  .footer {
    padding: 50px 0 16px;
  }
  .footer__inner-top {
    margin-bottom: 50px;
  }
  .footer__inner-image {
    width: 190px;
    margin-bottom: 16px;
  }
  .footer__inner h2 {
    margin-bottom: 16px;
  }
  .footerMain {
    padding: 25px 50px 10px;
  }
  .footerMain__row hr {
    height: 16px;
  }
  .footerMain__logo {
    width: 190px;
  }
  .footerMain__links {
    margin-bottom: 10px;
  }
  .footerMain__links a {
    font-size: 16px;
    padding: 10px 20px;
    margin-right: 10px;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }
  h4 {
    font-size: 20px;
  }
  p.sm {
    font-size: 15px;
  }
  .button.primary {
    font-size: 17px;
    line-height: 21px;
  }
  .button.big {
    font-size: 19px;
  }
  .button svg {
    width: 28px;
    height: 28px;
  }
  .anchor {
    top: 0;
  }
  .header {
    top: 0;
  }
  .header .auto__container {
    padding: 0 30px;
  }
  .header.sticky {
    top: 0;
    position: absolute;
    -webkit-animation: unset;
            animation: unset;
  }
  .header__inner {
    padding: 48px 0;
    background-color: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header__inner::before {
    display: none;
  }
  .header__inner-logo {
    width: 143px;
  }
  .header__inner-logo.mobRem {
    display: none;
  }
  body.active {
    overflow: hidden;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: unset;
    height: 100%;
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 242px;
    z-index: 1;
    padding: 0;
    height: 100%;
    overflow-y: auto;
  }
  .nav__inner-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 50px 30px 15px 30px;
    background-color: #f4f4f2;
    border-radius: 0 30px 30px 0;
  }
  .nav__inner-logo img {
    width: 143px;
  }
  .nav__inner-links {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .nav__inner-links.mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav__inner-links li {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .nav__inner-links li:first-child a {
    min-width: 206px;
  }
  .nav__inner-links li a {
    font-weight: 600;
    font-size: 17px;
    line-height: 21px;
    padding: 16px 36px 16px 32px;
    background-color: #f4f4f2;
    border-radius: 0 100px 100px 0;
  }
  .nav__inner .button {
    font-weight: 600;
    font-size: 17px;
    line-height: 21px;
    color: #fdfdfd;
    padding: 16px 36px 16px 32px;
    border-radius: 0 100px 100px 0;
  }
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: fixed;
    top: 30px;
    left: 20px;
    width: 64px;
    height: 64px;
    background-color: #64ccc5;
    border-radius: 50%;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger__inner {
    width: 24px;
    height: 24px;
    position: relative;
  }
  .burger__inner::before {
    top: 12%;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger__inner span {
    top: 50%;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .burger__inner::after {
    bottom: 12%;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger.active .burger__inner::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active .burger__inner span {
    opacity: 0;
  }
  .burger.active .burger__inner::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }
  .hero__inner {
    padding: 160px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero__inner-image {
    padding-top: 0;
  }
  .footer {
    padding: 40px 0 16px;
  }
  .footer__inner-image {
    width: 130px;
  }
  .footer__inner-top {
    margin-bottom: 40px;
  }
  .footerMain {
    border-radius: 100px;
  }
  .footerMain__row hr {
    height: 12px;
  }
  .footerMain__logo {
    width: 160px;
  }
  .footerMain__links {
    margin-bottom: 5px;
  }
  .footerMain__links a {
    font-size: 15px;
    padding: 8px 15px;
    margin-right: 8px;
  }
  .footerMain__copy p {
    font-size: 14px;
  }
  .terms {
    padding: 140px 0 100px;
  }
  .terms__inner-title h3 {
    font-size: 21px;
    margin: 8px 0 16px;
  }
  .terms__inner-title p.sm {
    font-size: 15px;
  }
  .terms__inner ul {
    padding-left: 20px;
  }
}
@media (max-width: 930px) {
  h1,
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 17px;
  }
  p.big {
    font-size: 23px;
  }
  p.sm {
    font-size: 13px;
  }
  body {
    font-size: 20px;
  }
  .about {
    padding: 80px 0;
  }
  .banner {
    padding: 70px 0;
    margin-bottom: 30px;
  }
  .banner.big {
    margin-top: 30px;
  }
  .solution {
    padding: 80px 0;
  }
  .solutionItem {
    width: calc(50% - 12px);
  }
  .solutionItem h3 {
    margin-bottom: 20px;
  }
  .team {
    padding-bottom: 80px;
  }
  .team__inner-content p {
    margin-bottom: 20px;
  }
  .teamItem {
    margin-top: 60px;
  }
  .teamItem__content {
    padding: 0 20px;
  }
  .teamItem h4 {
    margin-bottom: 2px;
  }
  .treat__inner {
    padding: 40px 0 60px;
  }
  .treat__inner::before {
    height: 16px;
  }
  .treat__inner-row {
    margin-bottom: 40px;
  }
  .treatMain__title {
    margin-bottom: 40px;
  }
  .treatMain__title hr {
    height: 16px;
  }
  .treatItem {
    width: calc(48% - 6px);
  }
  .treatItem.topl {
    top: 10px;
  }
  .treatItem.topr {
    right: 2%;
  }
  .treatItem.midl {
    left: 2%;
  }
  .treatItem.midr {
    right: 0;
  }
  .treatItem.botr {
    right: 2%;
  }
  .treatItem__title {
    padding: 0 10px 10px;
  }
  .treatItem__title span {
    height: 3px;
  }
  .treatItem__title span::before {
    width: 15px;
    height: 15px;
  }
  .treatItem__body {
    padding: 10px 10px 0;
    border-width: 3px !important;
  }
  .footer {
    padding: 30px 0 10px;
  }
  .footer__inner-image {
    width: 100px;
  }
  .footer__inner-top {
    margin-bottom: 30px;
  }
  .footerMain__logo {
    width: 140px;
  }
  .footerMain__links {
    margin-bottom: 5px;
  }
  .footerMain__links a {
    font-size: 14px;
    padding: 8px 12px;
    margin-right: 5px;
  }
  .footerMain__copy p {
    font-size: 14px;
  }
}
@media (max-width: 750px) {
  .auto__container {
    padding: 0 20px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 25px;
  }
  h4 {
    font-size: 15px;
  }
  /* .topBtn {
    right: 20px;
    bottom: 20px;
  } */
  p.big {
    font-size: 20px;
  }
  body {
    font-size: 18px;
  }
  .button.big {
    font-size: 17px;
  }
  .button svg {
    width: 24px;
    height: 24px;
  }
  .header .auto__container {
    padding: 0 20px;
  }
  .hero {
    background: #fdfdfd;
    min-height: 100vh;
  }
  .hero .auto__container {
    padding: 0;
  }
  .hero::before {
    display: none;
  }
  .heroTop {
    background: -webkit-gradient(linear, right top, left top, from(#e1e1e1), to(#e2e2e2));
    background: linear-gradient(270deg, #e1e1e1 0%, #e2e2e2 100%);
    border-radius: 0px 0px 60px 60px;
  }
  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: unset;
    padding: 150px 40px 30px;
  }
  .hero__inner-image {
    width: 66%;
    max-width: 300px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 70px;
  }
  .hero__inner-content {
    width: 100%;
    max-width: unset;
    text-align: center;
  }
  .hero__inner-content p {
    display: none;
  }
  .hero__inner-arrow {
    display: none;
  }
  .hero__inner h1 {
    margin: 0;
  }
  .heroFoot {
    display: block;
    padding: 24px 40px 170px 40px;
  }
  .heroFoot .auto__container {
    position: static;
  }
  .heroFoot__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .heroFoot__inner-arrow {
    position: absolute;
    bottom: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 86px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .heroFoot__inner-arrow img {
    width: 100%;
  }
  .heroFoot__inner p {
    width: 90%;
    text-align: center;
    margin-bottom: 24px;
  }
  .about {
    padding: 30px 0 60px;
  }
  .team__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .team__inner-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .team__inner-row {
    width: 100%;
  }
  .teamItem {
    margin-top: 140px;
  }
  .teamItem h4 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .teamItem p {
    font-size: 18px;
  }
  .treat__modals {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px;
  }
  .treatItem__body {
    display: none;
  }
  .treatItem__title {
    padding: 0 0 12px 0;
  }
  .treatCard {
    margin: auto;
    width: 100%;
    max-width: 358px;
    padding: 55px 38px 20px 38px;
    position: relative;
    background: #fdfdfd;
    border-radius: 16px;
  }
  .treatCard__close {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .treatCard__close:hover {
    opacity: 0.9;
  }
  .treatCard__close img {
    width: 100%;
  }
  .treatCard__title {
    padding-bottom: 16px;
    position: relative;
    margin-bottom: 16px;
  }
  .treatCard__title span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #64ccc5;
  }
  .treatCard__title span::before {
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #64ccc5;
    content: "";
    border-radius: 50%;
  }
  .treatCard__title h4 {
    color: #04134a;
    font-size: 17px;
  }
  .treatCard__body p {
    color: #04134a;
  }
  .footer {
    padding: 0;
  }
  .footer .auto__container {
    padding: 0;
  }
  .footer__inner-top {
    position: relative;
    padding: 40px 0;
    margin: 0;
  }
  .footerMain {
    background-color: #f4f4f2;
    padding: 32px 0;
    background: rgba(244, 244, 242, 0.85);
  }
  .footerMain__row {
    width: 100%;
    max-width: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 16px;
  }
  .footerMain__row hr {
    display: none;
  }
  .footerMain__logo {
    width: 143px;
  }
  .footerMain__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -4px;
  }
  .footerMain__links a {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    padding: 16px 32px;
    margin: 4px;
  }
  .footerMain__links a b {
    font-weight: 600;
    display: block;
  }
  .footerMain__links a span {
    display: none;
  }
  .footerMain__copy {
    display: none;
  }
}
@media (max-width: 650px) {
  h2 {
    font-size: 25px;
  }
  .treat__inner {
    padding: 30px 0;
  }
  .treat__inner::before {
    display: none;
  }
  .treat__inner-title {
    margin-bottom: 32px;
  }
  .treat__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .treat__inner-image {
    width: 80%;
    max-width: 200px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .treat__inner-image img.mob {
    display: block;
  }
  .treat__inner-image img.desc {
    display: none;
  }
  .treat__inner-content {
    width: 100%;
    max-width: unset;
    text-align: center;
    margin-bottom: 16px;
  }
  .treatMain__title {
    margin-bottom: 32px;
  }
  .treatMain__title hr {
    width: 25%;
    height: 12px;
  }
  .treatMain__image img.mob {
    display: block;
  }
  .treatMain__image img.desc {
    display: none;
  }
}
@media (max-width: 540px) {
  .auto__container {
    padding: 0 15px;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 21px;
  }
  h3 {
    font-size: 17px;
  }
  h4 {
    font-size: 13px;
  }
  p.big {
    font-size: 17px;
  }
  body {
    font-size: 15px;
    line-height: 145%;
  }
  /* .topBtn {
    right: 15px;
    bottom: 15px;
  } */
  .header .auto__container {
    padding: 0 15px;
  }
  .banner {
    padding: 42px 0;
    margin-bottom: 45px;
  }
  .banner.big {
    margin-top: 45px;
  }
  .banner__inner h2 {
    font-size: 17px;
  }
  .solution {
    padding: 60px 0;
  }
  .solution__inner-title {
    margin-bottom: 30px;
  }
  .solution__inner-title p span {
    display: block;
  }
  .solutionItem {
    width: calc(50% - 8px);
  }
  .solutionItem h3 {
    margin-bottom: 16px;
  }
  .team {
    padding-bottom: 60px;
  }
  .team__inner-content {
    margin-bottom: 30px;
  }
  .team__inner-content p {
    margin-bottom: 16px;
  }
  .teamItem h4 {
    font-size: 17px;
    margin-bottom: 4px;
  }
  .teamItem p {
    font-size: 13px;
  }
  .treat__inner {
    padding: 15px 0;
  }
  .treat__inner-image {
    max-width: 170px;
  }
  .treatMain__image {
    width: 67%;
    max-width: 240px;
  }
  .treatMain__image.big {
    width: 67%;
    max-width: 240px;
  }
  .treatItem {
    width: calc(50% - 20px);
  }
  .treatItem.topl {
    top: -4px;
    left: 15px;
  }
  .treatItem.topl2 {
    top: -4px;
    left: 15px;
  }
  .treatItem.topl3 {
    top: -4px;
    left: 15px;
  }
  .treatItem.topr {
    top: 12px;
    right: 0;
  }
  .treatItem.topr2 {
    top: 12px;
    right: 0;
  }
  .treatItem.topr3 {
    right: 2%;
    top: 26%;
  }
  .treatItem.midl {
    top: 18%;
    left: 0;
  }
  .treatItem.midl2 {
    top: 18%;
    left: 0;
  }
  .treatItem.midl3 {
    top: 12px;
    right: 0;
    left: unset;
  }
  .treatItem.midl3 .treatItem__title {
    text-align: end;
  }
  .treatItem.midl3 .treatItem__title span::before {
    right: unset;
    left: 0;
  }
  .treatItem.midr {
    top: 23%;
    right: 0;
  }
  .treatItem.midr2 {
    top: 23%;
    right: 1%;
  }
  .treatItem.botl {
    top: 38%;
  }
  .treatItem.botl2 {
    top: 38%;
    left: 10px;
  }
  .treatItem.botr {
    right: 7px;
    top: 41%;
  }
  .treatItem.botr2 {
    right: 7px;
    top: 41%;
  }
  .treatItem__title {
    padding-bottom: 8px;
  }
  .treatItem__title span {
    height: 2px;
  }
  .treatItem__title span::before {
    width: 12px;
    height: 12px;
  }
  .treatItem__title h4 {
    line-height: 120%;
  }
  .footer__bg {
    width: 105%;
  }
  .footer__bg::before {
    width: 95%;
  }
  .footer__bg::after {
    width: 95%;
  }
  .footer__inner-top {
    padding: 36px 0;
  }
  .footer__inner-image {
    width: 54px;
    height: 54px;
  }
  .terms {
    padding: 90px 0 50px;
  }
  .terms__inner-title {
    text-align: center;
  }
}

.products{
  width: 100%;
  margin: 0px auto 160px;
  max-width: 1260px;
  .auto__container .products__inner{
    display: flex;
    justify-content: center;
    align-items: center;
    
    >:first-child{
      border-top-left-radius: 170px;
      border-bottom-left-radius: 170px;
    }
    >:last-child{
      border-top-right-radius: 170px;
      border-bottom-right-radius: 170px;
    }
    .products__inner-image{
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      width: 50%;
      aspect-ratio: 1/1;
      img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 600px;
      }
    }
  }
}



._access-icon {
  /* Existing properties... */
  
  /* Hide the original content */
  position: fixed;
  /* right: 3% !important;
  bottom: 4vh; */
  width: 64px;
  height: 64px;
  color: transparent !important; /* Hide text content */
  font-size: 0 !important; /* Reduce text size to zero */
  opacity: 1 !important; /* Make sure the element itself is visible */
  background: transparent !important; /* Ensure no background shows */
  box-shadow: none !important;
  right: 3.55vw !important;
  bottom: max(13vh, 120px) !important;
}


/* Hide any images inside the icon */
._access-icon img, 
._access-icon i,
._access-icon span {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

._access-icon::after  {
  /* Your existing ::after styles */
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px; /* Match parent exactly */
  height: 64px; /* Match parent exactly */
  background-image: url(../images/accessable.svg);
  z-index: 99999;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1 !important; /* Ensure the after element is visible */
  filter: brightness(50%) saturate(100%); 
}

/* Change SVG color on hover using filters */
._access-icon:hover::after {
  /* This filter combination will create a teal color similar to #64ccc5 */
  filter: brightness(0) saturate(100%) invert(78%) sepia(16%) 
          saturate(800%) hue-rotate(135deg) brightness(92%) contrast(85%);
 
}