@import url("https://fonts.cdnfonts.com/css/century-gothic-paneuropean");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  font-family: "Century Gothic Paneuropean", sans-serif;
}

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

a, button {
  cursor: pointer;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
a:hover, button:hover {
  -webkit-filter: brightness(0.85);
          filter: brightness(0.85);
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: #111111;
  color: #fff;
}

body {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

section {
  padding: 60px 0;
}

.container {
  width: 100%;
  max-width: 1330px;
  padding: 0 15px;
  margin: 0 auto;
}

.main-btn {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 12;
  padding: 0;
}
.main-btn__wrapper {
  border-radius: 120px;
  background: #FFEA1B;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 12;
  gap: 29px;
  padding: 16px 16px 16px 30px;
}
.main-btn::after {
  content: "";
  border-radius: 120px;
  position: absolute;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  z-index: 0;
  background: -webkit-gradient(linear, left top, right top, from(#71690C), to(#131101));
  background: linear-gradient(90deg, #71690C 0%, #131101 100%);
}

.header {
  padding: 40px 0;
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(20, 20, 20, 0.2509803922);
  border: 1px solid #2D2C21;
  backdrop-filter: blur(6px);
  padding: 14px 16px;
  border-radius: 100px;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
  padding-left: 22px;
}
.header__logo__img {
  height: 49px;
  width: auto;
  display: block;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
.header__nav a {
  font-size: 12px;
  color: #FFFFFF;
}
.header__nav .main-btn {
  margin-left: 90px;
}
.header__nav .main-btn::after {
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
}
.header__nav .main-btn__wrapper {
  gap: 19px;
  padding: 10px 12px 10px 26px;
}

.intro {
  background: url(../img/intro-bg.png) no-repeat center top/1360px auto;
  padding: 0 0 224px;
}
.intro__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.intro__text h1 {
  font-size: 64px;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: radial-gradient(46.4% 68.06% at 50% 50%, #FFEA1B 0%, #FFFFFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.intro__text p {
  text-align: center;
  padding: 23px 0 32px;
  font-size: 16px;
  max-width: 764px;
  margin: 0 auto;
}
.intro__text__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.intro__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 66px;
}
.intro__logos__item {
  text-align: center;
}
.intro__logos__item img {
  height: 64px;
  width: auto;
}
.intro__logos__item p {
  color: #F35D2F;
  font-size: 10px;
  margin-top: 24px;
}

.main-title {
  position: relative;
  padding: 12px 45px;
  background: rgba(20, 20, 20, 0.7490196078);
  border: 1px solid #2D2C21;
  color: #fff;
  margin-bottom: 41px;
  display: inline-block;
  border-radius: 100px;
}
.main-title--black {
  background: rgba(0, 0, 0, 0.1019607843);
  border: 1px solid rgba(45, 44, 33, 0.1490196078);
  color: #000;
}
.main-title h2 {
  color: inherit;
  font-weight: 400;
  font-size: 18px;
}

.about {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFEA1B;
}
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about__right {
  width: 50%;
  height: 100%;
  height: 645px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__left {
  width: 50%;
  padding: 50px 20px 50px 0;
  max-width: 678px;
  padding-left: 16px;
  margin-left: auto;
  color: #000;
  max-height: 645px;
  font-size: 16px;
}
.about__left p {
  font-weight: 400;
  line-height: 1.3;
}
.about__left p + p {
  margin-top: 27px;
}
.about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  margin-top: 24px;
}
.about__item + p {
  margin-top: 36px;
}

.benefits__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.benefits__item {
  -webkit-box-shadow: 0px 0px 43px 0px rgba(255, 234, 27, 0.3019607843) inset;
          box-shadow: 0px 0px 43px 0px rgba(255, 234, 27, 0.3019607843) inset;
  border: 2px solid #48481F;
  background: rgba(20, 20, 20, 0.7490196078);
  padding: 20px 33px 54px;
  width: 100%;
  max-width: 420px;
  border-radius: 17px;
  text-align: center;
}
.benefits__item img {
  height: 120px;
  width: auto;
  display: inline-block;
  margin: 0 auto;
}
.benefits__item--last {
  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: 33px;
}
.benefits__item--last img {
  height: 140px;
}
.benefits__item p {
  font-size: 16px;
}

.services {
  background: url(../img/services-bg.png) no-repeat center bottom/1230px auto;
  padding-bottom: 100px;
}
.services__subtitle {
  margin-bottom: 48px;
  font-size: 16px;
}
.services__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0 100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -100px;
  padding-top: 100px;
}
.services__item {
  padding: 47px 22px;
  backdrop-filter: blur(6px);
  border: 1px solid #2D2C21;
  background: rgba(20, 20, 20, 0.5019607843);
  width: 100%;
  max-width: 300px;
  border-radius: 25px;
}
.services__item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.services__item__head div {
  height: 39px;
  width: 39px;
  min-height: 39px;
  min-width: 39px;
  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;
  background: #FFEA1B;
  border-radius: 100%;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.services__item__head h3 {
  font-size: 16px;
  color: #fff;
}
.services__item p {
  font-size: 12px;
  color: #fff;
  margin-top: 12px;
}
.services__item--1 {
  -webkit-transform: translate(-70px, 95px);
          transform: translate(-70px, 95px);
}
.services__item--2 {
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
}
.services__item--3 {
  -webkit-transform: translate(40px, 0);
          transform: translate(40px, 0);
}
.services__item--4 {
  -webkit-transform: translateY(75px);
          transform: translateY(75px);
}
.services__item--6 {
  -webkit-transform: translate(0, 95px);
          transform: translate(0, 95px);
}

.calc {
  background: url(../img/calculator-bg.png) no-repeat center/auto 100%;
  --bg: #0f0f10;
  --panel: #171717;
  --panel2: #1f1f1f;
  --text: #ededed;
  --muted: #b9b9b9;
  --accent: #ffe000;
  --accent-ink: #1a1a1a;
  --ring: #ffd84d;
}
.calc__box {
  background: radial-gradient(120% 120% at 50% 0%, rgba(255, 224, 0, 0.08) 0, rgba(255, 224, 0, 0) 60%), var(--bg);
  color: var(--text);
  border-radius: 16px;
  padding: 28px;
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.calc__icon {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto 10px;
}
.calc__title {
  text-align: center;
  margin: 0 0 18px;
  font-weight: 600;
  font-size: 18px;
}
.calc__content {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 224, 0, 0.12)), color-stop(60%, rgba(255, 224, 0, 0))), rgba(255, 255, 255, 0.02);
  background: linear-gradient(180deg, rgba(255, 224, 0, 0.12), rgba(255, 224, 0, 0) 60%), rgba(255, 255, 255, 0.02);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.calc__form {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}
.calc__label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 6px;
}
.calc__input, .calc__select {
  width: 100%;
  padding: 14px 16px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text);
  outline: none;
  -webkit-transition: border-color 0.15s, -webkit-box-shadow 0.15s;
  transition: border-color 0.15s, -webkit-box-shadow 0.15s;
  transition: border-color 0.15s, box-shadow 0.15s;
  transition: border-color 0.15s, box-shadow 0.15s, -webkit-box-shadow 0.15s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #fff;
}
.calc__input::-webkit-input-placeholder, .calc__select::-webkit-input-placeholder {
  color: rgba(128, 128, 128, 0.5019607843);
}
.calc__input::-moz-placeholder, .calc__select::-moz-placeholder {
  color: rgba(128, 128, 128, 0.5019607843);
}
.calc__input:-ms-input-placeholder, .calc__select:-ms-input-placeholder {
  color: rgba(128, 128, 128, 0.5019607843);
}
.calc__input::-ms-input-placeholder, .calc__select::-ms-input-placeholder {
  color: rgba(128, 128, 128, 0.5019607843);
}
.calc__input::placeholder, .calc__select::placeholder {
  color: rgba(128, 128, 128, 0.5019607843);
}
.calc__input option, .calc__select option {
  color: #fff;
}
.calc__select {
  color: rgba(128, 128, 128, 0.5019607843);
}
.calc__input:focus, .calc__select:focus {
  border-color: var(--ring);
  -webkit-box-shadow: 0 0 0 4px rgba(255, 224, 0, 0.12);
          box-shadow: 0 0 0 4px rgba(255, 224, 0, 0.12);
}
.calc__input--error {
  border-color: #ff6b6b;
  -webkit-box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15);
          box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15);
}
.calc__error {
  margin-top: 6px;
  color: #ff8a8a;
  font-size: 12px;
  min-height: 14px;
  display: none;
}
.calc__btn {
  margin-top: 20px;
  width: 100%;
  border: 0;
  background: #FFEA1B;
  color: #000;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.06s ease, -webkit-filter 0.15s ease;
  transition: -webkit-transform 0.06s ease, -webkit-filter 0.15s ease;
  transition: transform 0.06s ease, filter 0.15s ease;
  transition: transform 0.06s ease, filter 0.15s ease, -webkit-transform 0.06s ease, -webkit-filter 0.15s ease;
  border-radius: 100px;
  padding: 27px;
}
.calc__btn:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.calc__btn:hover {
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
}
.calc__input--error + .calc__error {
  display: block;
  padding-top: 6px;
}
.calc__result {
  display: none;
}
.calc__result--visible {
  display: block;
}
.calc__result-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.calc__result-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin: 10px 0;
  font-size: 12px;
  color: rgba(128, 128, 128, 0.5019607843);
}
.calc__result-value {
  color: #FFEA1B;
}
.calc__container {
  background: rgba(20, 20, 20, 0.5019607843);
  border: 4px solid #2D2C21;
  backdrop-filter: blur(25px);
  padding: 30px;
  border-radius: 18px;
}
.calc__box {
  background: rgba(20, 20, 20, 0.5019607843);
  backdrop-filter: blur(25px);
  border: 2px solid #2D2C21;
  padding: 40px 112px 70px;
  border-radius: 25px;
  max-width: 876px;
}
.calc__box > img {
  height: 71px;
  width: auto;
  margin-top: -75px;
}
.calc__box > p {
  font-size: 16px;
  font-weight: 400;
}
.calc__content {
  padding: 17px 33px 41px;
  backdrop-filter: blur(25px);
  border: 2px solid #2D2C21;
  background: rgba(20, 20, 20, 0.5019607843);
  border-radius: 25px;
}
.calc__content > p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 19px;
}
.steps {
  background: #FFEA1B url(../img/steps-bg.png) no-repeat center bottom/auto 95%;
  padding-bottom: 0;
}
.steps__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 59px;
}
.steps__title .main-title {
  margin: 0;
}
.steps__title a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFEA1C;
  background: #111111;
  padding: 20px 51px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: bold;
}
.steps__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.steps__item {
  height: 100%;
  background: #111111;
  padding: 26px 35px;
  min-height: 359px;
  width: 100%;
  max-width: 252px;
  border-radius: 25px 25px 0 0;
  text-align: center;
}
.steps__item--1, .steps__item--5 {
  min-height: 241px;
}
.steps__item--2, .steps__item--4 {
  min-height: 300px;
}
.steps__item div {
  color: rgba(220, 224, 43, 0.2509803922);
  font-size: 96px;
  font-weight: bold;
}
.steps__item p {
  color: #FFFFFF;
  font-size: 15px;
}

.reviews__slider {
  max-height: 428px;
}
.reviews__title {
  color: #fff;
  font-size: 46px;
  font-weight: bold;
  width: 100%;
  margin-bottom: 40px;
}
.reviews__item__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
}
.reviews__item__img {
  height: 429px;
  width: 429px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 21px;
}
.reviews__item__text {
  max-width: 541px;
}
.reviews__item__text img {
  display: block;
  width: 187px;
  height: auto;
  margin-bottom: 64px;
}
.reviews__item__text p {
  color: #6B6B6B;
  font-size: 15px;
}
.reviews__item__text p b {
  font-size: 16px;
  color: #fff;
  color: #fff;
}
.reviews__item__text p + p {
  margin-top: 25px;
}
.reviews .slick-slide {
  margin: 0 10px;
}
.reviews .slick-next, .reviews .slick-prev {
  min-height: 41px;
  min-width: 41px;
  top: auto;
}
.reviews .slick-next {
  bottom: 0;
  right: 0;
}
.reviews .slick-prev {
  bottom: 0;
  left: auto;
  right: 53px;
}

.contacts {
  background: url(../img/contacts-bg.png) no-repeat center/1360px auto;
}
.contacts__content {
  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;
  gap: 20px;
}
.contacts__img {
  max-width: 650px;
  width: 100%;
  height: auto;
  margin-top: auto;
}
.contacts__form {
  width: 100%;
  max-width: 662px;
  text-align: left;
  padding: 30px 20px 40px;
  background: rgba(20, 20, 20, 0.5019607843);
  border: 2px solid #2D2C21;
  backdrop-filter: blur(25px);
  border-radius: 25px;
}
.contacts__form h3 {
  text-align: center;
  margin-bottom: 21px;
}
.contacts__form .form-input {
  width: 100%;
  padding: 24px;
  margin-bottom: 20px;
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #fff;
  border-radius: 22px;
}
.contacts__form .form-input::-webkit-input-placeholder {
  color: #B0B0B0;
}
.contacts__form .form-input::-moz-placeholder {
  color: #B0B0B0;
}
.contacts__form .form-input:-ms-input-placeholder {
  color: #B0B0B0;
}
.contacts__form .form-input::-ms-input-placeholder {
  color: #B0B0B0;
}
.contacts__form .form-input::placeholder {
  color: #B0B0B0;
}
.contacts__form .form-input::-webkit-outer-spin-button, .contacts__form .form-input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}
.contacts__form p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  margin-top: 14px;
}
.contacts__form .form-btn {
  margin-top: 20px;
  width: 100%;
  border: 0;
  background: #FFEA1B;
  color: #000;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.06s ease, -webkit-filter 0.15s ease;
  transition: -webkit-transform 0.06s ease, -webkit-filter 0.15s ease;
  transition: transform 0.06s ease, filter 0.15s ease;
  transition: transform 0.06s ease, filter 0.15s ease, -webkit-transform 0.06s ease, -webkit-filter 0.15s ease;
  border-radius: 100px;
  padding: 26px;
  font-size: 16px;
}

.iti--separate-dial-code .iti__selected-dial-code {
  color: #fff;
}

.iti {
  margin-bottom: 20px;
}

.iti__selected-flag {
  border-radius: 10px 0 0 10px;
}

.footer {
  padding: 34px 0 25px;
  background: #FFEA1B url(../img/footer-bg.png) no-repeat bottom 0 right 60px/590px auto;
}
.footer__menu .container .header__nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__links .header__nav a {
  color: #000;
}
.footer__text {
  margin-top: 170px;
}
.footer__text__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.footer__text p {
  font-size: 14px;
  color: #000;
}

.mob-visible {
  display: none;
}

.policy h1 {
  font-size: 32px;
  margin-bottom: 20px;
}
.policy p, .policy li {
  font-size: 16px;
  margin-bottom: 16px;
}
.policy h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.thanks {
  background: #0F0F0F url(../img/thanks-bg.png) no-repeat center top/cover;
  color: #fff;
  padding: 0;
  text-align: center;
}
.thanks__img {
  width: 120px;
  height: auto;
}
.thanks h1 {
  font-size: 64px;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: radial-gradient(46.4% 68.06% at 50% 50%, #FFEA1B 0%, #FFFFFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 45px;
}
.thanks p {
  font-size: 16px;
  margin-bottom: 15px;
}
.thanks p a {
  font-size: 14px;
  text-decoration: underline;
}
.thanks p img {
  height: 22px;
  width: auto;
  margin-bottom: -5px;
}
.thanks .container {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 210px 15px 12px;
}

@media (max-width: 1380px) {
  .container {
    max-width: 1100px;
  }
  .services__item {
    -webkit-transform: none !important;
            transform: none !important;
  }
}
@media (max-width: 1100px) {
  .container {
    max-width: 911px;
  }
  .header__nav {
    gap: 20px;
  }
  .about__img {
    max-width: 400px;
  }
  .how__content,
  .results__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contacts__img {
    max-width: 450px;
    margin-top: 0;
  }
  .main-title span {
    font-size: 100px;
    bottom: -13px;
  }
  .results__content__top {
    gap: 45px;
  }
  .achieve__right {
    max-width: 500px;
    margin-top: -50px;
  }
  .why__content__bottom__right {
    max-width: 300px;
  }
  .header__nav .main-btn {
    margin-left: 0;
  }
  .steps__content {
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .steps {
    padding-bottom: 60px;
  }
  .steps__item {
    min-height: 1px;
    border-radius: 21px;
    max-width: 380px;
  }
  .steps__title a {
    display: none;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 768px;
  }
  .about__content,
  .intro__logos,
  .help__content,
  .contacts__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .help__content {
    gap: 40px;
  }
  .help__btn {
    background: transparent;
  }
  .about__left {
    max-width: 100%;
  }
  .why__content__bottom {
    -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;
  }
  .mob-hidden {
    display: none;
  }
  .mob-visible {
    display: block;
  }
  .about {
    padding: 60px 0;
  }
  .about__img {
    margin: 0 auto -70px;
  }
  .results__content {
    padding: 0;
  }
  .results__content__top {
    -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;
    gap: 16px;
  }
  .why__content {
    background: #111111 url(../img/why-bg.png) no-repeat bottom -20px left -20px/100% 100%;
  }
  .results__mob-line {
    width: 100%;
    max-width: 46px;
  }
  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    padding-bottom: 0;
  }
  .about__left {
    padding: 0 16px;
  }
  .about__left, .about__right {
    width: 100%;
  }
  .benefits__item--last {
    display: none;
  }
  .services {
    background: transparent;
  }
  .calc__container {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 576px;
  }
  .intro {
    background: url(../img/intro-bg.png) no-repeat center top/768px auto;
  }
  .intro__text {
    padding-top: 220px;
  }
  .header__nav {
    display: none;
  }
  .burger {
    display: block;
  }
  .intro__text h1 {
    font-size: 24px;
    line-height: 1.2;
  }
  .intro__text h1 br {
    display: none;
  }
  .intro__text p {
    font-size: 14px;
  }
  .main-title span {
    font-size: 40px;
    bottom: 0;
  }
  .why__content__bottom {
    padding: 34px 16px;
  }
  .why__content__bottom__item {
    gap: 8px;
  }
  .why__content__bottom__item p {
    font-size: 16px;
  }
  .intro__logos {
    gap: 20px;
  }
  .results__item h3 {
    font-size: 32px;
  }
  .results__item p {
    font-size: 14px;
  }
  .intro__logos__item {
    max-width: 180px;
  }
  .intro__logos__item img {
    height: 33px;
  }
  .main-title h2 {
    font-size: 16px;
  }
  .about__left p {
    font-size: 16px;
  }
  .reviews__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reviews__item p {
    max-width: 100%;
  }
  .why__item h3 {
    font-size: 22px;
  }
  .contacts__form {
    padding: 33px 16px;
  }
  .thanks {
    background: url(../img/thanks-bg-mob.png) no-repeat center bottom/100% auto;
  }
  .thanks .container {
    padding-top: 200px;
  }
  .thanks h1 {
    font-size: 64px;
  }
  .achieve__content {
    -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;
  }
  .achieve__right {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  .achieve__item p {
    font-size: 16px;
  }
  .faq__item__text__head {
    font-size: 20px;
  }
  .faq__item__btn {
    height: 40px;
    width: 40px;
    min-height: 40px;
    min-width: 40px;
  }
  .faq__item__btn img {
    width: 16px;
    width: auto;
  }
  .contacts__form .form-input {
    padding: 16px;
  }
  .contacts {
    background: url(../img/contacts-bg.png) no-repeat center/768px auto;
  }
  .calc__box {
    padding: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
  }
  .steps {
    background-position: top 120px center;
    background-size: 150% auto;
  }
  .calc__box > img {
    margin-top: 0;
  }
  .intro {
    background: url(../img/intro-bg-mob.png) no-repeat center bottom/360px auto;
    padding-bottom: 290px;
  }
  .intro__text {
    padding-top: 10px;
  }
  .services__item {
    width: 100%;
    max-width: 100%;
  }
  .services__content {
    gap: 20px;
    padding: 23px 0 0;
    margin-top: 0;
  }
  .calc__container, .calc__btn {
    padding: 18px;
  }
  .reviews__item__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reviews__title {
    font-size: 26px;
  }
  .reviews__slider {
    max-height: 100%;
    padding-top: 80px;
  }
  .reviews .slick-next, .reviews .slick-prev {
    bottom: auto;
    top: 20px;
  }
  .reviews__item__img {
    width: 320px;
    height: 320px;
  }
  .contacts__form .form-btn {
    padding: 18px;
  }
  .footer {
    padding: 34px 0 25px;
    background: #FFEA1B url(../img/footer-bg-mob.png) no-repeat center right 10px/auto 103px;
  }
  .calc__content {
    padding: 22px;
  }
  .calc__result-item {
    font-size: 11px;
  }
}
@media (max-width: 420px) {
  .container {
    max-width: 385px;
  }
  .contacts {
    background: url(../img/contacts-bg-mob.png) no-repeat center/620px auto;
  }
}/*# sourceMappingURL=styles.css.map */