#homeSection {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: calc(100vh - 150px);
}

#homeSection .home-media,
#homeSection .home-content {
    width: 50vw;
    height: 100%;
}

#homeSection .home-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#homeSection .home-content {
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    
    padding: 60px;
    
    color: #353535;
    text-align: center;
}

#homeSection .home-content .home-main-logo, 
#homeSection .home-content .home-main-logo img {
    width: 100%;
}

#homeSection .home-content .home-main-description,
#homeSection .home-content .home-main-description strong {
    font-size: 28px;
    line-height: 40px;
}

@media (max-width: 992px) {
    #homeSection .home-content {
        padding: 30px;
    }

    #homeSection .home-content .home-main-description,
    #homeSection .home-content .home-main-description strong {
        font-size: 24px;
        line-height: 36px;
    }
}