.section-blue-background {
    position: relative;
    overflow: hidden;
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .section-blue-background {
        margin-bottom: 30px;
    }
}

.section-blue-background::after {
    content: '';
    position: absolute;
    left: 20%;
    right: 0;
    top: 67.6%;
    bottom: 0;
    width: 400px;
    height: 200px;
    background: #31A8CA;
    filter: blur(190px);
}

@media (max-width: 991px) {
    .section-blue-background::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 120%;
        bottom: 0;
        width: 400px;
        height: 200px;
        background: #31A8CA;
        filter: blur(190px);
    }
}

.section-blue-background__container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.section-blue-background__banner {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 470px;
    background: #1d2b48;
}

@media (max-width: 991px) {
    .section-blue-background__banner {
        grid-template-rows: 170px;
    }
}

@media (max-width: 767px) {
    .section-blue-background__banner {
        grid-template-rows: 100px;
    }
}

.section-blue-background__title {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 470px;
}

@media (max-width: 991px) {
    .section-blue-background__title {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 170px;
    }
}

@media (max-width: 767px) {
    .section-blue-background__title {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 100px;
    }
}

.section-blue-background__title span {
    display: flex;
    align-items: flex-end;
    color: #fff;
    font-size: 96px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
    -webkit-background-clip: text;
    background-clip: text;
    padding-bottom: 70px;
    font-weight: bold;
}

@media (max-width: 991px) {
    .section-blue-background__title span {
        font-size: 6.6vw;
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .section-blue-background__title span {
        font-size: 6.3vw;
        padding-bottom: 20px;
    }
}

.header.js__fixed-header~.container {
    display: none;
}