.welcome-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    padding-top: 60px;
    font-family: 'Poppins', sans-serif;
}

.welcome-header {
    font-size: 64px;
    font-weight: 600;
    color: #00b6bd;
}

.welcome-header-2 {
    font-size: 52px;
    color: #0d0d0d;
    text-align: center;
}

.overview-details-1 {
    width: 100%;
    display: flex;
    flex-direction: row;
    min-height: 520px;
    font-family: 'Poppins', sans-serif;
}

.overview-column {
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
}

.overview-column-2-inner {
    color: #0d0d0d;
    font-size: 24px;
    padding-right: 100px;
}

@media only screen and (max-width: 1279px) {
    .welcome-container {
        width: auto;
        padding: 60px 60px 0 60px;
    }

    .welcome-header {
        font-size: 60px;
    }
    
    .welcome-header-2 {
        font-size: 40px;
    }

    .overview-details-1 {
        min-height: 440px;
    }

    .overview-column-2-inner {
        padding: 0 40px;
        font-size: 20px;
    }
}

/* Tablet - Portrait */
@media only screen and (min-width: 768px) and (orientation: portrait) {
    .explore {
        padding: 0px 25px;
        min-height: 320px;
    }

    .welcome-container {
        padding: 50px;
    }

    .explore-card {
        margin: 15px;
        padding: 20px;
    }

    .overview-details-1 {
        flex-direction: column;
    }

    .overview-column {
        width: 100%;
    }

    .image-within-column {
        width: 100%;
        max-width: 100%;
    }

    .overview-column-2-inner {
        padding: 50px;
    }

    .learn-more-container {
        padding-top: 17px;
    }
}

/* Mobile */
@media only screen and (max-width: 767px) {
    .welcome-container {
        min-height: 200px;
        padding: 40px;
    }
    
    .welcome-header {
        font-size: 50px;
    }

    .welcome-header-2 {
        font-size: 26px;
    }

    .overview-details-1 {
        flex-direction: column;
    }

    .overview-column {
        width: 100%;
    }

    .image-within-column {
        width: 100%;
        max-width: 100%;
    }

    .overview-column-2-inner {
        padding: 50px;
    }

    .learn-more-container {
        padding-top: 17px;
    }
}