.home-video {
    margin-top: 132px;
}

.home-video:hover .home-video-btn {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.home-video:hover h2 {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.home-video-content-video video {
    height: 810px;
    position: relative;
}

.home-video-content-video {
    position: relative;
}

.home-video-content-video::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 26, 26, 0.4);
    left: 0;
    top: 0;
    z-index: 1;
}

.home-video-content {
    position: relative;
    overflow: hidden;
}

.home-video-content-text {
    position: absolute;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: calc(100% - 310px);
    width: 100%;
    bottom: 166px;
    z-index: 99;
    /* max-width: 1920px; */
}

.home-video-btn {
    position: relative;
    max-width: 70px;
    width: 100%;
    height: 70px;
    cursor: pointer;
    margin-right: 20px;
    /* opacity: 0; */
    /* visibility: hidden; */
    display: none;
}

.home-video-btn::before {
    content: '';
    position: absolute;
    background-image: url('../images/home-video-btn.svg');
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.home-video-content-text h2 {
    max-width: 555px;
    width: 100%;
    margin: 0;

}

.home-video-content-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    height: 810px;
}

@media (min-width: 1441px) {
    .home-video-content-video video {
        height: auto;
        aspect-ratio: 1440/810;
        width: 100%;
    }
}

@media (min-width: 1921px) {
    .home-video-content-text {
        max-width: 1920px;
    }
}

@media (max-width: 1024px) {
    .home-video-content-text {
        max-width: calc(100% - 150px);
    }
}

@media (max-width: 767.96px) {
    .home-video-content-text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        max-width: 100%;
        padding: 0 30px;
        bottom: 86px;
    }

    .home-video-btn {
        margin-right: 0;
        margin-bottom: 40px;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        opacity: 1;
    }

    .home-video-content-text h2 {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        opacity: 1;
    }

    .home-video {
        margin-top: 60px;
    }
}