﻿html {
    /*scroll-behavior: smooth;*/
    letter-spacing: 0.2px !important
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input::-webkit-input-placeholder {
    color: #b9b9b9 !important;
    font-weight: normal !important
}

input:-moz-placeholder { /* Firefox 18- */
    color: #b9b9b9 !important;
    font-weight: normal !important
}

input::-moz-placeholder { /* Firefox 19+ */
    color: #b9b9b9 !important;
    font-weight: normal !important
}

input:-ms-input-placeholder {
    color: #b9b9b9 !important;
    font-weight: normal !important
}


textarea::-webkit-input-placeholder {
    color: #b9b9b9 !important;
    font-weight: normal !important
}

textarea:-moz-placeholder { /* Firefox 18- */
    color: #b9b9b9 !important;
    font-weight: normal !important
}

textarea::-moz-placeholder { /* Firefox 19+ */
    color: #b9b9b9 !important;
    font-weight: normal !important
}

textarea:-ms-input-placeholder {
    color: #b9b9b9 !important;
    font-weight: normal !important
}


/* Navbar section*/
#home {
    min-height: 700px
}

.navbar {
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    border: none !important;
    margin-top: 25px;
    min-height: 20px;
    padding: 4px 0;
    border-radius: 0;
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

.navbar-after-scroll {
    background: #fff !important;
    margin-top: 0;
    padding: 15px 0 5px;
    box-shadow: 1px 2px 25px rgba(0,0,0,0.1);
    -moz-box-shadow: 1px 2px 25px rgba(0,0,0,0.1);
    -webkit-box-shadow: 1px 2px 25px rgba(0,0,0,0.1)
}

.nav-menu {
    margin: 0 15px 0 40px
}

    .nav-menu > a {
        color: #bbb !important;
        padding: 0 0 12px !important
    }

        .nav-menu > a:hover, .nav-menu > a:focus {
            color: #4d4d4d !important;
        }

.line {
    margin-top: 0px;
    height: 3px;
    width: 25px;
    background-color: #e4801e;
    border-radius: 15px;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s
}

.line-trigger:hover, .line-trigger:focus {
    background: rgba(255,255,255,0) !important
}

    .line-trigger:focus + .line, .line-trigger:hover + .line {
        opacity: 100;
    }

.navbar-brand {
    padding: 0 !important
}

.navbar .navbar-header .navbar-brand img {
    width: 110px;
    height: auto;
    padding-top: 4px;
}

.navbar-nav {
    margin-top: 9px
}

.navbar-toggle .icon-bar {
    background-color: #4d4d4d;
}

.navbar-scroll {
    background: #fff;
    margin-top: 0 !important;
    padding-top: 13px;
}


/* Banner section*/
#home {
    z-index: -1
}

.banner {
    height: 100vh;
    background-color: #f6f3ec;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.banner-left {
    background-image: url(../asset/img_banner_left.png);
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh
}

    .banner-left .hide, .banner-right .hide {
        display: none
    }

.banner-right {
    background-image: url(../asset/img_banner_right.png);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh
}

.banner-desc {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    text-align: center
}

.b-desc-1 {
    font-size: 62px;
    color: #4D4D4D;
    margin-bottom: 20px
}

.b-desc-2 {
    color: #8e8e8e;
    font-weight: 400;
    margin-bottom: 60px
}

.btn-banner {
    background: rgba(247,148,29,1);
    color: #fff !important;
    border-radius: 30px;
    padding: 15px 45px 18px;
    border: none;
    outline: none !important;
    text-decoration: none !important;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s
}

    .btn-banner:hover {
        background: rgba(229,132,26,1);
        color: #fff
    }

.scroll-down {
    position: absolute;
    bottom: 10%;
    left: 50%
}

#home > a.scroll-down span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid rgba(229,132,26,0.6);
    border-radius: 50px;
    box-sizing: border-box;
}

    #home > a.scroll-down span::before {
        position: absolute;
        top: 10px;
        left: 50%;
        content: '';
        width: 6px;
        height: 6px;
        margin-left: -3px;
        background-color: rgba(229,132,26,1);
        border-radius: 100%;
        -webkit-animation: sdb 2s infinite;
        animation: sdb 2s infinite;
        box-sizing: border-box;
    }

@-webkit-keyframes sdb {
    0% {
        -webkit-transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        -webkit-transform: translate(0, 20px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes sdb {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        transform: translate(0, 20px);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* About section*/
#about {
    z-index: 0;
    height: 100vh;
    text-align: center;
    padding: 105px 25px 0;
    min-height: 700px
}

/*.about-img {
    background-image: url(../asset/img_about_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 540px;
    margin: 0 -25px
}

.about-ppl {
    background-image: url(../asset/img_about_bg_ppl.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 540px;
}*/

.img-about-screen, .img-about-ppl {
    width: 100%;
    min-height: 540px;
    position: absolute;
    left: 0;
    z-index: -1;
    margin-top: -100px;
    opacity: 0.8
}

    .img-about-ppl.floating-2 {
        opacity: 1
    }

.pad-50 {
    padding-right: 10%
}

.desc-1 {
    font-size: 36px;
    color: #3e4348;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.5
}

.desc-2 {
    font-size: 17px;
    color: #8f9294;
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: 0.5px
}

    .desc-2.pad-adjust {
        padding: 0 130px
    }

.divider-line {
    border-top: 5px solid rgba(247,148,29,1);
    border-radius: 15px;
    margin: 45px auto 90px;
    width: 50px;
}

.about-box {
    background: #fff;
    text-align: left;
    padding: 30px 35px 20px;
    color: #868686;
    border-radius: 10px;
    box-shadow: 0 3px 35px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 3px 35px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 3px 35px rgba(0, 0, 0, .1);
}

.about-h1 {
    color: #3e4348;
    font-style: italic;
    margin-bottom: 40px
}

.about-p {
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.5
}



/* Feature #1 section*/
#feature-1 {
    background: #fafcfc;
    padding: 105px 25px 0;
    height: 100%;
    min-height: 700px
}

.feat-list {
    color: #8f9294 !important;
    font-size: 16px;
    line-height: 1.5;
    list-style: none;
    padding: 0;
    font-weight: normal
}

.feat-list-item {
    background-image: url(../asset/img_feat_tick.png);
    background-position: left .33em;
    background-repeat: no-repeat;
    padding-left: 35px;
    cursor: pointer;
}

button:focus, button:active, button:valid {
    outline: 0 !important;
    -ms-touch-action: none !important;
    touch-action: none !important;
}

.feat-btn {
    padding: 20px 15px;
    border-radius: 10px;
    color: #8f9294 !important;
    text-decoration: none !important;
    background: rgba(0,0,0,0) !important;
    border: none !important;
    text-align: left !important;
}

    .feat-btn:hover {
        color: #6f6f6f !important;
        background-color: #fff;
        box-shadow: 0 3px 35px rgba(0, 0, 0, .1);
        -moz-box-shadow: 0 3px 35px rgba(0, 0, 0, .1);
        -webkit-box-shadow: 0 3px 35px rgba(0, 0, 0, .1);
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s
    }

        .feat-btn:hover .feat-list-item {
            background-image: url(../asset/img_feat_tick_select.png);
            background-position: left .33em;
            background-repeat: no-repeat;
            -webkit-transition: all 0.4s;
            -o-transition: all 0.4s;
            -moz-transition: all 0.4s;
            transition: all 0.4s
        }

    .feat-btn.active {
        color: #6f6f6f !important;
        background-color: #fff;
        box-shadow: 0 3px 35px rgba(0, 0, 0, .1);
        -moz-box-shadow: 0 3px 35px rgba(0, 0, 0, .1);
        -webkit-box-shadow: 0 3px 35px rgba(0, 0, 0, .1);
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s
    }

        .feat-btn.active .feat-list-item {
            background-image: url(../asset/img_feat_tick_select.png);
            background-position: left .33em;
            background-repeat: no-repeat;
            -webkit-transition: all 0.4s;
            -o-transition: all 0.4s;
            -moz-transition: all 0.4s;
            transition: all 0.4s
        }


    .feat-btn.show-img {
        display: block
    }

.feat-img {
    width: 100%;
    height: auto;
    margin-top: -150px;
}


/* Feature #2 section*/
#feature-2 {
    padding: 105px 25px 0;
    height: 100%;
    min-height: 700px
}

.margin-btm {
    margin-bottom: 155px
}


/* Feature #3 section*/
#feature-3 {
    padding: 125px 25px 0;
    height: 100%;
    min-height: 700px
}

.card-wrap {
    align-items: stretch;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
    padding-left: 11%;
    margin-top: -40px;
    padding-top: 50px;
    width: 100%;
    cursor: pointer;
    transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

    .card-wrap.active {
        background: rgba(255,255,255,0.3);
        cursor: grabbing;
        transform: scale(1.02);
        -o-transform: scale(1.02);
        -ms-transform: scale(1.02);
        -moz-transform: scale(1.02);
        -webkit-transform: scale(1.02);
    }


.card {
    max-width: 30%;
    padding: 30px 40px 25px;
    margin-bottom: 2rem;
    margin-right: 10px;
    border: 0;
    border-radius: 13px;
    flex-basis: 33.333%;
    flex-grow: 0;
    flex-shrink: 0;
}

    .card:hover {
        background-color: #fff;
        box-shadow: 0 0 35px rgba(0, 0, 0, .15);
        -moz-box-shadow: 0 0 35px rgba(0, 0, 0, .15);
        -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, .15);
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
        margin-top: -3px
    }

        .card:hover .card-img-bg {
            background-color: #e2ae4a
        }

.card-img-bg {
    background-color: #edded1;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s
}

.card-img {
    width: 180px;
    height: auto
}


.card-h1 {
    color: #3e4348;
    font-weight: 700;
    margin: 35px 0 20px;
    font-size: 20px
}

.card-h2 {
    color: #8f9294 !important;
    font-weight: normal;
    line-height: 1.7;
    font-size: 15px
}

.pad-12 {
    padding-left: 12%
}

.dotstyle ul {
    position: relative;
    display: inline-block;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.dotstyle li {
    position: relative;
    display: block;
    float: left;
    margin: 0 16px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

    .dotstyle li div {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        outline: none;
        border-radius: 50%;
        background-color: rgba(0,0,0,0.15);
        text-indent: -999em;
        / make the text accessible to screen readers / cursor: pointer;
        position: absolute;
    }

        .dotstyle li div:focus {
            outline: none;
        }

/* Fill up */
.dotstyle-fillup li div {
    overflow: hidden;
    background-color: rgba(0,0,0,0.15);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,1);
    transition: background 0.3s;
}

    .dotstyle-fillup li div::after {
        content: '';
        position: absolute;
        bottom: 0;
        height: 0;
        left: 0;
        width: 100%;
        background-color: rgba(247,148,29,1);
        box-shadow: 0 0 1px #fff;
        transition: height 0.3s;
    }

    .dotstyle-fillup li div:hover,
    .dotstyle-fillup li div:focus {
        background-color: rgba(0,0,0,0.25);
    }

.dotstyle-fillup li.current div::after {
    height: 100%;
    border-radius: 50%;
}
/* Feature #4 section*/
#feature-4 {
    padding: 185px 0 0;
    height: 100%;
    min-height: 700px
}

.feat-bg {
    background-image: url(../asset/img_feat_bg.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    min-height: 610px
}

.swap-align {
    padding: 0 15% 0 0;
    float: right !important
}

.feat-img-2 {
    width: 85%;
    height: auto;
    margin: 0 auto;
    display: block;
}


/* Contact section*/
#contact {
    height: 100vh;
    text-align: center;
    padding: 105px 0 0;
    min-height: 700px;
    margin-top: 300px;
}

.msg-border {
    border: 1px solid rgba(247,148,29,1);
    border-radius: 5px;
    padding: 15px 20px;
    margin: 25px 0;
    background: #fff;
}

.msg-alert {
    display: none;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    animation-delay: 0.15s;
    -o-animation-delay: 0.15s;
    -moz-animation-delay: 0.15s;
    -webkit-animation-delay: 0.15s;
}

    .msg-alert.show {
        opacity: 1;
        display: block
    }

.contact-dots {
    height: 20px;
    width: auto
}

.m-btm {
    margin-bottom: 25px;
}

.feat-bg-contact {
    background-image: url(../asset/img_feat_bg_3.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    min-height: 610px
}

.swap-align-contact {
    text-align: left;
    padding: 0 0 0 14%;
    float: left;
    margin-top: 60px
}

.msg-box {
    width: 100%;
    min-height: 120px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.btn-contact {
    cursor: pointer;
    text-align: center;
    max-width: 200px;
    background: rgba(247,148,29,1);
    color: #fff !important;
    border-radius: 30px;
    padding: 13px 45px 16px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s
}

    .btn-contact:hover {
        background: rgba(229,132,26,1);
        color: #fff
    }


/* Footer section*/
#footer {
    background: #3e4348;
    padding: 45px 40px 35px;
    width: 100%;
    text-align: center;
    min-height: 170px;
    display: inline-flex
}

.footer-h1 {
    color: #ddd;
    font-weight: 600;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s
}

    .footer-h1:hover {
        color: #fff;
        font-weight: 600;
    }

.footer-h2 {
    color: #868686;
    font-weight: normal;
}

a.footer-h1 {
    text-decoration: none !important;
}



/*** EFFECTS ANIMATION ***/
/* SLIDE FROM BOTTOM*/
.come-in {
    -webkit-transform: translateY(150px);
    -webkit-animation: come-in 1s ease forwards;
    transform: translateY(150px);
    animation: come-in 1s ease forwards;
    animation-delay: 0.15s;
    -o-animation-delay: 0.15s;
    -moz-animation-delay: 0.15s;
    -webkit-animation-delay: 0.15s;
}

    .come-in:nth-child(odd) {
        animation-duration: 0.6s; /* So they look staggered */
    }

.card:nth-child(even) {
    margin-right: 0;
}

@-webkit-keyframes come-in {
    to {
        transform: translateY(0);
    }
}

@keyframes come-in {
    to {
        transform: translateY(0);
    }
}


/* FLOATING */
@keyframes floating {
    0% {
        /*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
        transform: translateY(0px);
    }

    50% {
        /*box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);*/
        transform: translateY(-28px);
    }

    100% {
        /*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
        transform: translateY(0px);
    }
}

@-webkit-keyframes floating {
    0% {
        /*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
        transform: translateY(0px);
    }

    50% {
        /*box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);*/
        transform: translateY(-28px);
    }

    100% {
        /*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
        transform: translateY(0px);
    }
}


@keyframes floating-2 {
    0% {
        /*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
        transform: translateY(0px);
    }

    50% {
        /*box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);*/
        transform: translateY(-35px);
    }

    100% {
        /*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
        transform: translateY(0px);
    }
}

@-webkit-keyframes floating-2 {
    0% {
        /*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
        transform: translateY(0px);
    }

    50% {
        /*box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);*/
        transform: translateY(-35px);
    }

    100% {
        /*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
        transform: translateY(0px);
    }
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.floating-2 {
    animation-name: floating;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}


/* FADE FROM LEFT */
.fading.fade-left, .fading.fade-right, .fading.fade-btm {
    opacity: 0;
    position: relative;
    transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -webkit-transition: 0.5s all;
    animation-delay: 0.15s;
    -o-animation-delay: 0.15s;
    -moz-animation-delay: 0.15s;
    -webkit-animation-delay: 0.15s
}

.fading.load-show {
    opacity: 0;
    position: relative;
    transition: 1.7s all;
    -o-transition: 1.7s all;
    -moz-transition: 1.7s all;
    -webkit-transition: 1.7s all;
    animation-delay: 0.15s;
    -o-animation-delay: 0.15s;
    -moz-animation-delay: 0.15s;
    -webkit-animation-delay: 0.15s
}

.fade-btm {
    bottom: -100px
}

    .fade-btm.showing {
        bottom: -0px;
        opacity: 1;
    }

.fade-left {
    left: -150px;
}

    .fade-left.showing {
        left: -0px;
        opacity: 1;
    }

.fade-right {
    right: -150px;
}

    .fade-right.showing {
        right: -0px;
        opacity: 1;
    }

@media screen and (min-width:993px) {

    .feat-btn.show-img {
        display: none !important
    }

    .card {
        max-width: 30%;
    }
}


@media screen and (max-width:1200px) {

    .img-about-screen, .img-about-ppl {
        margin-top: 50px;
    }
}


@media screen and (min-width:1416px) {

    .card {
        max-width: 26%;
    }

    .feat-bg {
        min-height: 900px
    }

    .desc-2.pad-adjust {
        padding: 0 190px !important
    }
}


@media screen and (max-width:1416px) {

    .pad-12 {
        padding-left: 8%
    }

    .card-wrap {
        padding-left: 6%
    }

    #feature-4 {
        min-height: 900px
    }

    .feat-bg {
        width: 90%
    }

    .swap-align {
        padding: 0 8% 0 0
    }

    #contact {
        margin-top: 0;
    }
}


@media screen and (max-width:992px) {
    .navbar-after-scroll {
        padding: 10px 0;
    }

    #feature-1 {
        padding: 45px 25px 0;
        min-height: 600px
    }

    #feature-2 {
        border-bottom: 1px solid #ddd;
        padding: 45px 25px 50px;
        min-height: 600px
    }

    #feature-3 {
        border-bottom: 1px solid #ddd;
        padding: 45px 25px 50px;
        min-height: 600px
    }

    #feature-4 {
        padding: 45px 0 50px;
        min-height: 600px
    }

    #contact {
        padding: 15px 0 0;
        height: 100%;
        min-height: 600px
    }

    .menu-bars {
        display: block
    }

    .navbar {
        margin-top: 0;
    }

        .navbar .navbar-header .navbar-brand img {
            width: 90px;
            height: auto;
            padding: 12px 0;
        }

    .navbar-scroll {
        padding-top: 0 !important
    }


    .navbar-brand {
        padding: 0 15px !important
    }

    .nav-menu {
        margin: 10px 0 30px
    }

        .nav-menu > a {
            color: #bbb !important;
            padding: 0 0 15px !important;
        }

    .line {
        display: none !important
    }

    .navbar-nav {
        margin-top: 20px;
        text-align: center
    }

    .banner-desc {
        width: 100% !important
    }

    .feat-img {
        margin: 15px auto 0;
        width: 75%;
        display: block;
    }

        .feat-img.hide-img {
            display: none
        }

    .feat-btn {
        display: none
    }

    .margin-btm {
        margin-bottom: 90px
    }

    .card-wrap {
        padding-left: 20px
    }

    .card {
        max-width: 55%;
    }

    .pad-12 {
        padding-left: 20px
    }

    .pad-50 {
        padding: 0 50px !important
    }

    .swap-align {
        padding: 0 55px;
        float: none !important
    }

    .swap-align-contact {
        padding: 0 35px;
        float: none !important;
        margin-top: 0px !important
    }

    .feat-bg, .feat-bg-contact {
        background-image: url(../asset/img_feat_bg_2.png);
        background-position: bottom;
        max-height: 700px;
        min-height: 350px;
        margin-top: -30px;
        width: 100%
    }

        .feat-bg-contact.margin-align {
            margin-top: 15px !important
        }

    .feat-img-2 {
        width: 70%
    }

    .desc-2.pad-adjust {
        padding: 0 50px !important
    }

    .btn-contact {
        margin: 0 auto;
        max-width: 250px
    }

    .img-about-screen, .img-about-ppl {
        margin-top: 20%;
        min-height: 0
    }

    .banner-left, .banner-right {
        background-image: none
    }

        .banner-left .hide {
            margin-left: -50%;
            height: 100%;
            width: auto;
            display: block !important
        }

        .banner-right .hide {
            margin-left: -50%;
            height: 100%;
            width: auto;
            display: block !important
        }
}


@media screen and (max-width:767px) {

    .feat-bg-contact.margin-align {
        min-height: 510px;
    }

    #about {
        display: inline-block;
        width: 100%
    }
}

@media screen and (max-width:500px) {
    .card {
        padding: 30px 30px 25px;
        flex-basis: 65%;
        max-height: 450px;
    }

    .card-img-bg {
        width: 140px;
        height: 140px;
    }

    .card-img {
        width: 140px;
        height: 140px;
    }

    .card-h1 {
        font-size: 18px
    }

    .card-h2 {
        font-size: 13px
    }

    .feat-bg-contact.margin-align {
        min-height: 300px;
    }

    .banner-left .hide {
        margin-left: -70%
    }

    .banner-right .hide {
        margin-left: -130%
    }

    .fading.fade-left, .fading.fade-right {
        opacity: 1;
        position: initial;
    }

    #home {
        min-height: initial;
    }

    #about {
        padding: 27px 25px 0;
    }

    .desc-1 {
        font-size: 30px
    }

    .desc-2 {
        font-size: 15px
    }

    .bg-500 {
        background: #f6f3ec
    }

    .desc-2.pad-adjust {
        padding: 0 20px !important;
    }
}
