
@charset "UTF-8";
@font-face {
  font-family: "Gotham Pro";
  src: url("assets/fonts/gothampro_light.ttf") format("ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("assets/fonts/gothampro.ttf") format("ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("assets/fonts/gothampro_medium.ttf") format("ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("assets/fonts/gothampro_bold.ttf") format("ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("assets/fonts/gothampro_black.ttf") format("ttf");
  font-weight: 900;
}
:root {
  --main-color: #3b3b3b;
  --bg-color: #FDFBE6;
  --yellow: #f8c304;
  --orange: #de541e;
  --light: #d6d6b1;
  --gold: #c79d07;
  --grey: #878472;
  --bg-light: #fafaf5;
  --secondary-color: #1d1f31;
  --green-main: #7ef277;
  --green-dark: #40b48b;
  --background-label: #e1e1e3;
  --background-main: #ecf7f3;
  --background-secondary: #eff1f3;
}

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

html {
  font-size: 14px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: "Gotham Pro", sans-serif;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  height: 100%;
  font-size: 14px;
  line-height: 14px;
  color: var(--main-color);
  background: var(--bg-light);
  overflow-x: hidden;
}

body.open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
p,
li,
span,
label,
input,
textarea,
div {
  line-height: normal;
}

p,
li,
span,
label,
input,
textarea {
  font-weight: 400;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
}

select,
button,
input,
textarea {
  font-family: "Gotham Pro", sans-serif;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: var(--main-color);
}
select::-moz-placeholder, button::-moz-placeholder, input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--main-color);
  font-weight: normal;
}
select::-webkit-input-placeholder, button::-webkit-input-placeholder, input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--main-color);
  font-weight: normal;
}
select:-ms-input-placeholder, button:-ms-input-placeholder, input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--main-color);
  font-weight: normal;
}
select::-ms-input-placeholder, button::-ms-input-placeholder, input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--main-color);
  font-weight: normal;
}
select::placeholder,
button::placeholder,
input::placeholder,
textarea::placeholder {
  color: var(--main-color);
  font-weight: normal;
}

button {
  border: none;
  cursor: pointer;
  background: inherit;
}

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

ul,
ol {
  list-style: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background: inherit;
  cursor: pointer;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* Header */
/*
.header.active {
  -webkit-box-shadow: 0 6px 6px rgb(0 0 0 / 20%);
  box-shadow: 0 6px 6px rgb(0 0 0 / 20%);
  background: var(--bg-color);
}
  */
.header {
  position: absolute;
  top: 0;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: transparent;
  width: 100%;
  padding: 30px 0;
}
.header .header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60%;
}
.header .header__content .header__logo img {
  width: 200px;
}
@media screen and (max-width: 540px) {
  .header .header__content .header__logo img {
    width: 150px;
  }
}
@media screen and (max-width: 1500px) {
  .header .header__content {
    width: 55%;
  }
}
@media screen and (max-width: 1200px) {
  .header .header__content {
    width: 100%;
  }
}
.header .header__content .header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  font-size: 19px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .header .header__content .header__menu-list {
    gap: 10px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 540px) {
  .header .header__content .header__menu-list {
    font-size: 16px;
    gap: 5px;
  }
}
.header__nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  background: var(--bg-color);
}
@media screen and (max-width: 767px) {
  .header__nav-content {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-content .header__nav {
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8705882353);
    opacity: 0;
    visibility: hidden;
    text-align: center;
    -webkit-transition: visibility 0.5s ease, opacity 1s ease;
    -o-transition: visibility 0.5s ease, opacity 1s ease;
    transition: visibility 0.5s ease, opacity 1s ease;
  }
}
.header__nav-content .header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .header__nav-content .header__nav-list {
    display: none;
    -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;
    position: fixed;
    top: 80px;
    left: calc(50% - 150px);
    width: 300px;
    opacity: 1;
  }
}
.header__nav-content .header__nav-list .header__nav-link {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: var(--bg-light);
  text-transform: uppercase;
  padding: 4px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__nav-content .header__nav-list .header__nav-link {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    text-decoration: none;
    margin: 0;
  }
}
.header__nav-content .header__nav-list .nav__first svg {
  margin-left: 5px;
  width: 13px;
  height: 9px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__nav-content .header__nav-list .nav-item__link {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: var(--bg-color);
  padding: 4px;
  cursor: pointer;
  white-space: nowrap;
}

/* Header */
/* Main banner */
body {
  background: var(--bg-color);
}

main {
  min-height: 100vh;
  padding-top: 10vh;
}
@media screen and (max-width: 540px) {
  main {
    padding-top: 15vh;
  }
}

.main-banner {
  
  /*
  @media screen and (max-width: 1500px) {
    padding-top: 5vh;
  }
    */
}
@media screen and (max-width: 768px) {
  .main-banner {
    min-height: 100vh;
  }
}

.main-banner .image-block {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1200px) {
  .main-banner .image-block {
    display: none;
  }
}
.main-banner .image-block img {
  max-height: 100vh;
  max-width: 40vw;
}
.main-banner .main-banner__content {
  width: 60%;
  height: 90vh;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1500px) {
  .main-banner .main-banner__content {
    width: 55%;
  }
}
@media screen and (max-width: 1200px) {
  .main-banner .main-banner__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    width: 100% !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .main-banner .main-banner__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 25px;
    height: auto;
  }
}
@media screen and (max-width: 950px) {
  .main-banner .main-banner__content .main-banner__text {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .main-banner .main-banner__content .main-banner__text {
    max-width: 100%;
  }
}
.main-banner .main-banner__content .main-banner__text .main-banner__title {
  font-size: 30px;
  line-height: normal;
}
.main-banner .main-banner__content .main-banner__text .main-banner__title span {
  font-size: 55px;
  font-weight: bold;
}
@media screen and (max-width: 950px) {
  .main-banner .main-banner__content .main-banner__text .main-banner__title span {
    font-size: 40px;
  }
}
@media screen and (max-width: 950px) {
  .main-banner .main-banner__content .main-banner__text .main-banner__title {
    font-size: 20px;
  }
}
.main-banner .main-banner__content .main-banner__text .main-banner__subtitle {
  font-size: 30px;
  line-height: normal;
  padding-top: 30px;
  font-style: italic;
}
@media screen and (max-width: 950px) {
  .main-banner .main-banner__content .main-banner__text .main-banner__subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 540px) {
  .main-banner .main-banner__content .main-banner__text .main-banner__subtitle {
    font-size: 18px;
  }
}
.main-banner .main-banner__content .main-banner__form {
  padding-top: 30px;
  -ms-grid-column-align: end;
      justify-self: end;
}
@media screen and (max-width: 1200px) {
  .main-banner .main-banner__content .main-banner__form {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .main-banner .main-banner__content .main-banner__form {
    -ms-grid-column-align: start;
        justify-self: start;
  }
}
.main-banner .main-banner__content .main-banner__form .main-banner__form-block {
  max-width: 400px;
  position: relative;
  /*
  .success-message {
    display: none;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding: 20px;
    margin-top: 20px;
    font-size: 30px;
    color: #007900;
    background: white;
    line-height: normal;
    font-weight: bold;

    @media screen and (max-width: 768px) {
      font-size: 22px;
    }
  }

  .success-message.active {
    display: flex;
  }
  */
  /*
  &:after {
    content: 'Форма успешно отправлена!';
    position: absolute;
    background: white;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
  }
  */
}
.main-banner .main-banner__content .main-banner__form .main-banner__form-block .main-banner__form-title {
  font-size: 25px;
  padding-bottom: 20px;
  line-height: normal;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .main-banner .main-banner__content .main-banner__form .main-banner__form-block .main-banner__form-title {
    font-size: 20px;
  }
}
.main-banner .main-banner__content .main-banner__form .main-banner__form-block .main-banner__form-input {
  width: 100%;
  background: white;
  padding: 20px 30px;
  font-size: 25px;
  border: 3px solid var(--main-color);
  margin-top: 15px;
}
.main-banner .main-banner__content .main-banner__form .main-banner__form-block .main-banner__form-btn {
  width: 100%;
  padding: 30px;
  background: var(--main-color);
  color: white;
  margin-top: 25px;
  font-size: 25px;
  border: 4px solid var(--main-color);
  font-weight: bold;
}
.main-banner .main-banner__content .main-banner__form .main-banner__form-block .main-banner__form-btn:hover {
  background: transparent;
  color: var(--main-color);
  font-weight: bold;
}
.main-banner .main-banner__content .main-banner__form .main-banner__form-block .main-banner__form-btn.active {
  background: green;
  color: white;
  font-weight: bold;
  border: 4px solid green;
}
.main-banner .main-banner__content .main-banner__form .main-banner__form-block .main-banner__form-btn.active:hover {
  background: green;
  color: white;
  font-weight: bold;
  border: 4px solid green;
}

/* Main banner */
/* Services */
.services {
  padding: 100px;
  background: white;
}
.services .services__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 75px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .services .services__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 900px) {
  .services .services__content .services__image {
    display: none;
  }
}
.services .services__content .services__image img {
  width: 300px;
}
.services .services__content .services__text .services__title {
  margin-bottom: 40px;
  text-transform: uppercase;
  font-size: 30px;
  line-height: normal;
}
.services .services__content .services__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  .services .services__content .services__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.services .services__content .services__items .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 1200px) {
  .services .services__content .services__items .column {
    gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .services .services__content .services__items .column {
    max-width: 90%;
  }
}
@media screen and (max-width: 540px) {
  .services .services__content .services__items .column {
    max-width: 100%;
  }
}
.services .services__content .services__items .column .services__item {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -ms-grid-columns: auto 30px 1fr;
  grid-template-columns: auto 1fr;
}
.services .services__content .services__items .column .services__item .services__item-text .services__item-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  .services .services__content .services__items .column .services__item .services__item-text .services__item-title {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 540px) {
  .services .services__content .services__items .column .services__item .services__item-text .services__item-title {
    font-size: 18px;
  }
}
.services .services__content .services__items .column .services__item .services__item-text .services__item-subtitle {
  font-size: 16px;
  line-height: normal;
}
.services .services__content .services__items .column .services__item .services__item-icon {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: var(--bg-color);
  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;
  font-size: 45px;
}

/* Services */
/* Benefits */
.benefits {
  padding: 200px 0;
}
.benefits .benefits__title {
  margin-bottom: 40px;
  text-transform: uppercase;
  font-size: 30px;
  line-height: normal;
}
.benefits .benefits__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .benefits .benefits__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.benefits .benefits__list .benefits__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px 1fr;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 50px;
  background: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .benefits .benefits__list .benefits__item {
    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: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 35px;
  }
}
.benefits .benefits__list .benefits__item .benefits__item-icon {
  font-size: 120px;
  font-weight: 900;
  line-height: normal;
}
.benefits .benefits__list .benefits__item .benefits__item-text .benefits__item-title {
  font-size: 25px;
  line-height: normal;
  font-weight: bold;
  margin-bottom: 25px;
}
.benefits .benefits__list .benefits__item .benefits__item-text .benefits__item-subtitle {
  line-height: normal;
  font-size: 20px;
}

/* Benefits */
/* Banner */
.banner {
  background: white;
  background-image: url(assets/img/banner-image2.png);
  background-repeat: no-repeat;
  background-position: right;
}
@media screen and (max-width: 1200px) {
  .banner {
    background-size: 100%;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    background-image: none;
  }
}
.banner .banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 200px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.banner .banner__content .main-banner__form-btn.active {
  background: green;
  color: white;
  font-weight: bold;
  border: 4px solid green;
}
.banner .banner__content .main-banner__form-btn.active:hover {
  background: green;
  color: white;
  font-weight: bold;
  border: 4px solid green;
}
@media screen and (max-width: 1200px) {
  .banner .banner__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 100px 0;
  }
}
@media screen and (max-width: 768px) {
  .banner .banner__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
}
@media screen and (max-width: 1200px) {
  .banner .banner__content .banner__image {
    display: none;
  }
}
.banner .banner__content .benner__text {
  background: white;
  padding: 50px;
  max-width: 600px;
}
@media screen and (max-width: 1600px) {
  .banner .banner__content .benner__text {
    -webkit-box-shadow: 0px 0px 10px 0px rgb(163, 163, 163);
            box-shadow: 0px 0px 10px 0px rgb(163, 163, 163);
  }
}
@media screen and (max-width: 768px) {
  .banner .banner__content .benner__text {
    max-width: 100%;
    padding: 30px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media screen and (max-width: 540px) {
  .banner .banner__content .benner__text {
    padding: 10px;
  }
}
.banner .banner__content .benner__text .banner__title {
  font-size: 50px;
  line-height: normal;
  margin-bottom: 20px;
}
@media screen and (max-width: 540px) {
  .banner .banner__content .benner__text .banner__title {
    font-size: 35px;
  }
}
.banner .banner__content .benner__text .banner__subtitle {
  font-size: 20px;
  line-height: normal;
  margin-bottom: 25px;
}

/* Banner */
/* Contacts */
.contacts .contacts__content {
  position: relative;
}
.contacts .contacts__content .contacts__map {
  padding: 30px;
}
.contacts .contacts__content .contacts__text {
  padding: 30px;
  background: white;
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .contacts .contacts__content .contacts__text {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.contacts .contacts__content .contacts__text .contacts__title {
  margin-bottom: 30px;
}
.contacts .contacts__content .contacts__text .contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  font-size: 16px;
}

/* Contacts */
/* Form */
.main-banner__form {
  padding-top: 30px;
  -ms-grid-column-align: end;
      justify-self: end;
}
@media screen and (max-width: 1200px) {
  .main-banner__form {
    padding-top: 0;
  }
}
.main-banner__form .main-banner__form-block {
  max-width: 400px;
  position: relative;
  /*
  &:after {
    content: 'Форма успешно отправлена!';
    position: absolute;
    background: white;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
  }
  */
}
.main-banner__form .main-banner__form-block .success-message {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding: 20px;
  margin-top: 20px;
  font-size: 30px;
  color: #007900;
  background: white;
  line-height: normal;
  font-weight: bold;
}
.main-banner__form .main-banner__form-block .success-message.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-banner__form .main-banner__form-block .main-banner__form-title {
  font-size: 25px;
  padding-bottom: 20px;
  line-height: normal;
}
.main-banner__form .main-banner__form-block .main-banner__form-input {
  width: 100%;
  background: white;
  padding: 20px 30px;
  font-size: 25px;
  border: 3px solid var(--main-color);
  margin-top: 15px;
}
.main-banner__form .main-banner__form-block .main-banner__form-btn {
  width: 100%;
  padding: 30px;
  background: var(--main-color);
  color: white;
  margin-top: 25px;
  font-size: 25px;
  border: 4px solid var(--main-color);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .main-banner__form .main-banner__form-block .main-banner__form-btn {
    font-size: 17px;
  }
}
.main-banner__form .main-banner__form-block .main-banner__form-btn:hover {
  background: transparent;
  color: var(--main-color);
  font-weight: bold;
}

/* Form */
/* global */
@media screen and (max-width: 1200px) {
  section.section {
    padding: 50px 0;
  }
}

@media screen and (max-width: 1200px) {
  section.contacts {
    padding: 50px 0 0 0;
  }
}

input {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

input.main-banner__form-input.error {
  border-color: red !important;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/* global */