*{
    margin:0;
    padding:0;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    list-style: none;
    color:rgba(51, 47, 47, 1);  
    box-sizing: border-box;
}
a{
    transition: 0.5s;
}
a:hover{
    color:rgba(74, 113, 151, 1);
}

body{
    padding-top:170px;
    background:rgba(239, 242, 246, 1);
}

.is-hidden{
    display:none !important;
}

.container{
    width:100%;
    max-width:1365px;
    padding-left:44px;
    padding-right:44px;
    margin:0 auto;
}
@media(max-width:1310px){
    .container{
        padding-left:16px;
        padding-right:16px;
    }
}

.white-block{
    padding: 42px;
    border: 1px solid rgba(239, 242, 246, 1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15) inset;
    border-radius: 30px;
}
.title-h2{
    font-weight: 300;
    font-style: Light;
    font-size: 70px;
    line-height: 100%;
    letter-spacing: -1.5px;
    margin-bottom:40px;
    text-align: center;
}
.button{
    border: 1px solid rgba(74, 113, 151, 1);
    padding:14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color:rgba(74, 113, 151, 1);
    transition: 0.5s;
    cursor: pointer;
    border-radius: 8px;
}
.button:hover{
    background: rgba(74, 113, 151, 1);
    color:white;
}
.button-2{
    padding:14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color:rgba(74, 113, 151, 1);
    transition: 0.5s;
    cursor: pointer;
    border-radius: 8px;
    background: white;
}
.button-2:hover{
    background: rgba(74, 113, 151, 1);
    color:white;
}
.section{
    padding-top:35px;
    padding-bottom:35px;
}
@media(max-width:768px){
    .white-block{
        padding:12px;
        padding-top:22px;
        border-radius: 19px;
    }
    .title-h2{
        font-size: 36px;
        margin-bottom: 20px;
    }
    .button{
        padding:15px;
        font-size: 14px;
    }
    .section{
        padding-top:20px;
        padding-bottom:20px;
    }
}


header{
    position: fixed;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: transform 0.3s ease-in-out;
}
.menu{
    background: linear-gradient(0deg, rgba(201, 201, 201, 0.51) 33.44%, rgba(247, 247, 247, 0.31) 59.06%);
        background: linear-gradient(0deg, rgb(227 227 227 / 94%) 33.44%, rgb(255 255 255) 59.06%);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15) inset;
    padding:47px 42px;
    border-radius: 30px;
    display:flex;
    justify-content: space-between; align-items: center;
}
.menu-logo{
    display: block;
}
.menu-logo img{
    display: block;
    width:240px;
}
.menu-wrap{
    height: 20px;
}
.menu-wrap ul{
    display: flex;
    align-items: center;
    gap:24px;
    height: 100%;
}
.menu-wrap ul li{
    position: relative;
        height: 50px;
        display: flex;
        align-items: center;
}
.menu-wrap ul li a{
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 16px;
    /* line-height: 85px; */
    letter-spacing: 1px;
    text-transform: uppercase;

}
.menu-wrap ul li.current-menu-item > a{
    /*text-decoration: underline;*/
    border-bottom: 1px solid currentColor;
}
.menu-wrap .sub-menu li.current-menu-item > a{
    text-decoration: underline;
    border-bottom: 0;
}

.menu-wrap .sub-menu{
    position: absolute;
    top:40px;
    left:0;
    background: linear-gradient(0deg, rgb(227 227 227) 33.44%, rgb(255 255 255) 59.06%);
    
    padding:40px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px !important;
    height: auto !important;
    border-radius: 30px;
    width:354px;
    z-index: 2;
    display: none;
}
/* Пункты подменю — обязательно для вёрстки выпадающего меню */
.menu-wrap .sub-menu li{
    width:100%;
    height:auto;
}
.menu-wrap .sub-menu a{
    font-size: 18px!important;
    font-weight: 400!important;
        text-transform: none !important;
}
/*.menu-item-has-children:hover .sub-menu{*/
/*    display: flex!important;*/
/*}*/
.menu-contact{
    display: flex;
    align-items: center;
    gap:23px;
}
.menu-contact a{
    display: block;
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;

}
.menu-contact a svg{
    display: block;
    font-size: 16px;
}
.menu-contact a svg path{
    transition: 0.5s;
}
.menu-contact a:hover svg path{
    fill:rgb(86 160 208);
}
.menu-contact-button{
    background: rgba(74, 113, 151, 1);
    box-shadow: 0px 3px 2.4px 0px rgba(60, 107, 148, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 16px;
    line-height: 85px;
    letter-spacing: 1px;
    vertical-align: middle;
    text-transform: uppercase;
    cursor: pointer;
    width:150px;
    height:40px;
    color:white;
    transition: 0.5s;
}
.menu-contact-button:hover{
    background:rgb(86 160 208);
}

.burger-button {
            background: white;
            border: none;
            border-radius: 12px;
            padding: 16px;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .burger-button:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .burger {
            position: relative;
            width: 32px;
            height: 20px;
        }

        .burger span {
            position: absolute;
            width: 100%;
            height: 2px;
            background: #333;
            border-radius: 3px;
            display: block;
            transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        }

        .burger span:nth-child(1) {
            top: 0;
        }

        .burger span:nth-child(2) {
            top: 9px;
            opacity: 1;
        }

        .burger span:nth-child(3) {
            top: 18px;
        }

        /* Active state - превращаем в крестик */
        .burger.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 9px;
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg);
            top: 9px;
        }

.burger{
    display: none;
}
.mob-menu{
    display: none;
}

.menu-flags{
    position: relative;
}
.menu-flags-main{
    display: flex;
    align-items: center;
    gap:5px;
    cursor: pointer;
}
.menu-flags-main svg{
        position: relative;
    top: 4px;
    transition: 0.5s;
    transform: rotate(0deg);
}
.menu-flags.active .menu-flags-main svg{
    transform: rotate(180deg);
}
.menu-flags-bottom{
    position: absolute;
    top: 90px;
    right: -44px;
    opacity: 1;
    min-width:350px;
    padding:40px;
    border-radius: 30px;
    background: rgba(233, 235, 239, 1);
    border: 1px solid rgba(239, 242, 246, 1);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15) inset;
    display: flex;
    flex-direction: column;
    gap:40px;
}
.menu-flags-bottom-item{
    display: flex;
    align-items: center;
    gap:20px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: 0px;
    vertical-align: middle;

}

.menu-flags-cont{
    display: flex;
    gap:30px;
}

@media(max-width:768px){
    .menu-flags{
        /* display: none; */
    }
    .menu-flags-cont{
        display: flex;
        gap:10px;
    }
    .menu-flags-bottom{
        top:50px;
    }
}

@media(max-width:1230px){
    body{
        padding-top: 98px;
    }
    .menu{
        padding:20px 10px;
        border-radius: 19px;
        box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15) inset;
        position: relative;
    }
    .menu-wrap{
        display: none;
    }
    .menu-contact{
        display: none;
    }
    .menu-logo img{
        width:200px;
    }
    .burger{
        display: block;
        cursor: pointer;
    }
    .mob-menu{
        position: absolute;
        top:75px;
        left:0;
        padding:20px 10px;
        border-radius: 14px;
        width:100%;
        display: flex;
        align-items: center;
        gap:40px;
        justify-content: flex-end;
        background: rgba(255, 255, 255, 1);
        border: 1px solid rgba(239, 242, 246, 1);
        padding:12px;
        max-height: 79vh;
        overflow-y: scroll;
    }
    .mob-menu-cont{
        padding:20px 12px;
        background: rgba(239, 242, 246, 1);
        border-radius: 14px;
        border: 0.8px solid rgba(204, 213, 215, 1);
        box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
        width:100%;
    }
    .mob-menu ul{
        display: flex;
        align-items: center;
        gap:40px;
    }
    .mob-menu ul > li{
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(204, 213, 215, 1);
        width:100%;
    }
    .mob-menu ul li a{
        font-weight: 600;
        font-size: 16px;
        text-transform: uppercase;
        font-size: 20px;
    }
    .mob-menu-contact{
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap:20px;
        padding-top:30px;
        padding-bottom:30px;
    }
    .mob-menu-contact svg{
        width:32px;
    }
    /* Пункты с подменю — стрелка и раскрытие */
    .mob-menu .menu-item-has-children > a{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 12px;
    }
    .mob-menu .menu-item-has-children > a .mob-menu-arrow{
        display: flex;
        flex-shrink: 0;
        margin-left: 8px;
        width: 13px;
        height: 8px;
        transition: transform 0.2s ease;
    }
    .mob-menu .menu-item-has-children > a .mob-menu-arrow svg{
        width: 100%;
        height: 100%;
    }
    .mob-menu .menu-item-has-children.open > a .mob-menu-arrow{
        transform: rotate(180deg);
    }
    .mob-menu .sub-menu{
        display: none;
        list-style: none;
        margin: 0;
        padding: 8px 0 0 16px;
    }
    .mob-menu .menu-item-has-children.open .sub-menu{
        display: block;
    }
    .mob-menu .sub-menu li{
        border-bottom: none;
        padding-bottom: 0;
    }
    .mob-menu .sub-menu a{
        font-size: 18px;
        font-weight: 500;
        padding: 8px 0;
        text-transform: none;
    }
    
    
}

@media(max-width:980px){
    .mob-menu{
        flex-direction: column;
        gap:20px;
        justify-content: flex-start;
    }
    .menu-contact-button{
        width: 224px;
    }
}
@media(max-width:470px){
    .mob-menu{
        align-items: flex-start;
    }
    .mob-menu ul{
        flex-direction: column;
        align-items: flex-start;
        gap:20px;
    }
    .menu-contact-button{
        width:100%;
    }
}

.main-banner-section,
.service-banner-section{
    padding-bottom:35px;
}
.main-bunner{
    position: relative;
}
.main-bunner-slides{
    display: block;
    overflow: hidden;
}
.main-bunner-slide{
    padding:40px;
    background-size: cover;
    height:718px;
    border-radius: 30px;
    

}
.main-bunner-slide video {
    width: 100%;
    position: absolute;
    left: 50%;        /* Сдвигаем левый край в центр родителя */
    top: 50%;         /* Сдвигаем верхний край в центр родителя */
    transform: translate(-50%, -50%); /* Смещаем элемент обратно на половину его же ширины и высоты */
    border-radius: 30px;
}
.main-bunner-slide-title{
    max-width:800px;
    font-weight: 400;
    font-style: Regular;
    font-size: 82px;
    color:white;
    position:relative;
    z-index:2;
}
.main-bunner-buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 40px;
}
.main-bunner-button{
    height:68px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:black;
    font-weight: 400;
    font-style: Regular;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: -1.27px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(11.199999809265137px);
    width:24%;
    border-radius: 14px;
    transition: 0.5s;
}
.main-bunner-button.active{
    background:white;
}
.main-bunner-button:hover{
    background:white;
}

@media(max-width:920px){
    .main-bunner-slide{
        padding-left:12px;
        padding-right:12px;
        height:545px;
        overflow:hidden;
                position: relative;
    }
    .main-bunner-slide video{
        width:auto;
        height:100%;
    }
    .main-bunner-slide-title{
        font-weight: 400;
        font-size: 40px;
        line-height: 100%;

    }
    .main-bunner-buttons{
        padding:12px;
    }
    .main-bunner-button{
        font-size: 26px;
    }
}
@media(max-width:768px){
    .main-banner-section{
        padding-bottom:20px;
    }
    .main-bunner-slide{
        height:530px;
    }
    .main-bunner-buttons{
        flex-direction: column;
        gap:12px;
    }
    .main-bunner-button{
        width:100%;
        height:44px;
    }
}

.format-section{
    display: block;
}
.format .title-h2{
    text-align: start;
}
.format-blocks{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.format-block{
    border-radius: 14px;
    background: rgba(239, 242, 246, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
    padding:22px;

}
.format-block-number{
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 12px;
}
.format-block-title{
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 12px;
}
.format-block-text{
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 49px;
}
.format-block-button{
    width: 100%;
}

@media(max-width:1110px){
    .format-blocks{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:768px){
    .format .title-h2{
        text-align: center;
    }
    .format-blocks{
        grid-template-columns: repeat(1, 1fr);
        gap:15px;
    }
    .format-block{
        font-size: 38px;

    }
    .format-block-title{
        margin-bottom:50px;
        font-size: 20px;
    }
    .format-block-text{
        display: none;
    }
}


.spketr-blocks{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:22px;
}
.spketr-block{
    height:470px;
    display: flex;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    
}
.spketr-block img{
    position: absolute;
    top:0;
    left:0;
    object-fit: cover;
    transform: scale(1);
    transition: 0.5s;
    width:100%;
    height:100%;
}
.spketr-block:hover img{
    transform: scale(1.1);
}
.spketr-block-title{
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 24px;
    line-height: 110.00000000000001%;
    text-align: center;
    position: relative;
    z-index: 2;
    width:100%;
    height:100%;
     background:  linear-gradient(180deg, rgba(0, 0, 0, 0) 41.65%, rgba(31, 21, 21, 0.5) 65.45%, rgba(11, 10, 16, 0.7) 100%); 
    display: flex;
    flex-direction: column;
	justify-content: flex-end;
    padding:22px;
    padding-bottom:42px;
    /* box-shadow: inset 0 0 10px -1px black; */
    transition: 0.5s;
    
}
@media(min-width:769px){
	.pad .spketr-block-title{
		padding-top: 265px;
		justify-content: flex-start;
	}
}
.spketr-block-text{
    margin-top: 20px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color:white;
}
.spketr-block:hover .spketr-block-title{
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 41.65%, rgba(31, 21, 21, 0.5) 65.45%, rgb(11 10 16) 100%); */
    position: relative; /* сохраняем контекст для hover */
}
@media(max-width:1140px){
    .spketr-blocks{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:768px){
    .spketr-blocks{
        grid-template-columns: repeat(1, 1fr);
        gap:12px;
    }
    .spketr-block{
        height:336px;
        padding:22px;
    }
    .spketr-block-title{
        font-size: 20px;
        background:none;
    }
}




.advantages-blocks{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:22px;
}
.advantages-block{
    background: rgba(239, 242, 246, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 13.5px 0px rgba(127, 155, 162, 0.15) inset;
    padding:22px;
    padding-top:42px;
    border-radius: 14px;
    min-height:239px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}
.advantages-block-title{
    margin-bottom: 22px;
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;

}
.advantages-block-text{
    text-align: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;

}

@media(max-width:768px){
    .advantages-blocks{
        grid-template-columns: repeat(1, 1fr);
        gap:12px;
    }
    .advantages-block{
        min-height:196px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content:center;
    }
    .advantages-block-title{
        font-size: 20px;
    }
    .advantages-block-text{
        font-size: 20px;
    }
}



.faq-blocks{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:22px;
    align-items: start;
}
.faq-block{
    padding:22px 27px;
    display: flex;
    flex-direction: column;
    gap:12px;
    background: rgba(255, 255, 255, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 4.2px 0px rgba(127, 155, 162, 0.25) inset;
    border-radius: 14px;
}
.faq-block-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.faq-block-title span{
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;

}
.faq-block-title svg{
    display: block;
    transition: 0.5s;
    transform:rotate(0deg);
    min-width: 44px;
}
.faq-block.active .faq-block-title svg{
    transform:rotate(180deg);
}
.faq-block-text{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;

}


@media(max-width:768px){
    .faq-blocks{
        grid-template-columns: repeat(1, 1fr);
        gap:12px;
    }
    .faq-block{
        padding:22px;
    }
    .faq-block-title{
        font-size: 20px;
    }
    .faq-block-text{
        font-size:16px;
    }
}


.support{
    display: block;
}
.support-title{
    text-align: start;
    font-weight: 500;
    font-size: 50px;
}
.support-text{
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    margin-bottom:42px;
}
.support-text > *{
    margin-bottom:15px;
}
.support-text li{
    margin-bottom:15px;
    list-style: disc;
}
.support-text ul{
    padding-left: 25px;
}
.support-button{
    width:360px;
}
@media(max-width:768px){
    .support-title{
        text-align: center;
        font-size: 30px;
        margin-bottom:22px;
    }
    .support-text{
        text-align: center;
        font-size: 20px;
        margin-bottom:22px;
    }
    .support-button{
        width:100%;
    }
}


.connection{
    display: flex;
    justify-content: space-between;
}
.connection-title{
    margin-bottom: 0;
}
.connection-blocks{
    display: flex;
    gap:35px;
}
.connection-blocks.mob{
    display:none;
}
.connection-blocks a{
    display: block;
    cursor: pointer;
}
.connection-blocks a img,.footer-top-soc a img,.news-link img{
    display: block;
    transition: 0.5s;
    transform:scale(1);
}
.connection-blocks a img{
    width:72px;
}
.connection-blocks a:hover img,.footer-top-soc a:hover img,.news-link:hover img{
    transform: scale(1.1);
}

@media(max-width:769px){
    .connection{
        flex-direction: column;
    }
    .connection-title{
        margin-bottom: 22px;
    }
    .connection-blocks{
        justify-content: center;
        flex-wrap: wrap;
        gap:30px;
        padding-left:20px;
        padding-right:20px;
    }
    .connection-blocks a img{
        width:57px;
    }
    .connection-blocks.desc{
        display:none;
    }
    .connection-blocks.mob{
        display:flex;
    }
    .contact-right iframe{
        height:300px!important;
        margin-bottom:20px;
    }
}




.aboutus-main-section{
    padding-top:0px;
}
.aboutus-main{
    display: block;
}
.aboutus-main-title{
    font-size: 82px;

} 
.aboutus-main-blocks{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:27px;
}
.aboutus-main-left{
    display: block;
    overflow:hidden;
    max-height:730px;
    height:100%;
    border-radius: 14px;
}
.aboutus-main-left img{
    width:100%;
    object-fit: cover;
    
    max-height: 750px;
}
.aboutus-main-right{
    display: block;
}
.aboutus-main-text{
    display: flex;
    flex-direction: column;
    gap:42px;
    margin-bottom: 42px;
    font-size: 24px;
}
.aboutus-main-text p{
    font-size: 24px;
}
.aboutus-main-button{
    width:360px;
}

@media(max-width:768px){
    .aboutus-main-blocks{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap:20px;
    }
    .aboutus-main-title{
        font-size: 40px;
    }
    .history-blocks{
        grid-template-columns: repeat(1, 1fr);
    }
    .aboutus-main-left img{
        height:213px;
    }
    .aboutus-main-text p{
        font-size: 20px;
    }
    .aboutus-main-text{
        gap:20px;
        margin-bottom:20px;
        font-size: 20px;
    }
    .aboutus-main-button{
        width:100%;
    }
}



.history-blocks{
    display: flex;
    flex-direction: column;
    gap:22px;
}
.history-block{
    background: rgba(239, 242, 246, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
    border-radius: 14px;
    padding:40px;
    display: flex;
    flex-direction: column;
    gap:20px;
    cursor: pointer;
}
.history-block-title{
    color: rgba(74, 113, 151, 1);
    font-weight: 600;
    font-size: 50px;
    line-height: 130%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.history-block-title span{
    font-size: 24px;
}
.history-block-text-title{
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}
.history-block-title svg{
    display: block;
    width:44px;
    min-width:44px;
    transition: 0.5s;
    transform: rotate(0deg);
}
.history-block.active .history-block-title svg{
    transition: 0.5s;
    transform: rotate(180deg);
}
.history-block-text{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;

}

@media(max-width:768px){
    .history-block{
        gap:12px;
        padding:12px;
    }
    .history-block-title{
        font-size: 30px;
    }
    .history-block-text{
        font-size: 16px;
    }
}


.contact-mans-blocks{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:22px;
}
.contact-mans-block{
    display: block;
}
.contact-mans-block-img{
    width:100%;
    margin-bottom:22px;
}
.contact-mans-block-img img{
    width: 100%;
    display: block;
    border-radius: 16px;
}
.contact-mans-name{
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    margin-bottom:20px;
}
.contact-mans-position{
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    margin-bottom:12px;
}
.contact-mans-line{
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    width:94px;
    margin:0 auto;
    margin-bottom:12px;
}
.contact-mans-a{
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    margin-bottom:12px;
    display: block;
}

@media(max-width:800px){
    .contact-mans-blocks{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap:10px;
    }
    .contact-mans-name{
        font-size: 20px;
    }
    .contact-mans-position{
        font-size: 14px;
    }
    .contact-mans-line{
        width:85px;
    }
    .contact-mans-a{
        font-size: 14px;
    }
}


.news{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-title{
    text-align: start;
    margin-bottom:30px;
}
/* Если у заголовка новостей есть title-h2 — общий стиль как на остальных страницах */
.news-title.title-h2{
    font-weight: 300;
    font-size: 70px;
    letter-spacing: -1.5px;
    text-align: center;
    margin-bottom: 30px;
}
.news-text{
    margin:0;
}

@media(max-width:768px){
    .news{
        flex-direction: column;

    }
    .news-title{
        text-align: center;
    }
    .news-title.title-h2{
        font-size: 36px;
        margin-bottom: 20px;
    }
    .news-text{
        font-size: 20px;
        margin-bottom:20px;
    }
}

.form{
    display: block;
}
.form-title{
    font-weight: 500;
    font-size: 50px;
    text-align: center;
}
/* На страницах, где у заголовка формы есть и title-h2 — используем общий стиль заголовков */
.form-title.title-h2{
    font-weight: 300;
    font-size: 70px;
    letter-spacing: -1.5px;
    margin-bottom: 40px;
}
.form-text{
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    margin-bottom: 50px;
}
.main-form{
    display: block;
}
.main-form-top{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:40px;
    margin-bottom:40px;
}
.main-form-left{
    display: flex;
    flex-direction: column;
    gap:22px;
}
.main-form-input{
    position: relative;
}
.main-form-input .iti{
    width:100%;
}
.iti--separate-dial-code .iti__selected-flag{
    background: transparent !important;
}
.iti__arrow{
    display: none;
}
.iti__selected-dial-code{
    font-weight: 400;
    font-size: 18px;
    color:rgba(132, 132, 132, 1);
}
.main-form-input input{
    width:100%;
    height:68px;
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 4.2px 0px rgba(127, 155, 162, 0.25) inset;
    padding:21px;
    font-weight: 400;
    font-size: 18px;
    color:rgba(132, 132, 132, 1);
    border-radius: 14px;
}
.main-form-right{
    display: block;
}
.main-form-input textarea{
    width:100%;
    height:248px;
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 4.2px 0px rgba(127, 155, 162, 0.25) inset;
    padding:21px;
    padding-top:30px;
    font-weight: 400;
    font-size: 18px;
    color:rgba(132, 132, 132, 1);
    border-radius: 14px;
}

.main-form-file{
    display: flex;
    align-items: center;
    gap:24px;
    position: relative;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 40px;
}
.main-form-file input{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    cursor: pointer;
    opacity: 0;
}

.main-form-bottom{
    display: flex;
    align-items: center;
    gap:40px;

}
.main-form-button{
    background:white;
    width:190px;
}
.main-form-pol{
    display: flex;
    /*align-items: center;*/
    gap:9px;
    font-weight: 400;
    font-size: 16px;
    color:rgba(132, 132, 132, 1);
}
.main-form-pol a{
    text-decoration:underline;
}
.main-form-pol input{
    width:23px;
    height:23px;
    border-radius: 6px;
}

@media(max-width:900px){
    .form-title{
        font-size: 30px;
    }
    .form-title.title-h2{
        font-size: 36px;
        margin-bottom: 20px;
    }
    .form-text{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .main-form-top{
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }
    .main-form-file{
        gap:24px;
        margin-bottom:20px;
    }
    .main-form-file svg{
        min-width:17px;
    }
    .main-form-bottom{
        flex-direction: column;
        gap:20px;
    }
    .main-form-button{
        width:100%;
        order:2;
    }
    .main-form-pol{
        order:1;
        font-size: 14px;
    }
}


.bread{
    display: flex;
    align-items: center;
    flex-wrap:wrap;
    gap:16px;
    padding-left: 40px;
    padding-bottom:20px;
}
.bread span, .bread a{
    font-weight: 400;
    font-size: 14px;

}
@media(max-width:768px){
    .bread{
        padding-left: 0;
    }
    .bread span, .bread a{
        font-size: 12px;
    }
}



footer{
    background: rgba(233, 235, 239, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
    border-radius: 30px;
    padding:40px;
    margin-top:35px;
    margin-bottom:35px;
}
.footer-top{
    display: flex;
    justify-content: space-between;
    margin-bottom:30px;
}
.footer-top-left{
    width:460px;
    
}
footer .menu-logo{
    margin-bottom:40px;
}
.footer-top-form{
    display: block;
}
.footer-top-form-label{
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 20px;
}
footer .main-form-input{
    margin-bottom:20px;
}
footer .main-form-pol{
    font-size: 14px;
    margin-bottom:20px;
}
footer .main-form-button{
    background: transparent;
}
footer .menu-logo img{
    width:347px;
}

.footer-top-right{
    width:646px;
    display: flex;
    justify-content: space-between;
    gap:40px;
}
.footer-top-column{
    max-width: 287px;
}
.footer-top-black{
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 17px;
    display: block;
}
.footer-top-norm{
    font-size: 18px;
    margin-bottom: 17px;
    display: block;
}

.footer-top-soc{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.footer-top-soc img{
    width:56px;
}

.footer-bottom{
    display: flex;
    gap:40px;

}
.footer-bottom *{
    font-weight: 400;
    font-size: 14px;
    color:rgba(102, 102, 102, 1);
}

.menu-logo.mob{
    display: none;
}

@media(max-width:980px){
    footer{
        padding-left:12px;
        padding-right: 12px;
        padding-top:22px;
        padding-bottom:22px;
        margin-top:20px;
    }
    .footer-top{
        flex-direction: column;
    }
    .footer-top-left{
        order:2;
    }
    .footer-top-right{
        order:1;
    }
    .menu-logo.mob{
        display: block;
        max-width:80%;
        margin:0 auto;
    }
    .menu-logo.desc{
        display: none;
        
    }
    .menu-logo.desc img{
        width:100%;
    }
    .footer-top-right{
        display: block;
    }
    .footer-top-column{
        width:100%;
        padding-top:40px;
        padding-bottom:40px;
        border-bottom: 1px solid rgba(204, 213, 215, 1);
        max-width:100%;
    }
    .footer-top-black,.footer-top-norm{
        text-align: center;
        font-size: 18px;
    }
    .footer-top-soc{
        display: flex;
        justify-content: space-between;
        gap:10px;
        flex-wrap: wrap;
        margin-top:40px;
    }
    .footer-top-left{
        width:100%;
    }
    .footer-top-right{
        width:100%;
    }
    .footer-top-form{
        padding-top:40px;
        padding-bottom:40px;
    }
    .footer-bottom{
        flex-direction: column;
        gap:12px;
        align-items: center;
    }
    footer .menu-logo img{
        width:100%;
    }
}



.spheres-slides {
    display: flex;
    height: 557px;
    width: 100%;
    gap: 0; /* Убираем отступы между слайдами */
}

.spheres-slide {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative; /* Для позиционирования градиента */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap:20px;
    padding-left: 30px;
    padding-bottom: 40px;
    padding-right:20px;
}

/* Градиентный оверлей */
.spheres-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none; /* Чтобы градиент не мешал наведению */
    z-index: 1;
    border-radius: inherit; /* Наследуем скругление от родителя */
}

/* Первый слайд всегда открыт по умолчанию */
.spheres-slide:first-child {
    flex: 2.5;
    border-radius: 14px 0 0 14px;
}

.spheres-slide:last-child {
    border-radius: 0px 14px 14px 0px;
}

/* При наведении на любой слайд */
.spheres-slides:hover .spheres-slide {
    flex: 0.5;
}

.spheres-slides .spheres-slide:hover {
    flex: 2.5;
}

/* Но первый слайд теряет свой приоритет, когда наводим на другие */
.spheres-slides:hover .spheres-slide:first-child {
    flex: 0.5;
}

.spheres-slides .spheres-slide:first-child:hover {
    flex: 2.5;
}

/* Стили для заголовка */
.spheres-slide-title {
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: 30px;
    
    position: relative; /* Чтобы текст был поверх градиента */
    z-index: 2;
    width: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.spheres-slide-text{
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0px;
    vertical-align: middle;
    color:white;
    position: relative;
    z-index: 2;
    overflow: hidden;
    
}

/* Базовые стили для текста */
.spheres-slide-text {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: white;
    position: relative;
    z-index: 2;
    
    /* Плавное появление */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    
    /* Фиксируем высоту, чтобы контент не прыгал */
    height: 46px; /* 18px * 1.3 ≈ 23px * 2 строки ≈ 46px */
    overflow: hidden;
}

/* Текст первого слайда — виден изначально */
.spheres-slide:first-child .spheres-slide-text {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s, 0s;
}

/* Когда наводим на контейнер, первый слайд сжимается — прячем его текст */
.spheres-slides:hover .spheres-slide:first-child .spheres-slide-text {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

/* Активный (hover) слайд показывает текст с задержкой */
.spheres-slides .spheres-slide:hover .spheres-slide-text {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
    transition-delay: 0.3s; /* Задержка перед появлением */
}

/* И если hover именно на первом — тоже показываем */
.spheres-slides .spheres-slide:first-child:hover .spheres-slide-text {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s;
}

/* Мобильная версия */
@media screen and (max-width: 768px) {
    .spheres-slides {
        flex-direction: column;
        height: 800px; /* Увеличил высоту для лучшего отображения на мобилках */
    }
    
    .spheres-slide {
        flex: 1;
        width: 100%;
        
        justify-content: flex-end; /* Но текст все равно внизу */
    }
    
    /* На мобилке первый слайд открыт по высоте */
    .spheres-slide:first-child {
        flex: 2.5;
        border-radius: 14px 14px 0 0;
    }
    
    .spheres-slide:last-child {
        border-radius: 0 0 14px 14px;
    }
    
    /* Остальные слайды тоже должны иметь скругление */
    .spheres-slide:not(:first-child):not(:last-child) {
        border-radius: 0;
    }
    
    /* При наведении на мобилке */
    .spheres-slides:hover .spheres-slide {
        flex: 0.5;
    }
    
    .spheres-slides .spheres-slide:hover {
        flex: 2.5;
    }
    
    .spheres-slides:hover .spheres-slide:first-child {
        flex: 0.5;
    }
    
    .spheres-slides .spheres-slide:first-child:hover {
        flex: 2.5;
    }
    
    /* Адаптируем текст для мобилок */
    .spheres-slide-title {
        font-size: 24px;
        padding-left: 20px;
        padding-bottom: 25px;
    }
}

/* Для очень маленьких экранов */
@media screen and (max-width: 480px) {
    .spheres-slides {
        height: 700px;
    }
    
    .spheres-slide-title {
        font-size: 20px;
        padding-left: 15px;
        padding-bottom: 20px;
    }
}





.contact{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.contact-left{
    display: flex;
    flex-direction: column;
    gap:22px;
}
.contact-block{
    background: rgba(239, 242, 246, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
    display: flex;
    flex-direction: column;
    gap:22px;
    padding:22px;
    border-radius: 14px;
}
.contact-block-title{
    font-weight: 600;
    font-size: 24px;

}
.contact-block-text{
    position: relative;
    font-size: 24px;
}
.contact-block-text a,.contact-block-text span{
    display: block;
}
.contact-block-text svg{
    cursor: pointer;
    position: absolute;
    right:0;
    bottom:0;
}
.contact .connection-blocks{
    width:100%;
/*     justify-content: space-between; */
}
.contact-right{
    display: block;
}
.contact-right iframe{
    width:100%;
    height:100%;
    border-radius: 14px;
}

@media(max-width:900px){
    .contact{
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .contact-left{
        width:100%;
    }
    .contact-right{
        width:100%;
    }
    .contact-block:nth-child(2),.contact-block:nth-child(1){
        order:2
    }
    .contact .connection-blocks img{
        width:55px;
    }
    .contact .connection-blocks{
        gap:10px;
        padding:0;
    }
    .contact-block-title,.contact-block-text{
        font-size: 20px;
        padding-right: 20px;
    }
    .contact-block-text br{
        display: none;
    }
}





.service-main-banner-service{
    margin-bottom: 35px;
}
/*.service-main-banner{*/
/*    border-radius: 30px;*/
/*    padding:40px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: flex-end;*/
/*    gap:40px;*/
/*    background-size: cover;*/
/*    height:720px;*/
/*}*/

.service-main-banner {
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 40px;
    background-size: cover;
    height: 720px;
    transition: transform 0.5s ease; /* Плавность анимации */
    overflow: hidden; /* Важно! Чтобы увеличенное изображение не выходило за границы */
    position: relative; /* Для псевдоэлемента */
}

@media(min-width:769px){
    .service-main-banner.blog{
        height:592px;
    }
}

/* Вариант 1: Через псевдоэлемент (рекомендуется) */
.service-main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit; /* Наследуем фоновое изображение */
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
    border-radius: 30px;
}

.service-main-banner:hover::before {
    transform: scale(1.1); /* Увеличение на 10% при наведении */
}

.banner-background-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
        object-fit: cover;
}
.banner-background-video video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.service-main-banner::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000073;
    z-index: 1;
}

.service-main-banner-title{
    font-size: 82px;
    color:white;
/*     max-width: 800px; */
    position:relative;
    z-index: 2;
    line-height:1;
}
.service-main-banner.blog .service-main-banner-title{
/*     max-width:1200px; */
}
.service-main-banner-text{
    font-size: 30px;
    color:white;
/*     max-width: 670px; */
    position:relative;
    z-index: 2;
}
.service-main-banner-subtitle{
	font-family: Inter;
	font-weight: 500;
	font-style: Medium;
	font-size: 50px;
	leading-trim: CAP_HEIGHT;
	line-height: 100%;
	letter-spacing: -1px;
	vertical-align: middle;
	color:white;
	z-index: 2;
}
.service-main-banner-button{
    width:360px;
    position:relative;
    z-index: 2;
}

@media(max-width:768px){
    .service-main-banner-service{
        margin-bottom: 20px;
    }
    .service-main-banner{
        border-radius: 19px;
        padding:12px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        gap:22px;
        background-size: cover;
        height:565px;
    }
    .service-main-banner-title{
        font-size: 40px;
        color:white;
        max-width: 800px;
    }
    .service-main-banner-text{
        font-size: 20px;
        color:white;
        max-width: 670px;
    }
    .service-main-banner-button{
        width:100%;
    }
	.service-main-banner-subtitle{
		font-size: 20px;
	}
	.service-main-banner::before{
	    background-position-x: -440px;
	}
}


.textblock-text{
    background: rgba(239, 242, 246, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
    padding:40px;
    font-size: 24px;
    line-height: 130%;
    border-radius: 14px;
}

@media(max-width:768px){
    .textblock-text{
        padding:20px;
        font-size: 20px;
    }
}


.vidy-blocks{
    display: flex;
    flex-direction: column;
    gap:20px;
}
.vidy-block{
    border-radius: 14px;
    padding:20px;
    background: rgba(239, 242, 246, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
    display: flex;
    justify-content: space-between;
    gap:10px;
    align-items: center;
    transition: 0.5s;
    transform: scale(1);
}
.vidy-block:hover{
    transform: scale(1.05);
}
.vidy-block-img{
    width:277px;
    display: block;
    transition: 0.5s;
    transform: scale(1);
}
.vidy-block:hover .vidy-block-img{
    transform: scale(1.1);
}
.vidy-block-content{
    max-width:520px;
    width:100%;
}
.vidy-block-title{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.vidy-block-text{
    font-size: 18px;
    line-height: 150%;
}
.vidy-block-button{
    width:277px;
    min-width:277px;
    height:40px;
}

@media(max-width:900px){
    .vidy-block{
        padding:12px;
        flex-direction: column;
    }
    .vidy-block-title{
        font-size: 20px;
        text-align: center;
    }
    .vidy-block-text{
        font-size: 16px;
        text-align:center;
    }
    .vidy-block-button{
        width: 100%;
    }
}



.preim-wrapp{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.preim-column{
    width:28%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 640px;
    gap:20px;
}
.preim-center{
    position: relative;
    width:64%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preim-center-title{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    width:250px;
}
.preim-block-title{
    font-size: 24px;
    font-weight: 600;
    margin-bottom:12px;
}
.preim-block-text{
    font-size:18px;
}

.preim-column:first-child *{
    text-align: end;
}

@media(max-width:800px){
    .preim-wrapp{
        flex-direction: column;
        gap:20px;
    }
    .preim-wrapp > div{
        width:100%;
    }
    .preim-column{
        min-height: 0;
    }
    .preim-column:first-child *{
        text-align: center;
    }
    .preim-center-title{
        width:202px;
    }
    .preim-center-title,.preim-block-title{
        font-size: 20px;
        text-align: center;
    }
    .preim-block-text{
        font-size:16px;
        text-align: center;
    }
    .preim-center-svg{
        margin-top: -70px;
        margin-bottom: -70px;
    }
}


.faq-contact{
    display: flex;
    gap:65px;
    border-radius: 14px;
    padding:20px;
    background: rgba(239, 242, 246, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
    align-items: center;
    /*margin-bottom: 40px;*/
}
.contact-mans-block-img{
    width:387px;
}
.faq-contact-content *{
    text-align: start;
    margin-left:0;
    margin-right:0;
}
.faq-contact-content .contact-mans-line{
    margin-left:20px;
}
.faq-contact + .faq-title{
    padding-top:50px;
}

@media(max-width:768px){
    .faq-contact{
        flex-direction: column;
        gap:20px;
        /*margin-bottom: 20px;*/
    }
    .contact-mans-block-img{
        width:100%;
        margin-bottom: 0;
    }
    .faq-contact-content{
        width: 100%;
    }
    .faq-contact-content .contact-mans-line{
        margin: 0 auto;
        margin-bottom: 12px;
    }
    .faq-contact-content *{
        text-align: center;
        margin:0 auto;
        margin-bottom: 12px;
    }
    .faq-contact-button{
        width: 100%;
        margin:0;
    }
    .faq-contact + .faq-title{
        padding-top:30px;
    }
}


.vidy-virt-blocks{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.vidy-virt-block{
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    position:relative;
    height:386px;
    
    transition: background-size 0.5s ease;
    overflow: hidden;
}
.vidy-virt-block img{
    position: absolute;
    top:0;
    left:0;
    object-fit: cover;
    transform: scale(1);
    transition: 0.5s;
    width:100%;
    height:100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
}
.vidy-virt-block:hover img{
    transform: translate(-50%, -50%) scale(1.1);
}
.vidy-virt-block:hover{
    /*background-size: 110% 110%;*/
}
.vidy-virt-block-shadow{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding:20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 41.65%, rgba(31, 21, 21, 0.5) 65.45%, rgba(11, 10, 16, 0.7) 100%);
    position:relative;
    z-index:2;
    height:100%;
}
.vidy-virt-block-title{
    font-size: 24px;
    font-weight: 600;
    color:white;
    line-height: 130%;
    text-align: center;
    margin-bottom: 10px;
}
.vidy-virt-block-button{
    background: white;
    color:rgba(74, 113, 151, 1);
    border: 1px solid rgba(74, 113, 151, 1);
    transition: 0.5s;
    width:100%;
    height:40px;
}
.vidy-virt-block-button:hover{
    border: 1px solid white;
    background:rgba(74, 113, 151, 1);
}
@media(max-width:1024px){
    .vidy-virt-blocks{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:768px){
    .vidy-virt-blocks{
        grid-template-columns: repeat(1, 1fr);
        gap:12px;
    }
    .vidy-virt-block{
        height:336px;
    }
    .vidy-virt-block-title{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .vidy-virt-block-button{
        background: transparent;
        border-color: white;
        color:white
    }
    .vidy-virt-block-button:hover{
        background:white;
        color:black;
    }
}


.supp-tabs-top{
    position: relative;
    background: rgba(239, 242, 246, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
    border-radius: 14px;
    padding:6px;
    display: flex;
    margin-bottom:22px;
}
.supp-tabs-slider{
    position: absolute;
    left: 6px;
    top: 6px;
    height: calc(100% - 12px);
    background: white;
    border: 1px solid rgba(189, 189, 189, 1);
    border-radius: 9px;
    transition: left 0.3s ease, width 0.3s ease, top 0.3s ease, height 0.3s ease;
    pointer-events: none;
    z-index: 0;
}
.supp-tab{
    position: relative;
    z-index: 1;
    padding:25px 15px;
    font-weight: 600;
    font-size:16px;
    color:rgba(74, 113, 151, 1);
    border: 1px solid transparent;
    transition: color 0.3s;
    border-radius: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}
.supp-tab.active{
    color: rgba(74, 113, 151, 1);
}

@media(max-width:768px){
    .supp-tabs-top{
        flex-direction: column;
    }
    .supp-tab{
        text-align: center;
    }
}


.supp4 .spketr-blocks{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.supp4 .spketr-block{
    height:528px;
    padding:22px;
}
.supp4 .spketr-block-title{
        align-items:flex-start;
        justify-content:flex-end;
        padding:0;
    }
@media(max-width:768px){
    .supp4 .spketr-blocks{
        grid-template-columns: repeat(1, 1fr);
    }
    
    .supp4 .spketr-block{
        height:134px;
    }
}




/* CSS - элементы скрыты по умолчанию */
.view {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Класс для видимых элементов */
.view.visible {
    opacity: 1;
    transform: translateY(0);
}


        .preim-center-svg path {
    transition: transform 0.2s ease-out;
    will-change: transform;
}

/* Убираем анимацию float при наведении, если она мешает */
.preim-center-svg:hover path {
    animation: none !important;
}





.serv-3-type-blocks{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    
}
.serv-3-type-block{
    background:#EFF2F6;
    border-color: 1px solid #CCD5D7;
    border-radius: 14px;
    padding:6px;
    padding-bottom:16px;
}
.serv-3-type-block-img{
    overflow:hidden;
    border-radius: 14px;
    margin-bottom: 10px;
}
.serv-3-type-block img{
    border-radius: 14px;
    display: block;
    width:100%;
    
    object-fit:cover;
    transform:scale(1);
    transition:0.5s;
}
.serv-3-type-block-img:hover img{
    transform:scale(1.1);
    transition:0.5s;
}
.serv-3-type-block-text{
    padding-left: 15px;
    padding-right:15px;
    font-size: 18px;
}

@media(max-width:1024px){
    .serv-3-type-blocks{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        
    }
}
@media(max-width:768px){
    .serv-3-type-blocks{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 22px;
        
    }
    .serv-3-type-block-text{
        padding-bottom:20px;
        text-align: center;
    }
}





.popup-cont,.popup-thank-cont,.popup-cont-subm{
    width:100vw;
    height:100vh;
    z-index: 20;
    position: fixed;
    top:0;
    left:0;
    display: flex;
    justify-content: center;
    align-items: center;
    background:rgba(0, 0, 0, 0.479);
}

.popup-form,.popup-thank{
    width:924px;
    max-height: 95vh;
    max-width:98%;
    background:white;
    border-radius: 20px;
    padding:40px;
    display: flex;
    flex-direction: column;
    gap:40px;
}

.popup-form-top{
        background: rgba(239, 242, 246, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
    padding:20px;
    border-radius: 14px;
    /* margin-bottom: 40px; */
}
.popup-form {
    max-height: 95vh;
    overflow-y: auto;
    
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.3) rgba(0,0,0,0.05);
}

.popup-form::-webkit-scrollbar {
    width: 5px;
}

.popup-form::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.popup-form::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
}

.popup-form::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.5);
}
.popup-close{
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
}
.popup-thank .popup-close,.popup-cont-subm .popup-close{
    margin-bottom:-40px;
}
.popup-form-top-title{
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}
.popup-form-top-text{
    font-size: 18px;
    line-height: 130%;
    text-align: center;
}
.popup-form-title{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    /* margin-bottom: 40px; */
}

@media(max-width:900px){
    .popup-form-top{
        padding:12px;
    }
    .popup-form,.popup-cont-subm{
        padding:12px;
        overflow-y: scroll;
        gap:20px;
    }
    .popup-form-top-title{
        margin-bottom:20px;
    }
    .popup-form-title{
        margin-bottom:20px;
    }
    .popup-thank .popup-close,.popup-cont-subm .popup-close{
        margin-bottom:-20px;
    }
    
}

.main-form-input, .main-form-pol{
    position: relative;
}
label.error{
    position: absolute;
    bottom:0;
    left:0;
    /*color:rgba(74, 113, 151, 1);*/
    color:red;
    font-size: 14px;
        bottom: -15px;

}




.faq2-blocks{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;

}
.faq2-block{
    padding:40px;
    display: flex;
    flex-direction: column;
    gap:40px;
    background: rgba(239, 242, 246, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
    border-radius: 14px;
}
.faq2-block-title{
    font-size: 50px;
    font-weight: 500;
    text-align: center;
}
.faq2-block .spketr-block{
    height:475px;
    
}

.spketr-block-faq{
    display: flex;
    flex-direction: column;
    gap:20px;
}

@media(max-width:900px){
    .faq2-blocks{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap:40px;
    }
    .faq2-block{
        padding:12px;
    }
    .faq2-block-title{
        font-size:30px;
        margin-bottom: -20px;
    }
    .faq2-block .spketr-block{
        height:295px;
    }
}

body.menu-open > :not(header) {
    position: relative;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}



/* Кнопка наверх */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(74, 113, 151, 1); /* Основной цвет */
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background: rgb(89 132 173); /* Темнее при наведении */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.scroll-top-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.scroll-top-icon {
    width: 24px;
    height: 24px;
}

/* Вариант с градиентом */
.scroll-top-btn.gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.scroll-top-btn.gradient:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Вариант с обводкой */
.scroll-top-btn.outline {
    background: white;
    color: #007bff;
    border: 2px solid #007bff;
}

.scroll-top-btn.outline:hover {
    background: #007bff;
    color: white;
}

/* Маленькая кнопка */
.scroll-top-btn.small {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
}

.small .scroll-top-icon {
    width: 20px;
    height: 20px;
}

/* Большая кнопка */
.scroll-top-btn.large {
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
}

.large .scroll-top-icon {
    width: 30px;
    height: 30px;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top-icon {
        width: 22px;
        height: 22px;
    }
}

/* Темная тема */
@media (prefers-color-scheme: dark) {
    .scroll-top-btn:not(.outline) {
        background: #4a9eff;
    }
    
    .scroll-top-btn:not(.outline):hover {
        background: #7ab8ff;
    }
}

.copy-tooltip{
    color:rgb(154 231 145);
}



.expert-blocks{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom:40px;
}
.expert-block{
    padding:12px;
    border-radius: 14px;
    background: rgba(239, 242, 246, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
    box-shadow: 0px 3px 13.5px 0px rgba(127, 155, 162, 0.15) inset;
    position: relative;
    top:0;
    transition: 0.5s;
    
}
/* .expert-block:hover{
    top:-10px;
} */
.expert-block-img{
    overflow: hidden;
    width:100%;
    height:245px;
    border-radius: 14px;
}
.expert-block-img img{
    display: block;
    object-fit: cover;
    width: 100%;
    height:100%;
    transition: 0.5s;
    transform: scale(1);
}
.expert-block:hover img{
    transition: 0.5s;
    transform: scale(1.1);
}
.expert-block-title{
    padding:14px;
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0px;
    vertical-align: middle;

}
.expert-block:hover .expert-block-title{
    color: rgba(74, 113, 151, 1);
}
.expert-block-button{
    max-width:360px;
    margin:0 auto;
}

@media(max-width:768px){
    .expert-blocks{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin-bottom:20px;
    }
    .expert-block{

    }
    .expert-block-title{
        font-size: 20px;
    }
    
}



.clients{

}
.clients-scroll{
    width:100%;
}
.clients-blocks{
    display: flex;
    gap:22px;
    width:100%;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 30px; /* небольшой отступ, чтобы контент не прилипал */
    scrollbar-width: none; /* Firefox: скрыть нативный скроллбар */
}
.clients-blocks::-webkit-scrollbar{
    display: none; /* Chrome/Edge/Safari: скрыть нативный скроллбар */
    width: 0;
    height: 0;
}

.clients-scrollbar{
    margin-top: 12px;
    height: 14px;
    border-radius: 14px;
    position: relative;
    user-select: none;
    background: rgba(239, 242, 246, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
    box-shadow: 0px 3px 13.5px 0px rgba(127, 155, 162, 0.15) inset;
    /* padding-left:20px;
    padding-right:20px; */
}
.clients-scrollbar-thumb{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: rgba(74, 113, 151, 1);
    border-radius: 22px;
    cursor: grab;
}
.clients-scrollbar-thumb:active{
    cursor: grabbing;
}

.clients-block{
    width:280px;
    min-width:280px;
    height:378px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:20px;
    border-radius: 14px;
    background: rgba(239, 242, 246, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
    box-shadow: 0px 3px 13.5px 0px rgba(127, 155, 162, 0.15) inset;
    overflow: hidden;

}
.clients-block img{
    width:100%;
    display: block;
    border: 1px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 0px 4px 0px rgba(127, 155, 162, 0.25);

}



.post-container{
    padding:40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(239, 242, 246, 1);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15) inset;

}
.post-text-section{
    padding-top:40px;
    padding-bottom: 0;
}
.post-text{
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;

}
.post-content{
    background: rgba(255, 255, 255, 1);
    border: 0.8px solid rgba(204, 213, 215, 1);
    box-shadow: 0px 3px 6.8px 0px rgba(127, 155, 162, 0.25) inset;
    box-shadow: 0px 3px 13.5px 0px rgba(127, 155, 162, 0.15) inset;
    border-radius: 14px;
    padding:40px;
}

.post-content > *{
    margin-bottom:20px;
    font-size:18px;
}
.post-content h2{
    font-size:24px;
}
.post-content a{
    color:rgba(74, 113, 151, 1);
}


@media(max-width:768px){
    .post-container{
        padding:12px;
    }
    .post-content{
        padding:12px;
    }
}