@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;800;900&display=swap);

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

.home{
    background: url('../img/components/home.jpg') no-repeat center / cover;
    padding: 220px 0 120px;
    background-color: #000000af;
    position: relative;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.home .container{
    z-index: 1;
}

.homeContent{
    display: flex;
    justify-content: space-between;
}

.homeTitle{
    color: #fff;
    width: calc(100% - 460px);
}

.homeTitle h1{
    font-size: 38px;
}

.homeTitle p{
    margin-top: 15px;
    font-size: 24px;
}

.homeBtnContent{
    display: flex;
    align-items: center;
    margin-top: 25px;
    width: 100%;
}

.homeBtnContent .btn{
    margin-right: 15px;
}

.homeBtnContent p{
    font-size: 14px;
    margin-top: 0;
    width: 330px;
}

.homeInfo{
    width: 240px;
}

.homeInfoBlock{
    width: 100%;
    color: #fff;
    margin-bottom: 65px;
}

.homeInfo span{
    display: inline-block;
    font-size: 40px;
    font-weight: bold;
}

.homeInfo p{
    font-size: 14px;
    margin-top: 5px;
}

.homeBottomContainer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 45px;
}

.homeBottomItem{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.homeBottomItemSvg{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #47485988;
    border-radius: 5px;
}

.homeBottomItem p{
    color: #fff;
    width: calc(100% - 50px);
}

@media(min-width: 320px) and (max-width: 780px){
    .home{
        padding: 120px 0;
    }
    
    .homeContent{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .homeTitle{
        width: 100%;
        text-align: center;
    }
    
    .homeTitle h1{
        font-size: 26px;
    }
    
    .homeTitle p{
        font-size: 16px;
    }
    
    .homeBtnContent{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 15px;
        width: 100%;
    }
    
    .homeBtnContent .btn{
        margin-right: 0px;
        width: 100%;
        margin-top: 15px;
    }
    
    .homeBtnContent p{
        font-size: 14px;
        margin-top: 20px;
        text-align: center;
        width: 100%;
    }
    
    .homeInfo{
        width: 100%;
        text-align: center;
    }
    
    .homeInfoBlock{
        width: 100%;
        margin: 35px 0 0;
    }
    
    .homeInfo span{
        font-size: 32px;
    }
    
    .homeInfo p{
        font-size: 14px;
    }
    
    .homeBottomContainer{
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 45px;
    }
}

@media(min-width: 780px) and (max-width: 980px){
    .homeContent{
        display: flex;
        justify-content: space-between;
    }
    
    .homeTitle{
        color: #fff;
        width: calc(100% - 280px);
    }
    
    .homeTitle h1{
        font-size: 28px;
    }
    
    .homeTitle p{
        font-size: 18px;
    }
    
    .homeBtnContent{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 25px;
        text-align: center;
        width: 100%;
    }
    
    .homeBtnContent .btn{
        margin-right: 0;
        width: 100%;
        margin-top: 15px;
    }
    
    .homeBtnContent p{
        font-size: 14px;
        width: 100%;
        margin-top: 15px;
    }
    
    .homeInfo{
        width: 220px;
    }
    
    .homeInfoBlock{
        width: 100%;
        color: #fff;
        margin-bottom: 65px;
    }
    
    .homeInfo span{
        font-size: 32px;
    }
    
    .homeInfo p{
        font-size: 14px;
        margin-top: 5px;
    }
    
    .homeBottomContainer{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
        margin-top: 45px;
    }
    
    .homeBottomItem{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .homeBottomItemSvg{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: #47485988;
        border-radius: 5px;
    }
    
    .homeBottomItem p{
        color: #fff;
        width: calc(100% - 50px);
    }
}

@media(min-width: 980px) and (max-width: 1320px){
    .homeTitle{
        color: #fff;
        width: calc(100% - 280px);
    }

    .homeInfo{
        width: 220px;
    }
}


.categoryContainer{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.categoryItem{
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    box-shadow: 0 0 10px #99999920;
    border-radius: 5px;
    overflow: hidden;
}

.categoryItemImg{
    width: 100%;
   /* height: 160px;*/
    overflow: hidden;
}

.categoryItemImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.categoryItem:hover .categoryItemImg img{
    transform: scale(1.1, 1.1);
}

.categoryImageWrapper {
    position: relative;
    overflow: hidden;
}

.categoryImageWrapper img {
    display: block;
    width: 100%;
    height: auto; 
    transition: transform 0.4s ease;
}

.categoryImageWrapper::after {
    content: "";
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(92, 64, 51, 0.4); /* коричневый оттенок */
    opacity: 1;
    transition: opacity 0.4s ease; 
    pointer-events: none;
}

.categoryImageWrapper:hover::after {
    opacity: 0;
}

.categoryImageWrapper:hover img {
    transform: scale(1.05);
}

.categoryItemTitle{
    padding: 15px 15px;
}

.categoryItemHeaderLink{
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.categoryServiceLink{
    margin-top: 10px;
}

.categoryServiceLink a{
    display: flex;
    margin-top: 6px;
    width: 100%;
    transition: .4;
    font-size: 14px;
}

.categoryItemBtn{
    display: flex;
    justify-content: space-between;
    padding: 15px;
}

@media(min-width: 320px) and (max-width: 550px){
    .categoryContainer{
        grid-template-columns: repeat(1, 1fr);
    }
}

@media(min-width: 550px) and (max-width: 920px){
    .categoryContainer{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 920px) and (max-width: 1320px){
    .categoryContainer{
        grid-template-columns: repeat(3, 1fr);
    }
}



.newContainer {
    margin-top: 35px;
    position: relative;
    padding-bottom: 40px;
}

.examples-swiper{
    margin-top: 35px;
}

.swiper-wrapper {
    position: relative;
}

.newBlock {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.newBlockImg {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.newBlockImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.newBlock:hover img{
    transform: scale(1.1, 1.1);
}

.newBlockText {
    margin-top: 15px;
}

.newBlockText h3 {
    color: #333;
    font-size: 16px;
    transition: .4s;
}

.newBlock:hover .newBlockText h3 {
    color: #283A30;
}

.newBlockText p {
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}

.custom-button {
    width: 40px;
    height: 40px;
    background-color: #283A30;
    border-radius: 0; 
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    border-radius: 5px;
}

.custom-button::after {
    font-size: 20px;
    color: #fff;
}

.swiper-pagination {
    bottom: 0;
    padding-top: 15px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #283A30;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Адаптивность */
@media (max-width: 767px) {
    .newBlockImg {
        height: 150px;
    }

    .newBlockText h3 {
        font-size: 18px;
    }

    .newBlockText p {
        font-size: 13px;
    }

    .custom-button {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .newBlockImg {
        height: 120px;
    }

    .custom-button {
        width: 30px;
        height: 30px;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}




.sectionKp{
    padding: 60px 0;
    overflow: hidden;
}

.kpContainer{
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    z-index: 1;
}

.kpInfo{
    width: 320px;
}

.kpInfo p{
    font-size: 24px;
    font-weight: unset;
    color: #3A3028;
}

.kpInfoBlock{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.kpInfoImg{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    border: 2px solid #1c2547;
}

.kpInfoImg img{
    width: 35px;
}

.kpInfoBlock p{
    width: calc(100% - 80px);
    font-size: 18px;
}

.kpInfoBlock p span{
    font-weight: bold;
}



.kpFormContent{
    display: flex;
    justify-content: flex-end;
    width: calc(100% - 500px);
    position: relative;
}

.kpFormContent img{
    position: absolute;
    right: 220px;
    top: 40px;
    width: 100%;
}

.kpForm{
    position: relative;

    display: block;
    width: 440px;
    background: #fff;
    border-radius: 20px;
    z-index: 1;
    padding: 40px 20px;
    text-align: center;

    box-shadow: 0px 0px 10px #9999992f;
}

.kpForm h2{
    font-size: 24px;
    font-weight: unset;
}

.kpForm h2 span{
    font-weight: bold;
}

.kpForm p{
    font-weight: bold;
    margin-top: 15px;
    font-size: 18px;
}

.kpForm label{
    display: inline-block;
    text-align: left;
    width: 100%;
    margin-top: 25px;
}

.kpForm label p{
    font-size: 16px;
    font-weight: bold;
}

.kpForm label input{
    background: #f2f2f2;
    width: calc(100% - 20px);
    padding: 20px 10px;
    margin-top: 10px;
    border-radius: 10px;
    font-size: 16px;
}


.radioContent{
    text-align: left;
    width: 100%;
    margin-top: 25px;
}

.radioContent p{
    font-size: 16px;
    font-weight: bold;
}

.radioContainer{
    display: flex;
    margin-top: 15px;
}

.radioLabel{
    display: flex !important;
    align-items: center;
    margin-top: 0 !important;
}

.radioLabel p{
    color: #666;
    font-weight: unset !important;
    margin-left: 10px;
    margin-top: 0;
}

.radioLabel input{
    margin: 0 !important;
    width: auto !important;
}

.kpForm .btn{
    width: 100%;
    margin-top: 20px;
}

@media(min-width: 320px) and (max-width: 920px){
    
    .sectionKp{
        padding: 40px 0;
        overflow: hidden;
    }

    .kpContainer{
        justify-content: center;
        flex-wrap: wrap;
    }

    .kpInfo{
        width: 100%;
    }

    .kpInfoImg{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        border-radius: 20px;
        border: 2px solid #1c2547;
    }

    .kpInfoImg img{
        width: 35px;
    }

    .kpInfoBlock p{
        width: calc(100% - 80px);
        font-size: 18px;
    }

    .kpInfoBlock p span{
        font-weight: bold;
    }



    .kpFormContent{
        display: flex;
        justify-content: flex-end;
        width: 100%;
        position: relative;
    }

    .kpFormContent img{
        display: none;
    }

    .kpForm{
        position: relative;

        display: block;
        width: calc(100% - 40px);
        background: #fff;
        border-radius: 20px;
        z-index: 1;
        padding: 40px 20px;
        text-align: center;

        box-shadow: 0px 0px 10px #9999992f;
        margin-top: 25px;
    }
}








/* cities */

.citiesContent{
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    margin-top: 60px;
}

.citiesBg{
    background: url('../img/components/cities.jpg') no-repeat center / cover;
    filter: blur(2px);
    width: 100%;
    height: 100%;
    transform: scale(1.1, 1.1);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.darkMask{
    background: #00000091;
    width: 100%;
    height: 100%;

    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;

}

.cityContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 45px;
}

.cityTitle{
    color: #fff;
    width: 380px;
}

.cityTitle h2{
    font-size: 26px;
}

.cityTitle p{
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
} 

.cityTitle a{
    margin-top: 15px;
}

.cityItemContent{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0 60px;
    gap: 15px 45px;
}

.cityItem{
    display: flex;
    align-items: center;
}

.cityItemIcon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: #4748599a;
}

.cityItemTitle{
    color: #fff;
    margin-left: 10px;
    font-size: 14px;
    width: calc(100% - 30px);
}


@media(min-width: 320px) and (max-width: 550px){
    
    .cityContainer{
        justify-content: center;
        flex-wrap: wrap;
        padding: 60px 45px;
    }
    
    .cityTitle{
        color: #fff;
        width: 100%;
        text-align: center;
    }
    
    
    .cityItemContent{
        grid-template-columns: repeat(2, 1fr);
        margin: 40px 60px 0;
    }
}

@media(min-width: 550px) and (max-width: 780px){
    
    .cityContainer{
        justify-content: center;
        flex-wrap: wrap;
        padding: 60px 45px;
    }
    
    .cityTitle{
        color: #fff;
        width: 100%;
        text-align: center;
    }
    
    
    .cityItemContent{
        grid-template-columns: repeat(3, 1fr);
        margin: 40px 60px 0;
    }
}

@media(min-width: 780px) and (max-width: 920px){
    .cityItemContent{
        grid-template-columns: repeat(2, 1fr);
        margin: 0 20px;
    }
}

@media(min-width: 920px) and (max-width: 1200px){

    .cityItemContent{
        grid-template-columns: repeat(3, 1fr);
    }
}


/* reviews */

.review{
    margin-top: 60px;
}

.reviewsContainer{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.reviewsContent{
    column-count: 2;
    column-gap: 0;
    gap: 20px;
    width: calc(100% - 520px);
}

.reviewsContent3{
    column-count: 3;
    column-gap: 0;
    gap: 10px;
    width: 100%;
}

.reviewItem{
    padding: 20px;
    margin-bottom: 15px !important; 
    display: inline-block;
    /* display: flex;
    justify-content: space-between; */
    width: calc(100% - 40px);
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    margin: 0 auto;
}

.reviewItemLeft{
    float: left;
}

.reviewItemAva{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.reviewItemAva img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewItemAva span{
    color: #fff;
}

.reviewItemRight{
    width: calc(100% - 55px);
    float: right;
}

.reviewItemRight h3{
    color: #333;
    font-size: 16px;
}

.reviewItemInfo{
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.reviewItemStars{
    display: flex;
}

.reviewItemStars svg{
    width: 15px;
}

.reviewItemStars img{
    width: 16px;
}

.reviewItemInfo span{
    color: #666;
    font-size: 14px;
    margin-left: 10px;
}

.reviewItemRight p{
    margin-top: 10px;
    font-size: 14px;
    color: #999;
}

/* reviewsAbout */

.reviewsAbout{
    width: 460px;
}

.reviewsAboutTitle{
    width: 100%;
    color: #333;
    font-weight: unset;
    font-size: 24px;
}

.reviewsAboutTitle span{
    display: flex;
    font-weight: bold;
    width: 100%;
}

.reviewsAboutContentBg{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    padding: 25px;
    margin-top: 25px;
}

.reviewsAboutContainer{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.reviewsEvaluation p{
    font-size: 52px;
    font-weight: 500;
}

.reviewsEvaluationStars{
    display: flex;
}

.reviewsCustomerEvaluation{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.reviewsCustomerEvaluation p{
    text-align: right;
    width: 100%;
    font-size: 20px;
    color: #333;
}

.reviewsCustomerEvaluationContainer{
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.customerEvaluationPlatformItem img{
    height: 54px;
}

.reviewsAboutContainer{
    margin-top: 20px;
}

.reviewsAboutContainer a{
    text-decoration: underline;
    color: #11AA11;
    transition: .4s;
}

.reviewsAboutContainer a:hover{
    text-decoration: none;
}

.reviewsBtn{
    margin-top: 30px;
}

@media(min-width: 320px) and (max-width: 550px){
    
    .reviewsContainer{
        flex-wrap: wrap-reverse;
    }

    .reviewsContent, .reviewsContent3{
        column-count: 1;
        width: 100%;
        margin-top: 20px;
    }

    .reviewItem{
        margin-bottom: 15px !important; 
    }

    /* reviewsAbout */

    .reviewsAbout{
        width: 100%;
    }

   

    .reviewsAboutContainer{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .reviewsAboutContainer a{
        text-align: center;
        width: 100%;
    }

    .reviewsEvaluation p{
        text-align: center;
        font-size: 52px;
        font-weight: 500;
    }

    .reviewsEvaluationStars{
        display: flex;
    }

    .reviewsCustomerEvaluation{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .reviewsCustomerEvaluation p{
        text-align: center;
    }

    .reviewsCustomerEvaluationContainer{
        justify-content: center;
    }

    .reviewsBtn{
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
}

@media(min-width: 550px) and (max-width: 1200px){
    
    .reviewsContainer{
        flex-wrap: wrap-reverse;
    }

    .reviewsContent, .reviewsContent3{
        column-count: 2;
        width: 100%;
        margin-top: 20px;
    }

    .reviewItem{
        margin-bottom: 15px !important; 
    }

    /* reviewsAbout */

    .reviewsAbout{
        width: 100%;
    }

    .reviewsAboutContainer{
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .reviewsEvaluation p{
        text-align: center;
    }

    .reviewsEvaluationStars{
        display: flex;
    }
}


/* supervises */

.supervisesContent{
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.supervisesBg{
    background: url('../img/components/supervises.jpg') no-repeat center / cover;
    filter: blur(2px);
    width: 100%;
    height: 100%;
    transform: scale(1.1, 1.1);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.superviseContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px;
}

.superviseText{
    width: 60%;
}

.superviseText h2{
    color: #fff;
    font-size: 26px;
}

.superviseItems{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.superviseItem{
    display: flex;
    justify-content: space-between;
}

.superviseItemIcon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 5px;
    background: #47485960;
}

.superviseItemText{
    width: calc(100% - 45px);
    color: #fff;
}

.superviseItemText h2{
    font-size: 16px;
}

.superviseItemText p{
    font-size: 14px;
    font-weight: unset;
    margin-top: 5px;
}

.superviseAbout{
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-top: 25px;
}

.superviseAbout h2{
    color: #333;
    font-size: 16px;
}

.superviseAbout p{
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}

.superviseRightContent{
    display: grid;
    justify-items: center;
    width: 38%;
}

.superviseRightContent p{
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    width: 260px;
    margin-top: 45px;
}

.superviseSliderContainer{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    width: 100%;
}

.swiperContainer {
    width: 320px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.swiper-slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.swiper-pagination{
    top: auto !important;
    bottom: -30px !important;
}


@media(min-width: 320px) and (max-width: 960px){
    
    
    .superviseContainer{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 20px;
    }
    
    .superviseText{
        width: 100%;
    }
    
    .superviseText h2{
        font-size: 24px;
    }
    
    .superviseItems{
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .superviseItem{
        display: flex;
        justify-content: space-between;
    } 
    
    .superviseItemText h2{
        font-size: 16px;
    }
    
    .superviseAbout h2{
        font-size: 16px;
    }
    
    .superviseRightContent{
        width: 100%;
    }
    
    .superviseSliderContainer{
        margin-top: 25px;
        width: 100%;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
}


@media(min-width: 960px) and (max-width: 1300px){
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
}


.aboutContainer{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.aboutBlockText{
    width: 49%;
}

.aboutBlockText ul li{
    color: #999;
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
}

.aboutBlockImage{
    position: relative;
    overflow: hidden;
    width: 49%;
    height: 100%;
    border-radius: 20px;
}

.aboutBlockImage img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.aboutBlockImageMask{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000a1;
}

.aboutBlockImageMask span{
    font-size: 26px;
    font-weight: bold;
    color: #fff;
}

@media(min-width: 320px) and (max-width: 550px){
    .aboutBlockText{
        width: 100%;
        margin-bottom: 20px;
    }
    
    .aboutBlockImage{
        width: 100%;
    }  
    
    .aboutContainerWrap{
        flex-wrap: wrap-reverse;
    }

    .aboutBlockImageMask span{
        font-size: 16px;
    }
}

@media(min-width: 550px) and (max-width: 780px){
    .aboutBlockText{
        width: 49%;
    }

    .aboutBlockImage{
        position: relative;
        overflow: hidden;
        width: 49%;
        height: 100%;
        border-radius: 20px;
    }

    .aboutBlockImageMask span{
        font-size: 16px;
    }
}



/* FAQ */

.faqBg{
    background: #F2F2F2;
    padding: 60px 0;
}

.faqContainer{
    width: 100%;
    margin-top: 15px;
}

.faqItem {
    margin-top: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.faqItemProduct{
    padding: 15px;
    background: #fafafa;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.question p{
    font-weight: bold;
    font-size: 20px;
    user-select: none;
}

.questionProduct p{
    font-weight: bold;
    font-size: 16px;
    user-select: none;
}

.answer{
    display: none;
    margin-top: 10px;
    color: #333;
    font-size: 16px;
}

.answer .answerContainer:nth-child(even){
    background: #f2f2f2;
}

.answerContainer{
    display: flex;
    justify-content: space-between;
    width: calc(100% - 30px);
    padding: 15px;
    border-radius: 5px;
}

.question:hover{
    color: #333;
}

.toggleIcon{
    font-weight: bold;
    font-size: 22px;
    transition: transform 0.3s ease;
    user-select: none;
    margin-left: 10px;
}

.answer.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media(min-width: 320px) and (max-width: 550px){
    .faqBg{
        padding: 40px 0;
    }
   
    .faqItem {
        padding: 10px;
    }
    
    .question p{
        font-size: 16px;
    }
    
    .toggleIcon{
        font-size: 18px;
        transition: transform 0.3s ease;
        user-select: none;
    }

    .answer{
        font-size: 14px;
    }
}



/* team */

.ourTeamContainer{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 25px;
}

.teamItemImg img{
    width: 100%;
    border-radius: 20px;
}

.teamItemInfo{
    text-align: center;
    margin-top: 10px;
}

.teamItemInfo h2{
    font-size: 22px;
    font-weight: bold;
    color: #1c2547;
}

.teamItemInfo p{
    font-size: 16px;
    font-weight: unset;
    color: #999;
    margin-top: 5px;
}

@media(min-width: 320px) and (max-width: 550px){
    .ourTeamContainer{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .teamItemInfo h2{
        font-size: 14px;
    }
    
    .teamItemInfo p{
        font-size: 12px;
        font-weight: unset;
        color: #999;
        margin-top: 5px;
    }
}

@media(min-width: 550px) and (max-width: 980px){
    .ourTeamContainer{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* savePrice */
.savePrice{
    padding: 70px 0;
    border-radius: 40px;
    background: url('../img/components/save_price.jpg') no-repeat center / cover;
    position: relative;
}

.savePrice::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255, 255, 255, 0.212) 100%);
    z-index: 0;
}

.savePriceTitle{
    position: relative;
    z-index: 1;
    margin: 30px 40px;
}

.savePriceTitle h2{
    font-size: 36px;
    color: #333;
    width: 380px;
}

.savePriceTitle p{
    font-size: 20px;
    color: #333;
    margin-top: 5px;
}

.savePriceForm{
    position: relative;
    z-index: 1;
    margin: 30px 40px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    width: 560px;
}

.savePriceForm .radioLabel p{
    width: auto;
    margin-top: 0;
}

.savePriceForm h3{
    font-size: 20px;
}

.savePriceForm .radioLabel{
    margin-right: 15px;
}


.savePriceFormContainer{
    display: flex;
    margin-top: 20px;
}

.savePriceForm label input {
    background: #f2f2f2;
    padding: 16px 10px;
    border-radius: 10px;
    font-size: 16px;
    width: 300px;
}

.savePriceForm .btn {
    height: 100%;
    margin-left: 10px;
    padding: 16px 32px;
    border-radius: 10px;
}

.savePriceForm p{
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #999;
    width: 380px;
}

.savePriceForm p a{
    text-decoration: underline;
}

@media(min-width: 320px) and (max-width: 920px){
    .savePrice{
        padding: 60px 0;
    }
    
    .savePriceTitle h2{
        font-size: 24px;
        width: 100%;
    }
    
    .savePriceTitle p{
        font-size: 16px;
    }
    
    .savePriceForm{
        position: relative;
        z-index: 1;
        margin: 10px 25px;
        padding: 20px 10px;
        background: #fff;
        border-radius: 20px;
        width: calc(100% - 60px);
    }
    
    
    .savePriceFormContainer{
        display: flex;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .savePriceFormContainer label{
        width: 100%;
    }
    
    .savePriceForm label input {
        background: #f2f2f2;
        padding: 16px 10px;
        border-radius: 10px;
        font-size: 16px;
        width: calc(100% - 20px);
    }
    
    .savePriceForm .btn {
        margin-left: 0;
        margin-top: 10px;
        padding: 16px 32px;
        border-radius: 10px;
    }
    
    .savePriceForm p{
        display: inline-block;
        margin-top: 10px;
        font-size: 14px;
        color: #999;
        width: 100%;
    }
    
    .savePriceForm p a{
        text-decoration: underline;
    }
    
}


/* vacancy */

.vacancyContainer{
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.vacancyItem{
    display: inline-block;
    padding: 16px 32px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin: 10px 0 0 10px;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    transition: .4s;
}

.vacancyItem:hover{
    background: #f2f2f2;
}

@media(min-width: 320px) and (max-width: 550px){
    .vacancyItem{
        padding: 10px 15px;
    }
}



.questionsContent{
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.questionsBg{
    background: url('../img/components/questions-bg.jpg') no-repeat center / cover;
    filter: blur(2px);
    width: 100%;
    height: 100%;
    transform: scale(1.1, 1.1);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.questionsContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
}

.questionsText{
    color: #fff;
    width: 360px;
}

.questionsText p{
    font-size: 16px;
}

.questionsText h2{
    font-size: 32px;
    margin-top: 10px;
}


.questionsFormContent h2{
    color: #fff;
    font-size: 20px;
    font-weight: unset;
}

.questionsForm{
    margin-top: 20px;
}

.questionsFormInput{
    height: 50px;
    background: #fff;
    border-radius: 10px;
    padding: 0 14px;
    width: 320px;
}

.questionsFormSubmit{
    height: 50px;
    border-radius: 10px;
    padding: 0 32px;
    margin-left: 5px;
    transition: .4s;
}

.questionsFormSubmit:hover{
    color: #fff;
    border: 1px solid #fff;
}

.questionsFormContent p{
    color: #fff;
    font-size: 14px;
    font-weight: unset;
    margin-top: 20px;
}

.questionsFormContent p a{
    color: #fff;
    text-decoration: underline;
}

.questionsFormContent p a:hover{
    text-decoration: none;
}

@media(min-width: 320px) and (max-width: 1200px){

    .questionsContainer{
        justify-content: center;
        flex-wrap: wrap;
        padding: 60px 25px;
    }

    .questionsText{
        width: 100%;
    }

    .questionsText p{
        font-size: 16px;
    }

    .questionsText h2{
        font-size: 26px;
    }

    .questionsFormContent{
        width: 100%;
    }

    .questionsFormContent h2{
        font-size: 16px;
        margin-top: 20px;
    }

    .questionsForm{
        margin-top: 20px;
    }

    .questionsFormInput{
        padding: 0 14px;
        width: calc(100% - 28px);
    }

    .questionsFormSubmit{
        margin-left: 0;
        padding: 0;
        width: 100%;
        margin-top: 10px;
    }

    .questionsFormContent p{
        margin-top: 15px;
    }
}

@media(min-width: 1201px) and (max-width: 1320px){
    .questionsFormInput{
        width: 280px;
    }

}



/* page: news */

.newsContainer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* page: news */

.pageContainer{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 28px;
}

.pageText{
    color: #999;
    width: calc(100% - 400px);
}

.pageImg{
    width: 360px;
}

.pageImg img{
    width: 100%;
}

@media(min-width: 320px) and (max-width: 550px){
    .pageText{
        color: #999;
        width: 100%;
    }
    
    .pageImg{
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .pageImg img{
        width: 100%;
    }
}

@media(min-width: 550px) and (max-width: 920px){
    .pageImg{
        width: 240px;
    }

    .pageText{
        color: #999;
        width: calc(100% - 250px);
    }
}

/* page: service */

.pageService{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.serviceImg{
    width: 45%;
}

.serviceImg img{
    width: 100%;
    border-radius: 20px;
}

.popularServiceContent{
    margin-top: 20px;
}

.popularServiceContent h2{
    color: #575757;
    font-size: 24px;
}

.popularServiceContent .serviceItemContainer{
    margin-top: 15px;
}

.serviceText{
    width: 50%;
}

.serviceContent{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.serviceContent p{
    font-size: 26px;
    margin: 0;
}

.servicePrice{
    color: #111;
    font-weight: bold;
}

.serviceContent a{
    color: #fff;
}

/* tags */

.categoryTagsContainer{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.categoryTag{
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 10px;
    max-width: 360px;
}

.categoryTag{
    display: flex;
    align-items: center;
}

.categoryTag img{
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
}

.categoryTag p{
    margin-left: 15px;
    font-size: 14px;
    color: #575757;
    transition: .4s;
}

.categoryTag:hover p{
    color: #283A30;
}

@media(min-width: 320px) and (max-width: 780px){
    .pageService{
        justify-content: center;
        flex-wrap: wrap-reverse;
        margin-top: 20px;
    }

    .serviceImg{
        width: 100%;
    }

    .serviceText{
        width: 100%;
    }

    .serviceContent p{
        font-size: 16px;
    }

    .servicePrice{
        font-weight: bold;
    }

    .categoryTag img{
        width: 45px;
        height: 45px;
    }
}

@media(min-width: 780px) and (max-width: 920px){
    .serviceImg{
        width: 39%;
    }
    
    .serviceImg img{
        width: 100%;
    }
    
    .serviceText{
        width: 60%;
    }
    
}


.designStagesContainer{
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.designStagesContent{
    width: 460px;
}

.designStages{
    background: #F4F4F4;
    border-radius: 20px;
    padding: 20px;
}

.designStages h3{
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.designStagesItem{
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

.designStagesNumber{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: #EBEBEB;
    color: #666;
    font-size: 14px;
}

.designStagesItem p{
    margin-left: 6px;
    color: #666;
}

.engineerContent{
    width: calc(100% - 480px);
}

.engineerContainer{
    display: flex;
}

.engineerPhoto{
    width: 260px;
}

.engineerPhoto img{
    width: 100%;
    border-radius: 20px;
}

.engineerInfo{
    margin-left: 30px;
}

.engineerInfo p{
    margin-bottom: 12px;
    color: #333;
}

.engineerInfo p span{
    color: #999;
}

.engineerQuote{
    margin-top: 20px;
    padding: 20px;
    background: #F2F2F2;
    border-radius: 20px;
}

.engineerQuote h3{
    font-size: 20px;
    color: #333;
}

.engineerQuote p{
    font-size: 14px;
    margin-top: 10px;
    color: #999;
}

@media(min-width: 320px) and (max-width: 550px){
    .designStagesContainer{
        flex-wrap: wrap;
    }
    
    .designStagesContent{
        width: 100%;
    }
    
    .designStages h3{
        font-size: 22px;
    }
    
    .engineerContent{
        width: 100%;
    }
    
    .engineerContainer{
        display: flex;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    
    .engineerPhoto{
        width: 100%;
    }
    
    .engineerInfo{
        margin-left: 0;
        margin-top: 20px;
    }
    
    .engineerInfo p{
        margin-bottom: 10px;
    }
}

@media(min-width: 550px) and (max-width: 920px){
    .designStagesContainer{
        flex-wrap: wrap;
    }
    
    .designStagesContent{
        width: 100%;
    }
    
    .engineerContent{
        width: 100%;
    }
    
    .engineerContainer{
        margin-top: 20px;
    }
}

/* page: staff */

.staffContainer{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 25px;
}

.staffPhoto{
    width: 350px;
}

.staffPhoto img{
    width: 100%;
    border-radius: 20px;
}

.staffContent{
    width: calc(100% - 390px);
}

.staffInfo{
    margin-top: 10px;
}

.staffInfo p{
    margin-bottom: 12px;
    color: #333;
}

.staffInfo p span{
    color: #999;
}

.staffQuote{
    padding: 20px;
    background: #F2F2F2;
    border-radius: 20px;
}

.staffQuote h3{
    font-size: 20px;
    color: #333;
}

.staffQuote p{
    font-size: 14px;
    margin-top: 10px;
    color: #999;
}

@media(min-width: 320px) and (max-width: 640px){
    .staffPhoto{
        width: 100%;
    }

    .staffContent{
        width: 100%;
    }

    .staffInfo{
        margin-top: 20px;
    }


    .staffQuote{
        margin-top: 20px;
    }
}

@media(min-width: 640px) and (max-width: 920px){
    .staffPhoto{
        width: 250px;
    }

    .staffContent{
        width: calc(100% - 270px);
    }
}


/* contact */

.contactsContainer{
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 40px;
    margin-top: 30px;
}

.contactItemBlock{
    margin-top: 15px;
}

.contactItemBlock h3{
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.contactItemBlock p , .contactItemBlock a{
    color: #666;
    font-size: 16px;
}

.contactItemBlock span{
    display: inline-block;
    width: 100%;
    color: #666;
}

.contactSocialContainer {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-top: 15px;
}

.contactSocialContainer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-left: 10px;
    text-decoration: none;
    font-size: 16px;
    background: #444658;
    transition: .4s;
}

.contactSocialContainer a img {
    width: 18px;
}

.contactSocialContainer a:first-child {
    margin-left: 0;
}

.contactAddressBlock{
    margin-top: 25px;
}

.contactAddressBlock img{
    width: 100%;
    border-radius: 20px;
    margin-top: 20px;
}

.contactItemMap{
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

@media(min-width: 320px) and (max-width: 720px){
    .contactsContainer{
        grid-template-columns: 1fr;
    }
}

@media(min-width: 720px) and (max-width: 920px){
    .contactsContainer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contactItem:nth-child(3) {
        grid-column: 1 / -1;
        height: 300px;
    }
}

/* footer */


/* footer */

footer{
    margin-top: 45px;
}

.footerTop{
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.footerLogo h2{
    font-weight: unset;
    font-size: 48px;
}

.footerLogo img{
    height: 85px;
}

.footerTopContainer{
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr);
}

.footerItem{
    color: #fff;
}

.footerItem a{
    display: inline-block;
    color: #fff;
    margin-top: 10px;
    width: 100%;
    font-size: 14px;
}

.footerSocialContainer{
    display: flex;
    width: 100%;
    margin-top: 20px;
}

.footerSocial{
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #fff;
    width: 32px !important;
    height: 32px !important;
    margin-right: 10px;
    transition: .4s;
}

.footerSocial img{
    width: 16px;
}

.footerSocial:hover{
    transform: scale(1.1, 1.1);
}

/* footerBottom */

.footerBottom{
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.footerBottomContainer{
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.footerBottomContainer p{
    font-size: 14px;
}

.footerBotomLeft{
    display: flex;
}

.footerBotomLeft a{
    margin-left: 30px;
    font-size: 14px;
}

.footerBottomContainer a{
    color: #fff;
    text-decoration: underline;
}


@media(min-width: 320px) and (max-width: 550px){
    .footerTopContainer{
        gap: 40px;
        grid-template-columns: repeat(1, 1fr);
    }

    .footerSocialContainer{
        justify-content: center;
    }

    .footerItem{
        text-align: center;
        width: 100%;
    }

    .footerBottom{
        flex-wrap: wrap;
    }

    .footerBottomContainer{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        color: #fff;
    }

    .footerBottomContainer p{
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .footerBotomLeft{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .footerBotomLeft a{
        display: inline-block;
        text-align: center;
        margin-left: 30px;
        margin-top: 10px;
        width: 100%;
        font-size: 14px;
    }

    .footerBotomRight{
        width: 100%;
    }

    .footerBottomContainer a{
        display: inline-block;
        color: #fff;
        text-decoration: underline;
    }
}


@media(min-width: 550px) and (max-width: 720px){
    .footerTopContainer{
        gap: 40px;
        grid-template-columns: repeat(2, 1fr);
    }

    .footerSocialContainer{
        justify-content: center;
    }

    .footerItem{
        text-align: center;
        width: 100%;
    }

    .footerBottom{
        flex-wrap: wrap;
    }

    .footerBottomContainer{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        color: #fff;
    }

    .footerBottomContainer p{
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .footerBotomLeft{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .footerBotomLeft a{
        display: inline-block;
        text-align: center;
        margin-left: 30px;
        margin-top: 10px;
        width: 100%;
        font-size: 14px;
    }

    .footerBotomRight{
        width: 100%;
    }

    .footerBottomContainer a{
        display: inline-block;
        color: #fff;
        text-decoration: underline;
    }
}

@media(min-width: 720px) and (max-width: 1290px){
    .footerTopContainer{
        gap: 40px;
        grid-template-columns: repeat(3, 1fr);
    }

    .footerSocialContainer{
        justify-content: center;
    }

    .footerItem{
        text-align: center;
        width: 100%;
    }

    .footerBottom{
        flex-wrap: wrap;
    }

    .footerBottomContainer{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        color: #fff;
    }

    .footerBottomContainer p{
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .footerBotomLeft{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .footerBotomLeft a{
        display: inline-block;
        text-align: center;
        margin-left: 30px;
        margin-top: 10px;
        width: 100%;
        font-size: 14px;
    }

    .footerBotomRight{
        width: 100%;
    }

    .footerBottomContainer a{
        display: inline-block;
        color: #fff;
        text-decoration: underline;
    }
}


.serviceItemContent{
    margin-top: 35px;
}

.serviceItemContent h2{
    font-size: 24px;
}

.serviceItemContainer .serviceItem:nth-child(even){
    background: #f2f2f2;
}

.serviceItem{
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 10px;
}

/* index */

.wide-banner {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #9656bb, #c790e7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* 🔲 Сетка */
.wide-banner.grid-texture::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

/* 💥 Глянец-луч */
.wide-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: shine 3s infinite linear;
    z-index: 2;
    pointer-events: none;
}

/* 🔁 Анимация shine */
@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

/* 🧱 Контент */
.banner-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 3;
    position: relative;
}