/* =====================
   Coming Soon Banner
   v1.5.3
   ===================== */

.coming-soon-banner {
    background-color: #214617;
    border-radius: 22px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1356px;
    margin: 0 auto;
    overflow: hidden;
	margin-bottom: 80px
}

/* Content */
.csb-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 60px 80px;
    max-width: 55%;
    justify-content: center;
}

/* Title - Desktop */
.csb-title {
    font-family: 'LosLana', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #F68B1F;
    line-height: 54px;
    text-transform: capitalize;
    margin: 0;
}

/* Subtitle - Desktop */
.csb-subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #ffffff;
    margin: 0;
}

/* Description - Desktop */
.csb-description {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
    color: #ffffff;
    margin: 0;
}

/* Button */
.csb-btn {
    background: #F68B1F;
    color: #000 !important;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none !important;
    font-family: "LosLana", Sans-serif;
    text-transform: capitalize;
    padding: 14px 80px;
    font-size: 24px;
    text-align: center;
    display: block;
    width: fit-content;
    box-shadow: 2px 2px 0px 4px #000000 !important;
    margin-top: 20px;
}

/* Image */
.csb-image {
    flex-shrink: 0;
    width: 45%;
    display: flex;
}

.csb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hide mobile image on desktop */
.csb-img-mobile {
    display: none !important;
}

/* =====================
   Mobile
   ===================== */
@media (max-width: 768px) {
    .coming-soon-banner {
        flex-direction: column;
        margin: 0px 20px 50px;
    }

    .csb-content {
        max-width: 100%;
       	padding: 54px 18px 18px;
        order: 1;
    }

    .csb-image {
        width: 100%;
        order: 2;
    }

    .csb-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Swap images on mobile */
    .csb-img-desktop {
        display: none !important;
    }

    .csb-img-mobile {
        display: block !important;
    }

    /* Title - Mobile */
    .csb-title {
        font-size: 32px;
        line-height: 40px;
        text-align: center;
    }

    /* Subtitle - Mobile */
    .csb-subtitle {
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }

    /* Description - Mobile */
    .csb-description {
        font-family: 'Noto Sans', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0px;
        text-align: center;
    }

    .csb-btn {
        width: 100%;
        text-align: center;
        padding: 6px 2px;
    }
}