


.hero{
    height: 575px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}


.hero-img{
    position: absolute;
    right: 0;
    top: 0;
    max-width: 840px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.hero-info{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.hero-info div:has(.img){
    display: none;
}

.hero-btns{
    display: flex;
    gap: 10px;
}



.order{
    display: flex;
    gap: 30px;
}

.order .card{
    flex: 1 1 32%;
    position: relative;
    padding-bottom: 0;
    height: 100%;
    min-height: 670px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}   
.order h4{
	 display: -webkit-box;
	  -webkit-line-clamp: 3;   /* оставить 3 строки */
	  -webkit-box-orient: vertical;
	  overflow: hidden;
	  text-overflow: ellipsis;
}
.order p.mt-10{
	  display: -webkit-box;
	  -webkit-line-clamp: 4;   /* оставить 3 строки */
	  -webkit-box-orient: vertical;
	  overflow: hidden;
	  text-overflow: ellipsis;
}
.order .card-info {
    min-height: 245px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}
.order .card-title{
    position: relative;
    padding-right: 35px;
}
.order .number{
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    opacity: .1;
}
.order .card img {
  max-width: 100%;
  height: auto;
  display: block;
}

.offer{
    padding: 50px 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.offer h2{
    text-align: center;
}

.offer-card{
    flex: 1 1 32%;
    width: 100%;
}
.offer-card  svg{
    margin: 0 auto;
    display: block;
}
.offer-card p{
    text-align: center;
}
.offer-card p:nth-child(2){
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;

}
.offer-card p:nth-child(3){
    font-size: 14px;
    line-height: 16px;
}

.offer-container{
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.about{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about .font-18{
    color: #666666;
}
.about > div:first-child{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why{
    background-color: #F9F9F9;
    padding-top: 60px;
    padding-bottom: 100px;
}

.why .container-new{
    padding: 0;

}
.why .container-new > div{
    position: relative;
}
.why h2,
.why .swiper{
    padding: 0 30px;
}

.why h2{
    text-align: center;
}

.faq {
    display: grid;
    grid-template-columns: 1fr 1.42fr;
    gap: 30px;
    
}

.faq .card-btns{
    display: flex;
    justify-content: space-between;
}

.faq .card{
    padding: 20px;
    transition: all ease-in-out .7s;
    cursor: pointer;
}
.faq .card .answer{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all ease-in-out .7s;
}
.faq .card.active .answer{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: all ease-in-out .7s;
}

.faq-mob{
    display: none;
}

.faq-desc{
    display: block;
    width: fit-content;
}

.plusminus {
	position: relative;
	width: 16px;
	height: 16px;
	cursor: pointer;
	
	&.active {
		&:before {
			transform: translatey(-50%) rotate(-90deg);
			opacity: 0;
		}
		&:after {
			transform: translatey(-50%) rotate(0);
		}
	}
	
	&:before , &:after {
		content: "";
		display: block;
		background-color: #333;
		position: absolute;		
		top: 50%; left: 0;
		transition: .35s;
		width: 100%;
		height: 3px;
	}
	
	&:before {		
		transform: translatey(-50%);
	}
	
	&:after {
		transform: translatey(-50%) rotate(90deg);
	}
	
}

.feedback{
    padding: 50px 0 60px 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.feedback .container-new {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}
.feedback .container-new .home-callback{
    margin: 0;
    background-color: rgba(255, 255, 255, .45);
}
.feedback .container-new > div:has(img){
    display: flex;
    align-items: center;
    justify-content: end;
}
.feedback h2{
    color: white;
}

@media (max-width: 600px) {

    .hero{
        height: auto;
    }
    .hero .font-24{
        font-size: 18px !important;
        line-height: 24px !important;
    }
    .hero-info{
        grid-template-columns: 1fr;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .hero-img{
        display: none;
    }
    .hero-info div:has(.img){
        display: flex;
        justify-content: center;
    }
    .hero-info .img{
        max-height: 240px;
        width: auto;
    }
    .hero-btns{
        flex-wrap: wrap;
    }
    .hero-btns .btn{
        width: 100%;
    }


    .order{
        flex-wrap: wrap;
    }

    .order .card{
        flex: 1 1 100%;
        height: 100%;
       
        min-height: auto;
    }

    .order .card-info {
        gap: 15px; 
        min-height: auto;
    }

    .offer-container{
        flex-wrap: wrap;
    }
    .offer-card{
        flex: 1 1 100%;
    }
    .about{
        grid-template-columns: 1fr;
    }
    .about > div:first-child{
        order: 2;
    }


    .why{
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .why h2,
    .why .swiper{
        padding: 0 15px;
    }


    .faq,
    .feedback .container-new {
        grid-template-columns: 1fr;
    }

    .faq-desc{
        display: none;
    }

    .faq-mob{
        display: block;
    }


    .feedback .container-new > div:has(img){
        display: none;
    }
    .feedback .container-new .home-callback{
        max-width: none;
        width: 100%;
    }

    .feedback .wpcf7-form-control-wrap[data-name="your-name"]{
        margin-top: 15px;
    }

    .mobile-wrap-button{
        bottom: -50px !important;
        transition: all ease-in-out .5s;
    }
    .mobile-wrap-button.active{
        bottom: 10px !important;
        transition: all ease-in-out .5s;
    }
}