.about_section {
    background: linear-gradient(-25deg, #b0d6ed 50%, #feabaf 50%);
}

.about_section .about_contain {
    display: grid;
    grid-template-columns: 45% 55%;
}

.about_section .info_contain {
    padding: 10% 10% 10% 5%;
}

.about_section .info_contain h1 {
    color: #960404;
    font-size: 50px;
}

.about_section .info_contain p {
    color: #5b5b5a;
    margin: 5px 0;
}

@media (max-width: 996px) {
    .about_section {
        background: linear-gradient(-25deg, #b0d6ed 50%, #feabaf 50%);
    }
    .about_section .about_contain {
        grid-template-columns: 100%;
    }
    .about_section .info_contain {
        padding: 0 10% 10% 10%;
    }
    .about_section .info_contain h1 {
        font-size: 30px;
    }
    .about_section .info_contain p {
        text-align: justify;
    }
}

.about_v2_section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 70px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_v2_section .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.about_v2_section .bg.mobile {
    display: none;
}

.about_v2_section .content {
    width: 80%;
    padding: 40px 80px;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(1px);
}

.about_v2_section .content h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 40px;
}

.about_v2_section .content p {
    color: #fff;
    margin-bottom: 15px;
    text-align: justify;
}

@media (max-width: 996px) {
    .about_v2_section .content {
        width: 90%;
        padding: 20px 20px;
        padding-bottom: 30px;
    }

    .about_v2_section .content h2 {
        font-size: 45px;
        margin-bottom: 10px;
    }

    .about_v2_section .bg.mobile {
        display: block;
    }

    .about_v2_section .bg.desktop {
        display: none;
    }
}
