body {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: rgba(0, 0, 0, 1);
  
    height: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

.content p {
    font-family: Raleway;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    margin: 5px 0px;
}

.content ol {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 10px 0px;
    text-align: left;
}

.content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 10px 0px;
    text-align: left;
}

.content ul li {
    position: relative;
    padding-left: 15px;
}

.content ul li:before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 6px;
    left: 0px;
    border-radius: 100%;
    background: #4192FB;

}



._container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0px 15px;
    box-sizing: content-box;
    overflow: hidden;
}

._container-shadow {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0px 15px;
    box-sizing: content-box;
}

._container-tv {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0px 15px;
    box-sizing: content-box;
}

.circle {
    width: 100px; /* Задайте нужный размер */
    height: 100px; /* Задайте нужный размер */
    background-color: #4192FB;
    border-radius: 50%;
    filter: blur(244px);
}

/* footer */

.footer {
    background-color: #242424;
}

.footer__body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 27px 0px 26px 0px;
    height: 72px;
}

.footer__body p {
    font-size: 16px;
    line-height: 18.78px;
    color: #fff;
}

/* main */

.main-block {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	background: url(../img/main-banner.webp); 
	background-repeat: no-repeat;
	background-position: center; 
	background-size: cover;
	
}

.main__body {
    padding: 147px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 1080px;
    height: 100%;
}

.main__body h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 75.14px;
    text-align: center;
    color: #fff;
    max-width: 778px;
}

.main__body p {
    font-size: 18px;
    line-height: 29px;
    text-align: center;
    max-width: 711px;
    color: #fff;
    margin: 30px 0px;
}

.main__body a {
    background-color: #4192FB;
    color: #fff;
    border-radius: 90px;
    font-size: 20px;
    font-weight: 600;
    line-height: 23.48px;
    text-align: center;
    padding: 21px 10px;
    max-width: 267px;
    width: 100%;
    transition: .3s;
    display: inline-block;
    text-decoration: none;
}

.main__body a:hover {
    animation: blur-and-shrink .6s forwards;
}

@keyframes blur-and-shrink {
    0% {
        filter: blur(0);
        background-color: #4192FB;
        color: #fff;
    }
    50% {
        filter: blur(150px);
        background-color: #fff;
        color: #4192FB;
    }
    100% {
        filter: blur(0);
        background-color: #fff;
        color: #4192FB;
    }
}

.main__body-block {
    position: relative;
}

.img-main {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: -100px;
}

.img-main img {
    position: relative;
    display: inline-block;
}

.img-main img {
    display: block;
    transition: transform 0.3s, filter 0.3s;
}

.image-container img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5); /* Подсветка */
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none; /* Чтобы не мешать взаимодействию с изображением */
}

.img-main img:hover::before {
    opacity: 1;
}

.img-main:hover img {
    transform: scale(1.05); /* Увеличение изображения при наведении */
    filter: brightness(1.2); /* Увеличение яркости при наведении */
}

@media(max-width: 768px) {
    .img-main {
        position: relative;
        bottom: 0;
        margin-top: 30px;
    }

    .main__body {
        min-height: 100%;
    }

    .main__body p {
        font-size: 14px;
        line-height: 20px;
        margin: 20px 0px;
    }

    .main__body h1 {
        font-size: 42px;
        line-height: 58px;
    }

    .main-block {
        margin-bottom: 60px;
    }
}

/* adv */

.adv__body h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 46.96px;
    margin-bottom: 30px;
}

.adv__item {
    max-width: 256px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.adv__item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.adv-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 21.94px;
    margin: 10px 0px;
}

.num {
    position: relative;
    color: rgba(65, 146, 251, 1);
    font-size: 70px;
    font-weight: 900;
    line-height: 78.02px;
    transition: .3s;
}

.num:before {
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid #C9C9C9;
    background-image: url(../img/gl.svg);
    background-color: rgba(255, 255, 255, 0.7);
    background-repeat: no-repeat;
    background-position: center;
    right: -23px;
    top: 23px;
}

.adv__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 4fr));
    gap: 29px;
}

.adv {
    margin-bottom: 120px;
}

.adv__item:hover .num {
    transform: scale(1.1);
    transition: .3s;
}

@media(max-width: 768px) {
    .adv__item {
        max-width: 100%;
    }

    .adv__body h2 {
        font-size: 32px;
        line-height: 42.96px;
        margin-bottom: 20px;
    }

    .adv__content {
        gap: 10px;
    }

    .adv {
        margin-bottom: 60px;
    }
}

/* var */

.var-zak {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 21px 58px;
    border: 1px dashed rgba(65, 146, 251, 1);
    border-radius: 20px;
}

.var-zak p {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    text-align: left;
    max-width: 574px;
}

.var-zak img {
    margin-right: 38px;
    max-width: 119px;
}

.var-zak a {
    background: rgba(65, 146, 251, 1);
    border: 1px solid rgba(65, 146, 251, 1);
    color: #fff;
    border-radius: 90px;
    font-size: 16px;
    font-weight: 600;
    line-height: 18.78px;
    text-align: center;
    max-width: 243px;
    width: 100%;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 48px;
    transition: .3s;
}

.var-zak a:hover {
    transition: .3s;
    background: #fff;
    color: rgba(65, 146, 251, 1);
}

.var-zak:hover img {
    transition: .3s;
}

.var-zak:hover img {
    transition: .3s;
    transform: scale(1.1);
}

.var {
    margin-bottom: 120px;
}

.var__body h2 {
    font-family: Raleway;
    font-size: 40px;
    font-weight: 800;
    line-height: 46.96px;
    margin-bottom: 30px;
}

/* price */

.price__item-1 a {
    background: rgba(65, 146, 251, 1);
    border: 1px solid rgba(65, 146, 251, 1);
    color: #fff;
    border-radius: 90px;
    font-size: 16px;
    font-weight: 600;
    line-height: 18.78px;
    text-align: center;
    max-width: 165px;
    width: 100%;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}



.num-price {
    transition: .3s;
}

.price__item-1:hover .num-price {
    transform: scale(1.1);
    transition: .3s;
}

.price__item-2:hover .num-price {
    transform: scale(1.1);
    transition: .3s;
}

.price__item-1 a:hover {
    transition: .3s;
    background: #fff;
    color: rgba(65, 146, 251, 1);
}

.var__body-block .price__item-1 .price-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 42.26px;
    text-align: left;
    margin-bottom: 18px;
    color: #22344C;
}

.var__body-block .price__item-1 {
    padding: 30px;
    max-width: 100%;
    width: 100%;
    border-radius: 20px;
    background: url(../img/price-bg1.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.price__item-1 .price-con-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
}

.price__item-1 .price-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px 31px;
}

.price__item-1 .price-con-item p {
    font-size: 32px;
    font-weight: 600;
    line-height: 37.57px;
    color: rgba(34, 52, 76, 1);
}


.price__item-1 .price-con-item p span {
    font-size: 16px;
    line-height: 18.78px;
}


/* 2 */
.price__item-2 a {
    background: rgba(65, 146, 251, 1);
    border: 1px solid rgba(65, 146, 251, 1);
    color: #fff;
    border-radius: 90px;
    font-size: 16px;
    font-weight: 600;
    line-height: 18.78px;
    text-align: center;
    max-width: 165px;
    width: 100%;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    
}

.price__item-2 a:hover {
    transition: .3s;
    background: #fff;
    color: rgba(65, 146, 251, 1);
}

.var__body-block .price__item-2 .price-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 42.26px;
    text-align: left;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 1);
}

.var__body-block .price__item-2 {
    padding: 30px;
    max-width: 100%;
    width: 100%;
    border-radius: 20px;
    background: url(../img/price-bg2.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.price__item-2 .price-con-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
}

.price__item-2 .price-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px 31px;
}

.price__item-2 .price-con-item p {
    font-size: 32px;
    font-weight: 600;
    line-height: 37.57px;
    color: rgba(255, 255, 255, 1);
}


.price__item-2 .price-con-item p span {
    font-size: 16px;
    line-height: 18.78px;
}

.price__item-2, .price__item-1 {
    position: relative;
    height: auto;
}

.num-price {
    font-family: Raleway;
    font-size: 200px;
    font-weight: 800;
    line-height: 234.8px;
    opacity: 0.1;
    color: rgba(255, 255, 255, 1);
    position: absolute;
    bottom: 0;
    right: 0;
    bottom: -69px;
    right: 12px;
}

.btn-price span {
    font-size: 20px;
    font-weight: 400;
    line-height: 23.48px;
    color: rgba(255, 255, 255, 1);
}

.btn-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 21px;
    margin-top: 40px;
}

.var__body-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 2fr));
    gap: 20px;
    margin-bottom: 20px;
}

.price-con-item img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

@media(max-width: 768px) {

    .var__body-block .price__item-1 .price-title, .var__body-block .price__item-2 .price-title {
        font-size: 22px;
        line-height: 30.26px;
    }

    .price__item-1 .price-con-item p, .price__item-2 .price-con-item p {
        font-size: 18px;
        line-height: 28.57px;
    }

    .btn-price {
        flex-direction: column;
        align-items: center;
    }

    .var__body h2 {
        font-size: 32px;
        line-height: 42.96px;
        margin-bottom: 20px;
    }

    .var-zak {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .var-zak p {
        font-size: 18px;
        line-height: 28px;
        max-width: 100%;
        text-align: center;
    }

    .var-zak a {
        margin-left: 0;
    }

    .var-zak img {
        margin-right: 0;
    }
}

@media(max-width: 400px) {
    .var__body-block {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

/* zak-1 */

.zak-1 {
    background: url(../img/bg-zak1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 120px;
}

.zak1__body {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    min-height: 550px;
    height: 100%;
}

.zak1-titel {
    font-size: 40px;
    font-weight: 800;
    line-height: 46.96px;
    color: #fff;
    max-width: 500px;
}

.zak1-content {
    margin-left: 64px;
}

.zak1-content p {
    font-size: 30px;
    font-weight: 400;
    line-height: 35.22px;
    text-align: left;
    color: #fff;
    max-width: 500px;
    margin: 20px 0px 40px 0px;
}

.zak1-content a {
    background: rgba(65, 146, 251, 1);
    border: 1px solid rgba(65, 146, 251, 1);
    color: #fff;
    border-radius: 90px;
    font-size: 16px;
    font-weight: 600;
    line-height: 18.78px;
    text-align: center;
    max-width: 305px;
    width: 100%;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.zak1-content a:hover {
    transition: .3s;
    background: #fff;
    color: rgba(65, 146, 251, 1);
}

.zak1-img {
    position: absolute;
    right: 64px;
    bottom: 0;
}

.zak1-img img {
    max-width: 445px;
    width: 100%;
    min-width: 400px;
    height: 595px;
    object-fit: contain;
}

.zak1-content, .zak1-img {
    z-index: 1;
}

@media(max-width: 950px) {
    .zak1-img {
        right: 0;
    }

    .zak1__body {
        flex-direction: column;
        align-items: center;
        padding: 30px 10px 0px 10px;
        gap: 15px;
        min-height: 100%;
    }

    .zak1-content {
        margin-left: 0px;
    }

    .zak1-img {
        position: relative;
    }

    .zak1-content {
        flex-direction: column;
        display: flex;
        align-items: center;
    }

    .zak1-content p, .zak1-titel {
        text-align: center;
    }

    .zak1-img img {
        min-height: 100%;
        min-width: 100%;
        height: 100%;
    }
}

@media(max-width: 768px) {
    .zak1-titel {
        font-size: 32px;
        line-height: 42.96px;
        margin-bottom: 20px;
    }

    .zak1-content p {
        font-size: 22px;
        line-height: 28.22px;
        margin: 20px 0px 20px 0px;
    }

    .zak-1 {
        margin-bottom: 60px;
    }
}

/* zak2 */

.zak-2 {
    background: url(../img/bg-zak2.svg);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 120px;
    overflow-x: clip;
}

.zak2__body {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 572px;
    height: 100%;
    position: relative;
}

.zak2-img {
    position: absolute;
    bottom: -98px;
    right: -325px;
    max-width: 1113px;
    width: 100%;
    height: 719px;
}

.zak2-titel {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    line-height: 46.96px;
    max-width: 408px;
}

.zak2-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #fff;
    max-width: 481px;
    margin: 18px 0px 20px 0px;
}

.zak2-content a {
    background: rgba(65, 146, 251, 1);
    border: 1px solid rgba(65, 146, 251, 1);
    color: #fff;
    border-radius: 90px;
    font-size: 16px;
    font-weight: 600;
    line-height: 18.78px;
    text-align: center;
    max-width: 246px;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.zak2-img {
    z-index: 0;
}

.zak2-content {
    z-index: 1;
}

.zak2-img img {
    transition: .3s;
}

.zak2-content a:hover {
    transition: .3s;
    background: #fff;
    color: rgba(65, 146, 251, 1);
}

.zak2__body:hover .zak2-img img  {
    transition: .3s;
    transform: scale(1.02);
}

@media(max-width: 1000px) {
    .zak2-img {
        height: 100%;
        max-width: 100%;
    width: 100%;
    }
}

@media(max-width: 768px) {
    .zak2__body {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .zak2__body {
        padding: 30px 10px 0px 10px;
    }

    .zak2-titel, .zak2-content p {
        text-align: center;
        max-width: 100%;
    }

    .zak2-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .zak2-img {
        position: relative;
        bottom: 0px;
        right: 0px;
        height: 100%px;
    }

    .zak2-titel {
        font-size: 32px;
        line-height: 42.96px;
        margin-bottom: 20px;
    }

    .zak2-content p {
        font-size: 22px;
        line-height: 28.22px;
        margin: 20px 0px 20px 0px;
    }
}

/* faq */

.faq {
    margin-bottom: 120px;
}

.acc-item {
    box-shadow: 0px 4px 28.5px 0px rgba(0, 0, 0, 0.07);
    background: rgba(255, 255, 255, 1);
    width: 100%;
    padding: 18px 0px;
    border-radius: 9px;
}

.faq__body h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 46.96px;
    max-width: 800px;
    width: 100%;
    margin-bottom: 30px;
}

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

.line-faq {
    border: 1px solid rgba(222, 222, 222, 1);
    margin-bottom: 22px;
    margin-top: 17px;
}

.acc-title,
.content-faq {
    margin: 0px 30px 0px 40px;
}

.acc-item .acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.uslugi-content-acc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.acc-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.arrow-faq {
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background: rgba(65, 146, 251, 1);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.arrow-faq::after {
    content: "";
    width: 12px;
    height: 32px;
    background: url(../img/+1.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.acc-title.arrow-price-active p {
    color: rgba(65, 146, 251, 1);
}

.acc-title.arrow-price-active .arrow-faq {
    background: rgba(141, 141, 141, 1);
    transition: 0.3s;
}

.acc-title.arrow-price-active .arrow-faq::after {
    background: url(../img/-1.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.acc-title p {
    font-weight: 400;
    font-size: 20px;
    line-height: 23.83px;
}

.content-faq p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

@media (max-width: 768px) {
    .faq__body h2 {
        font-size: 32px;
        line-height: 42.96px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .acc-item {
        padding: 16px 0px;
    }

    .acc-title,
    .content-faq {
        margin: 0px 20px;
    }

    .acc-title p {
        font-size: 18px;
        line-height: 21.13px;
    }

    .arrow-faq {
        width: 28px;
		min-width: 28px;
        height: 28px;
    }

    .arrow-faq::after {
        width: 8px;
        height: 22px;
    }

    .faq {
        margin-bottom: 60px;
    }
}

/* stat */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 46.96px;
    margin-bottom: 30px;
}

.slider__item-stat {
    max-width: 368px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.item-stat-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 23.48px;
    text-align: left;
    margin: 20px 0px 8px 0px;
}

.slider__item-stat span {
    font-family: Raleway;
    font-size: 13px;
    font-weight: 400;
    line-height: 15.26px;
    text-align: left;
}

.slider__item-stat p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    margin: 10px 0px;
}

.slider__item-stat a {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: rgba(65, 146, 251, 1);
    position: relative;
}

.slider__item-stat a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(65, 146, 251, 1);
    bottom: 3px;
    left: 0;
}

.slider__item-stat a:hover:before {
    display: none;
}

.item-stat-img {
    width: 100%;
    overflow: hidden;
    max-width: 368px;
    height: 244px;
    background-color: rgba(213, 213, 213, 1);
    box-shadow: 0px 4px 28.5px 0px rgba(0, 0, 0, 0.07);
}

.item-stat-img img {
    max-width: 368px;
    height: 244px;
    object-fit: cover;
}

.stat {
    margin-bottom: 70px;
}

.mySwiper-stat {
    padding-bottom: 50px;
}

.swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    opacity: 0.1;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: rgba(65, 146, 251, 1);
}

@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
    100% {
      transform: scale(1);
    }
  }
  .slider__item-stat a {
    animation: pulse 2s infinite; 
  }

@media(max-width: 850px) {
    .item-stat-img img, .item-stat-img, .slider__item-stat  {
        max-width: 100%;
    }
}

@media(max-width: 768px) {
    .stat h2 {
        font-size: 32px;
        line-height: 42.96px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .zak-2 {
        margin-bottom: 60px;
    }
}

/* mark-tv */

.item-tv {
    max-width: 100%;
    width: 100%;
    height: 158px;
    overflow: hidden;
    border-radius: 10px;
    transition: .3s;
}

.item-tv:hover {
    transform: scale(1.05);
    transition: .3s;
}

.item-tv img {
    width: 100%;
    height: 153px;
    object-fit: cover;
    box-shadow: 0px 4px 28.5px 0px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
}

.mark-tv {
    background: url(../img/tv-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mark-tv {
    height: 100%;
    overflow: hidden;
    padding: 120px 0px;
}

.mark-tv h2 {
    font-family: Raleway;
    font-size: 40px;
    font-weight: 800;
    line-height: 46.96px;
    text-align: left;
    color: #fff;
    max-width: 600px;
    margin-bottom: 30px;
    margin-left: 50px;
}

.mySwiper-tv {
    overflow: visible;
    padding-bottom: 76px;
}

.mySwiper-tv .swiper-pagination .swiper-pagination-bullet  {
    background: #383941;
    opacity: 1;
}

.mySwiper-tv .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: rgba(65, 146, 251, 1);
}

.swiper-slide.item-tv {
    background: none;
}

._container-tv {
    position: relative; 
}

.item-tv {
    opacity: 0.5;
}
.item-tv.swiper-slide-active, .item-tv.swiper-slide-next {
    opacity: 1;
}

.item-tv.swiper-slide-next + .swiper-slide.item-tv {
    opacity: 1;
}

.mark-tv {
    margin-bottom: 120px;
}

@media(max-width: 768px) {
    .mark-tv  {
        padding: 30px 0px
    }

    .mark-tv h2 {
        margin-left: 0;
        font-size: 32px;
        line-height: 42.96px;
        margin-bottom: 20px;
    }
}

/* faq */

.faq-slider {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    padding: 20px 20px 25px 20px;
    box-shadow: 0px 4px 28.5px 0px rgba(0, 0, 0, 0.07);
}

.faq-slider {
    text-align: left;
    height: auto;
    border-radius: 10px;
}

.mySwiper-faq {
    overflow: visible;
    padding-bottom: 75px;
}

.faq-slider p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.faq-sl-title {
    font-family: Raleway;
    font-size: 13px;
    font-weight: 600;
    line-height: 15.26px;
    margin-bottom: 5px;
}

.faq-sl-num {
    font-family: Raleway;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.09px;
    opacity: 0.4;
}

.faq-prev {
    width: 53px;
    height: 53px;
    background: rgba(65, 146, 251, 1);
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-family: Raleway;
    font-size: 24px;
    font-weight: 800;
    line-height: 28.18px;
    text-align: center;
    color: white;
}

.faq-slider-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    gap: 17px;
}

.faq-slider {
    opacity: 0.5;
}
.faq-slider.swiper-slide-active, .faq-slider.swiper-slide-next {
    opacity: 1;
}

.faq-slider.swiper-slide-next + .swiper-slide.faq-slider {
    opacity: 1;
}

.faq-ot h2 {
    font-family: Raleway;
    font-size: 40px;
    font-weight: 800;
    line-height: 46.96px;
    text-align: left;
    margin-bottom: 30px;
}

.faq-ot {
    overflow: hidden;
}

@media(max-width: 768px) {
    .mark-tv, .var {
        margin-bottom: 60px;
    }
}

.faq-ot {
    position: relative;
}

.faq-ot:before {
    content: '';
    background: url(../img/q.svg);
    height: 119px;
    width: 119px;
    position: absolute;
    top: 0;
    right: 88px;
}

.faq-slider {
    transition: .3s;
}

.faq-slider:hover {
    transform: scale(1.05);
    transition: .3s;
}

/* pult */

.main-txt__content a {
    background: rgba(65, 146, 251, 1);
    border: 1px solid rgba(65, 146, 251, 1);
    color: #fff;
    border-radius: 90px;
    font-size: 16px;
    font-weight: 600;
    line-height: 18.78px;
    text-align: center;
    max-width: 197px;
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    margin-top: 30px;
}

.main-txt__content a:hover {
    transition: .3s;
    background: #fff;
    color: rgba(65, 146, 251, 1);
}

.main-txt__content h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 46.96px;
    text-align: left;
    max-width: 400px;
    margin-bottom: 30px;
}

.main-txt__body {
    display: flex;
    flex-direction: row;
    justify-content: end;
    position: relative;
}

.main-txt__content {
    max-width: 590px;
    width: 100%;
    z-index: 1;
    background-color: #fff;
    padding: 20px 0px 80px 20px;
}

.main-txt__img {
    position: absolute;
    left: -122px;
    bottom: -68px;
    z-index: -1;
}

.main-txt__img img {
    max-width: 898px;
    height: 690px;
}

.main-txt__body {
    transition: .3s;
}

.main-txt__body:hover .main-txt__img img {
    transform: scale(1.1);
    transition: .3s;
}

@media(max-width: 768px) {
    .main-txt__content {
        padding: 0;
        max-width: 100%;
    }

    .main-txt__img {
        display: none;
    }

    .main-txt__body {
        align-items: center;
        justify-content: center;
    }

    .main-txt__block {
        margin: 60px 0px;
    }

    .main-txt__content h2 {
        margin-left: 0;
        font-size: 32px;
        line-height: 42.96px;
        margin-bottom: 20px;
        max-width: 100%;
    }
}

/* instr */

.instr {
    margin: 80px 0px;
}

.inst-content {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    max-width: 653px;
    width: 100%;
    margin-left: 60px;
}

.inst-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 46.96px;
    text-align: left;
    margin-bottom: 30px;
}

.item-instr {
    align-items: flex-start;
}

.instr-img {
    max-width: 427px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    height: 408px;
}

.pag-instr .swiper-button-prev, .pag-instr .swiper-rtl .swiper-button-next {
    left: 0;
    right: 0;
    position: relative;
}

.pag-instr .swiper-button-next, .pag-instr .swiper-rtl .swiper-button-prev {
    left: 0;
    right: 0;
    position: relative;
}

.pag-instr {
    
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    max-width: 653px;

    flex-direction: row;
    justify-content: space-between;
}

.inst-content .content {
    padding-bottom: 80px;
}

.pag-instr .swiper-pagination {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
}

.pag-instr .swiper-pagination.swiper-pagination-fraction {
    width: max-content;
}

.pag-instr .swiper-pagination span {
    font-family: Raleway;
    font-size: 40px;
    font-weight: 400;
    line-height: 46.96px;
    text-align: left;
    color: rgba(0, 0, 0, 1)
}

.pag-btn {
    display: flex;
    flex-direction: row-reverse;
    max-width: 99px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.tt__pag {
    max-width: 100%;
    width: 100%;
    position: relative;
    bottom: 60px;

    display: flex;
    justify-content: end;
}

.pag-btn div {
    color: rgba(65, 146, 251, 1);
    border: 1px solid rgba(65, 146, 251, 1);
    border-radius: 100%;
    width: 41px;
    height: 41px;
}

.pag-btn .swiper-button-next:after, .pag-btn .swiper-button-prev:after {
    font-size: 20px;
}

.pag-btn .swiper-button-next, .pag-btn .swiper-button-prev {
    top: 0;
    margin-top: 0;
}

@media(max-width: 1170px) {
    .tt__pag {
        bottom: 0;
        justify-content: center;
        padding-top: 20px;
    }

    .inst-content .content {
        padding: 0;
    }

    .pag-instr {
        max-width: 300px;
    }
}

@media(max-width: 768px) {
    .inst-content {
        margin-left: 0;
        max-width: 100%;
    }

    .item-instr {
        flex-direction: column-reverse;
        gap: 15px;
        align-items: center;
    }

    .instr-img {
        max-width: 100%;
        height: 100%;
    }
    
    .inst-title {
        margin-left: 0;
        font-size: 32px;
        line-height: 42.96px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .instr {
        margin: 60px 0px;
    }

    .faq-ot:before {
        right: 0;
    }
}

/* popup */

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.popup-content {
    margin: 15% auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.instr-img {
    cursor: pointer;
    transition: .3s;
}

.instr-img:hover {
    transform: scale(1.07);
    opacity: 0.6;
    transition: .3s;
}

/* header */

.nav ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 18.78px;
    text-align: left;
    color: #fff;
}

.nav ul li a:hover {
    text-decoration: underline;
}

.nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px 70px;
    flex-wrap: wrap;
    justify-content: center;
}

.wrapper {
    position: relative;
}

.header {
    position: fixed;
    z-index: 9999;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 36px 0px;
    transition: background-color 0.3s, top 0.3s;
}

.close {
    display: none;
}

.menu__icon {
    display: none;
  }



@media(max-width: 750px) {

    .main__body {
        padding-top: 60px;
    }

    .header._active {
        left: 0;
        background-color: rgb(36, 36, 36);
    }

    .header {
        height: 100%;
        left: -100%;
    }

    .nav ul  {
        flex-direction: column;
    }

    .close {
        display: flex;
        position: absolute;
        top: 30px;
        right: 30px;
    }


    .menu__icon {
        z-index: 11;
        display: block;
        position: relative;
        width: 22px;
        height: 17px;
        cursor: pointer;
      }

      .menu__icon {
        top: 30px;
        right: 30px;
        position: fixed;
      }
    
      .menu__icon:before,
      .menu__icon span,
      .menu__icon:after {
        left: 0;
        position: absolute;
        height: 3px;
        width: 100%;
        transition: all 0.3s ease 0s;
        border-radius: 90px;
        background-color: rgba(65, 146, 251, 1);
      }
    
      .menu__icon:before,
      .menu__icon:after {
        content: "";
      }
    
      .menu__icon:before {
        top: 0;
      }
    
      .menu__icon:after {
        bottom: 0;
      }
    
      .menu__icon span {
        top: 50%;
        transform: scale(1) translate(0px, -50%);
      }
    
      .menu__icon._active span {
        transform: scale(0) translate(0px, -50%);
      }
      .menu__icon._active::before {
        top: 48%;
        transform: rotate(-45deg) translate(0px, -50%);
      }
      .menu__icon._active::after {
        bottom: 47%;
        transform: rotate(45deg) translate(0px, 50%);
      }

      .menu__icon {
        order: 3;
      }

      .menu__icon {
        margin-left: 12px;
      }
}

@media(max-width: 600px) {
    .header {
        background-color: #242424;
    }
}

.faq-slider {
    justify-content: flex-start;
}

.body__sing {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 80px 0px 30px 0px;
}

.title-sing h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 75.14px;
    text-align: left;
}

.slider__item-stat p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header__any a {
    background: rgba(65, 146, 251, 1);
    border: 1px solid rgba(65, 146, 251, 1);
    color: #fff;
    border-radius: 90px;
    font-size: 16px;
    font-weight: 600;
    line-height: 18.78px;
    text-align: center;
    max-width: 246px;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.header__any {
    background-color: rgb(36, 36, 36);
    padding: 15px 0px;
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 15px 0px;
    transition: background-color 0.3s, top 0.3s;
}

/* popinf */

.popup-popinf {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
	z-index: 9999;
}

.popup-content-popinf {
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.close-btn-popinf {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
	color: white;
}

.popup-content-popinf {
	background: rgb(36, 36, 36);
	position: relative;
}

.popup-content-popinf p{
	text-align: center;
	font-size: 20px;
	line-height: 24px;
	color: white;
	margin-bottom: 25px;
}

.popup-content-popinf form {
	background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
	    DISPLAY: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-content-popinf input {
	border: 1px solid rgb(36, 36, 36);
	border-radius: 10px;
	padding: 10px 15px;
}

.popup-content-popinf button {
	border: 1px solid rgb(36, 36, 36);
	border-radius: 20px;
	padding: 10px 15px;
	color: white;
	background: rgb(36, 36, 36);
	transition: .3s;
}

.popup-content-popinf button:hover {
	transition: .3s;
	background: white;
	color: rgb(36, 36, 36);
}

.title-sing h1 {
    margin-top: 30px;
}

.content h2 {
    font-size: 40px;
    line-height: 46px;
    margin: 15px 0px 20px 0px;
}

.content ol {
  list-style: none; /* Убираем стандартные маркеры */
  counter-reset: my-counter; /* Создаем счетчик */
  padding-left: 0; /* Убираем стандартный отступ */
}

.content ol li {
  counter-increment: my-counter; /* Увеличиваем счетчик для каждого элемента */
  margin-bottom: 0.5em; /* Добавляем отступ между пунктами */
  position: relative; /* Необходимо для позиционирования псевдоэлемента */
  padding-left: 2em; /* Добавляем отступ слева для текста */
}

.content ol li::before {
  content: counter(my-counter) ". "; /* Добавляем номер и точку */
  position: absolute; /* Позиционируем псевдоэлемент абсолютно */
  left: 0; /* Позиционируем слева */
  color: #007BFF; /* Цвет номера */
  font-weight: bold; /* Жирный шрифт для номера */
}

.content ol {
    gap: 8px;
}

figure {
    display: flex;
    justify-content: center;
    border-radius: 20px;
    margin: 10px 0px;
}

figure img {
    border-radius: 20px;
}

.content h3 {
    font-size: 25px;
    line-height: 30px;
    margin: 15px 0px 20px 0px;
}

@media(max-width: 768px) {
    .title-sing h1 {
        font-size: 36px;
        line-height: 40.14px;
    }
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5em;
  margin: 2em 0;
}

.post-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 1em;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}

.post-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.post-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1em;
}

.post-title {
  margin: 0 0 0.5em 0;
  font-size: 1.2em;
}

.post-excerpt {
  color: #555;
  font-size: 0.96em;
}

.cat-blog {
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 3fr));
    align-items: baseline;
}

.cat-tt {
    margin-top: 100px;
}