@font-face {
    font-family: 'TheSans-Bold';
    src: url('../fonts/TheSans-Bold/TheSans-Bold.eot');
    src: url('../fonts/TheSans-Bold/TheSans-Bold.eot') format('embedded-opentype'),
    url('../fonts/TheSans-Bold/TheSans-Bold.woff2') format('woff2'),
    url('../fonts/TheSans-Bold/TheSans-Bold.woff') format('woff'),
    url('../fonts/TheSans-Bold/TheSans-Bold.ttf') format('truetype'),
    url('../fonts/TheSans-Bold/TheSans-Bold.svg#TheSans-Bold') format('svg');
}

@font-face {
    font-family: 'TheSans-Plain';
    src: url('../fonts/TheSans-Plain/TheSans-Plain.eot');
    src: url('../fonts/TheSans-Plain/TheSans-Plain.eot') format('embedded-opentype'),
    url('../fonts/TheSans-Plain/TheSans-Plain.woff2') format('woff2'),
    url('../fonts/TheSans-Plain/TheSans-Plain.woff') format('woff'),
    url('../fonts/TheSans-Plain/TheSans-Plain.ttf') format('truetype'),
    url('../fonts/TheSans-Plain/TheSans-Plain.svg#TheSans-Plain') format('svg');
}

/******************************/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.warp {
    overflow: hidden;
}

body {
    font-family: 'TheSans-Plain';
    color: #838383;
    font-size: 16px;
    transition: all 0.5s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-family: 'TheSans-Bold';
}

button,
li,
a {
    transition: all 0.5s ease-in-out;
}

a {
    display: inline-block;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

ul, ol {
    margin-bottom: 0;
}

button:focus {
    outline: 0;
}

li,
input[type=submit],
a {
    transition: all 0.5s linear;
}

img, iframe {
    max-width: 100%;
}

.no-padding {
    padding: 0;
}

.sec-tit {
    margin-bottom: 60px;
    padding-bottom: 25px;
    position: relative;
    color: #303133;
}

.sec-tit:before,
.sec-tit:after {
    content: '';
    background-color: #303133;
    position: absolute;
}

.sec-tit:before {
    width: 150px;
    height: 2px;
    bottom: 0;
}

.sec-tit:after {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    bottom: -7px;
}

.sec-tit-shape {
    background-color: #303133;
    color: #fff;
    border-radius: 5px;
    padding: 15px 35px;
    display: inline-block;
}

.main-btn {
    background-color: #fda43b;
    color: #fff;
    padding: 10px 35px;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .22);
}

.main-btn:hover {
    background-color: #303133;
    color: #fff;
}

.sec-btn {
    background-color: #303133;
    color: #fff;
    padding: 10px 35px;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .22);
}

.sec-btn:hover {
    background-color: #fda43b;
    color: #fff;
}

/******************************/
header {
    padding: 20px 0;
}

.head-inside {
    background-color: #f6f6f6;
}

.head-home {
    background-color: rgba(255, 255, 255, .8);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.logo img {
    max-height: 135px;
}

.open-search,
.lang {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #52595f;
    color: #fff;
    border-radius: 100%;
}

.open-search:hover,
.lang:hover {
    color: #fff;
    background-color: #fda43b;
}

#header-search {
    display: inline-block;
}

#search-header.open {
    background: rgba(0, 0, 0, 0.8);
}

#search-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    transform: translate(0px, 0px) scale(0.7, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

#search-header.open {
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    visibility: visible;
}

#search-header .search-form {
    background: rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    width: 100%;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
}

#search-header input[type="search"] {
    font-size: 44px;
    color: #fff;
    font-weight: 300;
    border: 0;
    outline: none;
    width: 70%;
    height: 90px;
    line-height: normal;
    border-bottom: 1px solid;
}

#search-header .search-submit {
    z-index: 10;
    border: none !important;
}

#search-header .search-submit,
.search-icon {
    background: none;
    border: none;
    height: 70px;
    width: 70px;
    position: absolute;
    top: 20px;
}

.search-icon:before {
    font-family: 'Font Awesome 5 Brands';
    content: "\f3eb";
    display: inline-block;
    width: 70px;
    height: 70px;
    font-size: 24px;
    padding-top: 20px;
    color: #fff;
}

#search-header .close {
    background: none;
    border: none;
    position: fixed;
    top: 45px;
    right: 45px;
    opacity: 1;
    cursor: pointer;
    color: #fff;
    text-align: center;
    transition: all 0.2s ease-out;
}

#search-header .close:hover {
    opacity: 0.8;
}

#search-header .close i {
    display: none;
}

#search-header .close:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f057";
    display: inline-block;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 29px;
    left: 0;
}

#search-header button.close {
    border: 2px solid #fff;
    height: 37px;
    width: 37px;
    border-radius: 200em;
}

#search-header input[type="search"] {
    background: rgba(0, 0, 0, 0);
    border-color: #5f5f5f;
}

#search-header input[type="search"],
#search-header .search-submit {
    color: #fff;
}

/******************************/

@media (min-width: 992px) {
    .menu-area {
    }

    .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-list {
        display: flex;
        margin-bottom: 0;
        list-style: none;
    }

    .nav-list > .link {
        display: flex;
        align-items: center;
        text-transform: capitalize;
        position: relative;
    }

    .has_sub_menu {
        width: calc(100% - 20px);
    }

    .has_sub_menu ~ i {
        width: 15px;
        display: inline-block;
        text-align: center;
        color: #bb9c40;
    }

    .nav-list > .link > a {
        display: block;
        color: #000;
        position: relative;
        padding: 10px 25px;
        border-radius: 30px;
    }

    .nav-list > .link:hover a,
    .nav-list > .link.active a {
        color: #000;
        background-color: #fda43b;
    }

    .sub-list {
        background-color: #fff;
        padding: 20px;
        list-style: none;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        position: absolute;
        top: 100%;
        min-width: 230px;
        z-index: 3;
        display: none;
    }

    .sub-list li {
        position: relative;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #cacaca;
    }

    .sub-list li a {
        position: relative;
        display: block;
        width: 100%;
        color: #000;
    }

    .sub-list li a.has_sub_menu {
        width: calc(100% - 20px);
        display: inline-block;
    }

    .sub-list li:hover {
        border-bottom: 1px solid #137e17;
    }

    .sub-list li a:hover {
        color: #137e17;
    }

    .sub-list li:last-child > a {
        margin-bottom: 0;
    }

    .sub-list .sub-link {
        border-bottom: 1px solid rgba(255, 255, 255, .4);
        transition: all .5s linear;
    }

    .sub-list .sub-link:hover {
        background-color: #137e17;
    }

    .sub-list .sub-link:last-child {
        border-bottom: 0;
    }

    .nav-btn {
        display: none;
    }

    .nav-list .link:hover > .sub-list {
        display: block;
    }

    .sub-list .sub-list {
        top: 0;
    }

    .nav-list .link .sub-list .sub-link {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-list .link .sub-list .sub-link:hover > .sub-list {
        display: block;
    }
}

@media (max-width: 992px) {

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        line-height: 40px;
        background-color: #fda43b;
        border-radius: 100%;
        color: #fff;
        font-size: 20px;
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 0;
        height: 100%;
        z-index: 5;
        background-color: #fda43b;
        width: 300px;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        transform: translateX(100%);
        transition: all .5s linear;
        list-style: none;
    }

    .nav-list .link {
        font-size: 16px;
        padding: 10px 15px;
        position: relative;
    }

    .nav-list .link a {
        color: #fff;
        display: block;
        width: 100%;
        padding: 10px 35px;
        border-radius: 30px;
    }

    .nav-list .link a.has_sub_menu {
        width: calc(100% - 35px);
        display: inline-block;
    }

    .nav-list .link a:hover,
    .nav-list .link.active a {
        color: #fff;
        background-color: #000;
    }

    .nav-list .link i {
        color: #fff;
        background-color: #f1ca83;
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        transition: all .3s linear;
        transform-origin: center;
    }

    .nav-list .link i.open {
        transform: rotate(180deg);
    }

    .sub-list {
        box-shadow: none;
        width: 100%;
        overflow: hidden;
        background-color: transparent;
    }

    .sub-list.open {
    }

    .sub-list a {
        display: block;
        position: relative;
    }

    .sub-list .sub-link {
        border: 0;
        padding: 5px 20px;
        font-size: 14px;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        white-space: nowrap;
    }

    .sub-list .sub-list a {
        display: block;
        position: relative;
    }

    .trans-none {
        transform: none !important;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .4);
        transition: all linear .5s;
        z-index: 3;
        display: block;
    }
}

/******************************/
.mainItem {
    position: relative;
}

.mainItem img {
    height: 600px;
    width: 100%;
}

.mainItem-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
}

.slid-body {
    padding: 50px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, .6);
    text-align: center;
}

.slid-tit {
    font-size: 45px;
    color: #fda43b;
}

.slid-des {
    font-size: 35px;
    color: #fff;
    margin-bottom: 30px;
}

.main-slider .owl-nav {
}

.main-slider .owl-nav div {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fda43b;
    color: #fff;
    position: absolute;
    top: 50%;
    border-radius: 100%;
    transform: translateY(-50%);
    transition: all 0.5s linear;
}

.main-slider .owl-nav .owl-prev {
    left: 15px;
}

.main-slider .owl-nav .owl-next {
    right: 15px;
}

.main-slider .owl-nav div:hover {
    background-color: #52595f;
    color: #fff;
}

.main-slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 50px;
    width: 100%;
}

.main-slider .owl-dot {
    width: 19px;
    height: 3px;
    background-color: #000;
    margin: 0 5px;
    display: inline-block;
}

.main-slider .owl-dot.active {
    width: 15px;
    height: 15px;
    border-radius: 100%;
}

/******************************/
.about {
    padding: 70px 0 50px 0;
}

.about-cont {
    padding: 30px;
    box-shadow: 0 0 9px rgba(0, 0, 0, .11);
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 30px;
}

.about-logo {
    margin-bottom: 20px;
}

.intro_video video{
    width:100%;
    height:600px;
    object-fit: unset;
}
/******************************/
.site-banner {
    padding: 50px 0 70px 0;
}

/******************************/
.works {
    background-image: url("../images/bg-pro.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 75px 0;
}

.work-item {
    margin-bottom: 30px;
    position: relative;
}

.work-item-thumb img {
    height: 350px;
    width: 100%;
}

.work-item-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 164, 59, .7);
    opacity: 0;
    visibility: hidden;
    transition: all linear .5s;
}

.work-item-body {
    padding: 25px;
    color: #fff;
}

.work-item-term a {
    color: #000;
}

.work-item-url {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100%;
    background-color: #52595f;
    color: #fff;
}
.work-item-url:hover{
    background-color: #fda43b;
    color: #fff;
}
.work-item:hover .work-item-overlay {
    opacity: 1;
    visibility: visible;
}

/******************************/
.why {
    padding: 100px 0 40px 0;
    position: relative;
}

.why-cont {
    padding: 150px 0 30px 0;
}

.why-thumb img {
    width: 100%;
    height: 400px;
    border-radius: 5px;
}

/******************************/
.how {
    padding: 70px 0 40px 0;
}

.step-count {
    counter-reset: myCounter;
}

.how-item {
    border-bottom: 1px solid #fda43b;
    padding-bottom: 25px;
    margin-bottom: 30px;
    position: relative;
}
.how-item:after {
    content: '';
    background: transparent;
    width: 0;
    height: 1px;
    position: absolute;
    bottom: -1px;
    transform: translateX(-50%);
    left: 50%;
    transition: all linear .5s;
}
.how-url{
    position: relative;
}

.how-url:before {
    counter-increment: myCounter;
    content: counter(myCounter);
    font-size: 12px;
    position: absolute;
    top: 10px;
    background-color: #fda43b;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 100%;
    color: #fff;
    transition: all linear .5s;
}

.how-thumb {
    width: 150px;
    height: 150px;
    background-color: #f9f9f9;
    border-radius: 100%;
    padding: 35px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.how-thumb img {
    max-height: 100%;
}

.how-tit {
    margin-bottom: 0;
    color: #979899;
}
.how-item:hover:after{
    background: #000;
    width: 100%;
}

.how-item:hover .how-url:before{
    background:#000;
}
/******************************/
.clients {
    padding: 165px 0;
    background-color: #f9f9f9;
    position: relative;
}

.clientItem {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .19);
}

.clientItem img {
    max-height: 100%;
    width: auto !important;
}

.client-carousel .owl-nav div {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100%;
    background-color: #fda43b;
    color: #fff;
    display: inline-block;
}
.client-carousel .owl-nav div:hover {
    background-color: #303133;
    color: #fff;
}
.clients-thumb {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    height: 400px;
    border-radius: 10px;
}

/******************************/
footer {
    background-image: url("../images/bg-footer.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    padding: 75px 0 50px 0;
    color: #fff;
}

.foot-main,
.foot-widget {
    margin-bottom: 30px;
}

.foot-logo {
    margin-bottom: 15px;
}

.foot-widget-tit {
    margin-bottom: 35px;
}

.foot-list li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
}

.foot-list li a {
    color: #fff;
}

.foot-contact {
    background-color: #191b1f;
    padding: 30px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.foot-contact svg { 
    font-size: 30px;
    margin-bottom: 15px;
}

.foot-contact a {
    color: #fff;
}

.social_media a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100%;
    background-color: #363a3d;
    color: #fff;
}
.social_media a:hover{
    background-color: #fda43b;
    color: #fff;
}
.foot-contact,
.foot-widget-tit,
.foot-contact-tit,
.copyright a {
    color: #fda43b;
}

/******************************/
.breadcrumb-area {
    padding: 15px 0;
    color: #000;
    background-color: #fda43b;
}

.breadcrumb-area a {
    color: #fff;
}

.content {
    padding: 50px 0;
}

.bg-content {
    background-image: url("../images/bg-single-step.png");
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
}

.page-thumb {
    margin-bottom: 20px;
}

.item {
    box-shadow: 0 0 13px rgba(0, 0, 0, .3);
    padding: 15px;
}

.item-thumb,
.item-exp {
    margin-bottom: 20px;
}

.item-thumb img {
    height: 250px;
}

.item-tit a {
    color: #fda43b;
}

.sec-tit-icon .how-thumb {
    width: 70px;
    height: 70px;
    background-color: #f9f9f9;
    border-radius: 100%;
    padding: 15px;
    margin-bottom: 0;
}

.branch-info {
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 2px dotted #000;
}

.branch-info a {
    color: #000;
}

.branch-content a i {
    color: #fda43b;
    font-size: 18px;
}

.branch-map iframe {
    width: 100%;
    height: 250px;
}

.contact-bar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: none;
}

.contact-bar a {
    width: 35px;
    height: 35px;
    display: block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-phone{
    background-image: url("../images/icon-phone.png");
    margin-bottom: 20px;
}
.icon-whats{
    background-image: url("../images/icon-whats.png");
}
/******************************/

@media all and  (min-width: 991px) {

    .sec-tit-shape {
        position: absolute;
        top: 30%;
        transform: translate(-75%, -30%);
        z-index: 2;
        left: 60%;
    }

    .about [class*="col-"] {
        padding: 0;
    }

    .about-cont {
        transform: scale(1.1, 1);
        position: relative;
        z-index: 1;
    }

    .client-carousel {
        margin-top: 120px;
    }

    .client-carousel .owl-nav {
        position: absolute;
        top: -120px;
    }

}

@media all and  (max-width: 991px) {
    .no-padding {
        padding-right: 15px;
        padding-left: 15px;
    }

    .sec-tit-shape {
        margin-bottom: 30px;
    }

    .menu-icons {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .menu-icons a {
        margin: 0 5px;
    }

    .about-thumb,
    .why-thumb {
        margin-top: 30px;
        text-align: center;
    }

    .why-cont {
        padding: 30px 0 30px 0;
    }

    .clients {
        padding: 55px 0;
    }

    .clients-thumb {
        display: none;
    }

    .client-carousel .owl-nav {
        text-align: center;
        margin-top: 30px;
    }

    .client-carousel .owl-nav div {
        margin: 0 5px;
    }

    .foot-copyright {
        text-align: center;
        padding-bottom: 30px;
    }

    .copyright {
        margin-bottom: 30px;
    }

    .social_media {
        justify-content: center;
    }
    .contact-bar {
        position: fixed;
        top: auto;
        right: 0  !important;
        left:0  !important;
        transform: translateY(0);
        z-index: 2;
        bottom: 0;
        display: flex;
        border: 1px solid #303133;
        padding: 10px;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #f6f6f6;
    }
    .contact-bar a{
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .icon-phone{
        margin-bottom: 0;
    }
        
    .head-home{
        position:static;
        background-color: #fff;
    }
    .intro_video video{
        height:300px;
        object-fit: unset;
    }

}

@media all and  (min-width: 768px) {

}

@media all and  (max-width: 768px){

}
