/*  */
.sec-03 .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-04-content .img-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
}

.sec-04-main {
    display: flex; gap: 24px; overflow: hidden;
}

.sec-04-main img {
    width: 50%;
    aspect-ratio: 9 / 10;
    object-fit: cover;
}

.sec-05-main,
.sec-06-main {
    position: relative;
    display: flex;
    flex-direction: column;
}

.sec-05-main img:nth-of-type(1) { width: 60%; }

.sec-05-main img:nth-of-type(2) { position: absolute; top: 11%;}

.sec-05-main img:nth-of-type(3) { width: 50%; align-self: flex-end;}

.sec-06-main img:nth-of-type(2) {
    position: absolute;
    top: -7vw;
    left: 50%;
    transform: translateX(-50%);
    width: 32%;
    aspect-ratio: 9 / 14;
}

.sec-07-main video { width: 100%; aspect-ratio: 16 / 9;}

.sec-08-main { display: flex; gap: 24px; overflow: hidden;}

.sec-08-main img {
    width: 50%;
    aspect-ratio: 16 / 9;
}

@media(max-width:767px) {
    .sec-04-main {
        flex-direction: column;
    }

    .sec-04-main img {
        aspect-ratio: 9 / 12;
        width: 100%;
    }

    .sec-08-main img {width:100%;}
}