.home-about{
    overflow: hidden;
    >.container{
        padding: 100px 24px;
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        align-items: center;
        gap: 24px;
    }
}
@media screen and (width < 768px) {
    .home-about > .container{
        grid-template-columns: 100%;
        gap: 40px;
    }
}
@media screen and (width < 576px) {
    .home-about > .container{
        padding: 60px 24px;
        align-items: initial;
    }
}

.home-about-bg{
    position: absolute;
    z-index: -1;
    height: 100%;
    left: 24.8%;
    >img{
        height: 100%;
        max-width: none;
    }
}
@media screen and (width < 768px) {
    .home-about-bg{
        left: 0;
        top: 0;
        height: 80%;
    }
}

.home-about-content{
    grid-column: span 7;
    padding-right: 36px;
    >h3{
        color: var(--color-primary-1);
        margin-bottom: 24px;
    }
    >p{
        white-space: pre-line;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}
@media screen and (width < 1024px) {
    .home-about-content{
        grid-column: span 6;
        padding-right: 0;
    }
}
@media screen and (width < 768px) {
    .home-about-content{
        grid-column: initial;
    }
}
@media screen and (width < 576px) {
    .home-about-content{
        >p{
            margin-top: 24px;
            margin-bottom: 24px;
        }
    }
}


.home-about-img{
    grid-column: span 5;
    aspect-ratio: 3 / 2;
    >img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
    }
}
@media screen and (width < 1024px) {
    .home-about-img{
        grid-column: span 6;
    }
}
@media screen and (width < 768px) {
    .home-about-img{
        grid-column: initial;
    }
}