@charset "UTF-8";
@keyframes cloud-1 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 50% 10px;
  }
  100% {
    background-position: 100% 0;
  }
}
@keyframes cloud-2 {
  0% {
    background-position: 0 0;
    opacity: 1;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    background-position: -100% 0;
    opacity: 1;
  }
}
@keyframes cloud-3 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 0 -10px;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes ring-1 {
  0% {
    width: 120px;
    height: 120px;
    opacity: 0;
  }
  50% {
    width: 220px;
    height: 220px;
    opacity: 0.6;
  }
  80% {
    width: 220px;
    height: 220px;
    opacity: 0.6;
  }
  95% {
    opacity: 0;
  }
}
@keyframes ring-2 {
  0% {
    width: 120px;
    height: 120px;
    opacity: 0;
  }
  60% {
    width: 300px;
    height: 300px;
    opacity: 0.4;
  }
  80% {
    width: 300px;
    height: 300px;
    opacity: 0.4;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ring-3 {
  0% {
    width: 120px;
    height: 120px;
    opacity: 0;
  }
  60% {
    width: 380px;
    height: 380px;
    opacity: 0.2;
  }
  80% {
    width: 380px;
    height: 380px;
    opacity: 0.2;
  }
  100% {
    opacity: 0;
  }
}
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html, body {
  font: 400 16px/16px "Open Sans", sans-serif, sans-serif !important;
  color: #000 !important;
}

body {
  background: #fff;
  height: 100%;
  letter-spacing: 0.02em;
}
body.act {
  overflow: hidden;
}

img {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

input.error {
  border: 1px solid #C51616 !important;
}
input.error ::-webkit-input-placeholder { /* Chrome */
  color: #928f8e;
}
input.error :-ms-input-placeholder { /* IE 10+ */
  color: #928f8e;
}
input.error ::-moz-placeholder { /* Firefox 19+ */
  color: #928f8e;
  opacity: 1;
}
input.error :-moz-placeholder { /* Firefox 4 - 18 */
  color: #928f8e;
  opacity: 1;
}

::selection {
  background: #000;
  color: #fff;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

a {
  color: #000;
  text-decoration: underline;
  outline: none;
  transition: 0.25s;
}
a:hover {
  color: #ffe600;
}

p {
  line-height: 20px;
}

h1, .h1 {
  position: relative;
  font: 400 36px/46px "Open Sans", sans-serif;
  color: #1f1f1f;
  margin: 0;
  padding: 0;
}

h2, .h2 {
  font: 400 36px/48px "Open Sans", sans-serif;
  margin: 0;
}
h2.mb15, .h2.mb15 {
  margin-bottom: 15px;
}

h3, .h3 {
  font: 400 22px/28px "Open Sans", sans-serif;
  margin: 0;
  text-transform: uppercase;
  color: #000;
}
h3-desc, .h3-desc {
  color: #9395a7;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 50px;
}

.up {
  text-transform: uppercase;
}

.nm {
  margin: 0;
}

.pt120 {
  padding-top: 120px;
}

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

button,
.btn {
  position: relative;
  border-radius: 0;
  color: #fff;
  font-size: 16px;
  line-height: 14px;
  padding: 16px 40px;
  cursor: pointer;
  outline: none;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  background: #FC8D05;
  transition: 0.25s;
}
button:hover,
.btn:hover {
  background: #f99c2b;
  color: #fff;
}
button:focus,
.btn:focus {
  box-shadow: none;
}
button:disabled,
.btn:disabled {
  background: #7c7c7c;
  cursor: not-allowed !important;
  border-color: #7c7c7c;
  opacity: 1;
}
button:disabled:hover,
.btn:disabled:hover {
  color: #fff;
}
button-dark,
.btn-dark {
  background: #000;
  color: #fff;
}
button-dark:hover,
.btn-dark:hover {
  background: #202020;
}
button-white,
.btn-white {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}
button-big,
.btn-big {
  padding: 26px 10px;
}
button-sm,
.btn-sm {
  font-size: 12px;
}

form {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-flow: wrap;
  flex: 1 0 100%;
}
form input,
form textarea {
  background: #fff;
  padding: 8px 50px 8px 60px;
  outline: none;
  border: 0;
  border-radius: 0;
  margin-top: 15px;
  font-size: 14px;
  line-height: 14px;
  border-bottom: 1px solid #797979;
  flex: 1 0 100%;
  transition: 0.25s;
}
form input:hover,
form textarea:hover {
  background-color: #f1eeee;
}
form input.error,
form textarea.error {
  border-color: #ce4a4a !important;
  color: #ce4a4a !important;
}
form button {
  border: 0;
  flex: 1 0 100%;
  cursor: pointer;
  outline: none;
  transition: 0.25s;
}
form button:disabled {
  background: #7c7c7c;
  cursor: not-allowed !important;
  border-color: #7c7c7c;
  opacity: 1;
}
form button:disabled:hover {
  color: #fff;
}
form button:hover {
  background: #202020;
}
form ::-webkit-input-placeholder { /* Chrome */
  color: #000;
}
form :-ms-input-placeholder { /* IE 10+ */
  color: #000;
}
form ::-moz-placeholder { /* Firefox 19+ */
  color: #000;
  opacity: 1;
}
form :-moz-placeholder { /* Firefox 4 - 18 */
  color: #000;
  opacity: 1;
}
form .desc {
  margin-top: 30px;
  font-size: 12px;
  color: #595959;
  flex: 0 0 50%;
}

.button {
  display: inline-block;
  background: #000;
  border: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  line-height: 14px;
  padding: 26px 25px;
  min-width: 180px;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  transition: 0.25s;
}
.button:hover {
  color: #fff;
  background: #202020;
}

.container {
  position: relative;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.flex {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.flex-jcsb {
  justify-content: space-between;
}
.flex-aic {
  align-items: center;
}
.flex-wrap {
  flex-flow: wrap;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.w100 {
  width: 100%;
}

.swiper-container .button-next,
.swiper-container .button-prev {
  position: absolute;
  top: 49%;
  right: -70px;
  width: 58px;
  height: 58px;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s;
}
.swiper-container .button-next:after,
.swiper-container .button-prev:after {
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
  border-bottom: 5px solid #fff;
  border-right: 5px solid #fff;
  transform: rotate(-45deg);
}
.swiper-container .button-next.swiper-button-disabled,
.swiper-container .button-prev.swiper-button-disabled {
  cursor: auto;
}
.swiper-container .button-prev {
  left: -70px;
  right: inherit;
  transform: scaleX(-1);
}

.img-fluid {
  max-width: 100%;
}

.modal {
  position: fixed;
  top: 30%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  background: #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  z-index: 1000;
  transition: 0.3s;
}
.modal.active {
  top: 50%;
  pointer-events: inherit;
  opacity: 1;
}
.modal__footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal .close {
  position: absolute;
  right: 0;
  width: 45px;
  height: 45px;
  background: #FC8D05;
  cursor: pointer;
}
.modal .close:after, .modal .close:before {
  position: absolute;
  top: 50%;
  left: calc(50% - 6px);
  content: "";
  width: 12px;
  height: 2px;
  background: #000;
}
.modal .close:before {
  transform: rotate(45deg);
}
.modal .close:after {
  transform: rotate(-45deg);
}
.modal-content {
  padding: 50px;
  color: #000;
}
.modal-content .h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: none;
  color: #000;
  font-weight: 700;
  text-align: center;
}
.modal-content form.form input,
.modal-content form.form textarea {
  width: 100%;
  margin-bottom: 20px;
  font-size: 13px;
}
.modal-content form.form button {
  width: 100%;
  margin-top: 15px;
}
.modal-content.thx {
  text-align: center;
}
.modal-content.hide {
  display: none;
}
.modal .label {
  font-size: 12px !important;
}

label.custom {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
label.custom input[type=checkbox],
label.custom input[type=radio] {
  display: none;
}
label.custom .radio-custom,
label.custom .checkbox-custom {
  width: 15px;
  height: 15px;
  background: #d1d1d1;
  border-radius: 0;
  position: relative;
  margin-right: 10px;
}
label.custom .radio-custom {
  border-radius: 50%;
}
label.custom .radio-custom,
label.custom .checkbox-custom,
label.custom .label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  line-height: 18px;
  color: #000;
  margin-left: 22px;
  margin-top: 30px;
  cursor: pointer;
  transition: 0.3s;
}
label.custom .label {
  width: calc(100% - 26px);
}
label.custom input[type=radio]:checked + .radio-custom,
label.custom input[type=radio]:checked + .checkbox-custom,
label.custom input[type=checkbox]:checked + .radio-custom,
label.custom input[type=checkbox]:checked + .checkbox-custom {
  background: #FC8D05;
}
label.custom input[type=radio]:checked + .radio-custom + .label,
label.custom input[type=radio]:checked + .checkbox-custom + .label,
label.custom input[type=checkbox]:checked + .radio-custom + .label,
label.custom input[type=checkbox]:checked + .checkbox-custom + .label {
  color: #484635;
}
label.custom input[type=radio]:checked + .radio-custom:before,
label.custom input[type=radio]:checked + .checkbox-custom:before,
label.custom input[type=checkbox]:checked + .radio-custom:before,
label.custom input[type=checkbox]:checked + .checkbox-custom:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 10px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
}
label.custom input[type=radio] + .radio-custom {
  position: relative;
}
label.custom input[type=radio] + .radio-custom:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid transparent;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
label.custom input[type=radio]:checked + .radio-custom:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #FC8D05;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hidden {
  display: none;
}
.hidden.success {
  display: block;
}

.hamb_menu {
  display: none;
  position: fixed;
  top: 17px;
  right: 15px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: #fff;
  z-index: 2000;
  padding: 8px;
  border-radius: 50%;
  overflow: hidden;
}
.hamb_menu span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 4px 0;
  background: #e9004c;
  transition: 0.25s;
}
.hamb_menu.act span {
  position: absolute;
  width: 80%;
  top: 40%;
  left: 50%;
}
.hamb_menu.act span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.hamb_menu.act span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamb_menu.act span:nth-child(2) {
  display: none;
}

@media (max-width: 991px) {
  .hamb_menu {
    display: block;
  }
}
.mobile_menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  height: 100vh;
  background: #fff;
  padding: 10px 20px;
  color: #3B3B3B;
  overflow: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  z-index: 2000;
  transition: 0.6s;
}
.mobile_menu.act {
  left: 0;
}

#dark_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  z-index: 999;
  transition: 0.5s;
}
#dark_bg:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1A2442;
  opacity: 0.5;
  z-index: -1;
}
#dark_bg.active {
  pointer-events: inherit;
  opacity: 1;
}

.hamb_menu {
  display: none;
  position: fixed;
  top: 22px;
  right: 15px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: #fff;
  z-index: 2000;
  padding: 8px;
  overflow: hidden;
}
.hamb_menu span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 4px 0;
  background: #9ECD44;
  transition: 0.25s;
}
.hamb_menu.act span {
  position: absolute;
  width: 80%;
  top: 40%;
  left: 50%;
}
.hamb_menu.act span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.hamb_menu.act span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamb_menu.act span:nth-child(2) {
  display: none;
}

@media (max-width: 1199px) {
  .hamb_menu {
    display: block;
  }
}
.header {
  padding-bottom: 280px;
}
.header__title {
  text-align: center;
  font: 700 48px/58px "Roboto";
  margin: 140px auto 70px;
}
.header__title span {
  position: relative;
}
.header__title span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -25px;
  width: calc(100% + 20px);
  height: 5px;
  background: #fff;
  border-radius: 20%;
  rotate: -2deg;
}
.header__title .row-1 {
  font-size: 42px;
  margin-bottom: 15px !important;
}
.header .row-1 {
  max-width: 940px;
  margin: 0 auto;
  padding-top: 25px;
}
.header .row-1 .col {
  flex: 1 0 33.3333%;
}
.header .row-1 .col:nth-child(2) {
  opacity: 0;
}
.header .row-1 .col-logo {
  display: flex;
  justify-content: center;
}
.header__iconBox {
  width: 20%;
  font-size: 12px;
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.header__iconBox:last-child {
  border-right: 0;
}
.header__iconBox--icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  height: 43px;
  align-items: flex-end;
}
.header__iconBox--title {
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: center;
  font-size: 16px;
  line-height: 18px;
}
.header__iconBox--desc {
  font-size: 14px;
  text-align: center;
}
.header__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-end;
}
.header__contact--callback {
  display: block;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
.header__contact--phone {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
}

.section_1 {
  position: relative;
  background: url(../img/bg-header2.jpg) 50% 0/cover;
  color: #fff;
  z-index: 0;
}

.clouds {
  position: relative;
  height: 356px;
  margin-top: -200px;
  overflow: hidden;
}
.clouds .cloud {
  position: absolute;
  width: 100%;
  height: 356px;
}
.clouds .cloud-1 {
  width: 250%;
  left: 0;
  background: url(../img/cloud-1.png);
  animation: cloud-1 infinite 270s linear;
}
.clouds .cloud-2 {
  width: 250%;
  right: 0;
  background: url(../img/cloud-1.png);
  transform: scale(1, -1);
  animation: cloud-2 infinite 200s linear;
}
.clouds .cloud-3 {
  left: -650px;
  bottom: -20px;
  background: url(../img/cloud-1.png);
  transform: scale(-1, 1);
  animation: cloud-3 infinite 15s linear;
}
.clouds .cloud-4 {
  right: -600px;
  background: url(../img/cloud-1.png);
  animation: cloud-3 infinite 22s linear;
}
.clouds:before {
  position: absolute;
  bottom: 25px;
  width: 100%;
  height: 50%;
  display: inline-block;
  content: "";
  background: #fff;
}

.rings_line {
  position: relative;
  z-index: 999;
}

.button_rings {
  position: absolute;
  top: -145px;
  left: 50%;
  transform: translateX(-50%);
}
.button_rings .button_r {
  position: relative;
  width: 120px;
  height: 120px;
  background: #FC8D05;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}
.button_rings .button_r span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  text-align: center;
  line-height: 22px;
}
.button_rings .button_r:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  width: 150px;
  height: 150px;
  background: #FC8D05;
  border-radius: 50%;
  opacity: 0.5;
  z-index: -1;
}
.button_rings .button_r:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: -100px;
  width: 2px;
  height: 55px;
  background: #FC8D05;
}
.button_rings .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 50%;
}
.button_rings .ring__1 {
  animation: ring-1 infinite 3s linear;
}
.button_rings .ring__2 {
  width: 300px;
  height: 300px;
  opacity: 0.4;
  animation: ring-2 infinite 3s linear;
}
.button_rings .ring__3 {
  width: 380px;
  height: 380px;
  opacity: 0.2;
  animation: ring-3 infinite 3s linear;
}

.questions {
  width: 100%;
  background: url(../img/bg-section3-right.jpg) no-repeat 100% 20%, url(../img/bg-section3-left.jpg) no-repeat 0 20%;
}
.questions .container {
  max-width: 770px;
}
.questions .question {
  width: 100%;
  margin-top: 50px;
  padding-left: 100px;
}
.questions .question__title {
  font-size: 24px;
  color: #1d1715;
  font-weight: 700;
}

.section-4 {
  width: 100%;
  background: url(../img/bg-footer2.jpg) 50% 0/cover;
  padding: 240px 0 40px;
  margin-top: 60px;
}

.orderForm {
  position: relative;
  background: #fff;
  padding: 60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  overflow: hidden;
}
.orderForm__title {
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  text-align: center;
  padding: 0 90px;
  letter-spacing: 0.02em;
}
.orderForm__desc {
  font-weight: 18;
  line-height: 20px;
  color: #979797;
  text-align: center;
  margin: 20px 0 40px;
  padding: 0 170px;
  letter-spacing: 0.02em;
}
.orderForm .div_form {
  max-width: 300px;
  margin: 0 auto;
}
.orderForm .div_form button {
  margin: 30px auto 0;
  flex: 0 0 190px;
  border-radius: 50px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
}
.orderForm .custom .label {
  font-size: 12px;
  line-height: 12px;
  color: #979797 !important;
}
.orderForm .orderForm__hideText,
.orderForm .orderForm__hideBlock {
  display: none;
}
.orderForm.hide .orderForm__hideText {
  display: block;
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  text-align: center;
  z-index: 50;
}
.orderForm.hide .orderForm__hideBlock {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.8;
  z-index: 10;
}
.orderForm.hide .orderForm__title,
.orderForm.hide .orderForm__desc,
.orderForm.hide .div_form {
  filter: blur(5px);
}

.numbers {
  position: relative;
  border-top: 12px solid #FC8D05;
  overflow: hidden;
}
.numbers .numberBox {
  flex: 1 0 25%;
  padding: 40px 50px 20px;
  box-shadow: 10px 4px 20px rgba(0, 0, 0, 0.14);
}
.numbers .numberBox__number {
  display: flex;
  align-items: start;
  gap: 6px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}
.numbers .numberBox__number img {
  max-height: 56px;
  margin-left: 20px;
}
.numbers .numberBox__text {
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.col-2 {
  width: 100%;
}

input[name=name] {
  background: url(../img/icon-user.png) no-repeat 20px 50%;
}

input[name=phone] {
  background: url(../img/icon-phone.png) no-repeat 20px 50%;
}

.h_email, .h_mail {
  display: none !important;
}

.icon-container {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  padding: 30px 0;
  margin-top: 30px;
  border-radius: 30px;
}

.footer {
  padding: 20px;
  text-align: center;
  background: #FC8D05;
  color: #fff;
  line-height: 1.4;
}
.footer a {
  color: inherit;
}

/*# sourceMappingURL=style.css.map */
