:root {
  --black: #202020;
  --gray: #F2F2F2;
  --green: #54A22F;
  --link-blue: #2F80ED;
  --red: #EB5757;
}

@font-face {
  font-family: 'Montserrat serif';
  src: url("../fonts/Montserrat-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat serif';
  src: url("../fonts/Montserrat-Italic.ttf");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Montserrat serif';
  src: url("../fonts/Montserrat-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat serif';
  src: url("../fonts/Montserrat-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat serif';
  src: url("../fonts/Montserrat-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat serif';
  src: url("../fonts/Montserrat-Black.ttf");
  font-weight: 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
}

img, video {
  max-width: 100%;
}

a {
  text-decoration: none;
}

p {
  line-height: 2;
}

li {
  list-style: none;
}

.container {
  margin: 0 auto;
  max-width: 1270px;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}

.order-bttn {
  display: inline-block;
  padding: 20px 45px;
  border-radius: 100px;
  background-color: var(--green);
  color: #fff;
  transition: .2s ease;
}

.order-bttn:hover {
  background-color: #4a8e29;
}

.form__select {
  display: grid;
  grid-template-columns: 200px 1fr;
  -moz-column-gap: 10px;
  column-gap: 10px;
  margin-bottom: 20px;
}

.form__select input {
  display: none;
}

.form__select .-droplist {
  position: relative;
}

.form__select .-droplist.active .-value {
  border-color: transparent;
}

.form__select .-droplist.active .-value .-arrow {
  transform: scale(-1);
}

.form__select .-droplist.active .-list {
  display: block;
}

.form__select .-droplist .-value {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.form__select .-droplist .-list {
  display: none;
  position: absolute;
  background-color: #fff;
  z-index: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  left: -20px;
  right: 0;
}

.form__select .-droplist .-list .-item {
  padding: 10px 20px;
  transition: .2s ease;
  cursor: pointer;
}

.form__select .-droplist .-list .-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.form__select .-droplist .-list .-item.--selected {
  display: none;
}

.form__label {
  padding-top: 20px;
  display: block;
  position: relative;
  margin-bottom: 20px;
  transition: .2s ease;
}

.form__label.--done input, .form__label.--done textarea {
  border-bottom: 1px solid var(--green);
}

.form__label.--warning {
  padding-bottom: 30px;
}

.form__label.--warning input, .form__label.--warning textarea {
  border-bottom: 1px solid var(--red);
}

.form__label.--warning .-postfix {
  opacity: 1;
}

.form__label.--focus .-prefix {
  transform: scale(0.75);
}

.form__label .-prefix {
  transition: .2s ease;
  transform-origin: 0 -80px;
  position: absolute;
  transition: .2s ease;
  cursor: text;
}

.form__label .-postfix {
  margin-top: 8px;
  font-size: 0.75rem;
  opacity: 0;
  transition: .2s ease;
  color: var(--red);
  position: absolute;
  top: 50px;
}

.form__label input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border-top: none;
  border-left: none;
  border-right: none;
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding-bottom: 8px;
  background: none;
  transition: .2s ease;
  resize: none;
  height: 32px;
}

.form__label textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border-top: none;
  border-left: none;
  border-right: none;
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding-bottom: 8px;
  background: none;
  transition: .2s ease;
  resize: none;
}

.form__label input:focus, .form__label textarea:focus {
  outline: none;
  border-top: none;
  border-left: none;
  border-right: none;
  box-shadow: none;
}

.form__check {
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form__check.--warning {
  padding-bottom: 0;
}

.form__check.--warning .-check {
  border: 1px solid var(--red);
  opacity: 1;
}

.form__check input {
  display: none;
}

.form__check input:checked + .-check {
  opacity: 1;
}

.form__check input:checked + .-check .-icon {
  opacity: 1;
}

.form__check .-check {
  margin-top: 5px;
  margin-right: 10px;
  min-width: 24px;
  height: 24px;
  border-radius: 2px;
  border: 1px solid var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}

.form__check .-check .-icon {
  opacity: 0;
}

.form__bttn {
  background: none;
  color: var(--black);
  border: 1px solid var(--black);
  margin-top: 60px;
  cursor: pointer;
}

.form__bttn:hover {
  background: none;
  color: var(--green);
  border: 1px solid var(--green);
}

.second-screen-video-plug {
  position: relative;
  display: none;
}

.second-screen-video-plug::after {
  content: '';
  display: block;
  padding-top: 28.1%;
}

html, body {
  font-family: 'Montserrat serif', sans-serif;
  font-size: 18px;
  color: var(--black);
}

html.--block, body.--block {
  overflow: hidden;
}

input, button, select, textarea {
  font-family: 'Montserrat serif', sans-serif;
  font-size: 18px;
}

a {
  color: var(--link-blue);
}

/* MODAL FORM */
.modal-form {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 20px;
  overflow: auto;
  display: none;
}

.modal-form.active {
  display: block;
}

.modal-form__title {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.modal-form__wrapper {
  position: relative;
  transition: .3s ease;
  transform: translateY(100%);
  max-width: 560px;
  box-sizing: border-box;
  background-color: #fff;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 50px;
  padding-bottom: 80px;
  overflow: hidden;
  border-radius: 16px;
  margin: 0 auto;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 30px 30px;
}

.modal-form__wrapper.active {
  transform: translateY(0);
}

.modal-form .-closer {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.modal-form .form.--sent {
  display: none;
}

.modal-form .form__bttn {
  width: 100%;
  box-sizing: border-box;
}

.modal-form .form.--sent + .-postsent {
  display: block;
}

.modal-form .-postsent {
  display: none;
}

.modal-form .-postsent .-title {
  font-size: 1.3rem;
  margin-bottom: 40px;
}

.modal-form .-postsent .-text {
  line-height: 1.6;
}

/* END MODAL FORM */
/* HEADER */
.header {
  padding-top: 18px;
  height: 70px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
}

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__contact {
  margin-top: 15px;
}

.header__contact a {
  color: #fff;
  font-weight: 700;
  transition: .2s ease;
}

.header__contact a:hover {
  color: var(--green);
}

/* END HEADER */
/* FIRST SCREEN */
.first-screen {
  position: relative;
  padding-top: 70px;
  box-sizing: border-box;
  background-color: black;
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  z-index: 5;
}

.first-screen__info-wrapper {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 50px;
}

.first-screen__info-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 30px;
}

.first-screen__info-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
}

.first-screen__info-bttn {
  margin-top: 70px;
  font-weight: 600;
}

.first-screen__products {
  position: absolute;
  bottom: -115px;
  left: 0;
  right: 0;
  overflow: hidden;
  height: 232px;
}

.first-screen__products-wrapper {
  padding-left: calc( (100% - 1240px)/2);
  display: flex;
  overflow: auto;
}

.first-screen__products-item {
  /*min-width: 190px;*/
  min-width: 20%;
  background-color: #fff;
  overflow: hidden;
  border-radius: 16px;
  margin-right: 20px;
}

.first-screen__products-item:hover .-bottom .-bttn {
  opacity: 1;
}

.first-screen__products-item .-top {
  height: 117px;
  padding-top: 20px;
  padding-left: 20px;
  box-sizing: border-box;
}

.first-screen__products-item .-top .-title {
  font-size: 1.3rem;
  font-weight: 700;
}

.first-screen__products-item .-bottom {
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.first-screen__products-item .-bottom .-bttn {
  opacity: 0;
  display: block;
  padding: 15px 30px;
  font-size: 0.75rem;
  background-color: #fff;
  border-radius: 50px;
  color: var(--black);
  transition: .2s ease;
}

.first-screen__products-item .-bottom .-bttn:hover {
  background-color: var(--green);
  color: #fff;
}

/* END FIRST SCREEN */
/* SECOND SCREEN */
.second-screen {
  padding-top: 310px;
  padding-bottom: 540px;
  background-color: var(--gray);
  position: relative;
  z-index: 4;
}

.second-screen__features {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.second-screen__features-item .-icon {
  width: 120px;
  height: 85px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.second-screen__features-item .-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.second-screen__features-item:nth-child(1) {
  grid-column: 1/5;
}

.second-screen__features-item:nth-child(2) {
  grid-column: 6/9;
}

.second-screen__features-item:nth-child(3) {
  grid-column: 10/13;
}

.second-screen__video {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 1030px;
  overflow: hidden;
}

.second-screen__video .-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 1;
  transition: .2s ease;
}

.second-screen__video .-play.-hide {
  transform: translate(-50%, -50%) scale(0);
}

.second-screen__video video {
  border-radius: 16px;
}

/* SECOND SCREEN */
/* FORM SCREEN */
.form-screen {
  padding-top: 570px;
  padding-bottom: 280px;
}

.form-screen__container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  align-items: center;
}

.form-screen__image {
  grid-column: 1/7;
  height: 810px;
  background-size: cover;
  border-radius: 16px;
  background-position: center;
}

.form-screen .-right {
  grid-column: 8/13;
}

.form-screen__form.--sent {
  display: none;
}

.form-screen__form-title {
  font-size: 1.9rem;
  margin-bottom: 50px;
}

.form-screen__form.--sent + .-postsent {
  display: block;
}

.form-screen .-postsent {
  display: none;
}

.form-screen .-postsent .-title {
  font-size: 1.9rem;
  margin-bottom: 50px;
}

/* END FORM SCREEN */
/* FOOTER */
.footer {
  padding-top: 40px;
  padding-bottom: 120px;
  background-color: var(--gray);
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px;
}

.footer__item:nth-child(2), .footer__item:nth-child(5) {
  justify-self: center;
  text-align: center;
}

.footer__item:nth-child(2), .footer__item:nth-child(3) {
  margin-top: 20px;
}

.footer__item:nth-child(3n) {
  justify-self: end;
}

.footer__item:nth-child(4), .footer__item:nth-child(5), .footer__item:nth-child(6) {
  align-self: end;
}

.footer__contacts .-link {
  text-align: right;
  display: block;
  margin-bottom: 15px;
  color: var(--black);
  transition: .2s ease;
}

.footer__contacts .-link:hover {
  color: var(--green);
}

.footer__contacts .-link.--bold {
  font-weight: 700;
}

.footer__contacts .-link:last-child {
  margin-bottom: 0;
}

.footer__note {
  font-size: 0.75rem;
}

.footer__copyright .-policy {
  color: var(--black);
  margin-bottom: 15px;
  display: block;
  transition: .2s ease;
}

.footer__copyright .-policy:hover {
  color: var(--green);
}

.footer__copyright .-copy {
  opacity: 0.5;
}

.footer__socials .-icon {
  margin-right: 8px;
}

.footer__socials .-icon path {
  transition: .2s ease;
}

.footer__socials .-icon:hover path {
  fill: var(--green);
}

.footer__socials .-icon:last-child {
  margin-right: 0;
}

/* END FOOTER */
@media (min-height: 770px) {
  /* HEADER */
  .header__contact a {
    color: #4f4f4f;
  }
  /* END HEADER */
}

@media (max-width: 1270px) {
  .container {
    max-width: 990px;
  }
  /* FORM */
  .form__check {
    font-size: 0.9rem;
  }
  .form__bttn {
    margin-top: 40px;
  }
  /* END FORM */
  /* HEADER */
  .header__contact a {
    font-size: 0.9rem;
  }
  /* END HEADER */
  /* FIRST SCREEN */
  .first-screen__info-title {
    font-size: 3.1rem;
    margin-bottom: 20px;
  }
  .first-screen__info-bttn {
    margin-top: 40px;
  }
  .first-screen__products-wrapper {
    padding-left: calc( (100% - 960px)/2);
  }
  /* END FIRST SCREEN */
  /* SECOND SCREEN */
  .second-screen {
    padding-top: 235px;
    padding-bottom: 380px;
  }
  .second-screen__features {
    row-gap: 20px;
  }
  .second-screen__features-item:nth-child(1) {
    grid-column: 2/7;
  }
  .second-screen__features-item:nth-child(2) {
    grid-column: 8/12;
  }
  .second-screen__features-item:nth-child(3) {
    grid-column: 8/12;
  }
  .second-screen__features-item .-text {
    font-size: 0.9rem;
  }
  .second-screen__video {
    width: 790px;
  }
  /* END SECOND SCREEN */
  /* FORM SCREEN */
  .form-screen {
    padding-top: 430px;
    padding-bottom: 200px;
  }
  .form-screen__image {
    grid-column: 1/6;
    height: 550px;
  }
  .form-screen .-right {
    grid-column: 7/13;
  }
  .form-screen__form-title {
    font-size: 1.55rem;
    margin-bottom: 40px;
  }
  .form-screen__form-wrapper {
    padding-right: 50px;
  }
  /* END FORM SCREEN */
  /* FOOTER */
  .footer {
    padding-bottom: 80px;
  }
  .footer__container {
    row-gap: 70px;
  }
  /* END FOOTER */
}

@media (max-width: 990px) {
  .container {
    max-width: 750px;
  }
  /* HEADER */
  .header__contact a {
    color: #4f4f4f;
    font-size: 0.9rem;
  }
  /* END HEADER */
  /* FIRST SCREEN */
  .first-screen__info-title {
    font-size: 2.65rem;
    margin-bottom: 10px;
  }
  .first-screen__info-subtitle {
    font-weight: 400;
  }
  .first-screen__products-wrapper {
    padding-left: calc( (100% - 720px)/2);
  }
  .first-screen__products-item .-top .-title {
    font-size: 1.2rem;
  }
  .first-screen__products-item .-top .-value {
    font-size: 0.9rem;
  }
  /* END FIRST SCREEN */
  /* SECOND SCREEN */
  .second-screen {
    padding-bottom: 320px;
  }
  .second-screen__features {
    grid-template-columns: 380px 1fr;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 50px;
    justify-content: space-between;
  }
  .second-screen__features-item:nth-child(1) {
    grid-column: 1/2;
  }
  .second-screen__features-item:nth-child(2) {
    grid-column: 2/3;
  }
  .second-screen__features-item:nth-child(3) {
    grid-column: 2/3;
  }
  .second-screen__video {
    width: calc(100% - 30px);
    max-width: 720px;
  }
  /* END SECOND SCREEN */
  /* FORM SCREEN */
  .form-screen {
    padding-top: 330px;
    padding-bottom: 120px;
  }
  .form-screen__container {
    display: block;
  }
  .form-screen__image {
    display: none;
  }
  .form-screen__form-title {
    font-size: 1.35rem;
  }
  .form-screen__form-wrapper {
    padding-right: 0;
  }
  /* END FORM SCREEN */
  /* FOOTER */
  .footer {
    padding-bottom: 60px;
  }
  .footer__container {
    row-gap: 70px;
  }
  .footer__contacts .-link {
    font-size: 0.9rem;
  }
  .footer__note {
    font-size: 0.7rem;
  }
  .footer__copyright {
    font-size: 0.9rem;
  }
  .footer__item:nth-child(2) {
    justify-self: right;
    margin-top: 10px;
    grid-column: 3/4;
  }
  .footer__item:nth-child(3) {
    grid-column: 1/4;
    justify-self: center;
    text-align: center;
  }
  .footer__item:nth-child(6) {
    grid-column: 1/4;
    grid-row: 3;
    justify-self: center;
    margin-top: -40px;
  }
  .footer__item:nth-child(4) {
    grid-column: 1/2;
  }
  .footer__item:nth-child(5) {
    grid-column: 2/4;
    justify-self: end;
    text-align: end;
  }
  /* END FOOTER */
}

@media (max-width: 750px) {
  .second-screen-video-plug {
    display: block;
  }
  /* FORM */
  .form__select {
    grid-template-columns: auto 1fr;
    font-size: 0.8rem;
  }
  .form__check {
    font-size: 0.8rem;
  }
  .form__check .-check {
    margin-top: 0;
  }
  .form__bttn {
    margin-top: 30px;
  }
  .form__label.--warning {
    padding-bottom: 20px;
  }
  .form__label .-prefix, .form__label .-input {
    font-size: 0.8rem;
  }
  .form__label .-input {
    padding-bottom: 0;
  }
  .form__label input.-input {
    height: 28px;
  }
  .form__label .-postfix {
    margin-top: 0;
    font-size: 0.6rem;
  }
  /* END FORM */
  /* HEADER */
  .header__logo {
    width: 180px;
  }
  .header__contact {
    margin-top: 10px;
  }
  .header__contact a {
    font-size: 0.75rem;
  }
  /* END HEADER */
  /* FIRST SCREEN */
  .first-screen__info-title {
    font-size: 1.9rem;
  }
  .first-screen__info-subtitle {
    font-size: 1rem;
  }
  .first-screen__info-bttn {
    font-weight: 400;
  }
  .first-screen__products-item {
    min-width: 170px;
  }
  .first-screen__products-item .-top {
    padding-top: 15px;
    padding-left: 15px;
  }
  .first-screen__products-wrapper {
    padding-left: 15px;
  }
  /* END FIRST SCREEN */
  /* SECOND SCREEN */
  .second-screen {
    padding-bottom: 0;
  }
  .second-screen__features {
    display: block;
  }
  .second-screen__features-item {
    max-width: 320px;
    margin-bottom: 80px;
  }
  .second-screen__features-item:last-child {
    margin-bottom: 0;
  }
  .second-screen__features-item .-icon {
    width: 100px;
    height: 65px;
  }
  .second-screen__features-item .-text {
    font-size: 0.75rem;
  }
  .second-screen__video {
    z-index: 1;
  }
  .second-screen__video .-play {
    width: 55px;
    height: 55px;
  }
  .second-screen .second-screen-video-plug {
    padding-top: 80px;
  }
  /* END SECOND SCREEN */
  /* FORM SCREEN */
  .form-screen {
    padding-top: 0;
  }
  .form-screen__form-wrapper {
    padding-right: 0;
  }
  .form-screen .second-screen-video-plug {
    padding-bottom: 80px;
  }
  /* END FORM SCREEN */
  /* FOOTER */
  .footer {
    padding-bottom: 50px;
  }
  .footer__container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .footer__item {
    align-self: center !important;
    text-align: center !important;
    margin-bottom: 60px;
  }
  .footer__item:nth-child(1) {
    order: 1;
  }
  .footer__item:nth-child(2) {
    order: 2;
  }
  .footer__item:nth-child(3) {
    order: 3;
    margin-bottom: 40px;
  }
  .footer__item:nth-child(4) {
    order: 5;
  }
  .footer__item:nth-child(5) {
    order: 6;
    margin-bottom: 0;
  }
  .footer__item:nth-child(6) {
    order: 4;
    margin-top: 0;
  }
  /* END FOOTER */
}

@media (max-width: 480px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .order-bttn {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
  /* MODAL FORM */
  .modal-form {
    padding-left: 10px;
    padding-right: 10px;
  }
  .modal-form__title {
    font-weight: 700;
    font-size: 1.1rem;
  }
  .modal-form__wrapper {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 50px;
  }
  .modal-form .-closer {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .modal-form .-postsent .-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .modal-form .-postsent .-text {
    font-size: 0.8rem;
  }
  /* END MODAL FORM */
  /* HEADER */
  .header__logo {
    width: 160px;
  }
  .header__contact {
    margin-top: 6px;
  }
  /* END HEADER */
  /* FIRST SCREEN */
  .first-screen {
    background-position: left;
  }
  .first-screen__info-wrapper {
    padding-right: 10px;
  }
  .first-screen__info-title {
    margin-bottom: 20px;
  }
  .first-screen__info-subtitle {
    font-weight: 700;
    line-height: 1.4;
  }
  .first-screen__info-bttn {
    margin-top: 50px;
  }
  .first-screen__products-wrapper {
    padding-left: 10px;
  }
  /* END FIRST SCREEN */
  /* SECOND SCREEN */
  .second-screen__video .-play {
    width: 42px;
    height: 42px;
  }
  /* END SECOND SCREEN */
  /* FORM SCREEN */
  .form-screen {
    padding-bottom: 80px;
  }
  .form-screen .second-screen-video-plug {
    padding-bottom: 60px;
  }
  /* END FORM SCREEN */
}