.section-hero {
   position: relative;
   z-index: 2;
   height: 100vh;
   min-height: 650px;
}

.section-hero__bg {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
   overflow: hidden;
   
}

.section-hero__bg img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.section-hero__bg:after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;

   opacity: 0.8;
   background: #1d2e57 center / cover no-repeat;
   border: solid transparent;
}
.hero {
   display: flex;
   justify-content: space-between;
   padding: 50px 0;
   position: relative;
}

.hero__img {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 90%;
   height: auto;

   transform: translate(-120%, 0);
   opacity: 0;
   transition: all 1.5s ease 2s;
}

.anim-items.active {
   transform: translate(0, 0);
   opacity: 1;
}

.hero__text {
   width: 60%;
   text-align: center;

   transform: translate(0, -120%);
   opacity: 0;
   transition: all .8s ease 0s;
}

.hero__text-title {
   color: #fcf9f9;
   /* font-size: 25px; */
   font-family: 'Ubuntu', Arial, sans-serif;
   line-height: 150%;
   font-weight: 700;
   text-transform: uppercase;
}

.hero__description {
   color: #fcf9f9;
   font-size: 22px;
   font-family: 'Ubuntu', Arial, sans-serif;
   line-height: 150%;
   font-weight: 400;
}

.hero__form {
   position: relative;
   z-index: 2;
   padding: 50px 30px;

   transform: translate(120%, 0);
   opacity: 0;
   transition: all .8s ease 1s;
   
   width: 100%;
   max-width: 460px;
}

.hero__form::before {
   content: '';
   position: absolute;
   top: 10px;
   bottom: 10px;
   left: -10px;
   width: 100%;
   z-index: -10;
   background-color: #3b3e46;
   transform: perspective(1000px) rotateY(-15deg);
   border-radius: 15px;
   box-shadow: 5px 0px 13px 5px rgba(0, 0, 0, 0.5);
   pointer-events: none; /* Препятствует захвату событий */
}

.hero__form-title{
   color: #fcf9f9;
   font-size: 20px;
   font-family: 'Ubuntu', sans-serif;
   line-height: 150%;
   font-weight: 400;
   text-transform: uppercase;
}
.hero__form-subtitle{
   color: #fcf9f9;
   font-size: 20px;
   font-family: 'Ubuntu', sans-serif;
   line-height: 150%;
   font-weight: 400;
}

.form {
   margin-top: 20px;
}

.form__label-block {
   margin-bottom: 30px;
   position: relative;
}

.form__input {
   color: rgb(0, 0, 0);
   border: 1px solid rgb(51, 51, 51);
   background-color: rgb(255, 255, 255);
   font-size: 16px;
   font-weight: 400;
   padding: 10px;
   width: 100%;
}

.wpcf7 form .wpcf7-response-output {
    margin: 10px 0 0;
    color: #fff;
    padding: 0;
    border: none;
}

.contact-form__popup .wpcf7 form .wpcf7-response-output {
	color: red;
    text-align: center;
}

.form__label {
   display: flex;
   font-size: 12px;
   font-weight: 400;
   color: #fff;
   margin-bottom: 5px;
}

.form-btn {
   display: flex;
}

.form-btn__link {
   color: #fff;
    border-radius: 0px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    background-color: #f06847;
    padding: 10px 20px;
}

.hero .primary-btn {
   margin-top: 35px;
   display: none;
   justify-content: center;
}