@font-face {
  font-family: "RubikRegular";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2");
  src: url("../fonts/Rubik-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RubikMedium";
  src: url("../fonts/Rubik-Medium.woff2") format("woff2");
  src: url("../fonts/Rubik-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RubikBold";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2");
  src: url("../fonts/Rubik-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CaveatRegular";
  src: url("../fonts/Caveat-Regular.woff2") format("woff2");
  src: url("../fonts/Caveat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  color: var(--text, #040606);
  font-family: "RubikRegular", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 21.6px */
  position: relative;
  margin: 0;
  padding: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media all and (max-width: 650px) {
  body {
    font-size: 16px;
  }
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
p {
  margin: 0;
  cursor: default;
}
@media all and (max-width: 650px) {
  p {
    font-size: 16px !important;
    line-height: 1.1em;
  }
}

button {
  cursor: pointer;
}

span,
div {
  cursor: default;
}
@media all and (max-width: 650px) {
  span,
div {
    font-size: 16px !important;
    line-height: 1.1em;
    line-height: 20px !important;
  }
}

ul, li {
  margin: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1em;
}

button {
  cursor: pointer;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  max-width: 1210px;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0 15px;
  margin: 0 auto;
}
@media all and (max-width: 1300px) {
  .container {
    max-width: 1020px;
  }
}
@media all and (max-width: 1050px) {
  .container {
    max-width: 960px;
  }
}
@media all and (max-width: 992px) {
  .container {
    max-width: 768px;
  }
}
@media all and (max-width: 768px) {
  .container {
    max-width: 640px;
  }
}
@media all and (max-width: 650px) {
  .container {
    max-width: 300px;
    padding: 0 5px;
  }
}
@media (max-width: 320px) {
  .container {
    padding: 0 15px;
  }
}

@media all and (max-width: 650px) {
  .block {
    display: block;
  }
}

.tac {
  text-align: center;
}

.section-title {
  color: var(--text, #040606);
  font-family: "RubikBold", sans-serif;
  font-size: 68px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  font-size: calc(38px + 30 * (100vw - 640px) / 1280);
}
@media screen and (min-width: 1920px) {
  .section-title {
    font-size: 68px;
  }
}
@media all and (max-width: 650px) {
  .section-title {
    font-size: 24px !important;
    margin-bottom: 20px !important;
    line-height: 130% !important;
    margin-top: 0;
    text-align: center;
  }
}
.section-title span {
  color: var(--orange, #EF3C1E);
}
@media all and (max-width: 650px) {
  .section-title span {
    font-size: 24px !important;
    line-height: 130% !important;
  }
}

@-webkit-keyframes slideme {
  0% {
    left: -30px;
    margin-left: 0;
  }
  30%, to {
    left: 110%;
    margin-left: 80px;
  }
}
@keyframes slideme {
  0% {
    left: -30px;
    margin-left: 0;
  }
  30%, to {
    left: 110%;
    margin-left: 80px;
  }
}
.btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  -webkit-transition: background-image 0.3s;
  -o-transition: background-image 0.3s;
  transition: background-image 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  z-index: 2;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  color: #FFF;
  text-align: center;
  font-family: "RubikBold", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 256px;
  height: 61px;
  border-radius: 16px;
  background: -webkit-gradient(linear, left top, right top, from(#F55201), to(#F48A00));
  background: -o-linear-gradient(left, #F55201 0%, #F48A00 100%);
  background: linear-gradient(90deg, #F55201 0%, #F48A00 100%);
  -webkit-box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.25) inset;
}
.btn img {
  width: 13px;
  height: 15px;
}
.btn::after {
  content: "";
  margin-left: 60px;
  width: 15px;
  height: 300px;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0.01)));
  background: -o-linear-gradient(bottom, #fff, rgba(255, 255, 255, 0.01));
  background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0.01));
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.01s;
  position: absolute;
  left: -90px;
  top: -150px;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation-name: slideme;
  animation-name: slideme;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 0;
}
@media all and (max-width: 650px) {
  .btn {
    width: 100% !important;
    height: 50px !important;
    font-size: 14px !important;
  }
}
.btn:hover {
  background: -webkit-gradient(linear, left top, right top, from(#F55201), to(#F55201));
  background: -o-linear-gradient(left, #F55201 0%, #F55201 100%);
  background: linear-gradient(90deg, #F55201 0%, #F55201 100%);
}
.btn:active {
  background: -webkit-gradient(linear, left top, right top, from(#F48A00), to(#F48A00));
  background: -o-linear-gradient(left, #F48A00 0%, #F48A00 100%);
  background: linear-gradient(90deg, #F48A00 0%, #F48A00 100%);
}

input {
  outline: none;
}

label.error {
  display: none !important;
}

input.error {
  display: block;
  color: red !important;
}
input.error::-webkit-input-placeholder {
  color: red !important;
}
input.error::-moz-placeholder {
  color: red !important;
}
input.error:-ms-input-placeholder {
  color: red !important;
}
input.error::-ms-input-placeholder {
  color: red !important;
}
input.error::placeholder {
  color: red !important;
}

.form-transition input.error {
  background: #fff;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-anim {
  opacity: 0;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition: opacity 1.5s, -webkit-transform 2s;
  transition: opacity 1.5s, -webkit-transform 2s;
  -o-transition: opacity 1.5s, transform 2s;
  transition: opacity 1.5s, transform 2s;
  transition: opacity 1.5s, transform 2s, -webkit-transform 2s;
}
.top-anim._active {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.down-anim {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 1.5s, -webkit-transform 2s;
  transition: opacity 1.5s, -webkit-transform 2s;
  -o-transition: opacity 1.5s, transform 2s;
  transition: opacity 1.5s, transform 2s;
  transition: opacity 1.5s, transform 2s, -webkit-transform 2s;
}
.down-anim._active {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.left-anim {
  opacity: 0;
  -webkit-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  transform: translateX(-30px);
  -webkit-transition: opacity 1.5s, -webkit-transform 2s;
  transition: opacity 1.5s, -webkit-transform 2s;
  -o-transition: opacity 1.5s, transform 2s;
  transition: opacity 1.5s, transform 2s;
  transition: opacity 1.5s, transform 2s, -webkit-transform 2s;
}
.left-anim._active {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.right-anim {
  opacity: 0;
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: opacity 1.5s, -webkit-transform 2s;
  transition: opacity 1.5s, -webkit-transform 2s;
  -o-transition: opacity 1.5s, transform 2s;
  transition: opacity 1.5s, transform 2s;
  transition: opacity 1.5s, transform 2s, -webkit-transform 2s;
}
.right-anim._active {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

@media all and (max-width: 650px) {
  section .container {
    overflow: visible;
  }
}

.slick-dots li button:before {
  opacity: 0;
}

.slick-dots li.slick-active button:before {
  opacity: 0;
}

.noLink {
  pointer-events: none;
}

.slick-prev:before, .slick-next:before {
  line-height: 1px;
  font-family: inherit;
}

@media all and (max-width: 650px) {
  .mob-row {
    display: block;
  }
}

.slick-dots li button::before {
  font-size: 0 !important;
  opacity: 0 !important;
}
.slick-dots .slick-dots button:hover {
  font-size: 0 !important;
}
.slick-dots .slick-active button {
  background: #ff005b;
}

.form-section-bottom-text {
  text-align: center;
}
@media all and (max-width: 650px) {
  .form-section-bottom-text {
    text-align: center !important;
  }
}

@media all and (max-width: 650px) {
  .form-inputs {
    width: 100%;
  }
}

.form-inner {
  position: relative;
  z-index: 4;
  width: auto;
  margin: 0;
}
@media all and (max-width: 650px) {
  .form-inner {
    width: 100%;
  }
}

.form-title {
  color: #FFF;
  text-align: center;
  font-family: "RubikMedium", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 26.4px */
}
.form-title span {
  color: #BAD6C1;
}
@media all and (max-width: 650px) {
  .form-title span {
    font-size: 18px !important;
    line-height: 130% !important;
  }
}
@media all and (max-width: 650px) {
  .form-title {
    font-size: 18px !important;
    text-align: center;
    margin-bottom: 15px !important;
    line-height: 130% !important;
    letter-spacing: 0px;
    text-align: center !important;
  }
  .form-title br {
    display: none;
  }
}

.form-subtitle {
  color: #FFF;
  text-align: center;
  font-family: "RubikRegular", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 22px */
}
@media all and (max-width: 650px) {
  .form-subtitle {
    padding-bottom: 0;
    padding-left: 0;
    text-align: center !important;
    margin-bottom: 15px !important;
    text-align: center !important;
  }
}

.form-section-wrap {
  max-width: 788px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin: 0;
  gap: 10px;
  text-align: center;
  margin: 0 auto;
}
@media all and (max-width: 768px) {
  .form-section-wrap {
    max-width: 400px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media all and (max-width: 650px) {
  .form-section-wrap {
    gap: 8px !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    gap: 8px !important;
    padding: 0;
  }
}
@media all and (max-width: 768px) {
  .form-section-wrap .btn {
    width: 100% !important;
  }
}

.form-section-row {
  position: relative;
  overflow: hidden;
  width: 256px;
  height: 61px;
  border-radius: 16px;
  background: #FFF;
}
@media all and (max-width: 768px) {
  .form-section-row {
    width: 100% !important;
  }
}
@media all and (max-width: 650px) {
  .form-section-row {
    height: 50px !important;
    width: 100%;
  }
}
.form-section-row:focus {
  background: #fff;
}

.form-section-row input {
  width: 100%;
  height: 100%;
  border: none;
  line-height: 100%;
  /* 16px */
  background: transparent;
  color: #000;
  font-family: "RubikRegular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 24px;
}
@media all and (max-width: 650px) {
  .form-section-row input {
    font-size: 16px;
  }
}
.form-section-row input::-webkit-input-placeholder {
  color: #ABABAB;
  font-family: "RubikRegular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form-section-row input::-moz-placeholder {
  color: #ABABAB;
  font-family: "RubikRegular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form-section-row input:-ms-input-placeholder {
  color: #ABABAB;
  font-family: "RubikRegular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form-section-row input::-ms-input-placeholder {
  color: #ABABAB;
  font-family: "RubikRegular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form-section-row input::placeholder {
  color: #ABABAB;
  font-family: "RubikRegular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media all and (max-width: 650px) {
  .form-section-row input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form-section-row input::-moz-placeholder {
    font-size: 16px;
  }
  .form-section-row input:-ms-input-placeholder {
    font-size: 16px;
  }
  .form-section-row input::-ms-input-placeholder {
    font-size: 16px;
  }
  .form-section-row input::placeholder {
    font-size: 16px;
  }
}

.form-bottom {
  color: #929292;
  text-align: center;
  font-family: "RubikRegular", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 13.2px */
  margin-top: 20px;
}
@media all and (max-width: 650px) {
  .form-bottom {
    text-align: center;
    font-size: 12px !important;
    line-height: 100% !important;
    margin-top: 8px;
    text-align: center !important;
  }
}
.form-bottom a {
  text-decoration: underline;
}
@media all and (max-width: 650px) {
  .form-bottom a {
    font-size: 12px !important;
    line-height: 100% !important;
    display: block;
  }
}
.form-bottom a:hover {
  text-decoration: underline;
}

.overflow-inner {
  overflow: hidden;
}

.slick-dots {
  z-index: 1;
  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;
  text-align: start;
  bottom: -56px;
}
@media all and (max-width: 768px) {
  .slick-dots {
    text-align: center;
  }
}
@media all and (max-width: 650px) {
  .slick-dots {
    bottom: -30px;
  }
}
.slick-dots li {
  width: 10px;
  height: 10px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 5px;
}
.slick-dots li button {
  background: grey;
  width: 100%;
  height: 100%;
  padding: 0;
}
.slick-dots li button:before {
  display: none;
}
.slick-dots li.slick-active {
  height: 10px;
}
.slick-dots li.slick-active button {
  background: #F55201;
  height: 100%;
}

.form-section-row.tell.validate {
  display: block;
  border: 1px solid red;
}
.form-section-row.tell.validate input {
  color: red !important;
}
.form-section-row.tell.validate input::-webkit-input-placeholder {
  color: red !important;
}
.form-section-row.tell.validate input::-moz-placeholder {
  color: red !important;
}
.form-section-row.tell.validate input:-ms-input-placeholder {
  color: red !important;
}
.form-section-row.tell.validate input::-ms-input-placeholder {
  color: red !important;
}
.form-section-row.tell.validate input::placeholder {
  color: red !important;
}

.subtitle {
  color: var(--orange, #EF3C1E);
  text-align: center;
  font-family: "CaveatRegular", sans-serif;
  font-size: 110px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 121px */
}
@media all and (max-width: 1300px) {
  .subtitle {
    font-size: 80px;
  }
}
@media all and (max-width: 1050px) {
  .subtitle {
    font-size: 60px;
  }
}
@media all and (max-width: 992px) {
  .subtitle {
    font-size: 40px;
  }
}
@media all and (max-width: 650px) {
  .subtitle {
    font-size: 40px !important;
  }
}

.info {
  color: var(--text, #040606);
  font-family: "RubikBold", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
@media all and (max-width: 1300px) {
  .info {
    font-size: 22px;
  }
}
@media all and (max-width: 1050px) {
  .info {
    font-size: 20px;
  }
}
.info span {
  color: var(--base3, #4E6E55);
}

@media all and (max-width: 650px) {
  .wrap-slider.overflow .slick-list {
    overflow: visible;
  }
}

br.mob-br {
  display: none;
}
@media all and (max-width: 650px) {
  br.mob-br {
    display: block !important;
  }
}

.preload__box {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 100;
}

.preload__box .flex {
  width: 100%;
  height: 100%;
}

#floatingCirclesG {
  position: relative;
  width: 112px;
  height: 112px;
  margin: auto;
  transform: scale(0.6);
  -o-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
}

.f_circleG {
  position: absolute;
  background-color: rgb(255, 255, 255);
  height: 20px;
  width: 20px;
  border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  animation-name: f_fadeG;
  -o-animation-name: f_fadeG;
  -ms-animation-name: f_fadeG;
  -webkit-animation-name: f_fadeG;
  -moz-animation-name: f_fadeG;
  animation-duration: 0.992s;
  -o-animation-duration: 0.992s;
  -ms-animation-duration: 0.992s;
  -webkit-animation-duration: 0.992s;
  -moz-animation-duration: 0.992s;
  animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-direction: normal;
  -o-animation-direction: normal;
  -ms-animation-direction: normal;
  -webkit-animation-direction: normal;
  -moz-animation-direction: normal;
}

#frotateG_01 {
  left: 0;
  top: 45px;
  animation-delay: 0.3695s;
  -o-animation-delay: 0.3695s;
  -ms-animation-delay: 0.3695s;
  -webkit-animation-delay: 0.3695s;
  -moz-animation-delay: 0.3695s;
}

#frotateG_02 {
  left: 13px;
  top: 13px;
  animation-delay: 0.496s;
  -o-animation-delay: 0.496s;
  -ms-animation-delay: 0.496s;
  -webkit-animation-delay: 0.496s;
  -moz-animation-delay: 0.496s;
}

#frotateG_03 {
  left: 45px;
  top: 0;
  animation-delay: 0.6125s;
  -o-animation-delay: 0.6125s;
  -ms-animation-delay: 0.6125s;
  -webkit-animation-delay: 0.6125s;
  -moz-animation-delay: 0.6125s;
}

#frotateG_04 {
  right: 13px;
  top: 13px;
  animation-delay: 0.739s;
  -o-animation-delay: 0.739s;
  -ms-animation-delay: 0.739s;
  -webkit-animation-delay: 0.739s;
  -moz-animation-delay: 0.739s;
}

#frotateG_05 {
  right: 0;
  top: 45px;
  animation-delay: 0.8655s;
  -o-animation-delay: 0.8655s;
  -ms-animation-delay: 0.8655s;
  -webkit-animation-delay: 0.8655s;
  -moz-animation-delay: 0.8655s;
}

#frotateG_06 {
  right: 13px;
  bottom: 13px;
  animation-delay: 0.992s;
  -o-animation-delay: 0.992s;
  -ms-animation-delay: 0.992s;
  -webkit-animation-delay: 0.992s;
  -moz-animation-delay: 0.992s;
}

#frotateG_07 {
  left: 45px;
  bottom: 0;
  animation-delay: 1.1085s;
  -o-animation-delay: 1.1085s;
  -ms-animation-delay: 1.1085s;
  -webkit-animation-delay: 1.1085s;
  -moz-animation-delay: 1.1085s;
}

#frotateG_08 {
  left: 13px;
  bottom: 13px;
  animation-delay: 1.235s;
  -o-animation-delay: 1.235s;
  -ms-animation-delay: 1.235s;
  -webkit-animation-delay: 1.235s;
  -moz-animation-delay: 1.235s;
}

@-webkit-keyframes f_fadeG {
  0% {
    background-color: rgb(0, 0, 0);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.99);
  }
}

@keyframes f_fadeG {
  0% {
    background-color: rgb(0, 0, 0);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.99);
  }
}
.form-section-inner {
  position: relative;
}

.preload__box .flex.align-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes phase {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
  75% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes phase {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
  75% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes tilt {
  0% {
    -webkit-transform: rotateX(-30deg);
    transform: rotateX(-30deg);
  }
  25% {
    -webkit-transform: rotateX(30deg);
    transform: rotateX(30deg);
  }
  50% {
    -webkit-transform: rotateY(-30deg);
    transform: rotateY(-30deg);
  }
  75% {
    -webkit-transform: rotateY(30deg);
    transform: rotateY(30deg);
  }
  100% {
    -webkit-transform: rotateZ(20deg);
    transform: rotateZ(20deg);
  }
}
@keyframes tilt {
  0% {
    -webkit-transform: rotateX(-30deg);
    transform: rotateX(-30deg);
  }
  25% {
    -webkit-transform: rotateX(30deg);
    transform: rotateX(30deg);
  }
  50% {
    -webkit-transform: rotateY(-30deg);
    transform: rotateY(-30deg);
  }
  75% {
    -webkit-transform: rotateY(30deg);
    transform: rotateY(30deg);
  }
  100% {
    -webkit-transform: rotateZ(20deg);
    transform: rotateZ(20deg);
  }
}
@-webkit-keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 10%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0, 10%, 0) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0, 10%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) translate3d(0, 10%, 0) rotateZ(-360deg);
  }
}
@keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 10%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0, 10%, 0) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0, 10%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) translate3d(0, 10%, 0) rotateZ(-360deg);
  }
}
@-webkit-keyframes lighthouse {
  0% {
    -webkit-transform: translate3d(15%, 0, 0) rotateZ(10deg);
    transform: translate3d(15%, 0, 0) rotateZ(10deg);
  }
  100% {
    -webkit-transform: translate3d(-15%, 0, 0) rotateZ(-10deg);
    transform: translate3d(-15%, 0, 0) rotateZ(-10deg);
  }
}
@keyframes lighthouse {
  0% {
    -webkit-transform: translate3d(15%, 0, 0) rotateZ(10deg);
    transform: translate3d(15%, 0, 0) rotateZ(10deg);
  }
  100% {
    -webkit-transform: translate3d(-15%, 0, 0) rotateZ(-10deg);
    transform: translate3d(-15%, 0, 0) rotateZ(-10deg);
  }
}
@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotateZ(10deg);
    transform: rotateZ(10deg);
  }
  100% {
    -webkit-transform: rotateZ(-10deg);
    transform: rotateZ(-10deg);
  }
}
@keyframes swing {
  0% {
    -webkit-transform: rotateZ(10deg);
    transform: rotateZ(10deg);
  }
  100% {
    -webkit-transform: rotateZ(-10deg);
    transform: rotateZ(-10deg);
  }
}
.widjet {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
  padding: 0 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media all and (max-width: 650px) {
  .widjet {
    height: auto;
    z-index: 2;
    padding: 0 0;
  }
}
@media all and (max-width: 650px) {
  .widjet .container {
    max-width: 300px;
  }
}
.widjet .header-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 2;
}
@media all and (max-width: 992px) {
  .widjet .header-inner {
    padding-left: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
}
@media all and (max-width: 650px) {
  .widjet .header-inner {
    height: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.widjet .logo {
  width: 292px;
  margin-left: -130px;
}
@media all and (max-width: 992px) {
  .widjet .logo {
    margin-left: -70px;
  }
}
@media all and (max-width: 650px) {
  .widjet .logo {
    width: 200px;
  }
}
.widjet .header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.widjet .name {
  width: 129px;
  height: 34px;
  border-radius: 8px;
  background: #FFFCF7;
  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;
  color: #040606;
  text-align: center;
  font-family: "RubikMedium", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}
@media all and (max-width: 992px) {
  .widjet .name {
    display: none;
  }
}
.widjet .header-info {
  color: #040606;
  font-size: 15px;
  font-style: normal;
  line-height: 110%;
  /* 16.5px */
}
@media all and (max-width: 768px) {
  .widjet .header-info {
    display: none;
  }
}
.widjet .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 70px;
}
@media all and (max-width: 1050px) {
  .widjet .header-right {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 1050px) {
  .widjet .header-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.widjet .header-pnone {
  color: #DD2B1C;
  text-align: center;
  font-family: "Exo2Bold", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
}
@media all and (max-width: 650px) {
  .widjet .header-pnone {
    font-size: 14px;
  }
}
.widjet .header-pnone:hover {
  text-decoration: underline;
}
.widjet .header-call {
  color: #FFF;
  text-align: center;
  font-family: "RubikBold", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 149px;
  height: 40px;
  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;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#F55201), to(#F48A00));
  background: -o-linear-gradient(left, #F55201 0%, #F48A00 100%);
  background: linear-gradient(90deg, #F55201 0%, #F48A00 100%);
  -webkit-box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.25) inset;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.widjet .header-call:hover {
  background: -webkit-gradient(linear, left top, right top, from(#F55201), to(#F55201));
  background: -o-linear-gradient(left, #F55201 0%, #F55201 100%);
  background: linear-gradient(90deg, #F55201 0%, #F55201 100%);
}
.widjet .header-call:active {
  background: -webkit-gradient(linear, left top, right top, from(#F48A00), to(#F48A00));
  background: -o-linear-gradient(left, #F48A00 0%, #F48A00 100%);
  background: linear-gradient(90deg, #F48A00 0%, #F48A00 100%);
}
@media all and (max-width: 650px) {
  .widjet .header-call {
    width: 135px;
    height: 35px;
    font-size: 13px !important;
  }
}
.widjet .descp {
  font-size: 12px !important;
  padding: 3px 0;
  background: -webkit-gradient(linear, left top, right top, from(#F55201), to(#F48A00));
  background: -o-linear-gradient(left, #F55201 0%, #F48A00 100%);
  background: linear-gradient(90deg, #F55201 0%, #F48A00 100%);
  width: 100%;
  text-align: center;
  color: #fff;
  margin-top: 10px;
  display: none;
}
@media all and (max-width: 650px) {
  .widjet .descp {
    display: block;
  }
}

.offer {
  position: relative;
  padding: 48px 0 0 0;
  background: #FFFCF7;
}
@media all and (max-width: 650px) {
  .offer {
    padding: 20px 0 0 0;
  }
}
.offer .offer-overflow {
  padding: 0 10px;
}
.offer .offer-wrap {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  border-radius: 80px;
  background-image: url(../img/offer/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #EAE4DB;
}
@media all and (max-width: 650px) {
  .offer .offer-wrap {
    border-radius: 20px;
  }
}
.offer .offer-inner {
  padding: 199px 0 105px;
  position: relative;
}
@media all and (max-width: 992px) {
  .offer .offer-inner {
    padding: 155px 0 105px;
  }
}
.offer .offer-inner::after {
  content: "";
  position: absolute;
  left: -24px;
  bottom: 132px;
  background-image: url(../img/offer/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 81.941px;
  height: 84.645px;
  z-index: 1;
}
@media all and (max-width: 1300px) {
  .offer .offer-inner::after {
    width: 60px;
    height: 60px;
  }
}
@media all and (max-width: 1050px) {
  .offer .offer-inner::after {
    display: none;
  }
}
.offer .offer-inner::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 176px;
  background-image: url(../img/offer/arrow2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 59.425px;
  height: 88.011px;
  z-index: 1;
}
@media all and (max-width: 1300px) {
  .offer .offer-inner::before {
    width: 60px;
    height: 60px;
  }
}
@media all and (max-width: 1050px) {
  .offer .offer-inner::before {
    display: none;
  }
}
@media all and (max-width: 650px) {
  .offer .offer-inner {
    padding: 135px 0 375px 0;
  }
}
.offer .section-title {
  text-align: center;
  font-size: 68px;
}
@media all and (max-width: 1300px) {
  .offer .section-title {
    font-size: 50px;
  }
}
@media all and (max-width: 1050px) {
  .offer .section-title {
    font-size: 40px;
  }
}
@media all and (max-width: 768px) {
  .offer .section-title {
    font-size: 30px;
  }
}
@media all and (max-width: 650px) {
  .offer .section-title {
    font-size: 22px !important;
  }
  .offer .section-title br {
    display: none;
  }
}
@media all and (max-width: 650px) {
  .offer .section-title span {
    font-size: 22px !important;
  }
}
.offer .subtitle {
  text-align: center;
  margin-bottom: 22px;
  margin-top: -10px;
}
@media all and (max-width: 992px) {
  .offer .subtitle {
    margin-top: 0;
  }
}
@media all and (max-width: 650px) {
  .offer .subtitle {
    margin-top: -10px;
  }
}
.offer .info {
  text-align: center;
  margin-bottom: 46px;
}
.offer .info span {
  color: var(--orange, #EF3C1E);
}
@media all and (max-width: 1050px) {
  .offer .info {
    margin-bottom: 200px;
  }
}
@media all and (max-width: 650px) {
  .offer .info {
    margin-bottom: 20px;
  }
  .offer .info br {
    display: none;
  }
}
.offer .offer-left .offer-img {
  left: -250px;
  bottom: 214px;
  z-index: 5;
}
@media all and (max-width: 1300px) {
  .offer .offer-left .offer-img {
    width: 350px;
    bottom: 240px;
    left: -150px;
  }
}
@media all and (max-width: 1050px) {
  .offer .offer-left .offer-img {
    bottom: 300px;
    left: -28px;
  }
}
@media all and (max-width: 992px) {
  .offer .offer-left .offer-img {
    width: 280px;
  }
}
@media all and (max-width: 768px) {
  .offer .offer-left .offer-img {
    width: 240px;
    bottom: 440px;
  }
}
@media all and (max-width: 650px) {
  .offer .offer-left .offer-img {
    bottom: 0;
    width: 300px;
    left: -50px;
  }
}
.offer .offer-left .offer-box {
  -webkit-transform: rotate(-15.966deg);
  -ms-transform: rotate(-15.966deg);
  transform: rotate(-15.966deg);
  bottom: 245px;
  left: -108px;
  z-index: 6;
  padding: 20px 10px;
}
@media (max-width: 1500px) {
  .offer .offer-left .offer-box {
    left: 0;
  }
}
@media all and (max-width: 1300px) {
  .offer .offer-left .offer-box {
    max-width: 240px;
    width: 100%;
  }
}
@media all and (max-width: 1050px) {
  .offer .offer-left .offer-box {
    bottom: 330px;
    left: 50px;
  }
}
@media all and (max-width: 768px) {
  .offer .offer-left .offer-box {
    -webkit-transform: rotate(-5.966deg);
    -ms-transform: rotate(-5.966deg);
    transform: rotate(-5.966deg);
    bottom: 450px;
  }
}
@media all and (max-width: 650px) {
  .offer .offer-left .offer-box {
    -webkit-transform: rotate(-2.966deg);
    -ms-transform: rotate(-2.966deg);
    transform: rotate(-2.966deg);
    bottom: 20px;
    left: 50px;
  }
}
.offer .offer-right .offer-img {
  width: 491px;
  right: -245px;
  bottom: 264px;
  z-index: 5;
}
@media all and (max-width: 1300px) {
  .offer .offer-right .offer-img {
    width: 350px;
    right: -150px;
  }
}
@media all and (max-width: 1050px) {
  .offer .offer-right .offer-img {
    right: 0;
    width: 300px;
    bottom: 300px;
  }
}
@media all and (max-width: 992px) {
  .offer .offer-right .offer-img {
    width: 280px;
  }
}
@media all and (max-width: 768px) {
  .offer .offer-right .offer-img {
    bottom: 450px;
    width: 220px;
  }
}
@media all and (max-width: 650px) {
  .offer .offer-right .offer-img {
    bottom: 200px;
    right: -100px;
    width: 260px;
  }
}
.offer .offer-right .offer-box {
  -webkit-transform: rotate(14.653deg);
  -ms-transform: rotate(14.653deg);
  transform: rotate(14.653deg);
  bottom: 304px;
  right: -100px;
  z-index: 6;
  max-width: 220px;
  width: 100%;
}
@media (max-width: 1500px) {
  .offer .offer-right .offer-box {
    right: 0;
  }
}
@media all and (max-width: 1300px) {
  .offer .offer-right .offer-box {
    max-width: 240px;
    width: 100%;
  }
}
@media all and (max-width: 1050px) {
  .offer .offer-right .offer-box {
    right: 120px;
  }
}
@media all and (max-width: 992px) {
  .offer .offer-right .offer-box {
    -webkit-transform: rotate(5.653deg);
    -ms-transform: rotate(5.653deg);
    transform: rotate(5.653deg);
    bottom: 320px;
    right: 50px;
  }
}
@media all and (max-width: 768px) {
  .offer .offer-right .offer-box {
    bottom: 450px;
  }
}
@media all and (max-width: 650px) {
  .offer .offer-right .offer-box {
    bottom: 240px;
    left: 0;
    -webkit-transform: rotate(2.966deg);
    -ms-transform: rotate(2.966deg);
    transform: rotate(2.966deg);
  }
}
.offer .offer-img {
  width: 490px;
  position: absolute;
  pointer-events: none;
}
.offer .offer-box {
  border-radius: 20px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  padding: 20px;
  max-width: 265px;
  width: 100%;
  position: absolute;
}
.offer .offer-box__title {
  color: var(--text, #040606);
  text-align: center;
  font-family: "RubikMedium", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 17.6px */
  margin-bottom: 6px;
}
.offer .offer-box__text {
  color: #656565;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  line-height: 110%;
}
@media all and (max-width: 1300px) {
  .offer .offer-box__text br {
    display: none;
  }
}
@media all and (max-width: 650px) {
  .offer .offer-box__text {
    font-size: 12px !important;
    line-height: 110% !important;
  }
}
.offer .offer-bottom {
  border-radius: 30px;
  background: #1C1F1F;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  max-width: 896px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
}
@media all and (max-width: 650px) {
  .offer .offer-bottom {
    padding: 20px 10px;
  }
}
.offer .offer-subtitle {
  color: #FFF;
  text-align: center;
  font-family: "RubikMedium", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 24.2px */
  margin-bottom: 20px;
}
.offer .form-inner {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}
.offer .form-section-wrap {
  max-width: 100%;
  margin: 0 auto;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.offer .row {
  width: 33%;
}
.second {
  position: relative;
  z-index: 2;
  background: #FFFCF7;
}
.second .second-inenr {
  padding: 130px 0;
  position: relative;
  z-index: 1;
}
.second .second-inenr::after {
  content: "";
  position: absolute;
  right: -158px;
  bottom: 292px;
  background-image: url(../img/second/right.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 367.474px;
  height: 383.498px;
  z-index: -1;
}
@media all and (max-width: 992px) {
  .second .second-inenr {
    padding: 90px 0;
  }
}
@media all and (max-width: 768px) {
  .second .second-inenr {
    padding: 60px 0;
  }
}
@media all and (max-width: 650px) {
  .second .second-inenr {
    padding: 35px 0;
  }
}
@media all and (max-width: 650px) {
  .second .section-title {
    margin-bottom: 0 !important;
  }
}
.second .subtitle {
  text-align: right;
}
@media all and (max-width: 992px) {
  .second .subtitle {
    font-size: 60px;
  }
}
@media all and (max-width: 650px) {
  .second .subtitle {
    margin-bottom: 20px;
  }
}
.second .info {
  text-align: right;
  margin-bottom: 67px;
  padding-right: 103px;
}
@media all and (max-width: 1300px) {
  .second .info {
    padding-right: 36px;
  }
}
@media all and (max-width: 650px) {
  .second .info {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.second .second-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media all and (max-width: 992px) {
  .second .second-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media all and (max-width: 650px) {
  .second .second-list {
    margin-bottom: 70px;
    row-gap: 40px;
  }
}
.second .second-list::after {
  content: "";
  position: absolute;
  left: -135px;
  top: -93px;
  background-image: url(../img/second/left.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 262px;
  height: 198px;
  z-index: -1;
}
@media all and (max-width: 650px) {
  .second .second-list::after {
    width: 200px;
    height: 130px;
    top: -40px;
    left: -100px;
  }
}
.second .second-item {
  border-radius: 40px;
  background: var(--base-green, #BAD6C1);
  max-width: 380px;
  width: 100%;
  position: relative;
  padding: 55px 16px 16px 16px;
}
@media all and (max-width: 992px) {
  .second .second-item {
    max-width: 47%;
  }
}
@media all and (max-width: 650px) {
  .second .second-item {
    max-width: 100%;
    border-radius: 20px;
    padding: 40px 16px 16px 16px;
  }
}
.second .second-item__icon {
  width: 50px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -25px;
}
.second .second-item__text {
  color: var(--text, #040606);
  text-align: center;
  font-family: "RubikRegular", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 22px */
  margin-bottom: 30px;
}
@media all and (max-width: 1300px) {
  .second .second-item__text br {
    display: none;
  }
}
@media all and (max-width: 650px) {
  .second .second-item__text {
    margin-bottom: 20px;
  }
}
.second .second-item__text span {
  color: var(--text, #040606);
  font-family: "RubikBold", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.second .second-item__img {
  border-radius: 30px;
  overflow: hidden;
}
@media all and (max-width: 650px) {
  .second .second-item__img {
    border-radius: 20px;
  }
}
.second .second-bottom {
  border-radius: 30px;
  background: #1C1F1F;
  max-width: 986px;
  width: 100%;
  margin: 0 auto;
  padding: 75px 20px 48px;
  position: relative;
}
@media all and (max-width: 650px) {
  .second .second-bottom {
    padding: 70px 10px 20px 10px;
  }
}
.second .avtor {
  width: 103px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -52px;
}
.second .form-title {
  margin-bottom: 20px;
}
.second .form-inner {
  max-width: 821px;
  width: 100%;
  margin: 0 auto;
}
.second .form-section-wrap {
  max-width: 100%;
}
@media all and (max-width: 1300px) {
  .second .form-section-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.second textarea {
  border-radius: 16px;
  background: #FFF;
  height: 82px;
  padding-top: 20px;
  resize: none;
  outline: none;
  color: #000;
  font-family: "RubikRegular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  padding-left: 24px;
}
@media all and (max-width: 650px) {
  .second textarea {
    font-size: 16px;
  }
}
.second textarea::-webkit-input-placeholder {
  color: #ABABAB;
  font-family: "RubikRegular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.second textarea::-moz-placeholder {
  color: #ABABAB;
  font-family: "RubikRegular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.second textarea:-ms-input-placeholder {
  color: #ABABAB;
  font-family: "RubikRegular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.second textarea::-ms-input-placeholder {
  color: #ABABAB;
  font-family: "RubikRegular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.second textarea::placeholder {
  color: #ABABAB;
  font-family: "RubikRegular", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media all and (max-width: 650px) {
  .second textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
  .second textarea::-moz-placeholder {
    font-size: 16px;
  }
  .second textarea:-ms-input-placeholder {
    font-size: 16px;
  }
  .second textarea::-ms-input-placeholder {
    font-size: 16px;
  }
  .second textarea::placeholder {
    font-size: 16px;
  }
}
.second .row {
  width: 267px;
}
@media all and (max-width: 1300px) {
  .second .row {
    width: 32%;
  }
}
@media all and (max-width: 992px) {
  .second .row {
    width: 31%;
  }
}

.third {
  position: relative;
  z-index: 1;
  background: #FFFCF7;
}
.third .third-wrap {
  position: relative;
}
.third .third-wrap::after {
  content: "";
  position: absolute;
  right: 23px;
  top: 102px;
  background-image: url(../img/third/top.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 108px;
  height: 101px;
  z-index: 1;
}
@media all and (max-width: 992px) {
  .third .third-wrap::after {
    width: 70px;
    height: 70px;
    top: 150px;
  }
}
@media all and (max-width: 650px) {
  .third .third-wrap::after {
    width: 50px;
    height: 50px;
    top: 70px;
  }
}
.third .third-wrap::before {
  content: "";
  position: absolute;
  right: 423px;
  top: 192px;
  background-image: url(../img/third/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 42px;
  height: 62px;
  z-index: 1;
}
@media all and (max-width: 992px) {
  .third .third-wrap::before {
    top: 150px;
  }
}
@media all and (max-width: 768px) {
  .third .third-wrap::before {
    display: none;
  }
}
.third .third-inner {
  padding: 0 0 130px 0;
  position: relative;
  z-index: 1;
}
.third .third-inner::after {
  content: "";
  position: absolute;
  left: -242px;
  bottom: 247px;
  background-image: url(../img/third/1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 734.168px;
  height: 855.159px;
  z-index: -1;
}
@media all and (max-width: 1300px) {
  .third .third-inner::after {
    width: 600px;
    height: 700px;
  }
}
@media all and (max-width: 768px) {
  .third .third-inner::after {
    display: none;
  }
}
@media all and (max-width: 650px) {
  .third .third-inner::after {
    width: 270px;
    height: 290px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -10px;
    display: block;
  }
}
.third .third-inner::before {
  content: "";
  position: absolute;
  right: -140px;
  bottom: 266px;
  background-image: url(../img/third/1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 367.474px;
  height: 383.498px;
  z-index: -1;
}
@media all and (max-width: 992px) {
  .third .third-inner {
    padding-bottom: 60px;
  }
}
@media all and (max-width: 650px) {
  .third .third-inner {
    padding: 35px 0 300px;
  }
}
.third .section-title {
  font-size: 68px;
}
@media all and (max-width: 1300px) {
  .third .section-title {
    font-size: 50px;
  }
}
@media all and (max-width: 650px) {
  .third .section-title {
    margin-bottom: 0 !important;
  }
}
.third .subtitle {
  font-size: 110px;
  text-align: start;
}
@media all and (max-width: 992px) {
  .third .subtitle {
    font-size: 70px;
  }
}
@media all and (max-width: 650px) {
  .third .subtitle {
    margin-bottom: 30px;
  }
}
.third .info {
  margin-left: 455px;
  margin-top: -90px;
  margin-bottom: 135px;
}
@media all and (max-width: 1300px) {
  .third .info {
    margin-top: -80px;
  }
}
@media all and (max-width: 992px) {
  .third .info {
    margin-top: -60px;
    margin-left: 300px;
  }
}
@media all and (max-width: 650px) {
  .third .info {
    margin-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.third .third-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  max-width: 780px;
  width: 100%;
  margin-left: auto;
  margin-bottom: 67px;
}
@media all and (max-width: 1300px) {
  .third .third-list {
    max-width: 650px;
  }
}
@media all and (max-width: 650px) {
  .third .third-list {
    margin-bottom: 50px;
    display: block;
  }
}
.third .third-item {
  width: 340px;
  height: 174px;
  padding: 30px 20px 30px 34px;
  border-radius: 30px;
  background: var(--base-green, #BAD6C1);
  opacity: 0;
  -webkit-transform: translateX(400px);
  -ms-transform: translateX(400px);
  transform: translateX(400px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -o-transition: opacity 0.3s, transform 0.5s;
  transition: opacity 0.3s, transform 0.5s;
  transition: opacity 0.3s, transform 0.5s, -webkit-transform 0.5s;
}
.third .third-item._active {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@media all and (max-width: 1300px) {
  .third .third-item {
    width: 45%;
  }
}
@media all and (max-width: 650px) {
  .third .third-item {
    width: 100%;
    padding: 20px;
    height: auto;
    padding: 20px 10px 10px 20px 20px;
    margin: 0 10px;
  }
}
@media (min-width: 650px) {
  .third .third-item:nth-child(2) {
    margin-right: 71px;
  }
}
@media (min-width: 650px) and (max-width: 1300px) {
  .third .third-item:nth-child(2) {
    margin-right: 40px;
  }
}
@media (min-width: 650px) {
  .third .third-item:nth-child(6) {
    margin-right: 71px;
  }
}
@media (min-width: 650px) and (max-width: 1300px) {
  .third .third-item:nth-child(6) {
    margin-right: 40px;
  }
}
.third .third-item__title {
  color: var(--base3, #4E6E55);
  font-family: "RubikMedium", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 30px;
}
@media all and (max-width: 1300px) {
  .third .third-item__title {
    font-size: 30px;
  }
}
@media all and (max-width: 650px) {
  .third .third-item__title {
    margin-bottom: 20px;
    font-size: 20px !important;
    line-height: 100% !important;
  }
}
.third .third-item__text {
  color: var(--text, #040606);
  font-size: 20px;
  font-weight: 400;
}
.third .third-bottom {
  border-radius: 30px;
  background: #1C1F1F;
  max-width: 960px;
  width: 100%;
  padding: 50px 20px;
  margin: 0 auto;
}
@media all and (max-width: 650px) {
  .third .third-bottom {
    padding: 20px 10px;
  }
}
.third .form-title {
  margin-bottom: 14px;
}
.third .form-subtitle {
  margin-bottom: 22px;
}
.third .form-inner {
  max-width: 788px;
  width: 100%;
  margin: 0 auto;
}
.third .form-section-wrap {
  max-width: 100%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.third .row {
  width: 33%;
}

.four {
  position: relative;
  background: #FFFCF7;
  padding: 0 0 130px 0;
  position: relative;
}
@media all and (max-width: 992px) {
  .four {
    padding-bottom: 60px;
  }
}
@media all and (max-width: 650px) {
  .four {
    padding: 35px 0;
  }
}
.four .four-wrap {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  border-radius: 80px;
  overflow: hidden;
  background-image: url(../img/four/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #EAE4DB;
  margin-bottom: 75px;
}
@media all and (max-width: 650px) {
  .four .four-wrap {
    margin-bottom: 20px;
    border-radius: 20px;
  }
}
.four .four-inner {
  padding: 120px 0;
  position: relative;
}
.four .four-inner::before {
  content: "";
  position: absolute;
  right: 172px;
  top: 418px;
  background-image: url(../img/four/1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 80.692px;
  height: 96.798px;
  z-index: 1;
}
@media all and (max-width: 992px) {
  .four .four-inner::before {
    width: 70px;
    height: 70px;
    right: 50px;
  }
}
@media all and (max-width: 768px) {
  .four .four-inner::before {
    top: 550px;
    right: 0;
  }
}
@media all and (max-width: 650px) {
  .four .four-inner::before {
    display: block;
    top: 200px;
    right: -30px;
    width: 50px;
    height: 50px;
  }
}
.four .four-inner::after {
  content: "";
  position: absolute;
  right: -122px;
  bottom: -133px;
  background-image: url(../img/four/1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 885.57px;
  height: 862.153px;
  z-index: 1;
}
@media all and (max-width: 1300px) {
  .four .four-inner::after {
    width: 700px;
    height: 700px;
    right: -170px;
  }
}
@media all and (max-width: 992px) {
  .four .four-inner::after {
    width: 500px;
    height: 500px;
  }
}
@media all and (max-width: 768px) {
  .four .four-inner::after {
    width: 400px;
    height: 400px;
  }
}
@media all and (max-width: 650px) {
  .four .four-inner::after {
    width: 360px;
    height: 300px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
  }
}
@media all and (max-width: 992px) {
  .four .four-inner {
    padding: 90px 0;
  }
}
@media all and (max-width: 768px) {
  .four .four-inner {
    padding: 60px 0;
  }
}
@media all and (max-width: 650px) {
  .four .four-inner {
    padding: 35px 0 300px;
  }
}
@media all and (max-width: 992px) {
  .four .section-title br {
    display: none;
  }
}
@media all and (max-width: 650px) {
  .four .section-title {
    text-align: start;
    margin-bottom: 0 !important;
  }
}
.four .subtitle {
  margin-bottom: 15px;
  text-align: right;
}
@media all and (max-width: 992px) {
  .four .subtitle {
    font-size: 80px;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 650px) {
  .four .subtitle {
    margin-bottom: 30px;
  }
}
.four .info {
  margin-bottom: 70px;
}
@media all and (max-width: 650px) {
  .four .info {
    margin-bottom: 20px;
    font-size: 18px !important;
    line-height: 110% !important;
  }
}
.four .info span {
  font-size: 18px !important;
  line-height: 110% !important;
}
.four .four-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 685px;
  width: 100%;
  gap: 20px;
  row-gap: 60px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media all and (max-width: 1050px) {
  .four .four-list {
    max-width: 600px;
  }
}
@media all and (max-width: 650px) {
  .four .four-list {
    row-gap: 20px;
  }
}
.four .four-item {
  width: 325px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.four .four-item._active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media all and (max-width: 1050px) {
  .four .four-item {
    width: 47%;
  }
}
@media all and (max-width: 650px) {
  .four .four-item {
    width: 100%;
  }
}
.four .four-item__title {
  margin-bottom: 14px;
  font-family: "RubikMedium", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}
@media all and (max-width: 650px) {
  .four .four-item__title {
    font-size: 20px !important;
  }
}
.four .four-item__title span {
  color: var(--orange, #EF3C1E);
}
@media all and (max-width: 650px) {
  .four .four-item__title span {
    font-size: 20px !important;
  }
}
.four .four-item__text {
  color: var(--text, #040606);
  font-size: 18px;
  line-height: 120%;
}
@media all and (max-width: 1050px) {
  .four .four-item__text br {
    display: none;
  }
}
.four .four-bottom__inner {
  border-radius: 30px;
  background: #1C1F1F;
  padding: 50px 20px 50px 48px;
  position: relative;
}
.four .four-bottom__inner::after {
  content: "";
  position: absolute;
  right: -88px;
  bottom: -130px;
  background-image: url(../img/four/2.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  width: 645px;
  height: 408px;
  z-index: 1;
}
@media all and (max-width: 1050px) {
  .four .four-bottom__inner::after {
    width: 500px;
    height: 300px;
  }
}
@media all and (max-width: 992px) {
  .four .four-bottom__inner::after {
    width: 400px;
    height: 300px;
  }
}
@media all and (max-width: 768px) {
  .four .four-bottom__inner::after {
    right: -140px;
  }
}
@media all and (max-width: 650px) {
  .four .four-bottom__inner::after {
    width: 300px;
    height: 200px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -30px;
  }
}
@media all and (max-width: 650px) {
  .four .four-bottom__inner {
    padding: 20px 10px 200px;
  }
}
.four .form-inner {
  max-width: 788px;
  width: 100%;
}
.four .form-section-wrap {
  max-width: 100%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.four .form-title {
  margin-bottom: 14px;
  text-align: start;
}
.four .form-subtitle {
  margin-bottom: 22px;
  text-align: start;
}
.four .row {
  width: 33%;
}
.four .form-bottom {
  text-align: start;
}

.five {
  position: relative;
  z-index: 2;
  background: #FFFCF7;
}
.five .five-inner {
  padding: 0 0 130px 0;
  position: relative;
  z-index: 1;
}
.five .five-inner::after {
  content: "";
  position: absolute;
  left: -125px;
  top: 158px;
  background-image: url(../img/five/left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 271.905px;
  height: 292.432px;
  z-index: -1;
}
@media all and (max-width: 650px) {
  .five .five-inner::after {
    width: 140px;
    height: 140px;
    left: auto;
    right: -100px;
    bottom: 50px;
    top: auto;
  }
}
.five .five-inner::before {
  content: "";
  position: absolute;
  right: 280px;
  top: 11px;
  background-image: url(../img/five/top.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 58.134px;
  height: 53.483px;
  z-index: -1;
}
@media all and (max-width: 1300px) {
  .five .five-inner::before {
    right: 0;
  }
}
@media all and (max-width: 768px) {
  .five .five-inner::before {
    top: -10px;
  }
}
@media all and (max-width: 650px) {
  .five .five-inner::before {
    width: 40px;
    height: 40px;
    left: 0;
    right: auto;
    top: 80px;
  }
}
@media all and (max-width: 650px) {
  .five .five-inner {
    padding: 35px 0;
  }
}
@media all and (max-width: 650px) {
  .five .section-title {
    text-align: start;
    margin-bottom: 10px !important;
  }
}
.five .subtitle {
  margin-bottom: 108px;
  text-align: right;
}
@media all and (max-width: 992px) {
  .five .subtitle {
    font-size: 80px;
  }
}
@media all and (max-width: 768px) {
  .five .subtitle {
    font-size: 60px;
  }
}
@media all and (max-width: 650px) {
  .five .subtitle {
    text-align: right;
    margin-bottom: 50px;
  }
}
.five .five-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 1;
}
.five .five-list::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -82px;
  background-image: url(../img/five/1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 236.736px;
  height: 247.059px;
  z-index: -1;
}
@media all and (max-width: 992px) {
  .five .five-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media all and (max-width: 650px) {
  .five .five-list {
    gap: 40px;
  }
}
.five .five-item {
  max-width: 380px;
  width: 100%;
  border-radius: 40px;
  background: var(--bg, #F2EDE5);
  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;
  padding: 70px 20px 60px;
  position: relative;
}
@media all and (max-width: 992px) {
  .five .five-item {
    max-width: 47%;
  }
}
@media all and (max-width: 650px) {
  .five .five-item {
    max-width: 100%;
    padding: 40px 0 30px;
    border-radius: 20px;
  }
}
.five .five-item:nth-child(3) .five-item__title {
  margin-bottom: 10px;
}
.five .five-item:nth-child(3) .five-item__title span {
  margin-top: 6px;
}
.five .five-item__number {
  background: var(--bg, #F2EDE5);
  border: 12px solid #FFFCF7;
  width: 92.2px;
  height: 92.2px;
  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;
  color: var(--base3, #4E6E55);
  text-align: center;
  font-family: "CaveatRegular", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 55px */
  border-radius: 50%;
  position: absolute;
  top: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media all and (max-width: 650px) {
  .five .five-item__number {
    border: 4px solid #FFFCF7;
    width: 60px;
    height: 60px;
    top: -30px;
    font-size: 20px !important;
    line-height: 100% !important;
  }
}
.five .five-item__title {
  color: var(--base3, #4E6E55);
  text-align: center;
  font-family: "RubikBold", sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 34px */
  margin-bottom: 36px;
}
.five .five-item__title span {
  color: var(--orange, #EF3C1E);
  text-align: center;
  font-family: "RubikMedium", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 21.6px */
  display: block;
}
@media all and (max-width: 1300px) {
  .five .five-item__title {
    font-size: 28px;
  }
}
@media all and (max-width: 650px) {
  .five .five-item__title {
    margin-bottom: 20px;
    font-size: 20px !important;
    line-height: 100% !important;
  }
}
.five .five-item__img {
  width: 200px;
  margin-bottom: 36px;
}
@media all and (max-width: 650px) {
  .five .five-item__img {
    margin-bottom: 20px;
  }
}
.five .five-item__text {
  color: var(--text, #040606);
  text-align: center;
  font-family: "RubikRegular", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 22px;
}
@media all and (max-width: 650px) {
  .five .five-item__text {
    margin-bottom: 20px;
  }
}
.five .btn {
  max-width: 256px;
  width: 100%;
}

.six {
  position: relative;
  z-index: 3;
  background: #FFFCF7;
}
.six .six-wrap {
  position: relative;
}
.six .six-wrap::before {
  content: "";
  position: absolute;
  right: 265px;
  bottom: 226px;
  background-image: url(../img/six/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 89.355px;
  height: 41.374px;
  z-index: 1;
}
@media all and (max-width: 1300px) {
  .six .six-wrap::before {
    bottom: 280px;
  }
}
@media all and (max-width: 992px) {
  .six .six-wrap::before {
    display: none;
  }
}
.six .six-inner {
  padding: 0 0 130px 0;
  position: relative;
}
.six .six-inner::before {
  content: "";
  position: absolute;
  right: -140px;
  bottom: 145px;
  background-image: url(../img/six/right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 294.84px;
  height: 269.195px;
  z-index: 1;
}
@media all and (max-width: 650px) {
  .six .six-inner::before {
    width: 200px;
    height: 200px;
    right: -100px;
  }
}
.six .six-inner::after {
  content: "";
  position: absolute;
  left: -190px;
  bottom: 320px;
  background-image: url(../img/six/1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 758.5px;
  height: 743.5px;
  z-index: 1;
}
@media all and (max-width: 1300px) {
  .six .six-inner::after {
    width: 550px;
    height: 550px;
  }
}
@media all and (max-width: 992px) {
  .six .six-inner::after {
    width: 450px;
    height: 450px;
    left: -220px;
  }
}
@media all and (max-width: 768px) {
  .six .six-inner::after {
    display: none;
  }
}
@media all and (max-width: 650px) {
  .six .six-inner::after {
    width: 300px;
    height: 300px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    display: block;
  }
}
@media all and (max-width: 650px) {
  .six .six-inner {
    padding: 35px 0 320px;
  }
}
.six .subtitle {
  text-align: start;
}
@media all and (max-width: 992px) {
  .six .subtitle {
    font-size: 80px;
  }
}
@media all and (max-width: 650px) {
  .six .subtitle {
    margin-bottom: 10px;
  }
}
.six .section-title {
  margin-bottom: 80px;
  padding-right: 183px;
  text-align: right;
}
@media all and (max-width: 992px) {
  .six .section-title {
    padding-right: 50px;
  }
}
@media all and (max-width: 650px) {
  .six .section-title {
    padding-right: 0;
  }
}
.six .six-list {
  max-width: 582px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 80px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-left: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media all and (max-width: 992px) {
  .six .six-list {
    max-width: 500px;
  }
}
@media all and (max-width: 768px) {
  .six .six-list {
    max-width: 100%;
  }
}
@media all and (max-width: 650px) {
  .six .six-list {
    margin-bottom: 20px;
    row-gap: 20px;
  }
}
.six .six-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  width: 47%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.six .six-item._active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media all and (max-width: 650px) {
  .six .six-item {
    width: 100%;
  }
}
.six .six-item__img {
  width: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.six .six-item__text {
  color: var(--text, #040606);
}
@media all and (max-width: 1300px) {
  .six .six-item__text {
    font-size: 16px;
  }
  .six .six-item__text br {
    display: none;
  }
}
.six .form-title {
  color: var(--text, #040606);
  margin-bottom: 18px;
  text-align: start;
}
.six .form-title span {
  color: var(--orange, #EF3C1E);
}
.six .form-inner {
  max-width: 788px;
  width: 100%;
}
.six .form-section-wrap {
  max-width: 100%;
  width: 100%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.six .row {
  width: 33%;
}
.six .form-section-row {
  border-radius: 16px;
  border: 1px solid #AEAEAE;
  background: #FFF;
}
.six .form-bottom {
  text-align: start;
  margin-top: 18px;
}
@media all and (max-width: 650px) {
  .six .form-bottom {
    margin-top: 10px;
  }
}

.last {
  position: relative;
  background: #FFFCF7;
}
.last .last-overflow {
  padding: 0 10px;
}
.last .last-wrap {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  border-radius: 80px;
  background-image: url(../img/last/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #EAE4DB;
}
@media all and (max-width: 650px) {
  .last .last-wrap {
    border-radius: 20px;
  }
}
.last .last-inner {
  padding: 120px 0;
  position: relative;
}
.last .last-inner::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: 118px;
  background-image: url(../img/last/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 70.779px;
  height: 64.741px;
  z-index: 1;
}
@media all and (max-width: 1300px) {
  .last .last-inner::after {
    display: none;
  }
}
@media all and (max-width: 992px) {
  .last .last-inner {
    padding: 90px 0;
  }
}
@media all and (max-width: 768px) {
  .last .last-inner {
    padding: 60px 0;
  }
}
@media all and (max-width: 650px) {
  .last .last-inner {
    padding: 35px 0 445px;
  }
}
.last .subtitle {
  color: var(--text, #040606);
}
@media all and (max-width: 992px) {
  .last .subtitle {
    font-size: 80px;
  }
}
@media all and (max-width: 768px) {
  .last .subtitle {
    font-size: 60px;
  }
}
.last .section-title {
  margin-bottom: 22px;
  text-align: center;
}
.last .info {
  margin-bottom: 43px;
  text-align: center;
}
.last .info span {
  color: var(--orange, #EF3C1E);
}
@media all and (max-width: 1300px) {
  .last .info {
    margin-bottom: 300px;
  }
}
@media all and (max-width: 650px) {
  .last .info {
    margin-bottom: 20px;
  }
}
.last .last-bottom {
  max-width: 966px;
  width: 100%;
  border-radius: 30px;
  background: #1C1F1F;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  margin: 0 auto;
  padding: 30px 20px;
}
@media all and (max-width: 650px) {
  .last .last-bottom {
    padding: 20px 10px;
  }
}
.last .form-title {
  margin-bottom: 20px;
}
.last .form-inner {
  max-width: 821px;
  width: 100%;
  margin: 0 auto;
}
.last .form-section-wrap {
  max-width: 100%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.last .row {
  width: 33%;
}
.last .offer-left .offer-img {
  left: -350px;
  bottom: 262px;
  z-index: 5;
}
@media (max-width: 1700px) {
  .last .offer-left .offer-img {
    left: -200px;
    width: 350px;
  }
}
@media all and (max-width: 1300px) {
  .last .offer-left .offer-img {
    left: 0;
    bottom: 340px;
  }
}
@media all and (max-width: 768px) {
  .last .offer-left .offer-img {
    bottom: 450px;
    width: 320px;
    left: -100px;
  }
}
@media all and (max-width: 650px) {
  .last .offer-left .offer-img {
    bottom: 10px;
    width: 280px;
  }
}
.last .offer-left .offer-box {
  -webkit-transform: rotate(7.651deg);
  -ms-transform: rotate(7.651deg);
  transform: rotate(7.651deg);
  bottom: 245px;
  left: -214px;
  z-index: 6;
  width: 238px;
}
@media (max-width: 1700px) {
  .last .offer-left .offer-box {
    left: -10px;
    bottom: 270px;
  }
}
@media all and (max-width: 1300px) {
  .last .offer-left .offer-box {
    bottom: 350px;
  }
}
@media all and (max-width: 768px) {
  .last .offer-left .offer-box {
    -webkit-transform: rotate(1.651deg);
    -ms-transform: rotate(1.651deg);
    transform: rotate(1.651deg);
    bottom: 450px;
  }
}
@media all and (max-width: 650px) {
  .last .offer-left .offer-box {
    bottom: 20px;
    width: 300px;
  }
}
.last .offer-right .offer-img {
  width: 381px;
  right: -305px;
  bottom: 352px;
  z-index: 5;
}
@media (max-width: 1700px) {
  .last .offer-right .offer-img {
    right: -200px;
  }
}
@media all and (max-width: 1300px) {
  .last .offer-right .offer-img {
    right: 0;
    width: 300px;
  }
}
@media all and (max-width: 768px) {
  .last .offer-right .offer-img {
    bottom: 500px;
  }
}
@media all and (max-width: 650px) {
  .last .offer-right .offer-img {
    bottom: 250px;
    right: -50px;
  }
}
.last .offer-right .offer-box {
  -webkit-transform: rotate(-21.7deg);
  -ms-transform: rotate(-21.7deg);
  transform: rotate(-21.7deg);
  right: -140px;
  top: 45px;
  z-index: 6;
  width: 210px;
}
@media (max-width: 1700px) {
  .last .offer-right .offer-box {
    right: 0;
  }
}
@media all and (max-width: 1300px) {
  .last .offer-right .offer-box {
    top: auto;
    bottom: 400px;
    right: 240px;
  }
}
@media all and (max-width: 992px) {
  .last .offer-right .offer-box {
    -webkit-transform: rotate(-11.7deg);
    -ms-transform: rotate(-11.7deg);
    transform: rotate(-11.7deg);
    bottom: 300px;
    right: 100px;
  }
}
@media all and (max-width: 768px) {
  .last .offer-right .offer-box {
    bottom: 450px;
  }
}
@media all and (max-width: 650px) {
  .last .offer-right .offer-box {
    width: 240px;
    padding: 10px;
    bottom: 220px;
    right: 50px;
  }
}
.last .offer-img {
  width: 472px;
  position: absolute;
}
.last .offer-box {
  border-radius: 20px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  padding: 20px;
  max-width: 265px;
  width: 100%;
  position: absolute;
}
.last .offer-box__title {
  color: var(--text, #040606);
  text-align: center;
  font-family: "RubikMedium", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 17.6px */
  margin-bottom: 6px;
}
.last .offer-box__text {
  color: #656565;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  line-height: 110%;
}
@media all and (max-width: 650px) {
  .last .offer-box__text {
    font-size: 12px !important;
    line-height: 110% !important;
  }
}

.footer {
  position: static;
  padding: 20px 0;
  background: #FFFCF7;
}
@media all and (max-width: 650px) {
  .footer {
    padding: 20px 0;
    position: relative;
  }
}
.footer .header-inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 0;
}
@media all and (max-width: 992px) {
  .footer .header-inner {
    row-gap: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
@media all and (max-width: 650px) {
  .footer .header-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}
.footer .footer-text {
  color: var(--text, #040606);
  font-family: "RubikMedium", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 16.5px */
  margin-bottom: 6px;
}
@media all and (max-width: 650px) {
  .footer .footer-text {
    text-align: center;
  }
}
.footer .politica {
  color: var(--text, #040606);
  font-size: 15px;
  font-style: normal;
  line-height: 110%;
  /* 16.5px */
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
}
@media all and (max-width: 650px) {
  .footer .politica {
    text-align: center;
  }
}
.footer .logo {
  margin: 0;
}
@media all and (max-width: 650px) {
  .footer .header-call {
    width: 80%;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27, 27, 27, 0.6);
  -webkit-transition: opacity 200ms ease-in;
  -o-transition: opacity 200ms ease-in;
  transition: opacity 200ms ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: -1;
  opacity: 0;
  cursor: pointer;
}
.modal.active {
  z-index: 999;
  opacity: 1;
}

.modal-top {
  position: relative;
}
@media all and (max-width: 650px) {
  .modal-top {
    padding-top: 10px;
  }
}

@media all and (max-width: 650px) {
  .fancybox-slide > * {
    padding: 10px 0 0 0;
  }
}

.modal-politika .modal-top__title {
  text-align: center;
  font-family: "RubikRegular", sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 120%;
}
@media all and (max-width: 650px) {
  .modal-politika .modal-top__title {
    font-size: 22px;
  }
}
.modal-politika .modal-content {
  background: #fff;
}

.clouse {
  position: absolute;
  background: url(../img/modals/close.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  right: 17px;
  top: 19px;
  cursor: pointer;
  z-index: 20;
}
@media all and (max-width: 650px) {
  .clouse {
    top: 8px;
    right: 10px;
    width: 18px;
    height: 18px;
  }
}

.modal-content-inner {
  position: relative;
  background-color: white;
  width: auto;
  z-index: 20;
  max-width: 450px;
  width: 100%;
  border-radius: 10px;
  display: none;
}
.modal-content-inner .btn {
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media all and (max-width: 650px) {
  .modal-content-inner .btn {
    height: 55px;
  }
}
.modal-content-inner .form-section-row {
  margin-bottom: 8px;
  background: none;
  border: 1px solid rgb(72, 71, 71);
  width: 100%;
}
.modal-content-inner .form-section-row::after {
  width: 24px;
  height: 24px;
  left: 18px;
}
.modal-content-inner .form-section-row input {
  color: #000;
}
.modal-content-inner .form-section-row input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.modal-content-inner .form-section-row input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.modal-content-inner .form-section-row input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.modal-content-inner .form-section-row input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.modal-content-inner .form-section-row input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
@media all and (max-width: 650px) {
  .modal-content-inner .form-section-row {
    height: 50px;
  }
}
.modal-content-inner .form-bottom {
  color: #1A1A18;
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}
@media all and (max-width: 650px) {
  .modal-content-inner .form-bottom {
    margin-top: 10px !important;
  }
}
.modal-content-inner .form-bottom a {
  color: #1A1A18;
  text-decoration: underline;
}
@media all and (max-width: 650px) {
  .modal-content-inner {
    width: 300px;
    height: auto;
    position: relative;
  }
}

@media all and (max-width: 650px) {
  .fancybox-content {
    padding: 0;
  }
}

.modal-content {
  position: relative;
  z-index: 1;
  padding: 0;
  overflow: hidden;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
}
@media all and (max-width: 768px) {
  .modal-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media all and (max-width: 650px) {
  .modal-content {
    padding: 20px 10px 20px 12px;
  }
}
.modal-content .inp {
  max-width: 100%;
}

.modal-content-info {
  z-index: 1;
  width: 100%;
}

.modal-content__img {
  width: 365px;
  top: 40%;
  left: 8%;
  position: absolute;
}
@media all and (max-width: 768px) {
  .modal-content__img {
    display: none;
  }
}
.modal-content__img img {
  -o-object-fit: contain;
  object-fit: contain;
}

.modal-phone-img {
  width: 468px;
  height: 341px;
  bottom: 43px;
  left: -12%;
  top: 109px;
}
.modal-content__img-big {
  width: 506px;
  top: 38%;
  left: -5%;
  position: absolute;
}

.modal-top__title {
  color: #1B1B1B;
  font-family: "RubikRegular", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 34.5px */
  margin-bottom: 20px;
}
.modal-top__title span.reg {
  font-weight: 500;
}
@media all and (max-width: 768px) {
  .modal-top__title {
    text-align: center;
  }
}
@media all and (max-width: 650px) {
  .modal-top__title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.small-titleForm {
  font-size: 22px;
}

.modal-politika {
  padding-top: 20px;
  top: 0;
  overflow: scroll;
  height: 100%;
  max-width: 850px;
  margin: 40px 0;
}
.modal-politika .clouse {
  background: url(../img/modals/close.svg);
  position: static;
  margin-left: auto;
  margin-right: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media all and (max-width: 650px) {
  .modal-politika .clouse {
    background-size: contain;
  }
}
.modal-politika::after {
  display: none;
}
@media all and (max-width: 992px) {
  .modal-politika {
    width: 80%;
  }
}
.modal-politika::-webkit-scrollbar {
  width: 0;
}
@media all and (max-width: 650px) {
  .modal-politika {
    width: 320px;
  }
}
.modal-politika .modal-politika-text {
  margin-bottom: 20px;
  padding-left: 20px;
  font-family: "RubikRegular", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.modal-politika .modal-politika-text.fat {
  padding-left: 0;
  padding-left: 10px;
}
@media all and (max-width: 650px) {
  .modal-politika div {
    font-size: 12px !important;
  }
}
.modal-politika .btn {
  width: 450px;
  margin: 0 auto;
}

.modal5,
.modal-politika,
.modal1,
.modal2,
.modal3,
.modal4 {
  display: none;
}
.modal5.active,
.modal-politika.active,
.modal1.active,
.modal2.active,
.modal3.active,
.modal4.active {
  display: block;
}

.form-section-bottom {
  margin-top: 27px;
  font-weight: 300;
  font-size: 12px;
  line-height: 120%;
  color: #181818;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media all and (max-width: 650px) {
  .form-section-bottom {
    margin-top: 15px;
  }
}
.form-section-bottom .form-section-bottom-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.form-section-bottom .form-section-bottom-text {
  text-align: start;
  color: #000;
}
@media all and (max-width: 650px) {
  .form-section-bottom .form-section-bottom-text {
    font-size: 12px !important;
  }
}
.form-section-bottom a {
  position: relative;
  z-index: 3;
}
@media all and (max-width: 650px) {
  .form-section-bottom a {
    text-decoration: underline;
  }
}
.form-section-bottom a:hover {
  text-decoration: underline;
}

.sectionForm {
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media all and (max-width: 992px) {
  .sectionForm {
    max-width: 100%;
  }
}

.form-inputs {
  width: 240px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.offerOk {
  position: relative;
  margin-top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 150px 0 70px;
  background-image: none;
}
@media all and (max-width: 650px) {
  .offerOk {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 130px 0 150px;
  }
}
.offerOk::after {
  display: none;
}
.offerOk .offer-left {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.offerOk .offer-left::after {
  display: none;
}
.offerOk .offer-inner {
  padding: 0;
  max-width: 100%;
}
.offerOk .offer-inner::before {
  display: none;
}
.offerOk .offer-inner::after {
  display: none;
}
.offerOk .btn-wrap {
  width: 300px;
  margin: 0 auto;
}
@media all and (max-width: 650px) {
  .offerOk .btn-wrap {
    width: 100% !important;
  }
}
.offerOk .btn {
  width: 300px;
  height: 60px;
}
@media all and (max-width: 650px) {
  .offerOk .btn {
    width: 100% !important;
  }
}
.offerOk::before {
  display: none;
}
.offerOk .offer-form__text {
  font-size: 25px;
  text-align: center;
  margin-bottom: 30px;
  font-family: "RubikRegular", sans-serif;
  font-weight: 400;
}
.offerOk .section-title {
  max-width: 938px;
  width: 100%;
  margin-bottom: 40px;
  font-size: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 1300px) {
  .offerOk .section-title {
    font-size: 30px;
  }
}
@media all and (max-width: 650px) {
  .offerOk .section-title {
    font-size: 20px !important;
    line-height: 100% !important;
  }
}
.offerOk .section-title #thanksName {
  display: block;
  color: #DD2B1C;
}
@media all and (max-width: 650px) {
  .offerOk .section-title #thanksName {
    font-size: 20px !important;
    line-height: 100% !important;
  }
}
.offerOk .section-title span {
  color: #DD2B1C;
}
@media all and (max-width: 650px) {
  .offerOk .section-title span {
    font-size: 20px !important;
    line-height: 100% !important;
  }
}
.offerOk .section-title::after {
  display: none;
}
.offerOk .thanks-subtitle {
  font-size: 20px;
  line-height: 33px;
  margin-bottom: 42px;
}
@media all and (max-width: 650px) {
  .offerOk .thanks-subtitle {
    margin-bottom: 20px;
    line-height: 25px;
  }
}
.offerOk .about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  max-width: 840px;
  width: 100%;
  -webkit-column-gap: 80px;
  -moz-column-gap: 80px;
  column-gap: 80px;
}
@media all and (max-width: 650px) {
  .offerOk .about {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
  }
}
.offerOk .about-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 650px) {
  .offerOk .about-item {
    -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;
    row-gap: 10px;
  }
}
.offerOk .about-item-img {
  width: 80px;
  height: 83px;
  margin-right: 10px;
}
@media all and (max-width: 650px) {
  .offerOk .about-item-img {
    margin-right: 0;
  }
}
.offerOk .about-item-img img {
  -o-object-fit: contain;
  object-fit: contain;
}
.offerOk .mestnoPlace {
  margin-right: 35px;
}
@media all and (max-width: 650px) {
  .offerOk .mestnoPlace {
    margin-right: 0;
  }
}
.offerOk .about-item-top {
  font-size: 16px;
}
.offerOk .about-item-top .row {
  display: block;
}
@media all and (max-width: 650px) {
  .offerOk .about-item-top .row {
    display: inline;
    text-align: center;
  }
}
@media all and (max-width: 650px) {
  .offerOk .about-item-top {
    text-align: center;
  }
}
.offerOk .about-item-bottom {
  color: #fff;
  font-weight: 700;
}
@media all and (max-width: 650px) {
  .offerOk .about-item-bottom {
    text-align: center;
  }
}
.offerOk .thanks-info {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 20px;
  max-width: 626px;
  width: 100%;
}
.offerOk .thanks-info .row {
  display: block;
}
@media all and (max-width: 650px) {
  .offerOk .thanks-info .row {
    display: inline;
  }
}
.offerOk .slogan_thanks-info {
  font-size: 24px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 47px;
}
@media all and (max-width: 650px) {
  .offerOk .slogan_thanks-info {
    margin-bottom: 20px;
    text-align: center;
  }
}
.offerOk .sait-logo {
  max-width: 85px;
  height: 40px;
  margin-left: 10px;
}
.offerOk .google {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  margin-left: 10px;
}
.offerOk .google img {
  -o-object-fit: contain;
  object-fit: contain;
}
.offerOk .revies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 992px) {
  .offerOk .revies {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.offerOk .revies-item.first {
  margin-right: 112px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media all and (max-width: 992px) {
  .offerOk .revies-item.first {
    margin-right: 0;
  }
}
.offerOk .revies-item.first .revies-item-bottom {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.offerOk .revies-item.first .revies-item-bottom:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.offerOk .revies-item.first .revies-item-top a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.offerOk .revies-item.first .revies-item-top a:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.offerOk .revies-item.second {
  margin-right: 162px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  cursor: pointer;
}
@media all and (max-width: 992px) {
  .offerOk .revies-item.second {
    margin-right: 0;
  }
}
.offerOk .revies-item.second .revies-item-top a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.offerOk .revies-item.second .revies-item-top a:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.offerOk .revies-item.second .revies-item-bottom {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.offerOk .revies-item.second .revies-item-bottom a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.offerOk .revies-item.second .revies-item-bottom img {
  width: 60px;
  height: 30px;
  display: block;
  margin-left: 10px;
  -o-object-fit: contain;
  object-fit: contain;
}
.offerOk .revies-item.feeting .revies-item-top {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.offerOk .revies-item.feeting .revies-item-bottom {
  font-weight: 300;
  text-decoration: none;
}
.offerOk .revies-item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  margin-bottom: 10px;
}
.offerOk .vk {
  width: 27px;
  height: 27px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 10px;
}
.offerOk .revies-item-bottom {
  font-size: 13px;
  text-decoration: underline;
}
.offerOk .revies-item-bottom span {
  font-size: 13px;
  text-decoration: underline;
}
@-webkit-keyframes vkFrame {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }
}
@keyframes vkFrame {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }
}
.offerOk .thanks-company {
  position: absolute;
  top: -31%;
  right: -29%;
}
@media screen and (max-width: 1880px) {
  .offerOk .thanks-company {
    position: static;
  }
}
.offerOk .thanks-company-wrapper {
  position: relative;
}
.offerOk .thanks-company-info {
  position: absolute;
  bottom: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.offerOk .heading__block {
  position: relative;
}
.offerOk .thanks-company-img {
  height: 1052px;
  max-width: 1052px;
  width: 100%;
}
@media screen and (max-width: 1880px) {
  .offerOk .thanks-company-img {
    margin: 0 auto;
  }
}
@media all and (max-width: 992px) {
  .offerOk .thanks-company-img {
    height: 660px;
    max-width: 817px;
  }
}
@media all and (max-width: 650px) {
  .offerOk .thanks-company-img {
    height: 386px;
    max-width: 817px;
    margin-top: -43px;
  }
  .offerOk .thanks-company-img img {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
}
.offerOk .thanks-company-img img {
  -o-object-fit: contain;
  object-fit: contain;
}
.offerOk .thanks-company-avtor {
  width: 244px;
  height: 34px;
  background-color: #2856a2;
  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;
}
.offerOk .thanks-company-doljnost {
  height: 34px;
  width: 244px;
  background-color: #e8e8e8;
  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;
  color: #000;
  margin-left: 15px;
}
.offerOk .last-bottom {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media all and (max-width: 650px) {
  .offerOk .last-bottom {
    bottom: 20px;
  }
}

.footerThanks .header-inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footerThanks .header-info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.headerThanks .header-inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.headerThanks .header-info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}