.banner03 {
    position: relative;
    padding-top: 2rem;
}

.banner03-background {
    position: absolute;
    top: 0;
    width: 100%;
    height: 80%;
    z-index: 0;
}

.banner03-tile {
    position: relative;
    width: 90%;
    z-index: 1;
    display: flex;
    margin: 0 auto;
    padding: 3rem 0;
}

.banner03-image {
    width: 45%;
}

.banner03-image img{
    width: 100%;
}

.banner03-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 55%;
    padding: clamp(1rem, 2vw, 6rem) 3rem;
}

#banner03 .banner03-categorytitle {
    font-family: 'DM Serif Display';
    font-size: clamp(3rem, 3vw, 5.5rem);
    font-weight: 900;
    color: #333D28;
    letter-spacing: -0.1rem;
    margin-bottom: 4rem;
}

#banner03 .banner03-suptitle {
    color: #333D28;
    opacity: 0.6;
    text-transform: uppercase;
    opacity: 0.6;
    font-size: clamp(1.4rem, 3vw, 1.5rem);
    letter-spacing: 0.045rem;
}

#banner03 .banner03-suptitle span {
    margin: 0 1.2rem;
}

#banner03 .banner03-maintitle {
    font-family: 'DM Serif Display';
    font-size: clamp(3rem, 3vw, 4.5rem);
    line-height: clamp(3.5rem, 3vw, 5rem);
    font-weight: 700;
    color: #333D28;
    margin-top: 1rem;
}

#banner03 .share {
    justify-content: flex-start;
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 3.5rem 0 0 0;
    padding: 0;
}

#banner03 .share a {
    display: block;
    width: 4.4rem;
    height: 4.4rem;
    background-repeat: no-repeat;
    background-size: contain;
}

#banner03 .share a.fb {
    background-image: url("../images/icons/fb.svg");
}

#banner03 .share a.fb:hover {
    background-image: url("../images/icons/fb-hover.svg");
}

#banner03 .share a.pinterest {
    background-image: url("../images/icons/pinterest.svg");
}

#banner03 .share a.pinterest:hover {
    background-image: url("../images/icons/pinterest-hover.svg");
}

#banner03 .share a.whatsapp {
    background-image: url("../images/icons/whatsapp.svg");
}

#banner03 .share a.whatsapp:hover {
    background-image: url("../images/icons/whatsapp-hover.svg");
}

#banner03 .share a.mail-link {
    background-image: url("../images/icons/mail.svg");
}

#banner03 .share a.mail-link:hover {
    background-image: url("../images/icons/mail-hover.svg");
}

@media (max-width: 768px) {
    .banner03-background {
        height: 70%;
    }

    .banner03-tile {
        display: block;
        width: 95%;
    }

    .banner03-text,
    .banner03-image {
        width: 100%;
    }

    .banner03-text {
        padding: 2rem;
        text-align: center;
    }

    .banner03-suptitle {
        margin-bottom: 3rem;
    }

    #banner03 .share {
        justify-content: center;
        gap: 1.5rem;
    } 

    #banner03 .share a {
        width: 3.3rem;
        height: 3.3rem;
    }    
}

@media (min-width: 1450px) {
    .banner03-tile {
        width: 80%;
    }
}