@media(min-width: 1300px) {
    .container {
        max-width: 1200px;
    }
}

/**
 * HEADER
 */
.gv_header_block {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: #f7931e;
    padding: 0px 0;
    font-family: 'Roboto', sans-serif;
    .container {
        .flex {
            display: -webkit-box;
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            justify-content: space-between;
            .head_left{
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }
            .head_right{
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }
        }
    }
    .logo {
        padding: 5px 0;
        display: block;
        position: relative;
        a {
            img {
                height: 70px;
                width: auto;
            }
        }
    }
    .primary-nav {
        .nav_menu {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            align-items: center;
            >li {
                display: inline-block;
                position: relative;
                >a {
                    display: block;
                    padding: 30px 7px;
                    color: #fff;
                    font-size: 14px;
                    justify-content: flex-start;
                    position: relative;
                    text-transform: uppercase;
                    letter-spacing: -0.6px;
                    font-weight: 500;
                    transition: all .45s ease 0s;
                    line-height: 20px;
                }
                >i.arrow {
                    position: absolute;
                    top: 31px;
                    right: 10px;
                    color: rgba(255,255,255,0.5);
                    display: block;
                    font-size: 14px;
                }
                >.sub-menu {
                    position: absolute;
                    list-style: none;
                    padding: 0;
                    margin: 0;
                    display: none;
                    background: #Fff;
                    z-index: -2;
                    min-width: 240px;
                    left: 0;
                    top: 150%;
                    opacity: 0;
                    visibility: hidden;
                    transition: all .4s ease 0s;
                    border-radius: 0 0 4px 4px;
                    box-shadow: 0px 0px 4px 0px #ccc;
                    >li {
                        position: relative;
                        display: block;
                        padding: 0 10px;
                        >a {
                            display: block;
                            padding: 10px 5px;
                            color: #f7931e;
                            position: relative;
                            border-bottom: 1px dotted #ccc;
                            white-space: nowrap;
                            font-size: 15px;
                        }
                        ul {
                            display: none;
                            position: absolute;
                            left: 100%;
                            min-width: 200px;
                            list-style: none;
                            padding: 0;
                            margin: 0;
                            z-index: 2;
                            >li {
                                position: relative;
                                display: block;
                                padding: 0 10px;
                                >a {
                                    display: block;
                                    padding: 8px 5px;
                                    color: var(--secColor);
                                    position: relative;
                                    border-bottom: 1px dotted #ccc;
                                    white-space: nowrap;
                                    font-size: 15px;
                                }
                                >a {
                                    color: var(--textHover);
                                    text-decoration: underline;
                                }
                                >ul {
                                    display: block;
                                }
                            }
                        }
                        &:hover {
                            >a {
                                text-decoration: underline;
                            }
                            >ul {
                                display: block;
                            }
                        }
                    }
                }
                &:hover {
                    >a {
                        color: var(--textHover);
                    }
                    >.sub-menu {
                        display: block;
                        opacity: 1;
                        visibility: visible;
                        z-index: 11;
                        top: 100%;
                    }
                }
            }
            >li.active {
                >a {
                    color: var(--textHover);
                }
            }
            >li.menu-item-has-children {
                >a {
                    padding-right: 25px;
                }
                >i.arrow{

                }
            }
        }
    }
    .menu {
        .bars {
            border: 0;
            outline: none;
            padding: 0;
            background: transparent;
            cursor: pointer;
            .menu_bar_open {
                width: 30px;
                display: block;
                cursor: pointer;
                i.line {
                    height: 3px;
                    width: 100%;
                    display: block;
                    background: #fff;
                    margin-bottom: 6px;
                    line-height: 1;
                    &:last-child {
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
}

/**
 * BANNER
 */
.gv_banner_block {
    position: relative;
    .container {
        
    }

    .owl-carousel{
        .owl-nav {
            [class*="owl-"] {
                border: 0;
                margin: 0;
                height: 40px;
                width: 40px;
                background: var(--secColor);
                border-radius: 100%;
                i{
                    font-size: 16px;
                    color: #fff;
                }
            }
            .owl-prev {
                i{
                    margin-right: 3px;
                }
            }
            .owl-next {
                i{
                    margin-left: 3px;
                }
            }
        }
        @media(max-width: 767px){
            .owl-nav {
                .owl-prev {
                    left: -15px;
                    i{
                        margin-right: 3px;
                    }
                }
                .owl-next {
                    right: -15px;
                    i{
                        margin-left: 3px;
                    }
                }
            }
        }
    }
    .banner-item{
        position: relative;
        a{
            position: relative;
            display: block;
            img{
                height: auto;
                width: 100%;
            }
            img.dk{
                display: block;
            }
            img.mb{
                display: none;
            }
            @media(max-width:767px){
                img.dk{
                    display: none;
                }
                img.mb{
                    display: block;
                }
            }
        }
    }
}
/**
 * ABOUT
 */
.gv_section_about {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    .about_box {
        .row {
            @media(max-width:767px){
                flex-direction: column-reverse;
            }
            >[class*="col-"]{
                padding-bottom: 10px;
                padding-top: 10px;
            }
        }
        .info {
            position: relative;
            .desc {
                h3 {
                    font-size: 20px;
                    font-weight: 600;
                    color: #f7931e;
                    text-align: center;
                }
                ul {
                    li {
                        position: relative;
                        list-style: none;
                        padding-bottom: 5px;
                        padding-left: 22px;
                        &::before {
                            content: "\f0a9";
                            font: normal normal normal 14px/1 FontAwesome;
                            color: #f7931e;
                            font-weight: bold;
                            padding-right: 10px;
                            font-size: inherit;
                            position: absolute;
                            left: 0;
                            top: 3px;
                        }
                    }
                }
            }
            .more {
                text-align: center;
                display: block;
                position: relative;
                a {
                    padding: 10px 20px;
                    background: #d42a29;
                    display: inline-block;
                    color: #fff;
                    font-size: 15px;
                    border-radius: 20px;
                    text-transform: uppercase;
                    i {
                        margin-right: 5px;
                    }
                }
            }  
        }
    }
}

/**
 * INTRODUCTION
 */
.gv_section_introduct {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    .intro_box {
        >.row {
            align-items: stretch;
            margin-left: -60px;
            margin-right: -60px;
            @media (max-width: 767px){
                margin-left: -15px;
                margin-right: -15px;
            }
            [class*="col-"] {
                min-height: 100%;
                padding-top: 15px;
                padding-bottom: 15px;
                padding-left: 60px;
                padding-right: 60px;
                @media (max-width: 767px){
                    padding-top: 40px;
                    padding-bottom: 40px;
                    padding-left: 15px;
                    padding-right: 15px;
                }
            }
        }
        .intro-item {
            .inner {
                background: #f1f2f3;
                height: 100%;
                padding: 20px;
                border-radius: 5px;
                color: #100f0f;
                position: relative;
                .name {
                    h3 {
                        font-size: 18px;
                        padding: 10px 0;
                        margin: 0;
                    }
                }
                .desc {
                    font-family: 'Montserrat', sans-serif;
                    text-align: justify;
                    text-align-last: center;
                }
                &::before {
                    content: "\f0a9";
                    font: normal normal normal 13px/1 FontAwesome;
                    color: #343a40;
                    font-weight: bold;
                    font-size: 50px;
                    position: absolute;
                    right: -85px;
                    top: 50%;
                    transform: translateY(-50%);
                    @media (max-width: 767px){
                        content: "\f0ab";
                        right: initial;
                        left: 50%;
                        transform: translateY(0) translateX(-50%);
                        top: initial;
                        bottom: -65px;
                    }
                }
            }
            &:nth-child(3n) {
                .inner {
                    &::before {
                        display: none;
                        @media (max-width: 767px){
                            display: block;
                        }
                    }
                }
            }
            &:last-child {
                .inner {
                    &::before { 
                        @media (max-width: 767px){
                            display: none;
                        }
                    }
                }
            }
        }
    }
}

/**
 * QUOTE
 */
.gv_section_quote {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    .quote_box {
        .row {}
        .info {
            position: relative;
            .desc {
                h3 {
                    font-size: 20px;
                    font-weight: 600;
                    color: #f7931e;
                    text-align: center;
                }
                ul {
                    margin: 0;
                    padding: 0;
                    li {
                        position: relative;
                        list-style: none;
                        padding-bottom: 5px;
                        padding-left: 22px;
                        h4 {
                            font-size: 18px;
                            color: #f7931e;
                        }
                        &::before {
                            content: "\f0a9";
                            font: normal normal normal 14px/1 FontAwesome;
                            color: #f7931e;
                            font-weight: bold;
                            padding-right: 10px;
                            font-size: inherit;
                            position: absolute;
                            left: 0;
                            top: 2px;
                        }
                    }
                }
            }
            .more {
                display: block;
                position: relative;
                a {
                    padding: 10px 20px;
                    background: #d42a29;
                    display: inline-block;
                    color: #fff;
                    font-size: 15px;
                    border-radius: 20px;
                    text-transform: uppercase;
                    i {
                        margin-right: 5px;
                    }
                }
            }  
        }
    }
}

/**
 * SERVICE
 */
.gv_section_service {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    .service_box {
        .service-item {
            padding-top: 15px;
            padding-bottom: 15px;
            position: relative;
            .inner {
                position: relative;
                height: 100%;
                .image {
                    >a {
                        display: block;
                        padding-bottom: 60%;
                        width: 100%;
                        background-position: center;
                        position: relative;
                        height: auto;
                        overflow: hidden;
                        >img {
                            position: absolute;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            height: 100%;
                            width: 100%;
                            object-fit: cover;
                            object-position: 50% 50%;
                            transition: all .4s ease-in-out;
                        }
                    }
                     &:hover{
                        >a{
                            img{
                                transform: scale(1.09);
                            }
                        }
                    }
                }
                .name {
                    text-align: center;
                    background: #f7931e;
                    text-transform: uppercase;
                    padding: 10px;
                    >a {
                        color: #fff;
                        h3 {
                            font-size: 16px;
                            margin: 0;
                        }
                    }
                }
            }
        }
    }
}
/**
 * BENEFIT
 */
.gv_section_benefit {
    position: relative;
    overflow: hidden;
    .benefit_box {
        >row {
            align-items: stretch;
            [class*="col-"] {
                min-height: 100%;
            }
        }
        .benefit-item {
            .inner {
                text-align: center;
                height: 100%;
                border-radius: 6px;
                border: 1px solid #f7931e;
                padding: 5px 10px;
                box-shadow: 0 3px 6px -4px rgba(0,0,0,.16), 0 3px 6px rgba(0,0,0,.23);
                .image {
                    margin-bottom: 5px;
                    >img {
                        max-height: 80px;
                        min-height: 80px;
                    }
                }
                .name {
                    >h3 {
                        font-size: 18px;
                        font-weight: 600;
                        color: #d42a29;
                        text-transform: uppercase;
                    }
                }
                .desc {
                    text-align: justify;
                    text-align-last: center;
                }
            }
            @media (max-width: 767px){
                padding-top: 15px;
                padding-bottom: 15px;
            }
        }
    }
}

/**
 * ADVANTAGE
 */
.gv_section_advantage {
    position: relative;
    overflow: hidden;
    .advantage_box {
        >row {
            align-items: stretch;
            [class*="col-"] {
                min-height: 100%;
            }
        }
        .advantage-item {
            padding-top: 15px;
            padding-bottom: 40px;
            .inner {
                background: #f7931e;
                padding: 10px 10px 40px;
                border-radius: 5px;
                position: relative;
                height: 100%;
                color: #fff;
                text-align: center;
                .name {
                    h3{
                        font-size: 18px;
                        text-transform: uppercase;
                        padding: 10px 0;
                        font-weight: 600;
                    }
                }
                .desc {
                    text-align: justify;
                    text-align-last: center;
                }
                .icon {
                    position: absolute;
                    background: #fff;
                    width: 80px;
                    height: 80px;
                    padding: 10px;
                    border-radius: 100%;
                    top: 100%;
                    transform: translate(-50%, -50%);
                    left: 50%;
                    >span {
                        background: #f7931e;
                        border-radius: 100%;
                        display: block;
                        padding: 10px;
                        img {
                            width: 100%;
                        }
                    }
                }
            }
        }
    }
}

/**
 * NEW 
 */
.gv_section_new {
    position: relative;
    .new_box {
        .new_inner {
        }
    }
}

/**
 * PAGE
 */
.gv_page_contact {
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;

    .container {
        >.row{
            [class*="col-"]{
                padding-top: 10px;
                padding-bottom: 10px;
            }
        }
        @media(max-width: 991px){
            .row{
                flex-direction: column-reverse;
            }
        }
    }

    .contact_box {
        position: relative;
        padding: 25px;
        background: #fff;

        .note {
            background: #f2f2f2;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 20px;

            span {}

            b {
                color: red;
                font-weight: 400;
            }
        }

        .form_box {
            .wpcf7-form {

                input,
                textarea {
                    border-radius: 0;
                    border-color: #999;
                    padding: 8px 15px;
                    margin-bottom: 15px;
                }

                input.wpcf7-submit {
                    display: block;
                    width: auto;
                    margin-left: auto;
                    margin-right: auto;
                    padding: 9px 30px;
                    cursor: pointer;
                }

                div {
                    >label {
                        display: block;
                    }

                    >span {
                        width: 100%;
                        display: block;
                    }
                }
                @media(max-width:767px){
                    div{
                        >label{
                            width: 100%;
                            float: none;
                        }
                        >span{
                            margin-left: 0;
                            max-width: 100%;
                        }
                    }
                }
            }
        }
    }
    .contact {
        padding: 25px;
        position: relative;
        .name {
            font-size: 28px;
            font-weight: 600;
            text-transform: uppercase;
            padding: 10px 0;
        }
        .list {
            list-style: none;
            margin: 0;
            padding: 0;
            font-weight: 400;
            font-size: 15px;
            >li {
                >i {
                    margin-right: 10px;
                }
            }
        }
    }
}

/**
 * SINGLE
 */
.gv_section_single {
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    .container {
    	>.row{
    		>[class*="col-"]{
    			padding-top: 10px;
    			padding-bottom: 10px;
    		}
    	}
        @media(max-width: 991px){
            .row{
                flex-direction: column-reverse;
            }
        }
    }
}

/**
 * BLOG & NEWS
 */
.gv_section_blog {
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    .container {
    	>.row{
    		>[class*="col-"]{
    			padding-top: 10px;
    			padding-bottom: 10px;
    		}
    	}
        @media(max-width: 991px){
            .row{
                flex-direction: column-reverse;
            }
        }
    }
    .content_blog {
        .main_list {
            .list_box {}
            .post_item {
                padding-bottom: 30px;
                &:last-child{
                    padding-bottom: 15px;
                }
            }
        }
    }
}

/**
 * FOOTER
 */
.gv_section_footer {
    position: relative;
    overflow: hidden;
    background: #343a40;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #fff;
    .container {
        >.row {
            >[class*="col-"] {
                padding-top: 10px;
                padding-bottom: 10px;
            }
        }
    }
    .desc {
        font-size: 15px;
        padding-bottom: 10px;
    }
    .contact {
        list-style: none;
        padding: 0;
        margin: 0;

        >li {
            display: block;
            padding-bottom: 9px;
            padding-left: 25px;
            position: relative;
            font-size: 15px;
            font-weight: 400;
            >i {
                position: absolute;
                left: 0;
                top:2px;
            }
            &:last-child{
                margin-bottom: 0;
            }
        }
    }
    .menu {
        list-style: none;
        padding: 0;
        margin: 0;
        >li {
            display: block;
			position: relative;
			margin-bottom: 9px;
			font-size: 15px;
			font-weight: 500;
            >a {
                color: #fff;
                display: block;
                padding-left: 11px;
                position: relative;
                i{
                    position: absolute;
                    left: 0;
                    top: 3px;
                }
                &:hover {
                    color: var(--textHover);
                }
            }
            &:last-child{
                margin-bottom: 0;
            }
        }
    }
    .branch {
        position: relative;
        list-style: none;
        margin: 0 -10px;
        display: flex;
        flex-wrap: wrap;
        padding-bottom: 20px;
        width: 100%;
        >li {
            flex: 0 0 33.334%;
            max-width: 33.334%;
            padding: 5px 10px;
            @media (max-width: 991px){
                flex: 0 0 50%;
                max-width: 50%;
            }
            @media (max-width: 767px){
                flex: 0 0 100%;
                max-width: 100%;
            }
            span {
                display: block;
                position: relative;
                list-style: none;
                padding-left: 20px;
                &::before {
                    content: "\f041";
                    font: normal normal normal 14px/1 FontAwesome;
                    color: #fff;
                    font-weight: bold;
                    padding-right: 10px;
                    font-size: inherit;
                    position: absolute;
                    left: 0;
                    top: 3px;
                }
            }
        }
    }
}