:root {
  --forest-color: #003542;
  --mint-color: #83E2B3;
  --pine-color: #539F89;
  --gold-color: #F6BC0D;
  --dark-green-color: #306c5c;
  --white-color: #fff;
  --green: #56C58E;
}

@font-face {
  font-family: "Roboto";
  src: local("Roboto Bold"), local("Roboto-Bold"), url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: local("Roboto Light"), local("Roboto-Light"), url("../fonts/Roboto-Light.woff2") format("woff2"), url("../fonts/Roboto-Light.woff") format("woff"), url("../fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: local("Roboto Regular"), local("Roboto-Regular"), url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: local("Roboto Black"), local("Roboto-Black"), url("../fonts/Roboto-Black.woff2") format("woff2"), url("../fonts/Roboto-Black.woff") format("woff"), url("../fonts/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.body__wrapper {
  overflow: hidden;
  background-color: var(--forest-color);
  padding: 0 20px;
}

.container {
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

a::-moz-selection, button::-moz-selection {
  background: #003542;
  color: #83e2b3;
}

a::selection, button::selection {
  background: #003542;
  color: #83e2b3;
}

h1 {
  color: var(--forest-color);
}
h1::-moz-selection {
  background: #003542;
  color: #83e2b3;
}
h1::selection {
  background: #003542;
  color: #83e2b3;
}

h2 {
  font-size: 45px;
  font-weight: 300;
  color: var(--forest-color);
  line-height: 1;
  letter-spacing: -0.4px;
}
h2::-moz-selection {
  background: #003542;
  color: #83e2b3;
}
h2::selection {
  background: #003542;
  color: #83e2b3;
}
@media (max-width: 992px) {
  h2 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

p {
  font-size: 21px;
  line-height: 1.15;
  font-weight: 300;
  color: var(--forest-color);
}
p::-moz-selection {
  background: #003542;
  color: #83e2b3;
}
p::selection {
  background: #003542;
  color: #83e2b3;
}
@media screen and (max-width: 992px) {
  p {
    font-size: 18px;
  }
}

b {
  font-size: 21px;
  line-height: 1.15;
  font-weight: 600;
  color: var(--green);
  display: inline-block;
  margin-bottom: 11px;
}
b::-moz-selection {
  background: #003542;
  color: #83e2b3;
}
b::selection {
  background: #003542;
  color: #83e2b3;
}
@media screen and (max-width: 992px) {
  b {
    font-size: 18px;
  }
}

body.body--lock {
  overflow: hidden;
}

.label {
  display: inline-block;
  border-radius: 25px;
  padding: 5px 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

.label--gold {
  background-color: var(--gold-color);
  color: var(--forest-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.label--gold:hover {
  color: var(--gold-color);
  background-color: var(--forest-color);
  border: 1px solid var(--gold-color);
}

.label--green {
  background-color: var(--mint-color);
  color: var(--forest-color);
}
.label--green:hover {
  color: var(--mint-color);
  background-color: var(--forest-color);
  border: 1px solid var(--mint-color);
}

.label--forest {
  background-color: var(--forest-color);
  color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.label--forest:hover {
  color: var(--forest-color);
  background-color: var(--white-color);
  border: 1px solid var(--forest-color);
}

p + p {
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  p + p {
    margin-top: 15px;
  }
}

.wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
  color: var(--forest-color);
}
.header__subtitle {
  text-align: center;
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .header__subtitle {
    font-size: 21px;
  }
}
@media screen and (max-width: 360px) {
  .header__subtitle {
    font-size: 17px;
  }
}
@media screen and (max-width: 992px) {
  .header__title {
    width: 650px;
  }
}
@media screen and (max-width: 768px) {
  .header__title {
    width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .header__title {
    width: 250px;
  }
}
@media screen and (max-width: 360px) {
  .header__title {
    width: 200px;
  }
}
@media screen and (max-width: 992px) {
  .header .container {
    padding: 0;
  }
}

.header__wrapper {
  background-color: var(--white-color);
  border-radius: 0 0 100px 100px;
  padding: 50px 15px 70px 15px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .header__wrapper {
    padding: 20px 15px 40px 15px;
    border-radius: 0 0 50px 50px;
  }
}
@media screen and (max-width: 768px) {
  .header__wrapper {
    padding: 25px 15px 25px 15px;
    border-radius: 0 0 25px 25px;
  }
}

.header__content {
  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;
}

.header__label {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateY(50%) translateX(-50%);
          transform: translateY(50%) translateX(-50%);
}
@media screen and (max-width: 480px) {
  .header__label {
    font-size: 10px;
  }
}

.video {
  width: 100%;
  height: 100vh;
  min-height: 900px;
  max-height: 1300px;
}
@media screen and (max-width: 992px) {
  .video {
    min-height: 600px;
    max-height: 800px;
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .video {
    min-height: 400px;
    max-height: 600px;
  }
}

.video__video {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100vh;
  min-height: 900px;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 1300px;
  max-width: 1240px;
  margin: 0 auto;
  z-index: 1;
  padding: 0 20px;
}
@media screen and (max-width: 992px) {
  .video__video {
    min-height: auto;
    height: 600px;
  }
}
@media screen and (max-width: 768px) {
  .video__video {
    min-height: auto;
    height: 400px;
  }
}

.main {
  position: relative;
  z-index: 11;
  background-color: var(--white-color);
  border-radius: 100px;
  margin-top: -100px;
  padding-top: 90px;
  margin-bottom: 670px;
}
@media screen and (max-width: 992px) {
  .main {
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 50px;
    margin-top: -25px;
    margin-bottom: 400px;
  }
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 25px;
    padding-bottom: 25px;
    border-radius: 25px;
    margin-bottom: 350px;
  }
}

.cta__content {
  max-width: 800px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 992px) {
  .cta__content {
    margin: 0 auto 15px;
  }
}

.cta__title {
  margin-bottom: 12px;
  letter-spacing: -0.6px;
  line-height: 1.1;
}
@media screen and (max-width: 992px) {
  .cta__title {
    margin-bottom: 15px;
  }
}

.cta__subtitle {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.3px;
  display: block;
  margin-bottom: 19px;
  color: var(--forest-color);
}
@media screen and (max-width: 992px) {
  .cta__subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.cta-items {
  margin-bottom: 61px;
}
@media screen and (max-width: 992px) {
  .cta-items {
    margin-bottom: 25px;
  }
}

.cta-items__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -25px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .cta-items__wrapper {
    margin: 0 -15px;
  }
}
@media screen and (max-width: 768px) {
  .cta-items__wrapper {
    margin: 0;
  }
}

.cta-items__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333%;
          flex: 0 0 33.333%;
  padding: 0 25px;
}
@media screen and (max-width: 992px) {
  .cta-items__item {
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .cta-items__item {
    padding: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media screen and (max-width: 768px) {
  .cta-items__item + .cta-items__item {
    margin-top: 15px;
  }
}

.cta-items__heading {
  color: var(--mint-color);
  font-weight: 600;
  font-size: 21px;
}
@media screen and (max-width: 992px) {
  .cta-items__heading {
    font-size: 18px;
  }
}

.info {
  position: relative;
  padding-bottom: 420px;
}
@media screen and (max-width: 992px) {
  .info {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .info {
    padding-bottom: 70px;
  }
}
.info__list {
  margin-top: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.info__list-item {
  list-style: none;
  position: relative;
  padding-left: 13px;
  font-size: 21px;
  line-height: 1.15;
  color: var(--forest-color);
  font-weight: 300;
}
.info__list-item::-moz-selection {
  background: #003542;
  color: #83e2b3;
}
.info__list-item::selection {
  background: #003542;
  color: #83e2b3;
}
@media screen and (max-width: 992px) {
  .info__list-item {
    font-size: 18px;
  }
}
.info__list-item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--forest-color);
  position: absolute;
  top: 10px;
  left: 0;
}
@media screen and (max-width: 992px) {
  .info__list-item::before {
    top: 8px;
  }
}
.info__title {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: -7px;
}
@media screen and (max-width: 768px) {
  .info__title {
    margin-bottom: -4px;
  }
}
.info__phone {
  position: absolute;
  left: -90px;
  bottom: 231px;
  z-index: 1;
}
.info__phone img {
  width: 715px;
}
@media screen and (max-width: 1200px) {
  .info__phone img {
    width: auto;
  }
}
@media screen and (max-width: 1200px) {
  .info__phone {
    left: -160px;
    bottom: 267px;
  }
}
@media screen and (max-width: 992px) {
  .info__phone {
    margin: 0 -65px;
    position: relative;
    left: -150px;
    bottom: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .info__phone {
    left: -65px;
    bottom: 40px;
  }
}
@media screen and (max-width: 550px) {
  .info__phone {
    left: -50px;
    bottom: 3px;
  }
}
.info__button {
  min-height: 75px;
  border: none;
  width: 100%;
  position: relative;
  border-radius: 50px;
  cursor: pointer;
  font-size: 30px;
  font-weight: 900;
  color: var(--forest-color);
  background-color: var(--white-color);
  padding-left: 45px;
  margin-bottom: 47px;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}
@media screen and (max-width: 992px) {
  .info__button {
    min-height: 50px;
    font-size: 21px;
  }
}
.info__button:hover {
  background-color: var(--forest-color);
  color: var(--white-color);
}
.info__button::before {
  content: "";
  position: absolute;
  background-image: url("./../images/go_btn.svg");
  left: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 992px) {
  .info__button::before {
    width: 45px;
    height: 45px;
    background-size: contain;
  }
}
@media screen and (max-width: 992px) {
  .info__button {
    font-size: 21px;
    margin-bottom: 15px;
  }
}
.info__content {
  max-width: 330px;
}
@media screen and (max-width: 992px) {
  .info__content {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.info__content p:first-child {
  margin-bottom: 25px;
}
.info__group {
  background-color: var(--mint-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px;
  border-radius: 50px;
  padding-bottom: 100px;
}
@media screen and (max-width: 992px) {
  .info__group {
    padding: 50px;
    border-radius: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 0;
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .info__group {
    padding: 25px;
    padding-bottom: 0;
    gap: 45px;
  }
}
@media screen and (max-width: 550px) {
  .info__group {
    padding: 25px;
    padding-bottom: 0;
    gap: 15px;
  }
}
.info__subtitle-list {
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  color: var(--forest-color);
}
.info__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 350px;
          flex: 0 1 350px;
  margin-left: auto;
  position: relative;
  z-index: 10;
  margin-top: 50px;
}
@media screen and (max-width: 992px) {
  .info__text {
    margin-top: 0;
  }
}
.info__label {
  margin-top: 270px;
  margin-left: 52px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.info__label.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1200px) {
  .info__label {
    margin-top: 200px;
    margin-left: 45px;
  }
}
@media screen and (max-width: 992px) {
  .info__label {
    margin-top: 225px;
  }
}
@media screen and (max-width: 768px) {
  .info__label {
    margin-top: 0;
    margin-left: 0;
    margin-right: unset;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .info__label a {
    font-size: 12px;
    border-radius: 25px;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 550px) {
  .info__label a {
    border-radius: 6px;
    font-size: 8px;
    padding: 1px 3px;
  }
}
@media screen and (max-width: 1200px) {
  .info-phone img {
    width: 600px;
  }
}
@media screen and (max-width: 992px) {
  .info-phone img {
    width: 550px;
  }
}
@media screen and (max-width: 768px) {
  .info-phone img {
    width: 100%;
  }
}
.info-phone__placeholder {
  position: absolute;
  top: 180px;
  right: 178px;
}
@media screen and (max-width: 1200px) {
  .info-phone__placeholder {
    top: 115px;
    right: 140px;
  }
}
@media screen and (max-width: 992px) {
  .info-phone__placeholder {
    top: 115px;
    right: 120px;
  }
}
@media screen and (max-width: 768px) {
  .info-phone__placeholder {
    width: 41%;
    top: 12%;
    right: 15%;
    height: 66%;
  }
}
@media screen and (max-width: 440px) {
  .info-phone__placeholder {
    top: 12%;
    right: 14%;
  }
}
.info-phone__heading {
  color: var(--pine-color);
  font-weight: 900;
  font-size: 30px;
  display: block;
  max-width: 170px;
  letter-spacing: -0.6px;
  line-height: 1.3;
  margin-bottom: 35px;
}
@media screen and (max-width: 992px) {
  .info-phone__heading {
    font-size: 21px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 550px) {
  .info-phone__heading {
    font-size: 18px;
    max-width: 100px;
  }
}
@media screen and (max-width: 440px) {
  .info-phone__heading {
    font-size: 14px;
  }
}
.info-phone__button {
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.info-phone__button svg path {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.info-phone__button:hover svg path {
  fill: var(--white-color);
}
@media screen and (max-width: 768px) {
  .info-phone__button svg {
    width: 30px;
    height: 30px;
  }
}
.info-phone__video {
  position: absolute;
  top: 25px;
  left: 298px;
  max-width: 327px;
  z-index: 11;
  border-radius: 45px 45px 0px 0px;
  overflow: hidden;
}
.info-phone__video--hidden {
  display: none;
}
@media screen and (max-width: 1200px) {
  .info-phone__video {
    top: 20px;
    left: 252px;
    max-width: 270px;
    border-radius: 35px 35px 0px 0px;
  }
}
@media screen and (max-width: 992px) {
  .info-phone__video {
    left: 230px;
    max-width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .info-phone__video {
    top: 3%;
    left: 41.5%;
    max-width: 100%;
    border-radius: 20px 20px 0px 0px;
  }
}
@media screen and (max-width: 440px) {
  .info-phone__video {
    top: 3.5%;
    left: 41.5%;
    max-width: 100%;
    border-radius: 4% 10px 0px 0px;
    width: 69%;
  }
}
.info-phone__video-player {
  max-width: 327px;
}
@media screen and (max-width: 1200px) {
  .info-phone__video-player {
    max-width: 270px;
  }
}
@media screen and (max-width: 992px) {
  .info-phone__video-player {
    max-width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .info-phone__video-player {
    width: 78.5%;
    max-width: 100%;
    border-radius: 9% 9% 0px 0px;
  }
}
@media screen and (max-width: 440px) {
  .info-phone__video-player {
    width: 66.5%;
    max-width: 100%;
    border-radius: 9% 9% 0 0;
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.text-slide__title._mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .text-slide__title._mobile {
    display: block;
    margin-bottom: 15px;
  }
}

.decoration {
  position: absolute;
  width: 10209px;
  right: calc((100vw - 1000px) / -2);
  height: 445px;
  bottom: 133px;
}
.decoration__title {
  position: absolute;
  bottom: 30px;
  right: calc(50vw - 120px);
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .decoration__title {
    right: calc(50vw + 10px);
  }
}
@media screen and (max-width: 1200px) {
  .decoration__title {
    right: calc(50vw + 70px);
    font-size: 34px;
  }
}
@media screen and (max-width: 992px) {
  .decoration__title {
    right: calc(50vw + 50px);
    bottom: 10px;
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .decoration__title {
    right: calc(50vw + 7px);
    bottom: 16px;
    font-size: 21px;
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .decoration__title {
    right: calc(50vw + 20px);
    bottom: 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .decoration {
    bottom: 170px;
    right: -90px;
  }
}
@media screen and (max-width: 992px) {
  .decoration {
    width: 4200px;
    height: 185px;
    bottom: 68px;
    right: -63px;
    z-index: 15;
  }
}
@media screen and (max-width: 550px) {
  .decoration {
    width: 3000px;
    height: 125px;
    right: -50px;
    bottom: 50px;
  }
}
@media screen and (max-width: 380px) {
  .decoration {
    width: 2500px;
    height: 110px;
    right: -50px;
    bottom: 50px;
  }
}
.decoration::before {
  content: "";
  position: absolute;
  left: 0;
  width: 75px;
  height: 75px;
  background-color: var(--pine-color);
}
.decoration__circle {
  position: absolute;
  right: calc(100% + 120px);
  height: 110px;
  background-color: var(--forest-color);
  width: 100vw;
  bottom: 181px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  z-index: 10;
}
@media screen and (min-width: 1750px) {
  .decoration__circle {
    right: calc((100vw + 885px) / 2);
  }
}
.decoration__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background-color: var(--pine-color);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  z-index: 12;
}
.decoration__circle::after {
  content: "";
  position: absolute;
  right: -250px;
  bottom: 50%;
  width: 150px;
  height: 150px;
  -webkit-transform: translateY(50%) translateX(-100%);
          transform: translateY(50%) translateX(-100%);
  background-color: var(--mint-color);
  border-radius: 50%;
  z-index: 11;
}
.decoration__coin {
  position: absolute;
  -webkit-animation: none;
          animation: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 992px) {
  .decoration__coin {
    width: 45px;
  }
}
@media screen and (max-width: 550px) {
  .decoration__coin {
    width: 35px;
  }
}
@media screen and (max-width: 380px) {
  .decoration__coin {
    width: 30px;
  }
}
.decoration__coin:hover {
  -webkit-animation: bounce 0.6s ease;
          animation: bounce 0.6s ease;
}
.decoration__coin:nth-child(2) {
  right: 495px;
  bottom: 30px;
}
@media screen and (max-width: 992px) {
  .decoration__coin:nth-child(2) {
    right: 350px;
    bottom: 12px;
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .decoration__coin:nth-child(2) {
    display: none;
  }
}
.decoration__coin:nth-child(3) {
  right: 390px;
  bottom: 60px;
}
@media screen and (max-width: 992px) {
  .decoration__coin:nth-child(3) {
    right: 257px;
    bottom: 13px;
  }
}
@media screen and (max-width: 550px) {
  .decoration__coin:nth-child(3) {
    right: 190px;
    bottom: 4px;
  }
}
@media screen and (max-width: 440px) {
  .decoration__coin:nth-child(3) {
    display: none;
  }
}
.decoration__coin:nth-child(4) {
  right: 295px;
  bottom: 115px;
}
@media screen and (max-width: 992px) {
  .decoration__coin:nth-child(4) {
    right: 190px;
    bottom: 14px;
  }
}
@media screen and (max-width: 550px) {
  .decoration__coin:nth-child(4) {
    right: 140px;
    bottom: 5px;
  }
}
@media screen and (max-width: 380px) {
  .decoration__coin:nth-child(4) {
    bottom: 10px;
  }
}
.decoration__coin:nth-child(5) {
  right: 220px;
  bottom: 180px;
}
@media screen and (max-width: 992px) {
  .decoration__coin:nth-child(5) {
    right: 127px;
    bottom: 38px;
  }
}
@media screen and (max-width: 550px) {
  .decoration__coin:nth-child(5) {
    right: 90px;
    bottom: 15px;
  }
}
.decoration__coin:nth-child(6) {
  right: 145px;
  top: 90px;
}
@media screen and (max-width: 992px) {
  .decoration__coin:nth-child(6) {
    right: 80px;
    top: 40px;
  }
}
@media screen and (max-width: 550px) {
  .decoration__coin:nth-child(6) {
    right: 55px;
    top: 30px;
  }
}
.decoration__coin:nth-child(7) {
  right: 70px;
  top: 20px;
}
@media screen and (max-width: 992px) {
  .decoration__coin:nth-child(7) {
    right: 20px;
    top: -20px;
  }
}
@media screen and (max-width: 550px) {
  .decoration__coin:nth-child(7) {
    right: 15px;
    top: -5px;
  }
}

.text-slide .slider {
  min-width: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 550px;
          flex: 0 0 550px;
  position: relative;
  top: 65px;
}
.text-slide .slider .swiper-wrapper {
  -webkit-transition: none !important;
  transition: none !important;
}
@media screen and (max-width: 992px) {
  .text-slide .slider {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .text-slide .slider {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
.text-slide__wrapper {
  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;
  padding-left: calc((100% - 810px) / 2 + 5px);
  margin-top: -70px;
}
@media screen and (max-width: 992px) {
  .text-slide__wrapper {
    padding-left: 0;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .text-slide__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
.text-slide__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 350px;
          flex: 0 1 350px;
  margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
  .text-slide__content {
    padding: 0 20px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .text-slide__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
.text-slide__label {
  margin-top: 50px;
}
@media screen and (max-width: 992px) {
  .text-slide__label {
    margin-top: 25px;
  }
}
.text-slide__bold {
  display: inline-block;
  margin-bottom: 38px;
}
@media screen and (max-width: 992px) {
  .text-slide__bold {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .text-slide__bold {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .text-slide .slider__item {
    width: 100% !important;
  }
}
.text-slide .slider__item img {
  margin-left: auto;
}

.footer {
  position: relative;
  z-index: 13;
  padding: 0 20px;
}
@media screen and (max-width: 992px) {
  .footer {
    padding: 0;
  }
}
.footer__title {
  display: block;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  color: var(--green);
  max-width: 500px;
  margin-bottom: 15px;
}
.footer__content {
  max-width: 470px;
}
@media screen and (max-width: 992px) {
  .footer__content {
    max-width: 100%;
  }
}
.footer__container {
  position: relative;
  background-color: white;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 100px 50px;
  border-radius: 100px 100px 0 0;
}
@media screen and (max-width: 992px) {
  .footer__container {
    padding: 50px 50px 25px;
    border-radius: 25px 25px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .footer__container {
    padding: 25px 25px 50px;
  }
}
.footer__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
}
@media screen and (max-width: 992px) {
  .footer__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }
}
@media screen and (max-width: 768px) {
  .footer__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
  gap: 25px;
}
@media screen and (max-width: 992px) {
  .footer__wrapper {
    margin-bottom: 25px;
    -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;
  }
}
.footer__partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer__partners {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
    margin: 0 -5px;
    row-gap: 15px;
  }
}
.footer__partner {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__partner {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    padding: 0 5px;
  }
  .footer__partner img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .footer__partner {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.footer__made {
  position: absolute;
  left: 0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--pine-color);
  bottom: 0;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg) translateX(125%) translateY(123px);
          transform: rotate(180deg) translateX(125%) translateY(123px);
}
@media screen and (max-width: 992px) {
  .footer__made {
    -webkit-transform: rotate(180deg) translateX(100%) translateY(13px);
            transform: rotate(180deg) translateX(100%) translateY(13px);
  }
}
@media screen and (max-width: 768px) {
  .footer__made {
    -webkit-transform: rotate(180deg) translateX(100%) translateY(40px);
            transform: rotate(180deg) translateX(100%) translateY(40px);
  }
}
.footer__made a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer__made a:hover {
  color: var(--white-color);
}
.footer__scroll-top {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: var(--forest-color);
  border: 5px solid var(--mint-color);
  position: absolute;
  top: 0;
  right: 100px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 992px) {
  .footer__scroll-top {
    right: 50px;
    width: 50px;
    height: 50px;
    border: 3px solid var(--mint-color);
  }
  .footer__scroll-top img {
    width: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer__scroll-top {
    right: 25px;
  }
}
.footer__scroll-top img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer__scroll-top:hover img {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 53, 66, 0.8666666667);
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.popup.popup--active {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.popup__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 10px 30px;
}
.popup__content {
  max-width: 1200px;
  width: 100%;
  position: relative;
}
.popup__close {
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 10;
  cursor: pointer;
}
.popup__close svg {
  width: 25px;
  height: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--forest-color);
}
.popup__close:hover svg {
  fill: var(--green);
}