.banner-section {
    background-image: url(/assets/images/backgrounds/bg-1.jpg);
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

.banner-slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

.banner-caption {
    width: 60%;
    min-width: 60%;
}

.banner-image {
    width: 40%;
    position: relative;
}

.banner-image > img {
    max-width: 100%;
}

.banner-caption > h3 {
    font-size: 65px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--site-color-700);
}

.banner-caption > p {
    font-size: 25px;
    color: var(--site-color-1000);
    font-weight: bold;
}

.banner-bubble {
    background-color: var(--site-color-300);
    border-radius: 100%;
    max-width: 200px;
    padding: 15px;
    position: relative;
}

.banner-bubble > p {
    margin: 0px;
    font-weight: bold;
    color: var(--site-color-1001);
    padding: 20px;
    text-transform: uppercase;
    text-align: center;
}

.banner-bubble:before {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--site-color-300);
    content: "";
    position: absolute;
    bottom: 5px;
    right: 20px;
    transform: rotate(-40deg);
}

@media only screen and (max-width: 600px) {
    .banner-bubble:before {
        bottom: 0px;
        right: 10px;
        transform: rotate(-40deg);
    }

    .banner-bubble {
        max-width: 150px;
    }

    .banner-bubble > p {
        font-size: 12px;
        padding: 5px;
    }

    .banner-slide {
        flex-direction: column-reverse;
        justify-content: center;
    }

    .banner-caption {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .banner-image {
        width: 100%;
        text-align: center;
    }

    .banner-image > img {
        max-width: 180px;
    }

    .banner-caption > h3 {
        font-size: 24px;
    }

    .banner-caption > p {
        font-size: 16px;
        color: var(--site-color-400);
    }
}
