
/** static banner-section **/

.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-static .slide-item {
    position: relative;

    min-height: 770px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 145px 60px 165px;
}

.banner-static .slide-item .bg-layer {
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    z-index: 1;
}

.banner-static .content-box {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    width: 100%;
    max-width: 1450px;

    margin: 0 auto;

    z-index: 5;
}

.banner-static .content-box h2 {
    position: relative;
    display: block;

    width: 100%;
    max-width: 1300px;

    font-size: 56px;
    line-height: 1.05;
    font-weight: 700;

    margin-bottom: 28px;

    color: #ffffff;

    opacity: 1;
    transform: none;
}

.banner-static .content-box p {
    width: 100%;
    max-width: 1250px;

    font-size: 20px;
    line-height: 1.5;

    margin-bottom: 35px;

    color: rgba(255,255,255,0.9);

    opacity: 1;
    transform: none;
}

.banner-static .content-box .btn-box {
    opacity: 1;
    transform: none;
}

.banner-section .pattern-layer {
    position: absolute;
    left: 0px;
    bottom: 0px;

    width: 100%;
    height: 99px;

    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;

    z-index: 2;
}

/* Banner Button */

.banner-section .theme-btn .text {
    background: #ffffff;
    color: #DA366C;
}

.banner-section .theme-btn .text:before {
    background: #DA366C;
}

.banner-section .theme-btn:hover .text {
    color: #ffffff;
}


/* MEDIA QUERY */
/* Responsive */

@media only screen and (max-width: 1200px) {
    .banner-static .content-box h2 {
        font-size: 46px;
        max-width: 1050px;
    }

    .banner-static .content-box p {
        max-width: 900px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-static .slide-item {
        padding: 110px 24px 100px;
        min-height: 650px;
    }

    .banner-static .content-box h2 {
        font-size: 28px;
        line-height: 1.1;
        max-width: 100%;
        padding-top: 8px;
    }

    .banner-static .content-box p {
        font-size: 17px;
        line-height: 1.5;
        max-width: 100%;
    }

    .banner-section .pattern-layer {
        display: none;
    }
}

/* ==========================================
   PAPER PATTERN — TABLET + MOBILE
========================================== */

@media only screen and (max-width: 900px) {

    .banner-section .pattern-layer,
    .what-we-do-section .pattern-layer {
        display: block !important;

        height: 99px !important;

        background-size: 100% 100% !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;

        top: 0 !important;
        bottom: auto !important;

        opacity: 1 !important;
    }

}

/* Banner paper should stay at bottom */

@media only screen and (max-width: 900px) {

    .banner-section .pattern-layer {
        top: auto !important;
        bottom: -1px !important;
    }

}



































