.block-subscribe {
  padding: 176px 0 165px;
  margin: 30px 30px 0;
  display: flex;
  justify-content: center;
  text-align: center;
  background-image: url(../../img/content/green_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .block-subscribe {
    margin: 15px 15px 0;
    padding: 150px 10px 100px;
  }
}
@media screen and (max-width: 767px) {
  .block-subscribe {
    margin: 15px 15px 0;
    padding: 150px 10px 100px;
  }
}

.subscribe-content {
  max-width: 1036px;
  margin: 0 auto;
}
.subscribe-content button {
  margin-bottom: 72px;
  margin-left: auto;
  margin-right: auto;
}
.subscribe-content_title {
  margin-bottom: 72px;
  color: #FFF;
}
.subscribe-content_description {
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .subscribe-content_description {
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  .subscribe-content_description {
    font-size: 21px;
  }
}

.form-modal {
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 41;
  background: rgb(38, 38, 38);
  background: linear-gradient(90deg, rgba(38, 38, 38, 0) 0%, rgba(38, 38, 38, 0.8379726891) 45%, rgb(38, 38, 38) 60%);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .form-modal {
    background: linear-gradient(90deg, rgba(38, 38, 38, 0) 0%, rgba(38, 38, 38, 0.8379726891) 0%, rgb(38, 38, 38) 25%);
  }
}
@media screen and (max-width: 767px) {
  .form-modal {
    background: #262626;
  }
}
.form-modal_inner {
  margin-left: auto;
  width: 40%;
  height: 100%;
  opacity: 1;
  padding: 64px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-modal_inner_content {
  max-width: 433px;
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .form-modal_inner {
    width: 70%;
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .form-modal_inner {
    width: 100%;
    padding: 20px;
  }
}
.form-modal_close {
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 64px;
  right: 64px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .form-modal_close {
    max-width: 40px;
    margin-left: auto;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .form-modal_close {
    top: 10px;
    right: 20px;
    max-width: 40px;
    margin-left: auto;
    margin-bottom: 60px;
  }
}

.modal_active .form-modal {
  opacity: 1;
  visibility: visible;
  animation: fromRight 0.3s forwards;
}

@keyframes fromRight {
  0% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(50%);
  }
  100% {
    transform: translateX(0);
  }
}
.font-600 {
  font-weight: 600;
}

html.modal_active {
  overflow: hidden;
}