.home_first-bg {
  min-height: 40vh;
  background-image: linear-gradient(
    180deg,
    hsl(0, 0%, 100%) 0%,
    hsl(178, 24%, 92%) 11%,
    hsl(178, 24%, 85%) 22%,
    hsl(178, 24%, 78%) 33%,
    hsl(179, 24%, 70%) 44%,
    hsl(179, 25%, 63%) 56%,
    hsl(179, 25%, 55%) 67%,
    hsl(179, 28%, 47%) 78%,
    hsl(180, 42%, 39%) 89%,
    hsl(180, 82%, 28%) 100%
  );
}
.home_first-bg .absolute-bg {
  padding: 128px 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  overflow: hidden;
  z-index: 0;
}
.home_first-bg .absolute-bg .mountain-animation {
  position: absolute;
  width: 100%;
  bottom: 0;
}
@media screen and (min-width: 998px) {
  .home_first-bg .absolute-bg .mountain-animation {
    bottom: -100%;
    animation: animateMountain 1s 2s forwards;
  }
}
.home_first-bg .absolute-bg .cloud {
  position: absolute;
}
.home_first-bg .absolute-bg .cloud:nth-child(1) {
  top: 25%;
  left: 10%;
}
@media screen and (min-width: 998px) {
  .home_first-bg .absolute-bg .cloud:nth-child(1) {
    animation: animateleft 120s 2.5s infinite;
  }
  @keyframes animateleft {
    0% {
      left: 10%;
    }
    35% {
      left: calc(100vw - 10%);
    }
    70% {
      left: calc(-10vw + 10%);
    }
    100% {
      left: 10%;
    }
  }
}
.home_first-bg .absolute-bg .cloud:nth-child(2) {
  top: 60%;
  left: 17%;
}
@media screen and (min-width: 998px) {
  .home_first-bg .absolute-bg .cloud:nth-child(2) {
    animation: animateleft 130s 2.5s infinite;
  }
  @keyframes animateleft {
    0% {
      left: 17%;
    }
    35% {
      left: calc(100vw - 17%);
    }
    70% {
      left: calc(-10vw + 17%);
    }
    100% {
      left: 17%;
    }
  }
}
.home_first-bg .absolute-bg .cloud:nth-child(3) {
  top: 80%;
  left: 10%;
}
@media screen and (min-width: 998px) {
  .home_first-bg .absolute-bg .cloud:nth-child(3) {
    animation: animateleft 140s 2.5s infinite;
  }
  @keyframes animateleft {
    0% {
      left: 10%;
    }
    35% {
      left: calc(100vw - 10%);
    }
    70% {
      left: calc(-10vw + 10%);
    }
    100% {
      left: 10%;
    }
  }
}
.home_first-bg .absolute-bg .cloud:nth-child(4) {
  top: 40%;
  right: 10%;
}
@media screen and (min-width: 998px) {
  .home_first-bg .absolute-bg .cloud:nth-child(4) {
    animation: animateright 130s 2.5s infinite;
  }
  @keyframes animateright {
    0% {
      right: 10%;
    }
    35% {
      right: calc(100vw - 10%);
    }
    70% {
      right: calc(-10vw + 10%);
    }
    100% {
      right: 10%;
    }
  }
}
.home_first-bg .absolute-bg .cloud:nth-child(5) {
  top: 72%;
  right: 13%;
}
@media screen and (min-width: 998px) {
  .home_first-bg .absolute-bg .cloud:nth-child(5) {
    animation: animateright 135s 2.5s infinite;
  }
  @keyframes animateright {
    0% {
      right: 13%;
    }
    35% {
      right: calc(100vw - 13%);
    }
    70% {
      right: calc(-10vw + 13%);
    }
    100% {
      right: 13%;
    }
  }
}

@keyframes animateMountain {
  to {
    bottom: 0;
  }
}
@keyframes animateWord {
  0% {
    top: 100px;
  }
  100% {
    top: 0px;
  }
}
@keyframes transformOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@property --generalNum {
  syntax: "<integer>";
  initial-value: 9999;
  inherits: false;
}
@property --secondaryNum {
  syntax: "<integer>";
  initial-value: 9;
  inherits: false;
}
@keyframes countAnimation {
  to {
    --generalNum: 1000;
  }
}
@keyframes countGreenAnimation {
  to {
    --secondaryNum: 1;
  }
}
.container.best-version {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.container.best-version section .heading {
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 998px) {
  .container.best-version section .heading span {
    position: relative;
    top: 100px;
  }
  .container.best-version section .heading span.counter::before {
    counter-reset: generalCounter var(--generalNum);
    content: counter(generalCounter);
    animation: countAnimation 1s 2s ease-in-out forwards;
  }
  .container.best-version section .heading span.counter .primary::before {
    counter-reset: secondaryCounter var(--secondaryNum);
    content: counter(secondaryCounter);
    animation: countGreenAnimation 1s 2s ease-in-out forwards;
  }
  .container.best-version section .heading span:nth-child(1) {
    animation: animateWord 0.25s 0.5s forwards;
  }
  .container.best-version section .heading span:nth-child(2) {
    animation: animateWord 0.5s 0.65s forwards;
  }
  .container.best-version section .heading span:nth-child(3) {
    animation: animateWord 0.5s 0.8s forwards;
  }
  .container.best-version section .heading span:nth-child(4) {
    animation: animateWord 0.5s 0.95s forwards;
  }
  .container.best-version section .heading span:nth-child(5) {
    animation: animateWord 0.5s 1.1s forwards;
  }
  .container.best-version section .heading span:nth-child(6) {
    animation: animateWord 0.5s 1.25s forwards;
  }
  .container.best-version section .heading span:nth-child(7) {
    animation: animateWord 0.5s 1.4s forwards;
  }
  .container.best-version section .heading span:nth-child(8) {
    animation: animateWord 0.5s 1.55s forwards;
  }
  .container.best-version section .heading span:nth-child(9) {
    animation: animateWord 0.5s 1.7s forwards;
  }
  .container.best-version section .heading span:nth-child(10) {
    animation: animateWord 0.5s 0.5s forwards;
  }
  .container.best-version section .heading span:nth-child(11) {
    animation: animateWord 0.5s 0.65s forwards;
  }
  .container.best-version section .heading span:nth-child(12) {
    animation: animateWord 0.5s 0.8s forwards;
  }
  .container.best-version section .heading span:nth-child(13) {
    animation: animateWord 0.5s 0.95s forwards;
  }
  .container.best-version section .heading span:nth-child(14) {
    animation: animateWord 0.5s 1.1s forwards;
  }
  .container.best-version section .heading span:nth-child(15) {
    animation: animateWord 0.5s 1.25s forwards;
  }
}
.container.best-version section .sub-heading {
  text-align: center;
  max-width: 730px;
  margin: 0 auto 60px;
}
@media screen and (min-width: 998px) {
  .container.best-version section .sub-heading {
    opacity: 0;
    animation: transformOpacity 0.5s 1.8s forwards;
  }
}
.container.best-version section .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (min-width: 998px) {
  .container.best-version section .list {
    opacity: 0;
    animation: transformOpacity 0.5s 1.8s forwards;
  }
}
.container.best-version section .list-item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.container.best-version section .list-item .text {
  max-width: 250px;
  text-align: left;
}

.home_second-bg {
  background-image: linear-gradient(
    180deg,
    hsl(180, 82%, 28%) 0%,
    hsl(185, 100%, 26%) 11%,
    hsl(189, 100%, 26%) 22%,
    hsl(194, 100%, 27%) 33%,
    hsl(198, 100%, 27%) 44%,
    hsl(202, 100%, 27%) 56%,
    hsl(205, 100%, 26%) 67%,
    hsl(209, 100%, 25%) 78%,
    hsl(217, 75%, 27%) 89%,
    hsl(240, 43%, 30%) 100%
  );
}
.home_second-bg .container.overload {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_second-bg .container.overload section .heading {
  max-width: 900px;
  text-align: center;
}
.home_second-bg .container.overload section .sub-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 65px;
}
.home_second-bg .container.overload section .icons-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.home_second-bg .container.overload section .icons-list-item {
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.home_second-bg .container.overload section .icons-list-item .lottie {
  min-height: 105px;
}
.home_second-bg .container.overload section .icons-list-item .text {
  text-align: center;
}

.home_third-bg {
  background-image: linear-gradient(
    180deg,
    hsl(240, 43%, 30%) 0%,
    hsl(240, 43%, 30%) 17%,
    hsl(240, 43%, 30%) 33%,
    hsl(240, 43%, 30%) 50%,
    hsl(240, 43%, 30%) 67%,
    hsl(240, 43%, 30%) 83%,
    hsl(240, 43%, 30%) 100%
  );
}
.home_third-bg .container.solutions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_third-bg .container.solutions section {
  display: grid;
  grid-template-columns: 1fr minmax(350px, 490px);
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .home_third-bg .container.solutions section {
    display: flex;
    flex-direction: column;
  }
}
.home_third-bg .container.solutions section .info .sub-heading,
.home_third-bg .container.solutions section .info .heading,
.home_third-bg .container.solutions section .info .description {
  text-align: left;
}
.home_third-bg .container.solutions section .info .heading {
  margin-bottom: 30px;
}
.home_third-bg .container.solutions section .info .description {
  margin-bottom: 15px;
}
.home_third-bg .container.solutions section .img lottie-player {
  max-width: 490px !important;
  min-height: 524px !important;
  width: 100% !important;
}

.home_fourth-bg {
  background: linear-gradient(
    180deg,
    hsl(240, 43%, 30%) 0%,
    hsl(232, 48%, 30%) 14%,
    hsl(223, 55%, 29%) 29%,
    hsl(214, 61%, 28%) 43%,
    hsl(206, 65%, 27%) 57%,
    hsl(197, 71%, 26%) 71%,
    hsl(188, 77%, 25%) 86%,
    hsl(180, 82%, 25%) 100%
  );
}
.home_fourth-bg .clouds-bg .container.unfair {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_fourth-bg .clouds-bg .container.unfair section .sub-heading {
  text-align: center;
}
.home_fourth-bg .clouds-bg .container.unfair section .heading.main {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 130px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home_fourth-bg .clouds-bg .container.unfair section .heading.main {
    margin-bottom: 30px;
  }
}
.home_fourth-bg .clouds-bg .container.unfair section .advantages-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 130px 30px;
}
@media screen and (max-width: 768px) {
  .home_fourth-bg .clouds-bg .container.unfair section .advantages-list {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
.home_fourth-bg .clouds-bg .container.unfair section .advantages-list-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .home_fourth-bg .clouds-bg .container.unfair section .advantages-list-item {
    flex-direction: column;
    gap: 15px;
  }
}
.home_fourth-bg
  .clouds-bg
  .container.unfair
  section
  .advantages-list-item
  .lottie {
  width: 64px;
  height: 64px;
}
.home_fourth-bg
  .clouds-bg
  .container.unfair
  section
  .advantages-list-item
  .info {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home_fourth-bg
  .clouds-bg
  .container.unfair
  section
  .advantages-list-item
  .info
  .heading.midi {
  margin-bottom: 15px;
}
.home_fourth-bg
  .clouds-bg
  .container.unfair
  section
  .advantages-list-item
  .info
  .text.description.first {
  margin-bottom: 15px;
}
.home_fourth-bg
  .clouds-bg
  .container.unfair
  section
  .advantages-list-item
  .info
  .text.description.second {
  margin-bottom: 35px;
}

.home_fifth-bg {
  background-image: linear-gradient(
    180deg,
    hsl(180, 82%, 25%) 0%,
    hsl(180, 76%, 33%) 14%,
    hsl(180, 71%, 42%) 29%,
    hsl(180, 66%, 51%) 43%,
    hsl(180, 60%, 60%) 57%,
    hsl(180, 55%, 69%) 71%,
    hsl(180, 50%, 77%) 86%,
    hsl(180, 44%, 86%) 100%
  );
}
.home_fifth-bg .bg-wrapper {
  background: url(/people-mountains-bg.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  min-height: 850px;
}
.home_fifth-bg .bg-wrapper .container.problem {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_fifth-bg .bg-wrapper .container.problem section {
  padding: 240px 0px;
  text-align: center;
}
.home_fifth-bg .bg-wrapper .container.problem section .heading {
  margin: 0 auto 30px;
  max-width: 900px;
}

.home_six-bg {
  background-image: linear-gradient(
    180deg,
    hsl(180, 44%, 86%) 0%,
    hsl(180, 44%, 86%) 17%,
    hsl(180, 44%, 86%) 33%,
    hsl(180, 44%, 86%) 50%,
    hsl(180, 44%, 86%) 67%,
    hsl(180, 44%, 86%) 83%,
    hsl(180, 44%, 86%) 100%
  );
}
.home_six-bg .container.partner section {
  display: grid;
  grid-template-columns: minmax(400px, 446px) minmax(200px, 540px);
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.home_six-bg .container.partner section .heading.mobile {
  display: none;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .home_six-bg .container.partner section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
  }
  .home_six-bg .container.partner section .heading.mobile {
    display: block;
    text-align: center;
  }
}
.home_six-bg .container.partner section .img img {
  max-width: 445px;
  width: 100%;
  border-radius: 5px;
  max-height: 480px;
  height: 100%;
}
.home_six-bg .container.partner section .info {
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.home_six-bg .container.partner section .info .heading {
  margin-bottom: 32px;
}
.home_six-bg .container.partner section .info .description {
  margin-bottom: 15px;
}
.home_six-bg .container.partner section .info .hero {
  font-style: italic;
  font-size: 12px;
  width: 100%;
  text-align: right;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .home_six-bg .container.partner section .info {
    max-width: 445px;
    margin: 0 auto;
  }
  .home_six-bg .container.partner section .info .heading {
    display: none;
  }
}

.home_seventh-bg {
  background-image: linear-gradient(
    180deg,
    hsl(180, 44%, 86%) 0%,
    hsl(180, 49%, 78%) 9%,
    hsl(180, 54%, 69%) 21%,
    hsl(180, 60%, 61%) 38%,
    hsl(180, 65%, 53%) 56%,
    hsl(180, 71%, 44%) 75%,
    hsl(180, 76%, 36%) 90%,
    hsl(180, 82%, 28%) 100%
  );
}
.home_seventh-bg .container.guys section .heading {
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .home_seventh-bg .container.guys section .heading {
    margin-bottom: 30px;
  }
}
.home_seventh-bg .container.guys section .wrapper {
  display: grid;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  grid-template-columns: minmax(200px, 540px) minmax(450px, 513px);
}
@media screen and (max-width: 768px) {
  .home_seventh-bg .container.guys section .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.home_seventh-bg .container.guys section .wrapper .img img {
  max-width: 513px;
  max-height: 577px;
  height: 100%;
  width: 100%;
}
.home_seventh-bg .container.guys section .wrapper .info {
  text-align: left;
}
.home_seventh-bg .container.guys section .wrapper .info .description {
  margin-bottom: 15px;
}
.home_seventh-bg .container.guys section .wrapper .info .nav-btn {
  margin-top: 30px;
  gap: 15px;
  justify-content: flex-start;
}
.home_seventh-bg .container.guys section .wrapper .info .nav-btn .heading {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .home_seventh-bg .container.guys section .wrapper .info {
    max-width: 513px;
    margin: 0 auto;
  }
}

.home_eight-bg {
  background-image: linear-gradient(
    180deg,
    hsl(180, 82%, 28%) 0%,
    hsl(189, 76%, 28%) 8%,
    hsl(197, 71%, 28%) 19%,
    hsl(206, 65%, 29%) 33%,
    hsl(214, 60%, 29%) 49%,
    hsl(223, 54%, 30%) 66%,
    hsl(231, 49%, 30%) 84%,
    hsl(240, 43%, 30%) 100%
  );
}
.home_eight-bg .clouds-bg {
  background: url(/contact-form-clouds-bg.webp);
}
.home_eight-bg .clouds-bg .container.contact-form section .heading {
  text-align: center;
}
.home_eight-bg .clouds-bg .container.contact-form section .sub-heading {
  margin-bottom: 65px;
  text-align: center;
}
.home_eight-bg .clouds-bg .container.contact-form section form.contact {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.home_eight-bg .clouds-bg .container.contact-form section form.contact .btn {
  width: 100%;
}
.home_eight-bg
  .clouds-bg
  .container.contact-form
  section
  form.contact
  .terms-policies-checkbox-wrapper {
  color: var(--portalThemeColor1);
}
.home_eight-bg
  .clouds-bg
  .container.contact-form
  section
  form.contact
  .terms-policies-checkbox-wrapper
  label {
  font-size: 15px;
  font-weight: 400;
  margin-left: 5px;
}
.home_eight-bg
  .clouds-bg
  .container.contact-form
  section
  form.contact
  .terms-policies-checkbox-wrapper
  label
  a:hover {
  color: var(--portalThemeColor8);
}

.contact_first-bg {
  background-image: linear-gradient(
    180deg,
    hsl(0, 0%, 100%) 0%,
    hsl(179, 30%, 90%) 4%,
    hsl(179, 31%, 80%) 8%,
    hsl(179, 31%, 70%) 14%,
    hsl(180, 31%, 60%) 20%,
    hsl(180, 34%, 49%) 28%,
    hsl(188, 70%, 38%) 37%,
    hsl(194, 100%, 31%) 47%,
    hsl(201, 100%, 29%) 60%,
    hsl(208, 100%, 26%) 76%,
    hsl(240, 43%, 30%) 100%
  );
  overflow-x: hidden;
}
.contact_first-bg .mount-bg {
  position: absolute;
  top: 40%;
  opacity: 0.2;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 99vw;
  overflow: hidden;
}
.contact_first-bg .mount-bg img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .contact_first-bg .mount-bg img {
    width: 250%;
  }
}
.contact_first-bg .clouds-bg {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
.contact_first-bg .clouds-bg .contact-form .heading {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.contact_first-bg .clouds-bg .contact-form .sub-heading {
  max-width: 540px;
  margin: 0 auto 20px !important;
  text-align: center;
}
.contact_first-bg .clouds-bg .contact-form form.contact {
  padding-top: 25px;
}
.contact_first-bg .clouds-bg .contact-form .form-text {
  text-align: center;
  margin-top: 32px;
}

.contact_second-bg {
  background-image: linear-gradient(
    180deg,
    hsl(240, 43%, 30%) 4%,
    hsl(240, 43%, 30%) 48%,
    hsl(240, 43%, 30%) 65%,
    hsl(240, 43%, 30%) 77%,
    hsl(240, 43%, 30%) 85%,
    hsl(240, 43%, 30%) 92%,
    hsl(240, 43%, 30%) 96%,
    hsl(240, 43%, 30%) 99%,
    hsl(240, 43%, 30%) 100%,
    hsl(240, 43%, 30%) 100%
  );
}
.thanks-wrapper {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(
    180deg,
    hsl(0, 0%, 100%) 0%,
    hsl(178, 24%, 89%) 15%,
    hsl(178, 24%, 78%) 27%,
    hsl(179, 25%, 66%) 39%,
    hsl(179, 25%, 55%) 51%,
    hsl(180, 34%, 43%) 66%,
    hsl(180, 82%, 28%) 97%
  );
}
.thanks-wrapper .mount-bg-wrapper {
  position: absolute;
  bottom: -10%;
  right: 0;
  z-index: 0;
  opacity: 0.4;
}
.thanks-wrapper .mount-bg-wrapper img {
  width: 100%;
  max-width: 939px;
  height: 100%;
  max-height: 758px;
  padding-right: 0px;
}
.thanks-wrapper .container .content {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.thanks-wrapper .container .content .btn {
  margin-top: 65px;
}
.thanks-wrapper .container .content .sub-heading {
  margin-top: 30px;
  font-family: Open Sans;
  font-size: 22px;
  font-weight: 600;
  line-height: 120%;
}
.thanks-wrapper .container .content .text {
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  margin: 65px 0px 15px;
}
.thanks-wrapper .container .content .phones-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.thanks-wrapper .container .content .phones-list-item {
  align-items: center;
}
.thanks-wrapper .container .content .phones-list-item a {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  color: var(--portalThemeColor4);
} /*# sourceMappingURL=home.css.map */
