.content_banner {
    position: relative;
    height: calc(100vh - 199px);
}

@media  screen and (max-width: 1159px) {
    .content_banner {
        height: 592px;
    }
}

.content_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content_banner .content_banner_text {
    position: absolute;
    left: calc(50% - 580px);
    bottom: 100px;
    width: 664px;
    min-height: 240px;
    background-color: rgba(2, 2, 17, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    padding: 40px;
    font-size: 36px;
    line-height: 120%;
    color: #fff;
}

@media  screen and (max-width: 1159px) {
    .content_banner .content_banner_text {
        left: 60px;
    }
}

@media  screen and (max-width: 767px) {
    .content_banner .content_banner_text {
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 50%);
        width: calc(100% - 40px);
        min-height: unset;
        background-color: rgb(2, 2, 17);
        padding: 24px 10px;
        font-size: 20px;
    }
}

.content_page {
    max-width: 1160px;
    margin: 1rem auto;
    width: 100%;
}

@media  screen and (max-width: 1159px) {
    .content_page {
        padding: 0 60px;
    }
}

@media  screen and (max-width: 767px) {
    .content_page {
        padding: 0 20px;
        margin: 120px auto;
    }
}

.content_page ul {
    list-style-type: disc;
    list-style-position: inside;
}

.content_page ol ol {
    list-style: decimal;
}