.index_banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 150px;
    min-height: 0;
    margin-top: 40px;
    color: #254e58;
    font-family: Barlow, sans-serif;
    background-color: rgba(255, 255, 255, 0.95);
    overflow: hidden;
    -webkit-box-shadow: 0 0 50px lightgrey;
            box-shadow: 0 0 50px lightgrey;
}

.index_content {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    position: relative;
}
.main_content {
    height: 100vh;
}
.index_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    width: 100%;

}
.index_content_background {
    content: "dfsd";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    opacity: 0.4;
    z-index: -1;
    background: #fdfdfd url("../images/background_image/background_image_1.jpg") no-repeat 50px 0;
    background-size: cover;
}

.index_banner>h1 {
    margin-top: 0px;
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 100;
    text-transform: uppercase;
}

.index_banner>span {
    font-size: 20px;
}

@media only screen and (min-width: 750px) {
    .index_banner>h1 {
        margin-top: 0px;
        margin-bottom: 0;
        font-size: 96px;
        font-weight: 100;
    }
    .index_banner>span {
        font-size: 28px;
        letter-spacing: 2px;
    }
    .index_banner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 100%;
        min-height: 0px;
        margin-top: 100px;
        color: #254e58;
        font-family: Barlow, sans-serif;
        background-color: rgba(255, 255, 255, 0.95);
        overflow: hidden;
        -webkit-box-shadow: 0 0 50px lightgrey;
                box-shadow: 0 0 50px lightgrey;
    }
}

@media only screen and (min-width: 1025px) {
    .index_banner>h1 {
        letter-spacing: 14px;
    }
    .index_content_background {
        content: "";
        display: block;
        background: #fdfdfd url("../images/background_image/background_image_1.jpg") no-repeat 50px 0;
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        z-index: -1;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1225px) {
    .index_banner>h1 {
        font-size: 72px !important;
        letter-spacing: 10px;
    }
}