#about-block {
    background: var(--bgDark);
    position: relative;
    padding: 60px 0;
}

#about-block .image-left {
    position: absolute;
    width: 875px;
    height: 600px;
    top: 0;
    left: 0;
}

#about-block .image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#about-block .about-top .right-side {
    width: 50%;
    margin-left: auto;
    padding-right: calc((100% - 1170px) / 2);
}

#about-block .about-top .right-side .title {
    width: 80%;
}

#about-block .about-top .right-side .desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    color: var(--text);
    margin: 20px 0 40px;
}

#about-block .about-top .right-side .btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    max-width: fit-content;
    width: fit-content;
}

#about-block .about-bottom .bottom-wrap {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-end;
}

#about-block .about-bottom .bottom-wrap .about-numbers {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

#about-block .about-bottom .bottom-wrap .about-numbers .numbers-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 270px;
}

#about-block .about-bottom .bottom-wrap .about-numbers .numbers-item .num {
    font-weight: 600;
    font-size: 60px;
    line-height: 100%;
    color: var(--secondary);
}


#about-block .about-bottom .bottom-wrap .about-numbers .numbers-item .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    color: var(--text);
}

#about-block .about-bottom .bottom-wrap .video-block {
    position: relative;
}

#about-block .about-bottom .bottom-wrap .video-block::before {
    position: absolute;
    content: "";
    background: linear-gradient(360deg, rgba(32, 28, 26, 0.8) 0%, rgba(32, 28, 26, 0) 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

#about-block .about-bottom .bottom-wrap .video-block .about-media {
    display: flex;
    width: fit-content;
}

#about-block .about-bottom .bottom-wrap .video-block .about-media img {
    max-width: 270px;
    width: 270px;
    max-height: 270px;
    height: 270px;
}

#about-block .about-bottom .bottom-wrap .video-block .text-video {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: fit-content;
    height: fit-content;
    pointer-events: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: var(--wh);
    z-index: 10;
}

#about-block .about-bottom .bottom-wrap .video-block .play-btn {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .6s;
}

#about-block .about-bottom .bottom-wrap .video-block:hover .play-btn {
    background: var(--wh);
    transition: .6s;
}

#about-block .about-bottom .bottom-wrap .video-block .play-btn svg path {
    transition: .6s;
}

#about-block .about-bottom .bottom-wrap .video-block:hover .play-btn svg path {
    transition: .6s;
    stroke: var(--primary);
}

@media (max-width: 1800px) {
    #about-block {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    #about-block .image-left {
        position: relative;
        width: 100%;
        height: 450px;
        order: 3;        
    }
    #about-block .about-top {
        order: 1;
    }
    #about-block .about-bottom {
        order: 2;
    }
    #about-block .about-top .right-side {
        padding: 0 calc((100% - 1170px) / 2);
        width: 100%;
    }
}

@media (max-width: 1240px) {
    #about-block .about-bottom .bottom-wrap .about-numbers .numbers-item {
        max-width: fit-content;
        width: fit-content;
    }
    #about-block .about-bottom .bottom-wrap .about-numbers {
        flex-wrap: wrap;
    }
    #about-block .about-top .right-side .desc {
        margin: 20px 0;
    }
}

@media (max-width: 1200px) {
    #about-block .about-top .right-side {
        padding: 0 15px;
    }
    #about-block .image-left {
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    #about-block {
        padding: 40px 0;
    }
}

@media (max-width: 620px) {
    #about-block .about-bottom .bottom-wrap .about-numbers {
        flex-direction: column;
        align-items: center;
    }
    #about-block .about-bottom .bottom-wrap {
        flex-direction: column;
        align-items: center;
    }
}