/* SECTION2 - The Banner */ 
#banner {
    position: relative;
    width: 100%;
    height: auto;
    padding: 150px 0 120px 0;
}

#banner:before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    content: '';
    width: 100%;
    height: 60%;

    background-color: #d9f7fa;
}

#banner:after {
    position: absolute;
    z-index: -1;
    top: 60%;
    left: 0;

    content: '';
    width: 100%;
    height: 40%;

    background-color: #007fff;
}

#banner #main_header {
    position: relative;
    z-index: 1;

    width: calc(100% - 30px);
    margin: 0 auto;
    text-align: center;
}

#banner #main_header h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 80px;
    line-height: 75px;
    text-shadow: 2px 2px #007fff;
}

#banner #image_content {
    position: relative;
    z-index: 2;

    width: calc(100% - 100px);
    margin: 0 auto;
    max-width: 550px;
    height: auto;
}

#banner #image_content img {
    width: 100%;
    height: auto;
    transform: translateY(-12px);
}

.azure_schedule_button, #schedule_button {
    width: 100%;
    margin-top: 35px;
    text-align: center;
}

.azure_schedule_button a, #schedule_button a {
    padding: 10px 25px;
    border: 2px solid #d9f7fa;
    border-radius: 15px;

    font-size: 20px;
    line-height: 20px;
    color: #d9f7fa;

    transition: .5s all;
}

.azure_schedule_button a:hover, #schedule_button a:hover {
    background-color: #d9f7fa;
    color: #007fff;
}

#banner #banner_social_media {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;

    display: flex;
}

#banner #banner_social_media h3 {
    font-size: 19px;
    font-weight: 400;
    color: #d9f7fa;
    margin: auto 0;
    white-space: nowrap;

    /* looked a bit uncentered */ 
    transform: translateY(-1px);
}

#banner #banner_social_media #social_media_line {
    content: '';
    width: 60px;
    height: 3px;
    margin: auto 5px auto 10px;

    background-color: #d9f7fa;
}

#banner #banner_social_media #social_media_links {display: flex;}
#banner #banner_social_media #social_media_links a {
    margin: auto 5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    transition: .3s all;
}
#banner #banner_social_media #social_media_links a img {width: 25px;}
#banner #banner_social_media #social_media_links a:hover {background-color: #005bb8;}

#banner #banner_stripe_model {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 27%;

    width: 15vw;
    min-width: 120px;
    max-width: 200px;
    height: 10px;
    background-color: #007fff;
}

#banner #banner_stripe_model:after {
    position: absolute;
    right: 0;
    top: -20px;

    content: '';
    width: 60%;
    height: 10px;
    background-color: #007fff;
}
#banner #banner_stripe_model:before {
    position: absolute;
    right: 0;
    top: +20px;

    content: '';
    width: 60%;
    height: 10px;
    background-color: #007fff;
}

@media (max-width: 700px) {
    #banner #banner_stripe_model {display: none;}
    #banner #banner_social_media {
        left: 50%;
        transform: translateX(-50%);
    }
    
.azure_schedule_button a {
    font-size: 2em !important;
}
}

@media (max-width: 550px) {
    #banner #main_header h1 {
        font-size: 70px;
        line-height: 70px;
    }
}

@media (max-width: 450px) {
    #banner #main_header h1 {
        font-size: 60px;
        line-height: 60px;
    }
}

@media (max-width: 350px) {
    #banner #main_header h1 {
        font-size: 55px;
        line-height: 55px;
    }
}