@font-face {
  font-family: 'Cygre-Bold';
  src: url("../fonts/Cygre-Bold.woff"), url("../fonts/Cygre-Bold.woff2");
  font-display: swap;
}

@font-face {
  font-family: 'Cygre-ExtraBold';
  src: url("../fonts/Cygre-ExtraBold.woff"), url("../fonts/Cygre-ExtraBold.woff2");
  font-display: swap;
}

@font-face {
  font-family: 'Cygre-Light';
  src: url("../fonts/Cygre-Light.woff"), url("../fonts/Cygre-Light.woff2");
  font-display: swap;
}

@font-face {
  font-family: 'Cygre-Medium';
  src: url("../fonts/Cygre-Medium.woff"), url("../fonts/Cygre-Medium.woff2");
  font-display: swap;
}

@font-face {
  font-family: 'Cygre-Regular';
  src: url("../fonts/Cygre-Regular.woff"), url("../fonts/Cygre-Regular.woff2");
  font-display: swap;
}

@font-face {
  font-family: 'Cygre-SemiBold';
  src: url("../fonts/Cygre-SemiBold.woff"), url("../fonts/Cygre-SemiBold.woff2");
  font-display: swap;
}

.text-up {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.no-br {
  display: none;
}

.color-white {
  color: #fff;
}

.color-black {
  color: #000;
}

.color-orange {
  color: #e74500;
}

.color-blue {
  color: #081e48;
}

.brad-12 {
  border-radius: 6px;
}

.font-w-light {
  font-family: 'Cygre-Light';
  font-weight: 300;
}

.font-w-regular {
  font-family: 'Cygre-Regular';
  font-weight: 400;
}

.font-w-medium {
  font-family: 'Cygre-Medium';
  font-weight: 500;
}

.font-w-semi-bold {
  font-family: 'Cygre-SemiBold';
  font-weight: 600;
}

.font-w-bold {
  font-family: 'Cygre-Bold';
  font-weight: 700;
}

.font-w-extra-bold {
  font-family: 'Cygre-ExtraBold';
  font-weight: 800;
}

.font-s-10 {
  font-size: 9px;
  line-height: 120%;
}

.font-s-16 {
  font-size: 13px;
  line-height: 112%;
}

.font-s-18 {
  font-size: 13px;
  line-height: 110%;
}

.font-s-18-a {
  font-size: 13px;
  line-height: 120%;
}

.font-s-18-z {
  font-size: 11px;
  line-height: 120%;
}

.font-s-22 {
  font-size: 13px;
  line-height: 110%;
}

.font-s-24 {
  font-size: 13px;
  line-height: 120%;
}

.font-s-26-z {
  font-size: 15px;
  line-height: 120%;
}

.font-s-28 {
  font-size: 13px;
  line-height: 110%;
}

.font-s-36 {
  font-size: 15px;
  line-height: 110%;
}

.font-s-40 {
  font-size: 16px;
  line-height: 110%;
}

.font-s-50 {
  font-size: 17px;
  line-height: 110%;
}

.font-s-66 {
  font-size: 20px;
  line-height: 110%;
}

.about-section__container {
  position: relative;
  z-index: 1;
  padding: 20px 0 5px;
  text-align: center;
  color: #081e48;
}

.about-section__title {
  padding-bottom: 20px;
}

.about-section__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 280px !important;
}

.about-section__card-block {
  width: 100%;
  background-color: #e2e9f6;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 10px 15px;
}

.about-section__card-block--3 {
  background-color: #e74500;
  color: #fff;
}

.about-section__card-icon {
  width: 22px;
  height: 22px;
}

.about-section__card-img {
  width: 100%;
  height: auto;
}

.agree {
  color: rgba(255,255,255,0.5);
}

.agree__privacy {
  text-decoration: underline;
  cursor: pointer;
}

.btn {
  height: 40px;
  width: 100%;
  user-select: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #fff;
  border-radius: 30px;
  box-shadow: inset 0 -2px 0 0 rgba(0,0,0,0.25);
  background: linear-gradient(90deg, #f70 0%, #ffae00 100%);
  text-transform: uppercase;
  font-family: 'Cygre-ExtraBold';
  font-weight: 800;
  font-size: 13px;
  line-height: 110%;
  transition: transform 0.5s, top 0.8s;
}

.btn:hover {
  transform: scale(1.02);
}

.btn:active {
  top: 3px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 36px;
  transform: skewX(-45deg);
  left: -150%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.4));
  animation: flareAnimation 4s infinite ease-in;
}

@-moz-keyframes flareAnimation {
  0% {
    left: -150%;
  }

  100% {
    left: 250%;
  }
}

@-webkit-keyframes flareAnimation {
  0% {
    left: -150%;
  }

  100% {
    left: 250%;
  }
}

@-o-keyframes flareAnimation {
  0% {
    left: -150%;
  }

  100% {
    left: 250%;
  }
}

@keyframes flareAnimation {
  0% {
    left: -150%;
  }

  100% {
    left: 250%;
  }
}

.btn--call-me {
  font-size: 8px;
  height: 23px;
  width: 110px;
}

.btn--main {
  height: 45px;
}

.city-section__out-wrapper {
  background-image: url("../images/city-section-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #224b89;
  overflow: hidden;
}

.city-section__container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px 0 0;
}

.city-section__title-mark {
  position: relative;
  z-index: 1;
}

.city-section__title-mark:after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #e74500;
  border-radius: 5px;
  width: 104.5%;
  height: 111%;
  top: -8%;
  left: -2.3%;
}

.city-section__sub-title {
  padding: 20px 0 15px;
}

.city-section__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.city-section__form > * {
  width: 280px !important;
}

.city-section__agree-wrapper {
  margin-top: 5px;
  padding-right: 85px;
}

.city-section__img {
  position: relative;
  z-index: -1;
  width: 280px;
  height: auto;
  margin: -38px 0 0 46px;
}

.details-section__container {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  color: #081e48;
}

.details-section__icon-bg {
  position: absolute;
  z-index: -1;
  width: 150px;
  height: 60px;
  top: 61px;
  right: -35px;
}

.details-section__title,
.details-section__card {
  text-align: center;
}

.details-section__title {
  padding-bottom: 20px;
}

.details-section__card {
  background-color: #e2e9f6;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 280px !important;
  height: 120px;
  padding: 10px 10px 15px;
}

.details-section__card-icon {
  width: 22px;
  height: 22px;
}

.details-section__bottom {
  width: 100%;
  text-align: center;
  background-color: #081e48;
  color: #fff;
  padding: 15px 10px;
  margin: 20px 0 0;
}

.details-section__bottom-text {
  padding: 10px 0;
}

.details-section__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.details-section__form > * {
  width: 280px !important;
}

.details-section__agree-wrapper {
  margin-top: 10px;
}

.finances-section__out-wrapper {
  background-image: url("../images/finances-section-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #224b89;
  overflow: hidden;
}

.finances-section__container {
  position: relative;
  z-index: 1;
  padding: 30px 0;
  text-align: center;
}

.finances-section__img-bg-1 {
  position: absolute;
  z-index: -1;
  height: auto;
  top: 0;
  width: 140px;
  left: -60px;
}

.finances-section__img-bg-2 {
  position: absolute;
  z-index: -1;
  height: auto;
  bottom: 0;
  width: 154px;
  right: -44px;
}

.finances-section__title {
  padding-bottom: 20px;
}

.finances-section__title-mark {
  position: relative;
  z-index: 1;
}

.finances-section__title-mark:after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #e74500;
  border-radius: 5px;
  width: 108%;
  height: 108%;
  top: 1%;
  left: -3.5%;
}

.finances-section__card {
  position: relative;
  width: 280px !important;
  height: 100px;
  background-color: #fff;
  color: #081e48;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.finances-section__card:after {
  content: "";
  position: absolute;
  background-color: #e74500;
  width: 53px;
  height: 1px;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.finances-section__bottom {
  position: relative;
  width: 100%;
  background-color: #081e48;
  padding: 15px 10px;
  margin-top: 20px;
}

.finances-section__bottom-text {
  padding: 10px 0;
}

.finances-section__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.finances-section__form > * {
  width: 280px !important;
}

.finances-section__agree-wrapper {
  margin-top: 10px;
}

.footer__container {
  color: #081e48;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 15px 0;
}

.footer__brand {
  display: none;
}

.footer__logo {
  width: 90px;
  height: 63px;
}

.footer__privacy,
.footer__privacy-mobile {
  cursor: pointer;
  text-decoration: underline;
}

.header {
  padding: 10px 0;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__brand {
  display: none;
}

.header__logo {
  width: 90px;
  height: 63px;
}

.header__brand-mobile {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8px 0;
  margin-top: 5px;
  color: #fff;
}

.header__brand-mobile:after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #081e48;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.input {
  height: 40px;
  width: 100%;
  padding: 0 19px;
  font-family: 'Cygre-Regular';
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  color: rgba(0,0,0,0.5);
  border: 1px solid #fff;
  border-radius: 30px;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, border 0.3s, background 0.3s;
}

.input:hover {
  border: 1px solid #f70;
}

.input:focus {
  color: #081e48;
  caret-color: #e74500;
  border: 1px solid #f70;
  box-shadow: 3px 3px 8px 0px #f70;
}

.input:focus::placeholder {
  color: rgba(0,0,0,0.5);
}

.input::placeholder {
  color: rgba(0,0,0,0.5);
}

.input.error {
  border: 1px solid #d94c4c;
  color: #d94c4c;
  caret-color: #d94c4c;
  box-shadow: 0px 0px 22px 0px #d94c4c;
  animation: shake 0.6s;
}

.input.error::placeholder {
  color: #d94c4c;
}

.input.error::-ms-input-placeholder {
  color: #d94c4c;
}

@-moz-keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

@-webkit-keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

@-o-keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.invest-section__container {
  position: relative;
  z-index: 1;
  color: #081e48;
  text-align: center;
  padding: 20px 0 5px;
}

.invest-section__title {
  padding-bottom: 20px;
}

.invest-section__card {
  overflow: hidden;
  width: 280px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e2e9f6;
  border: 2px solid #e2e9f6;
  padding: 20px 40px;
  gap: 20px;
}

.invest-section__img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.invest-section__card-block {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.invest-section__card-title {
  color: #2d3e64;
}

.invest-section__card-line {
  width: 53px;
  height: 1px;
  background-color: #2d3e64;
}

.main-section__out-wrapper {
  background-image: url("../images/main-section-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #224b89;
  overflow: hidden;
}

.main-section__container {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  text-align: center;
}

.main-section__title {
  padding-bottom: 10px;
}

.main-section__title-mark {
  position: relative;
  z-index: 1;
}

.main-section__title-mark:after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #e74500;
  border-radius: 5px;
  width: 100%;
  height: 118%;
  top: -8%;
  left: -1.3%;
}

.main-section__line {
  background-color: #fff;
  width: 53px;
  height: 1px;
  margin: 18px auto;
}

.main-section__text {
  padding-bottom: 10px;
}

.main-section__form {
  width: 280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.main-section__agree-wrapper {
  margin-top: 10px;
  width: 100%;
}

.main-section__img {
  width: 280px;
  height: auto;
  margin: 30px auto 0;
}

.main-section__block {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  background-color: #081e48;
  color: #fafffd;
  width: 130px;
  height: 130px;
  bottom: 165px;
  left: 179px;
}

.form-modal__feedback {
  position: relative;
  padding: 12px;
  background: linear-gradient(180deg, #1e3b65 0%, #072152 100%);
  box-shadow: 0px 2px 8px 0px #e2e9f6;
  border-radius: 6px;
}

.form-modal__wrapper {
  padding: 10px;
  border-radius: 15px;
}

.form-modal__info-title {
  font-size: 15px;
  margin: 0 0 18px 0;
  font-family: 'Cygre-Bold';
  text-transform: uppercase;
  font-weight: 700;
  line-height: 120%;
}

.form-modal__info-title br {
  display: block;
}

.form-modal__feedback-item {
  max-width: 255px;
  margin: 0 auto;
}

.form-modal__feedback-input {
  height: 45px;
  margin-bottom: 10px;
}

.form-modal__feedback-input .input__field {
  height: 100%;
  border: none;
}

.form-modal__button {
  margin-bottom: 20px;
}

.form-modal__button .btn {
  height: 45px;
  font-size: 12px !important;
}

.form-modal__agree {
  font-size: 10px;
  line-height: 13px;
  font-family: 'Cygre-Light';
  position: relative;
}

.form-modal__agree a {
  text-decoration: underline;
}

.content-privacy {
  max-width: 450px;
  width: 100%;
  padding: 30px 12px 40px 12px;
  background-color: #fff;
  text-align: start;
  position: relative;
  border-radius: 8px;
  color: #000;
}

.content-privacy h3 {
  padding: 10px 0 0 0;
  color: $color-purple-1;
}

.content-privacy__close {
  cursor: pointer;
  position: absolute;
  top: 6px;
  right: 11px;
}

.content-privacy__icon {
  width: 18px;
  height: 18px;
  transition: 0.3s;
  background-image: url("../images/icon-close-2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.content-privacy__icon:hover {
  transform: scale(1.3);
}

.content-privacy__btn-up {
  position: absolute;
  bottom: 10px;
  right: 9px;
}

.content-privacy__icon-up {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background: #e74500;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 1.2s linear infinite;
}

.content-privacy__icon-up img {
  width: 17px;
  height: auto;
}

@-moz-keyframes pulse {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0px);
  }
}

@-webkit-keyframes pulse {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0px);
  }
}

@-o-keyframes pulse {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0px);
  }
}

.content-privacy h2 {
  text-align: center;
  font-size: 17px;
  line-height: 120%;
  font-weight: bold;
  color: $color-purple-1;
}

.content-privacy h3,
.content-privacy strong {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 120%;
}

.content-privacy p {
  font-size: 14px;
  line-height: 120%;
}

.content-privacy li {
  padding: 0 0 0 5%;
}

.content-privacy li p {
  font-size: 13px;
  line-height: 120%;
}

.content-privacy p {
  margin: 5px 0;
}

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

.remodal-overlay {
  background-color: RGBA(10, 10, 10, 0.769);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

.remodal-wrapper {
  padding: 10px 10px 0;
}

.remodal {
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center;
}

.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.remodal-wrapper.remodal-is-opened {
  display: flex !important;
}

.remodal-wrapper {
  padding: 0;
  overflow: hidden;
}

.remodal-wrapper {
  overflow: hidden;
  padding: 0;
  margin: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  align-items: center;
}

.modal-scrollable.remodal-wrapper {
  display: flex;
  justify-content: center;
  padding: 14px 0;
  overflow: auto;
}

.remodal {
  max-height: 100%;
}

.remodal--privacy {
  max-width: 100%;
  padding: 0 10px;
}

.remodal__feedback {
  max-width: 350px;
}

.remodal__feedback-close {
  cursor: pointer;
  position: absolute;
  top: -40px;
  right: 0px;
  padding: 5px;
}

.remodal__feedback-icon {
  width: 18px;
  height: 18px;
  transition: 0.3s;
  background-image: url("../images/icon-close-custom.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.remodal__feedback-icon:hover {
  transform: scale(1.3);
}

@-moz-keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@-o-keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@-moz-keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@-o-keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@-moz-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-o-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-o-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.start-section__out-wrapper {
  background: linear-gradient(180deg, #1e3b65 0%, #072152 100%);
  overflow: hidden;
}

.start-section__container {
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

.start-section__img-1 {
  position: absolute;
  z-index: -1;
  width: 88px;
  height: auto;
  top: 124px;
  left: -37px;
}

.start-section__title {
  text-align: center;
  padding-bottom: 20px;
}

.start-section__title-mark {
  position: relative;
  z-index: 1;
}

.start-section__title-mark:after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #e74500;
  border-radius: 5px;
  width: 105%;
  height: 108%;
  top: 3%;
  left: -2%;
}

.start-section__card,
.start-section__bottom {
  text-align: center;
}

.start-section__card {
  width: 280px !important;
  background-color: #fff;
  color: #081e48;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 10px 30px;
}

.start-section__card-icon {
  width: 20px;
  height: 20px;
}

.start-section__bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 65px;
}

.start-section__bottom-text {
  padding-right: 60px;
}

.start-section__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
}

.start-section__form > * {
  width: 280px !important;
}

.start-section__agree-wrapper {
  margin-top: 10px;
}

.start-section__img-2 {
  position: absolute;
  width: 140px;
  height: auto;
  bottom: 152px;
  right: -33px;
}

.bullet-pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
}

.bullet-pagination--left {
  justify-content: start;
}

.bullet-pagination--right {
  justify-content: flex-end;
}

.bullet-pagination .swiper-pagination-bullet {
  background-color: #d7d7d7;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 1;
  position: relative;
}

.bullet-pagination .swiper-pagination-bullet-active {
  transform: scale(1.5);
  transition: transform 0.8s;
  background-color: #e74500;
}

.swiper-bullet {
  margin: 0 auto;
  width: 280px !important;
}

.thanks-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.thanks-section__out-wrapper {
  background-image: url("../images/main-section-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #224b89;
  padding: 30px 0;
}

.thanks-section__container {
  padding: 0 15px;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.thanks-section__inner-text {
  padding: 20px 0 40px 0;
}

.thanks-section__container a {
  max-width: 300px;
  margin: 0 auto;
}

body {
  margin: 0 auto;
  font-size: 18px;
  font-family: 'Cygre-Regular';
  font-weight: 400;
  line-height: 120%;
  color: #fff;
  background-color: #fffffa;
}

.layout {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.main {
  flex: 1;
}

.wrapper {
  max-width: 320px;
  margin: 0 auto;
  padding: 0 6px;
  width: 100%;
}

.out-wrapper {
  max-width: 370px;
  margin: 0 auto;
  width: 100%;
  border-radius: 25px;
}

@media only screen and (min-width: 768px) {
  .no-br {
    display: block;
  }

  .brad-12 {
    border-radius: 8px;
  }

  .font-s-16 {
    font-size: 12px;
  }

  .font-s-18 {
    font-size: 11px;
  }

  .font-s-18-a {
    font-size: 11px;
  }

  .font-s-18-z {
    font-size: 11px;
  }

  .font-s-22 {
    font-size: 13px;
  }

  .font-s-24 {
    font-size: 15px;
  }

  .font-s-26-z {
    font-size: 16px;
  }

  .font-s-28 {
    font-size: 20px;
  }

  .font-s-36 {
    font-size: 24px;
  }

  .font-s-40 {
    font-size: 24px;
  }

  .font-s-50 {
    font-size: 30px;
  }

  .font-s-66 {
    font-size: 42px;
  }

  .about-section__container {
    text-align: start;
    padding: 60px 0;
  }

  .about-section__title {
    padding-bottom: 30px;
  }

  .about-section__cards {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .about-section__card {
    width: 235px !important;
  }

  .about-section__card-block {
    gap: 12px;
    padding: 15px 5px 25px 15px;
  }

  .about-section__card-icon {
    width: 20px;
    height: 20px;
  }

  .btn {
    font-size: 11px;
    height: 45px;
  }

  .btn--call-me {
    font-size: 9px;
    height: 28px;
    width: 130px;
  }

  .city-section__container {
    text-align: start;
    padding: 40px 0;
  }

  .city-section__sub-title {
    padding: 30px 0 15px;
  }

  .city-section__form {
    width: 570px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .city-section__form > * {
    width: 188px !important;
  }

  .city-section__agree-wrapper {
    padding: 0;
    margin: 0;
    padding-left: 10px;
  }

  .city-section__img {
    margin: 0;
    position: absolute;
    height: 100%;
    width: auto;
    bottom: 0;
    right: -46px;
  }

  .details-section__container {
    padding: 50px 0;
  }

  .details-section__icon-bg {
    width: 240px;
    height: 96px;
    top: 98px;
    right: -47px;
  }

  .details-section__title,
  .details-section__card {
    text-align: start;
  }

  .details-section__title {
    padding-bottom: 30px;
  }

  .details-section__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .details-section__card {
    gap: 12px;
    width: 358px !important;
    height: 120px;
    padding: 15px 5px 15px 15px;
  }

  .details-section__card-icon {
    width: 20px;
    height: 20px;
  }

  .details-section__bottom {
    width: 91.5%;
    margin: 30px auto 0;
    padding: 25px 5px;
  }

  .details-section__bottom-text {
    padding: 15px 0;
  }

  .details-section__form {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }

  .details-section__form > * {
    width: 188px !important;
  }

  .finances-section__container {
    padding: 70px 0;
  }

  .finances-section__img-bg-1 {
    width: 290px;
    left: -54px;
  }

  .finances-section__img-bg-2 {
    width: 310px;
    right: -62px;
  }

  .finances-section__title {
    padding-bottom: 30px;
  }

  .finances-section__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .finances-section__card {
    gap: 30px;
    width: 235px !important;
    height: 107px;
  }

  .finances-section__card:after {
    top: 50%;
  }

  .finances-section__bottom {
    width: 91.5%;
    margin: 40px auto 0;
    padding: 30px 10px;
  }

  .finances-section__bottom-text {
    padding: 15px 0;
  }

  .finances-section__form {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }

  .finances-section__form > * {
    width: 188px !important;
  }

  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 0;
  }

  .footer__brand {
    flex-basis: 35%;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .footer__logo {
    width: 100px;
    height: 70px;
  }

  .footer__privacy-mobile {
    display: none;
  }

  .footer__call-me {
    flex-basis: 35%;
    display: flex;
    justify-content: flex-end;
  }

  .header {
    padding: 20px 0;
  }

  .header__brand {
    flex-basis: 35%;
    color: #081e48;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .header__logo {
    width: 100px;
    height: 70px;
  }

  .header__call-me {
    flex-basis: 35%;
    display: flex;
    justify-content: flex-end;
  }

  .header__brand-mobile {
    display: none;
  }

  .input {
    padding: 0 15px;
    font-size: 14px;
    height: 45px;
  }

  .invest-section__container {
    padding: 50px 0;
  }

  .invest-section__title {
    padding-bottom: 30px;
  }

  .invest-section__cards {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .invest-section__card {
    padding: 0;
    gap: 0;
    flex-direction: row;
    aspect-ratio: 580/300;
    width: 358px !important;
  }

  .invest-section__img {
    border-radius: 0;
    height: 100%;
    width: auto;
  }

  .invest-section__card-block {
    gap: 12px;
  }

  .invest-section__btn {
    width: 160px !important;
    height: 35px !important;
  }

  .main-section__container {
    text-align: start;
    padding: 30px 0;
  }

  .main-section__title {
    padding-bottom: 12px;
  }

  .main-section__title-mark:after {
    width: 103%;
  }

  .main-section__line {
    margin: 20px 0;
  }

  .main-section__text {
    padding-bottom: 12px;
  }

  .main-section__form {
    margin: 0;
    gap: 8px;
    width: 190px;
  }

  .main-section__agree-wrapper {
    width: 200px;
  }

  .main-section__img {
    margin: 0;
    position: absolute;
    z-index: -1;
    width: 455px;
    bottom: 31px;
    right: -52px;
  }

  .main-section__block {
    text-align: center;
    width: 140px;
    height: 140px;
    bottom: 70px;
    left: 200px;
  }

  .form-modal__feedback {
    border-radius: 8px;
  }

  .form-modal__wrapper {
    padding: 15px;
  }

  .form-modal__info-title {
    font-size: 16px;
  }

  .form-modal__feedback-item {
    max-width: 280px;
  }

  .form-modal__feedback-input {
    height: 50px;
    margin-bottom: 15px;
  }

  .form-modal__button .btn {
    font-size: 14px !important;
    height: 50px;
  }

  .form-modal__agree {
    font-size: 11px;
    line-height: 13px;
  }

  .content-privacy {
    padding: 24px 20px 34px 20px;
    max-width: 450px;
  }

  .content-privacy__close {
    top: 6px;
    right: 6px;
  }

  .content-privacy__icon {
    width: 22px;
    height: 22px;
  }

  .content-privacy h2 {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .content-privacy p {
    font-size: 14px;
  }

  .content-privacy p {
    margin: 10px 0;
  }

  .modal-scrollable.remodal-wrapper {
    padding: 20px 0;
  }

  .remodal--privacy {
    max-width: unset;
    padding: 0;
  }

  .remodal__feedback {
    max-width: 380px;
  }

  .remodal__feedback-icon {
    width: 24px;
    height: 24px;
  }

  .start-section__container {
    padding: 40px 0;
  }

  .start-section__img-1 {
    width: 160px;
    top: 11px;
    left: -64px;
  }

  .start-section__title {
    padding-bottom: 30px;
  }

  .start-section__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .start-section__card,
  .start-section__bottom {
    text-align: start;
  }

  .start-section__card {
    gap: 12px;
    width: 235px !important;
    padding: 15px 5px 25px 15px;
  }

  .start-section__card--set {
    margin-right: 50px;
  }

  .start-section__card-icon {
    width: 20px;
    height: 20px;
  }

  .start-section__bottom {
    align-items: flex-start;
    margin-top: 30px;
  }

  .start-section__bottom-text {
    padding: 0;
  }

  .start-section__form {
    flex-direction: row;
    gap: 8px;
    margin-top: 12px;
  }

  .start-section__form > * {
    width: 188px !important;
  }

  .start-section__agree-wrapper {
    margin: 10px 0 0 20px;
  }

  .start-section__img-2 {
    width: 478px;
    bottom: 55px;
    right: -75px;
  }

  .bullet-pagination {
    display: none;
  }

  .swiper-bullet {
    width: 100% !important;
  }

  .swiper-bullet .swiper-wrapper {
    transform: translate3d(0px, 0px, 0px) !important;
  }

  .thanks-section__out-wrapper {
    padding: 50px 0;
  }

  .wrapper {
    max-width: 750px;
    padding: 0 12px;
  }

  .out-wrapper {
    max-width: 830px;
    border-radius: 30px;
  }
}

@media only screen and (min-width: 1024px) {
  .brad-12 {
    border-radius: 10px;
  }

  .font-s-16 {
    font-size: 14px;
  }

  .font-s-18 {
    font-size: 15px;
  }

  .font-s-18-a {
    font-size: 15px;
  }

  .font-s-18-z {
    font-size: 15px;
  }

  .font-s-22 {
    font-size: 18px;
  }

  .font-s-24 {
    font-size: 19px;
  }

  .font-s-26-z {
    font-size: 22px;
  }

  .font-s-28 {
    font-size: 24px;
  }

  .font-s-36 {
    font-size: 30px;
  }

  .font-s-40 {
    font-size: 36px;
  }

  .font-s-50 {
    font-size: 40px;
  }

  .font-s-66 {
    font-size: 56px;
  }

  .about-section__container {
    padding: 80px 0;
  }

  .about-section__title {
    padding-bottom: 45px;
  }

  .about-section__cards {
    gap: 20px;
  }

  .about-section__card {
    gap: 20px;
    width: 308px !important;
  }

  .about-section__card-block {
    gap: 16px;
    padding: 18px 5px 30px 18px;
  }

  .about-section__card-icon {
    width: 22px;
    height: 22px;
  }

  .btn {
    font-size: 13px;
    height: 50px;
  }

  .btn--call-me {
    font-size: 10px;
    height: 32px;
    width: 140px;
  }

  .city-section__container {
    padding: 80px 0;
  }

  .city-section__title-mark:after {
    border-radius: 10px;
  }

  .city-section__sub-title {
    padding: 40px 0 18px;
  }

  .city-section__form {
    gap: 9px;
  }

  .city-section__form > * {
    width: 230px !important;
  }

  .city-section__agree-wrapper {
    padding-left: 15px;
  }

  .city-section__img {
    right: -40px;
  }

  .details-section__container {
    padding: 90px 0;
  }

  .details-section__icon-bg {
    width: 330px;
    height: 132px;
    top: 148px;
    right: -73px;
  }

  .details-section__title {
    padding-bottom: 45px;
  }

  .details-section__cards {
    gap: 15px;
  }

  .details-section__card {
    gap: 16px;
    width: 475px !important;
    height: 154px;
    padding: 18px 5px 18px 18px;
  }

  .details-section__card-icon {
    width: 22px;
    height: 22px;
  }

  .details-section__bottom {
    margin: 45px auto 0;
    padding: 35px 5px;
  }

  .details-section__bottom-text {
    padding: 18px 0;
  }

  .details-section__form {
    gap: 9px;
  }

  .details-section__form > * {
    width: 230px !important;
  }

  .finances-section__container {
    padding: 90px 0;
  }

  .finances-section__img-bg-1 {
    width: 380px;
    left: -74px;
  }

  .finances-section__img-bg-2 {
    width: 400px;
    right: -78px;
  }

  .finances-section__title {
    padding-bottom: 45px;
  }

  .finances-section__cards {
    gap: 20px;
  }

  .finances-section__card {
    gap: 35px;
    width: 308px !important;
    height: 136px;
  }

  .finances-section__bottom {
    margin: 50px auto 0;
    padding: 50px 10px;
  }

  .finances-section__bottom-text {
    padding: 18px 0;
  }

  .finances-section__form {
    gap: 9px;
  }

  .finances-section__form > * {
    width: 230px !important;
  }

  .footer__container {
    padding: 25px 0;
  }

  .footer__brand {
    gap: 6px;
  }

  .footer__logo {
    width: 120px;
    height: 84px;
  }

  .header {
    padding: 25px 0;
  }

  .header__brand {
    gap: 5px;
  }

  .header__logo {
    width: 120px;
    height: 84px;
  }

  .input {
    padding: 0 17px;
    font-size: 16px;
    height: 50px;
  }

  .invest-section__container {
    padding: 80px 0;
  }

  .invest-section__title {
    padding-bottom: 45px;
  }

  .invest-section__cards {
    gap: 20px;
  }

  .invest-section__card {
    width: 475px !important;
  }

  .invest-section__card-block {
    gap: 16px;
  }

  .invest-section__btn {
    width: 200px !important;
    height: 40px !important;
  }

  .main-section__container {
    padding: 60px 0;
  }

  .main-section__title {
    padding-bottom: 14px;
  }

  .main-section__title-mark:after {
    border-radius: 10px;
  }

  .main-section__line {
    margin: 25px 0;
  }

  .main-section__text {
    padding-bottom: 16px;
  }

  .main-section__form {
    gap: 9px;
    width: 230px;
  }

  .main-section__img {
    width: 600px;
    right: -57px;
    bottom: 39px;
  }

  .main-section__block {
    width: 200px;
    height: 200px;
    bottom: 77px;
    left: 248px;
  }

  .form-modal__feedback {
    border-radius: 10px;
  }

  .form-modal__info-title {
    line-height: 114%;
    font-size: 16px;
    margin: 0 0 40px 0;
  }

  .form-modal__feedback-input {
    height: 55px;
  }

  .form-modal__button .btn {
    font-size: 15px !important;
    height: 55px;
  }

  .form-modal__agree {
    font-size: 11px;
    line-height: 14px;
  }

  .content-privacy {
    max-width: 550px;
    padding: 30px 36px 40px 36px;
  }

  .content-privacy__close {
    top: 14px;
    right: 14px;
  }

  .content-privacy__icon-up {
    width: 40px;
    height: 40px;
  }

  .content-privacy__icon-up img {
    width: 20px;
  }

  .content-privacy h2 {
    font-size: 24px;
  }

  .remodal__feedback {
    max-width: 400px;
  }

  .start-section__container {
    padding: 80px 0;
  }

  .start-section__img-1 {
    width: 200px;
    top: 53px;
    left: -77px;
  }

  .start-section__title {
    padding-bottom: 45px;
  }

  .start-section__cards {
    gap: 20px;
  }

  .start-section__card {
    gap: 16px;
    width: 308px !important;
    padding: 18px 5px 30px 18px;
  }

  .start-section__card-icon {
    width: 22px;
    height: 22px;
  }

  .start-section__bottom {
    margin-top: 45px;
  }

  .start-section__form {
    gap: 9px;
    margin-top: 16px;
  }

  .start-section__form > * {
    width: 230px !important;
  }

  .start-section__img-2 {
    width: 620px;
    bottom: 94px;
    right: -90px;
  }

  .thanks-section__out-wrapper {
    padding: 70px 0;
  }

  .wrapper {
    max-width: 996px;
    padding: 0 15px;
  }

  .out-wrapper {
    max-width: 1080px;
    border-radius: 40px;
  }
}

@media only screen and (min-width: 1400px) {
  .brad-12 {
    border-radius: 12px;
  }

  .font-s-10 {
    font-size: 10px;
  }

  .font-s-16 {
    font-size: 16px;
    line-height: 18px;
  }

  .font-s-18 {
    font-size: 18px;
    line-height: 20px;
  }

  .font-s-18-a {
    font-size: 18px;
    line-height: 22px;
  }

  .font-s-18-z {
    font-size: 18px;
    line-height: 22px;
  }

  .font-s-22 {
    font-size: 22px;
    line-height: 24px;
  }

  .font-s-24 {
    font-size: 24px;
    line-height: 29px;
  }

  .font-s-26-z {
    font-size: 26px;
    line-height: 31px;
  }

  .font-s-28 {
    font-size: 28px;
    line-height: 31px;
  }

  .font-s-36 {
    font-size: 36px;
    line-height: 40px;
  }

  .font-s-40 {
    font-size: 40px;
  }

  .font-s-50 {
    font-size: 50px;
  }

  .font-s-66 {
    font-size: 66px;
    line-height: 73px;
  }

  .about-section__container {
    padding: 110px 0;
  }

  .about-section__title {
    padding-bottom: 60px;
  }

  .about-section__card {
    width: 380px !important;
  }

  .about-section__card-block {
    gap: 20px;
    padding: 20px 5px 36px 20px;
  }

  .about-section__card-icon {
    width: 24px;
    height: 24px;
  }

  .btn {
    font-size: 15px;
    height: 56px;
  }

  .btn--call-me {
    font-size: 11px;
    height: 36px;
    width: 155px;
  }

  .city-section__container {
    padding: 116px 0 115px;
  }

  .city-section__sub-title {
    padding: 50px 0 20px;
  }

  .city-section__form {
    gap: 10px;
  }

  .city-section__form > * {
    width: 280px !important;
  }

  .city-section__agree-wrapper {
    padding-left: 19px;
    padding-right: 20px;
  }

  .city-section__img {
    right: -97px;
  }

  .details-section__container {
    padding: 120px 0;
  }

  .details-section__icon-bg {
    width: 390px;
    height: 156px;
    top: 202px;
    right: -82px;
  }

  .details-section__title {
    padding-bottom: 60px;
  }

  .details-section__cards {
    gap: 20px;
  }

  .details-section__card {
    gap: 20px;
    width: 580px !important;
    height: 180px;
    padding: 20px 5px 20px 20px;
  }

  .details-section__card-icon {
    width: 24px;
    height: 24px;
  }

  .details-section__bottom {
    margin: 60px auto 0;
    padding: 40px 5px;
  }

  .details-section__bottom-text {
    padding: 20px 0;
  }

  .details-section__form {
    gap: 10px;
  }

  .details-section__form > * {
    width: 280px !important;
  }

  .finances-section__container {
    padding: 120px 0;
  }

  .finances-section__img-bg-1 {
    width: 515px;
    left: -130px;
  }

  .finances-section__img-bg-2 {
    width: 552px;
    right: -130px;
  }

  .finances-section__title {
    padding-bottom: 60px;
  }

  .finances-section__card {
    gap: 40px;
    width: 380px !important;
    height: 170px;
  }

  .finances-section__bottom {
    padding: 59px 10px 60px;
    margin: 60px auto 0;
  }

  .finances-section__bottom-text {
    padding: 20px 0;
  }

  .finances-section__form {
    gap: 10px;
  }

  .finances-section__form > * {
    width: 280px !important;
  }

  .footer__container {
    padding: 30px 0;
  }

  .footer__brand {
    gap: 6px;
  }

  .footer__logo {
    width: 143px;
    height: 100px;
  }

  .header {
    padding: 30px 0;
  }

  .header__brand {
    gap: 6px;
  }

  .header__logo {
    width: 143px;
    height: 100px;
  }

  .input {
    padding: 0 19px;
    font-size: 18px;
    height: 56px;
  }

  .invest-section__container {
    padding: 120px 0;
  }

  .invest-section__title {
    padding-bottom: 60px;
  }

  .invest-section__card {
    width: 580px !important;
  }

  .invest-section__card-block {
    gap: 20px;
  }

  .invest-section__btn {
    width: 240px !important;
    height: 40px !important;
  }

  .main-section__container {
    padding: 86px 0 85px;
  }

  .main-section__title {
    padding-bottom: 15px;
  }

  .main-section__line {
    margin: 30px 0;
  }

  .main-section__text {
    padding-bottom: 20px;
  }

  .main-section__form {
    gap: 10px;
    width: 280px;
  }

  .main-section__img {
    width: 783px;
    right: -130px;
    bottom: 35px;
  }

  .main-section__block {
    width: 229px;
    height: 229px;
    bottom: 97px;
    left: 325px;
  }

  .form-modal__feedback {
    border-radius: 12px;
  }

  .form-modal__wrapper {
    padding: 20px;
  }

  .form-modal__info-title {
    font-size: 20px;
  }

  .form-modal__feedback-item {
    max-width: 343px;
  }

  .form-modal__feedback-input {
    height: 60px;
    margin-bottom: 20px;
  }

  .form-modal__button .btn {
    font-size: 16px !important;
    height: 60px;
  }

  .form-modal__agree {
    font-size: 13px;
    line-height: 15px;
  }

  .content-privacy {
    max-width: 650px;
    padding: 30px 44px 40px 44px;
  }

  .content-privacy__close {
    top: 20px;
    right: 20px;
  }

  .content-privacy h2 {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .content-privacy h3,
  .content-privacy strong {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .content-privacy p {
    font-size: 16px;
  }

  .remodal__feedback {
    max-width: 425px;
  }

  .remodal__feedback-close {
    top: -43px;
    right: -7px;
  }

  .start-section__container {
    padding: 120px 0;
  }

  .start-section__img-1 {
    width: 270px;
    top: 80px;
    left: -115px;
  }

  .start-section__title {
    padding-bottom: 60px;
  }

  .start-section__card {
    gap: 20px;
    width: 380px !important;
    padding: 20px 5px 46px 20px;
  }

  .start-section__card-icon {
    width: 24px;
    height: 24px;
  }

  .start-section__bottom {
    margin-top: 60px;
  }

  .start-section__form {
    gap: 10px;
    margin-top: 20px;
  }

  .start-section__form > * {
    width: 280px !important;
  }

  .start-section__img-2 {
    width: 790px;
    bottom: 102px;
    right: -130px;
  }

  .thanks-section__out-wrapper {
    padding: 90px 0;
  }

  .wrapper {
    padding: 0 20px;
    max-width: 1220px;
  }

  .out-wrapper {
    max-width: 1440px;
    border-radius: 60px;
  }
}