
body {
    font-family: 'Open Sans', sans-serif;
}

.page-banner {
    background-color: #93d2f1;
    position: relative;
    margin-bottom: 10px;
}

.page-banner img {
    position: absolute;
    right: 0;
    height: 100%;
    width: auto;

}

.page-banner .page-content {
    padding-left: 30px;
}

.page-banner h1 {
    padding: 60px 0 ;
    font-family: 'Bitter', sans-serif;
    font-weight: bold;
    margin: 0;
}

.page-banner .hr {
    width: 75px;
    height: 5px;
    background-color: white;
    border-radius: 2.5px 0 0 2.5px;

}

.page-banner p {
    color: rgb(75, 75, 75);
    font-size: 18px;
    padding: 20px 0;

}

.page-banner .banner::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100vw;
    height: 10px;
    background-color: #ffbd11;
}

.page-banner p::after {
    content: "";
    position: absolute;
    width: 100vw;
    height: 10px;
    bottom: -10px;
    left: 0;
    background-color: #45a4d2;

}


.section-page .left-color::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    background-color: #ffd76d;
    z-index: 0;
}

.section-page .right-color::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: #fff9f1;
    z-index: 0;
}

.wrapper-nav {
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.wrapper-nav li {
    padding-left: 15px;
    position: relative;
}

.wrapper-nav .bold {
    font-weight: bold;
}

.section-page .page-content {
    padding: 20px 0 40px 30px;
}

.section-page .page-menu {
    padding: 0 0 40px 30px;
}

.section-page .wrapper-txt {
    position: relative;
    z-index: 1;
}


.section-page ul{
    list-style: none;
    margin: 0;
    padding: 0;
    }

.section-page ul a{
    color: #5d5d5d;
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    margin-bottom: 12px;
}
.section-page ul a:hover{
    text-decoration: underline;
}

.section-page h2 {
    padding: 20px 0;
    font-family: 'Bitter', sans-serif;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #5d5d5d;

}

.section-page p {
    padding: 0;
    font-size: 20px;
    color: #5d5d5d;

}

/*---------------Responsive----------------------*/

@media(max-width:992px){
    .page-banner img {
        position: relative;
        width: 100%;
        height: auto;
        order: -1;
    
    }

    .page-banner .page-content {
        order: 1;
    }

    .page-banner .banner::after{
        width: 150vw;
        right: -50vw;
    }

    .page-banner p::after{
        width: 150vw;
        left: -50vw;
    }

    .section-page .right-color::after {
        width: 150vw;
        left: -50vw;
    }

    .section-page .left-color::after {
        width: 150vw;
        right: -50vw;
    }


    .col-lg-4 {
flex: 0 0 100%!important;
max-width: 100%!important;
}

.col-lg-8 {
    flex: 0 0 100%!important;
    max-width: 100%!important;
    }
}