/* Reset and base styles  */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

/*

font-family: 'Montserrat', sans-serif;

*/
.white {
  color: #fff;
}

.black {
  color: #000;
}

.background-orange {
  background-color: #FF9900;
}

:root {
  --gap: 32px;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: #000;
}

.container {
  margin: 0 auto;
  max-width: 1920px;
  width: 100%;
  padding: 0 75px;
}
@media (max-width: 1060px) {
  .container {
    padding: 0 50px;
  }
}
@media (max-width: 1020px) {
  .container {
    max-width: 768px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 30px;
    max-width: 600px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
    max-width: 320px;
  }
}

.title {
  font-size: 48px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 34px;
}
@media (max-width: 1060px) {
  .title {
    margin-bottom: 33px;
  }
}
@media (max-width: 767px) {
  .title {
    font-size: 24px;
    font-weight: 400;
  }
}

.title-h3 {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .title-h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
  }
}

.text {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  line-height: 32px;
  font-style: normal;
  overflow-y: hidden;
}
.text-white-solid {
  font-style: normal;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  line-height: 32px;
  font-weight: 700;
  overflow-y: hidden;
  color: #fff;
}

.btn {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  padding: 19px 38px;
  border-radius: 16px;
  height: 60px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.no-scroll {
  overflow-y: hidden;
}

input[type=checkbox] {
  -moz-appearance: initial;
}

input[type=checkbox]:after {
  content: "";
  left: -3px;
  top: -1px;
  width: 14px;
  height: 14px;
  position: absolute;
  background-color: #000;
  visibility: visible;
  outline: 1px solid #CACACA;
}

input[type=checkbox]:checked:after {
  content: "";
  display: block;
  left: -3px;
  top: -1px;
  width: 14px;
  height: 14px;
  position: absolute;
  background-image: url("./../img/footer/check.svg");
  background-size: 100% 100%;
  background-position: 1px 2px;
  background-size: 90%;
  background-repeat: no-repeat;
  visibility: visible;
  outline: 1px solid #CACACA;
}

:focus::-webkit-input-placeholder {
  opacity: 0;
}

:focus::-moz-placeholder {
  opacity: 0;
}

:focus:-ms-input-placeholder {
  opacity: 0;
}

:focus::-ms-input-placeholder {
  opacity: 0;
}

:focus::placeholder {
  opacity: 0;
}

.svg-search {
  width: 24px;
  height: 25px;
  stroke: #000;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.svg-search:hover {
  stroke: #FF9900;
  fill: #FF9900;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.svg-logo-black {
  max-width: 226px;
  max-height: 72px;
  width: 100%;
  height: 100%;
}
@media (max-width: 1060px) {
  .svg-logo-black {
    max-width: 150px;
    max-height: 48px;
  }
}
@media (max-width: 1020px) {
  .svg-logo-black {
    max-width: 110px;
    max-height: 45px;
  }
}

.svg-vk,
.svg-ok {
  width: 60px;
  height: 60px;
  fill: #666666;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.svg-vk:hover,
.svg-ok:hover {
  fill: #FF9900;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.svg-vk:active,
.svg-ok:active {
  fill: #E1670E;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.header {
  max-height: 770px;
  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;
  margin-bottom: 51px;
}
@media (max-width: 1060px) {
  .header {
    margin-bottom: 35px;
  }
}
@media (max-width: 1200px) {
  .header {
    max-height: 808px;
  }
}

.header__top {
  width: 100%;
  max-width: 1920px;
  padding: 14px 0;
  -webkit-box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 32px 32px;
  margin: 0 auto 50px auto;
}
@media (max-width: 1060px) {
  .header__top {
    padding: 26px 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 1020px) {
  .header__top {
    padding: 12px 0;
  }
}
@media (max-width: 767px) {
  .header__top {
    margin-bottom: 20px;
  }
}

.header__top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .header__top-row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header__top-row--mobile {
  margin: 0 auto;
  position: fixed;
  background-color: white;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 12px 50px;
  overflow: hidden;
}
.header__top-row--mobile .header__svg-logo-black {
  margin-bottom: 50px;
}
.header__top-row--mobile .header__nav {
  display: grid;
}
.header__top-row--mobile .nav__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__top-row--mobile .header__nav-btn {
  position: fixed;
  z-index: 101;
  top: 24px;
  right: 50px;
}
@media (max-width: 600px) {
  .header__top-row--mobile .header__nav-btn {
    right: 30px;
  }
}
@media (max-width: 480px) {
  .header__top-row--mobile .header__nav-btn {
    right: 95px;
  }
}
@media (max-width: 430px) {
  .header__top-row--mobile .header__nav-btn {
    right: 70px;
  }
}
@media (max-width: 390px) {
  .header__top-row--mobile .header__nav-btn {
    right: 50px;
  }
}
@media (max-width: 350px) {
  .header__top-row--mobile .header__nav-btn {
    right: 15px;
  }
}
.header__top-row--mobile .header__search {
  display: none;
}
@media (max-width: 650px) {
  .header__top-row--mobile {
    padding: 12px 30px;
  }
}
@media (max-width: 480px) {
  .header__top-row--mobile {
    padding: 12px 95px;
  }
}
@media (max-width: 430px) {
  .header__top-row--mobile {
    padding: 12px 70px;
  }
}
@media (max-width: 430px) {
  .header__top-row--mobile {
    padding: 12px 50px;
  }
}
@media (max-width: 350px) {
  .header__top-row--mobile {
    padding: 12px 15px;
  }
}

@media (max-width: 767px) {
  .header__bottom {
    padding: 0 15px;
    max-width: 320px;
  }
}

.header__photo {
  display: block;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  max-width: 1770px;
  width: 100%;
  max-height: 620px;
  height: 100%;
}
.header__photo::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.header__photo img + img {
  margin-top: 32px;
}
@media (max-width: 1200px) {
  .header__photo {
    max-width: 924px;
    max-height: 668px;
  }
}
@media (max-width: 1020px) {
  .header__photo {
    max-width: 668px;
    max-height: 662px;
  }
}
@media (max-width: 767px) {
  .header__photo {
    max-width: 290px;
    max-height: 308px;
  }
}

.header__title {
  position: absolute;
  left: 80px;
  top: 100px;
  font-style: normal;
  font-weight: 800;
  font-size: 70px;
  line-height: normal;
  color: #FFFFFF;
  width: 837px;
}
@media (max-width: 1660px) {
  .header__title {
    width: 770px;
    font-size: 60px;
    top: 160px;
  }
}
@media (max-width: 1060px) {
  .header__title {
    left: 77px;
    width: 770px;
    font-size: 60px;
    top: 160px;
  }
}
@media (max-width: 1020px) {
  .header__title {
    font-size: 50px;
    max-width: 588px;
    left: 40px;
  }
}
@media (max-width: 767px) {
  .header__title {
    top: 160px;
    left: 80px;
    max-width: 447px;
    font-size: 34px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .header__title {
    top: 60px;
    left: 22px;
    max-width: 247px;
    text-align: center;
    font-size: 20px;
  }
}

.header__img img {
  height: 620px;
}
@media (max-width: 1200px) {
  .header__img img {
    height: 668px;
  }
}
@media (max-width: 767px) {
  .header__img img {
    height: 308px;
  }
}

.header__text {
  position: absolute;
  left: 80px;
  top: 294px;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: #FFFFFF;
  width: 790px;
}
@media (max-width: 1660px) {
  .header__text {
    width: 660px;
    font-size: 20px;
    top: 322px;
  }
}
@media (max-width: 1060px) {
  .header__text {
    left: 77px;
    width: 770px;
  }
}
@media (max-width: 1020px) {
  .header__text {
    font-size: 18px;
    max-width: 588px;
    top: 298px;
  }
}
@media (max-width: 1020px) {
  .header__text {
    left: 40px;
  }
}
@media (max-width: 767px) {
  .header__text {
    top: 260px;
    left: 47px;
    max-width: 500px;
    font-size: 16px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .header__text {
    top: 115px;
    left: 22px;
    max-width: 247px;
    font-size: 12px;
    text-align: center;
  }
}

.header__btn {
  position: absolute;
  left: 80px;
  top: 442px;
  font-style: normal;
  font-weight: 700;
  font-size: 23px;
  line-height: 28px;
  text-align: center;
  color: #FFFFFF;
  width: 280px;
  height: 78px;
  background-color: #FF9900;
  border-radius: 16px;
  text-align: center;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.header__btn:hover {
  background-color: #FFB84D;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.header__btn:focus {
  background-color: #FFB84D;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.header__btn:active {
  background-color: #E1670E;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
@media (max-width: 1770px) {
  .header__btn {
    top: 390px;
  }
}
@media (max-width: 1660px) {
  .header__btn {
    top: 430px;
  }
}
@media (max-width: 1060px) {
  .header__btn {
    left: 77px;
    font-size: 24px;
  }
}
@media (max-width: 1020px) {
  .header__btn {
    font-size: 23px;
    top: 424px;
    left: 40px;
  }
}
@media (max-width: 767px) {
  .header__btn {
    top: 380px;
    left: 200px;
    font-size: 14px;
    border-radius: 12px;
    width: 200px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .header__btn {
    top: 208px;
    left: 64px;
    font-size: 12px;
    border-radius: 8px;
    width: 162px;
    height: 41px;
  }
}

@media (max-width: 1160px) {
  .header__nav {
    display: none;
  }
}
.header__nav-link {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.header__nav-link:after {
  content: "";
  position: absolute;
  opacity: 0;
  bottom: -9px;
  left: 0;
  width: 100%;
  outline: 2px solid #FF9900;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.header__nav-link:hover::after {
  content: "";
  opacity: 1;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.header__nav-link:focus {
  outline: 2px solid #FF9900;
  outline-offset: 4px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.header__nav-link:active {
  color: #E1670E;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.header__nav-link:active:after {
  outline-color: #E1670E;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.header__svg-logo-black {
  max-width: 225px;
  max-height: 72px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1060px) {
  .header__svg-logo-black {
    max-width: 150px;
    max-height: 48px;
  }
}
@media (max-width: 1020px) {
  .header__svg-logo-black {
    max-width: 110px;
    max-height: 45px;
  }
}

.header__search {
  margin-left: 85px;
}
@media (max-width: 1060px) {
  .header__search {
    margin-left: 105px;
  }
}
@media (max-width: 1020px) {
  .header__search {
    margin-left: 43px;
  }
}
@media (max-width: 1160px) {
  .header__search {
    display: none;
  }
}

.header__svg-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.header__svg-search:focus {
  outline: 2px solid #FF9900;
  outline-offset: 2px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.header__nav-btn {
  display: none;
}
@media (max-width: 1160px) {
  .header__nav-btn {
    display: block;
  }
}

.nav {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
@media (max-width: 1020px) {
  .nav {
    font-size: 16px;
    color: #333;
    font-weight: 700;
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 85px;
  max-width: 615px;
  width: 100%;
}
@media (max-width: 1060px) {
  .nav__list {
    gap: 60px;
    max-width: 540px;
  }
}
@media (max-width: 1020px) {
  .nav__list {
    gap: 40px;
    max-width: 447px;
  }
}

.nav__list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__list-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Nav Icon */
.nav-icon-btn {
  --time: 0.1s;
  --width: 30px;
  --height: 20px;
  --line-height: 1px;
  --line-margin: 2;
  --color: black;
  height: var(--height);
  width: var(--width);
  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;
}
@media (max-width: 1160px) {
  .nav-icon-btn {
    --width: 60px;
    --height: 50px;
    --line-height: 2px;
  }
}
@media (max-width: 1060px) {
  .nav-icon-btn {
    --width: 40px;
    --height: 30px;
    --line-height: 1px;
  }
}
@media (max-width: 1020px) {
  .nav-icon-btn {
    --width: 30px;
    --height: 20px;
  }
}

.nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  -webkit-transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
}

.nav-icon::before {
  top: calc(var(--line-height) * -8);
}

.nav-icon::after {
  top: calc(var(--line-height) * 8);
}

.nav-icon.nav-icon--active {
  background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
  top: 0;
  -webkit-transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time), -webkit-transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.search-img:hover {
  fill: #FF9900;
}

.about {
  margin-bottom: 100px;
}
@media (max-width: 1770px) {
  .about {
    margin-bottom: 78px;
  }
}
@media (max-width: 1020px) {
  .about {
    margin-bottom: 81px;
  }
}
@media (max-width: 767px) {
  .about {
    margin-bottom: 59px;
  }
}

.about__title {
  margin-bottom: 21px;
}
@media (max-width: 1060px) {
  .about__title {
    margin-bottom: 22px;
  }
}
@media (max-width: 767px) {
  .about__title {
    margin-bottom: 20px;
  }
}

.about__text {
  margin-bottom: 50px;
  max-width: 1235px;
  width: 100%;
  font-weight: 400;
  overflow-y: visible;
}
@media (max-width: 1060px) {
  .about__text {
    max-width: 924px;
    margin-bottom: 59px;
  }
}
@media (max-width: 992px) {
  .about__text {
    max-width: 668px;
    margin-bottom: 54px;
  }
}
@media (max-width: 767px) {
  .about__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .about__text {
    margin-bottom: 14px;
  }
}

.about__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  position: relative;
}
@media (max-width: 1200px) {
  .about__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.about__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  max-width: 868px;
  width: 100%;
  max-height: 622px;
  height: 100%;
}
.about__photo::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 426px;
  width: 100%;
  height: 196px;
  border-radius: 32px;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .about__photo::before {
    display: none;
  }
}
.about__photo img + img {
  margin-top: 32px;
}
@media (max-width: 1770px) {
  .about__photo {
    margin: auto 0;
  }
}
@media (max-width: 1200px) {
  .about__photo {
    margin-bottom: var(--gap);
    max-width: 924px;
    max-height: 640px;
  }
  .about__photo::before {
    content: "";
    top: 444px;
  }
}
@media (max-width: 1020px) {
  .about__photo {
    margin-bottom: 42px;
  }
  .about__photo::before {
    content: "";
    top: 454px;
  }
}
@media (max-width: 767px) {
  .about__photo {
    margin-bottom: 32px;
  }
}

.about__photo img {
  height: 622px;
}
@media (max-width: 1200px) {
  .about__photo img {
    height: 640px;
  }
}
@media (max-width: 1020px) {
  .about__photo img {
    height: 650px;
  }
}
@media (max-width: 700px) {
  .about__photo img {
    height: 200px;
  }
}

.about__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--gap);
}

.about__card {
  width: 870px;
  max-height: 295px;
  height: 100%;
  border: 1px solid #CACACA;
  border-radius: 32px;
  padding: 65px 120px 65px 60px;
}
@media (max-width: 1919px) {
  .about__card {
    padding: 65px 60px 65px 60px;
  }
}
@media (max-width: 1770px) {
  .about__card {
    padding: 35px 35px 65px 60px;
    width: 550px;
    max-height: 485px;
  }
}
@media (max-width: 1500px) {
  .about__card {
    padding: 20px 35px 20px 35px;
    width: 450px;
  }
}
@media (max-width: 1500px) {
  .about__card {
    padding: 20px 35px 20px 35px;
    width: 450px;
  }
}
@media (max-width: 1350px) {
  .about__card {
    width: 300px;
    max-height: 550px;
  }
}
@media (max-width: 1200px) {
  .about__card {
    width: 924px;
    max-height: 295px;
    padding: 65px 157px 65px 77px;
  }
}
@media (max-width: 1020px) {
  .about__card {
    width: 668px;
    max-height: 235px;
    padding: 35px 48px 35px 40px;
  }
}
@media (max-width: 767px) {
  .about__card {
    left: 453px;
    bottom: 58px;
    border: none;
    padding: 0;
  }
}
@media (max-width: 766px) {
  .about__card {
    width: 100%;
  }
}

.photo__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50px;
  bottom: 49px;
  right: 385px;
  width: 433px;
  text-align: left;
}
@media (max-width: 1200px) {
  .photo__text {
    bottom: 49px;
    left: 51px;
  }
}
@media (max-width: 1020px) {
  .photo__text {
    bottom: 23px;
    left: 40px;
    width: 366px;
  }
}
@media (max-width: 767px) {
  .photo__text {
    position: static;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    max-width: 290px;
  }
}

@media (max-width: 1020px) {
  .photo__img img {
    width: 668px;
    height: 650px;
  }
}
@media (max-width: 767px) {
  .photo__img img {
    width: 290px;
    height: 200px;
    margin-bottom: 8px;
  }
}

.photo__btn {
  position: absolute;
  right: 50px;
  bottom: 68px;
  left: 643px;
  outline: 3px solid #FF9900;
  outline-offset: -2px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  width: 175px;
}
.photo__btn:hover {
  background-color: #FF9900;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.photo__btn:focus {
  background-color: #FF9900;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media (max-width: 767px) {
  .photo__btn:focus {
    color: #fff;
  }
}
.photo__btn:active {
  background-color: #E1670E;
  outline-color: #E1670E;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media (max-width: 767px) {
  .photo__btn:active {
    color: #fff;
  }
}
@media (max-width: 1919px) {
  .photo__btn {
    left: 600px;
  }
}
@media (max-width: 1870px) {
  .photo__btn {
    left: 550px;
  }
}
@media (max-width: 1810px) {
  .photo__btn {
    left: 500px;
  }
}
@media (max-width: 1770px) {
  .photo__btn {
    left: 600px;
  }
}
@media (max-width: 1550px) {
  .photo__btn {
    left: 550px;
  }
}
@media (max-width: 1500px) {
  .photo__btn {
    left: 575px;
  }
}
@media (max-width: 1430px) {
  .photo__btn {
    left: 500px;
  }
}
@media (max-width: 1200px) {
  .photo__btn {
    left: 701px;
    bottom: 68px;
  }
}
@media (max-width: 1020px) {
  .photo__btn {
    left: 453px;
    bottom: 58px;
  }
}
@media (max-width: 767px) {
  .photo__btn {
    left: 403px;
    margin-top: 12px;
    position: static;
    color: #FF9900;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    width: 162px;
    height: 40px;
    line-height: normal;
    padding: 0;
    border-radius: 8px;
    outline-width: 2px;
  }
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1770px) {
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 1200px) {
  .card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (max-width: 767px) {
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.card__photo {
  margin-right: 50px;
  width: 190px;
  height: 165px;
}
@media (max-width: 1770px) {
  .card__photo {
    margin-bottom: 35px;
  }
}
@media (max-width: 1350px) {
  .card__photo {
    width: 114px;
    height: 99px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1200px) {
  .card__photo {
    width: 190px;
    height: 165px;
  }
}
@media (max-width: 1060px) {
  .card__photo {
    margin-left: -1px;
  }
}
@media (max-width: 1020px) {
  .card__photo {
    width: 114px;
    height: 99px;
  }
}
@media (max-width: 800px) {
  .card__photo {
    margin: auto 16px auto -1px;
  }
}
@media (max-width: 767px) {
  .card__photo {
    width: 64px;
    height: 49px;
    margin-bottom: 12px;
  }
}

.card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card__title {
  max-width: 412px;
  width: 100%;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 9px;
  margin-top: -2px;
}
.card__title-w452 {
  max-width: 452px;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 9px;
  margin-top: -2px;
}
@media (max-width: 1500px) {
  .card__title-w452 {
    max-width: 300px;
  }
}
@media (max-width: 1200px) {
  .card__title-w452 {
    max-width: 100%;
  }
}
@media (max-width: 1060px) {
  .card__title-w452 {
    margin-top: -1px;
    width: 452px;
  }
}
@media (max-width: 767px) {
  .card__title-w452 {
    font-size: 18px;
    font-weight: 500;
  }
}
@media (max-width: 767px) {
  .card__title-w452 {
    width: 290px;
  }
}
@media (max-width: 1500px) {
  .card__title {
    max-width: 300px;
  }
}
@media (max-width: 1200px) {
  .card__title {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .card__title {
    margin-top: -1px;
  }
}
@media (max-width: 767px) {
  .card__title {
    font-size: 18px;
    font-weight: 500;
  }
}
@media (max-width: 767px) {
  .card__title {
    width: 290px;
  }
}

@media (max-width: 1500px) {
  .card__text {
    max-width: 400px;
  }
}
@media (max-width: 1350px) {
  .card__text {
    max-width: 250px;
  }
}
@media (max-width: 1200px) {
  .card__text {
    max-width: 450px;
  }
}
@media (max-width: 767px) {
  .card__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .card__text {
    max-width: 290px;
  }
}

.stages {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1060px) {
  .stages {
    margin-bottom: 81px;
  }
}
@media (max-width: 767px) {
  .stages {
    margin-bottom: 60px;
  }
}

.stages__left {
  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-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 800px) {
  .stages__left {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.stages__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 800px) {
  .stages__title {
    margin-bottom: -2px;
  }
}

.stages__right {
  margin-top: 8px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (max-width: 800px) {
  .stages__right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0;
    margin-bottom: 39px;
  }
}
@media (max-width: 767px) {
  .stages__right {
    margin-bottom: 16px;
  }
}

.stages__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 800px) {
  .stages__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.stages__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 800px) {
  .stages__right img {
    width: 668px;
    height: 284px;
  }
}
@media (max-width: 767px) {
  .stages__right img {
    width: 290px;
    height: 160px;
  }
}

.stages__text {
  max-width: 758px;
  overflow-y: visible;
  margin-bottom: 18px;
  margin-right: 142px;
  font-weight: 400;
  letter-spacing: normal;
}
@media (max-width: 1060px) {
  .stages__text {
    max-width: 437px;
    margin-right: 50px;
    margin-bottom: 24px;
  }
}
@media (max-width: 800px) {
  .stages__text {
    max-width: 667px;
    max-height: 352px;
    margin-right: 0;
  }
  .stages__text br {
    display: none;
  }
}
@media (max-width: 767px) {
  .stages__text {
    font-size: 14px;
    line-height: 28px;
    width: 290px;
    max-height: 728px;
  }
}

.stages__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .stages__btn-1,
  .stages__btn-2 {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    border-radius: 8px;
    padding: 0;
  }
}

.stages__btn-1 {
  margin-right: 32px;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.stages__btn-1:hover {
  background-color: #FFB84D;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.stages__btn-1:focus {
  background-color: #FFB84D;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.stages__btn-1:active {
  background-color: #E1670E;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
@media (max-width: 767px) {
  .stages__btn-1 {
    width: 162px;
    height: 40px;
  }
}

.stages__btn-2 {
  color: #000;
  outline: 1px solid #000;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.stages__btn-2:hover {
  outline-color: #666666;
  color: #fff;
  background-color: #666666;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.stages__btn-2:focus {
  outline-color: #666666;
  color: #fff;
  background-color: #666666;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.stages__btn-2:active {
  outline-color: #000;
  color: #fff;
  background-color: #000;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media (max-width: 767px) {
  .stages__btn-2 {
    width: 118px;
    height: 39px;
  }
}

.questions {
  margin-bottom: 89px;
}
@media (max-width: 1060px) {
  .questions {
    margin-bottom: 79px;
  }
}
@media (max-width: 767px) {
  .questions {
    margin-bottom: 60px;
  }
}

.questions__h3 {
  max-width: 100%;
}
@media (max-width: 767px) {
  .questions__h3 {
    font-size: 18px;
    font-weight: 500;
  }
}
@media (max-width: 767px) {
  .questions__h3 {
    margin-bottom: 4px;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .questions__title {
    margin-bottom: 20px;
  }
}

.questions__list {
  gap: var(--gap);
  --offsets: 2;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1770px) {
  .questions__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    --offsets: 0;
  }
}

.questions__item {
  padding: 65px 65px 65px 60px;
  width: calc((100% - var(--gap) * var(--offsets)) / (var(--offsets) + 1));
  border-radius: 32px;
  outline: 1px solid #CACACA;
}
@media (max-width: 800px) {
  .questions__item {
    height: 200px;
    padding: 35px 65px 35px 40px;
  }
}
@media (max-width: 767px) {
  .questions__item {
    height: 100%;
    padding: 0;
    outline: none;
  }
}

.footer {
  background-color: #000;
  padding: 48px 0;
}
@media (max-width: 1060px) {
  .footer {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 30px 0;
  }
}

.footer__container {
  margin: 0 auto;
  max-width: 1920px;
  width: 100%;
  padding: 0 25px;
}
@media (max-width: 1770px) {
  .footer__container {
    padding: 0 75px;
  }
}
@media (max-width: 1060px) {
  .footer__container {
    padding: 0 50px;
  }
}
@media (max-width: 992px) {
  .footer__container {
    max-width: 768px;
  }
}
@media (max-width: 767px) {
  .footer__container {
    padding: 0 15px;
    max-width: 320px;
  }
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
}
@media (max-width: 992px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 351px;
  max-width: 252px;
  width: 100%;
  margin-left: 5px;
}
@media (max-width: 1770px) {
  .footer__left {
    margin-right: auto;
  }
}
@media (max-width: 1060px) {
  .footer__left {
    max-width: 251px;
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .footer__left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 767px) {
  .footer__left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 290px;
  }
}

.footer__center {
  width: 100%;
  height: 100%;
  max-width: 570px;
  max-height: 494px;
}
@media (max-width: 1060px) {
  .footer__center {
    max-width: 541px;
  }
}
@media (max-width: 992px) {
  .footer__center {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 50px;
  }
}

.footer__logo {
  margin-bottom: 20px;
}
@media (max-width: 1060px) {
  .footer__logo {
    margin-bottom: 20px;
    margin-left: -1px;
  }
}

.footer__nav {
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .footer__nav {
    display: none;
  }
}

.footer__nav-link {
  color: #CACACA;
  line-height: 36px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.footer__nav-link:hover {
  color: #FF9900;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.footer__nav-link:focus {
  outline: 2px solid #FF9900;
  outline-offset: 3px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.footer__nav-link:active {
  color: #E1670E;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.footer__right {
  margin-left: auto;
  max-width: 363px;
  width: 100%;
  margin-right: 94px;
}
@media (max-width: 1770px) {
  .footer__right {
    display: none;
  }
}

.footer__text {
  width: 363px;
  margin-top: 87px;
  color: #CACACA;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.socials__svg-vk,
.socials__svg-ok {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.socials__svg-vk:focus,
.socials__svg-ok:focus {
  outline: 2px solid #FF9900;
  outline-offset: 3px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.socials__list-item:not(:last-child) {
  margin-right: 25px;
}

.cta__title {
  color: #CACACA;
  font-size: 48px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 25px;
}
@media (max-width: 1060px) {
  .cta__title {
    margin-bottom: 26px;
  }
}
@media (max-width: 767px) {
  .cta__title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .cta__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form input + input {
  margin-top: 25px;
}

.form__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 14px 24px;
  background-color: #414141;
  max-width: 570px;
  max-height: 60px;
  width: 100%;
  border-radius: 16px;
  line-height: 32px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.form__input::-webkit-input-placeholder {
  color: #CACACA;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.form__input::-moz-placeholder {
  color: #CACACA;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.form__input:-ms-input-placeholder {
  color: #CACACA;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.form__input::-ms-input-placeholder {
  color: #CACACA;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.form__input::placeholder {
  color: #CACACA;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
@media (max-width: 767px) {
  .form__input::-webkit-input-placeholder {
    color: #CACACA;
    font-size: 14px;
    font-weight: 400;
  }
  .form__input::-moz-placeholder {
    color: #CACACA;
    font-size: 14px;
    font-weight: 400;
  }
  .form__input:-ms-input-placeholder {
    color: #CACACA;
    font-size: 14px;
    font-weight: 400;
  }
  .form__input::-ms-input-placeholder {
    color: #CACACA;
    font-size: 14px;
    font-weight: 400;
  }
  .form__input::placeholder {
    color: #CACACA;
    font-size: 14px;
    font-weight: 400;
  }
}
.form__input:hover {
  background-color: #666666;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.form__input:focus {
  background-color: #666666;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  outline: none;
}
.form__input:focus::-webkit-input-placeholder {
  background-color: #666666;
  color: #fff;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.form__input:focus::-moz-placeholder {
  background-color: #666666;
  color: #fff;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.form__input:focus:-ms-input-placeholder {
  background-color: #666666;
  color: #fff;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.form__input:focus::-ms-input-placeholder {
  background-color: #666666;
  color: #fff;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.form__input:focus::placeholder {
  background-color: #666666;
  color: #fff;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media (max-width: 1060px) {
  .form__input {
    max-width: 541px;
  }
}
@media (max-width: 767px) {
  .form__input {
    max-width: 100%;
  }
}

.form__textarea {
  margin-top: 25px;
  resize: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 14px 24px;
  background-color: #414141;
  max-height: 150px;
  max-width: 570px;
  border-radius: 16px;
  line-height: 32px;
  width: 100%;
  height: 100%;
}
.form__textarea::-webkit-input-placeholder {
  color: #CACACA;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.form__textarea::-moz-placeholder {
  color: #CACACA;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.form__textarea:-ms-input-placeholder {
  color: #CACACA;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.form__textarea::-ms-input-placeholder {
  color: #CACACA;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.form__textarea::placeholder {
  color: #CACACA;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
@media (max-width: 767px) {
  .form__textarea::-webkit-input-placeholder {
    color: #CACACA;
    font-size: 14px;
    font-weight: 400;
  }
  .form__textarea::-moz-placeholder {
    color: #CACACA;
    font-size: 14px;
    font-weight: 400;
  }
  .form__textarea:-ms-input-placeholder {
    color: #CACACA;
    font-size: 14px;
    font-weight: 400;
  }
  .form__textarea::-ms-input-placeholder {
    color: #CACACA;
    font-size: 14px;
    font-weight: 400;
  }
  .form__textarea::placeholder {
    color: #CACACA;
    font-size: 14px;
    font-weight: 400;
  }
}
.form__textarea:hover {
  background-color: #666666;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.form__textarea:focus {
  background-color: #666666;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  outline: none;
}
.form__textarea:focus::-webkit-input-placeholder {
  background-color: #666666;
  color: #fff;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.form__textarea:focus::-moz-placeholder {
  background-color: #666666;
  color: #fff;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.form__textarea:focus:-ms-input-placeholder {
  background-color: #666666;
  color: #fff;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.form__textarea:focus::-ms-input-placeholder {
  background-color: #666666;
  color: #fff;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.form__textarea:focus::placeholder {
  background-color: #666666;
  color: #fff;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media (max-width: 1060px) {
  .form__textarea {
    max-width: 541px;
  }
}
@media (max-width: 767px) {
  .form__textarea {
    max-width: 100%;
  }
}

.form-privacy {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .form-privacy {
    -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;
  }
}

.form-privacy__btn {
  background-color: #FF9900;
  border-radius: 16px;
  width: 269px;
  padding: 19px 52px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.form-privacy__btn:hover {
  background-color: #FFB84D;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.form-privacy__btn:focus {
  background-color: #FFB84D;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.form-privacy__btn:active {
  background-color: #E1670E;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media (max-width: 1060px) {
  .form-privacy__btn {
    width: 240px;
    padding: 19px 37.5px;
  }
}

.form-privacy-agreement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .form-privacy-agreement {
    position: relative;
  }
  .form-privacy-agreement ::after {
    content: "";
    position: absolute;
    top: 57px;
    left: -6px;
    height: 2px;
    width: 290px;
    background-color: #414141;
  }
}

.form-privacy__input {
  position: relative;
  margin-right: 3px;
  width: 14px;
  height: 14px;
  visibility: hidden;
}
.form-privacy__input:focus {
  outline: none;
}

.form-privacy__label {
  color: #CACACA;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}