﻿/*#region GLOBAL */
:root {
    font-size: 14px;
    --content-size: 1410px;
    --color: #dfa127;
    --color2: #da8240;
}
/*@font-face{
    font-family: 'Banque-Gothique';
    src: url(../fonts/Banque-Gothique.ttf) format('truetype');
    font-display: swap;
}
@font-face {
  font-family: 'UVF-BankGothic';
  src: url('../fonts/UVF-BankGothic.ttf') format('truetype');
  font-display: swap;
}
*/
html, body {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #da8240 #ccc;
    background-color: #111111;
    color: #fff;
}

h1, h2, h3, h4, h5 {
   font-family: 'Montserrat', sans-serif;
}

.kh_title_banner {
    font-family: utmedwardianbold !important;
}

::-webkit-scrollbar { 
    width: 7px; 
} 
  
::-webkit-scrollbar-thumb { 
    background: #da8240; 
} 
  
::-webkit-scrollbar-track { 
    background: #ccc; 
} 

a {
    text-decoration: none;
}

    a:active, a:visited, a:hover {
        text-decoration: none;
        transition: all 100ms ease-in 0ms;
    }

.gd_module img, .gd_banner img {
    max-width: 100%;
    width: 100%;
}
/*#endregion */

/*#region HEADER */
.progress {
    background: linear-gradient(to right,#183885 var(--scroll),transparent 0);
    position: fixed;
    width: 100%;
    height: 4px;
    z-index: 101;
    top: 0;
    opacity: 0.05;
}

#header {
    background: #111111;
    width: 100%;
    box-shadow: 0 1px 15px rgba(0,0,0,0.1);
    position: relative;
}

    #header.sticky {
        position: fixed;
        animation: fadeInDown 0.3s ease 0s;
        z-index: 100;
        top: 0;
    }

        #header.sticky .kh_box_header {
            background-color: #000;
        }

        #header.sticky::after {
            content: "";
            width: 100%;
            height: 100%;
            background-color: #fff;
            position: absolute;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            left: 0;
            top: 0;
            -webkit-transition: opacity 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out;
            z-index: -1;
        }

.admin-bar #header.sticky {
    top: 32px !important;
}

/*#header.sticky .gd_main_menu .sub-menu {
    top: 60px;
}
*/
#header.sticky .gd_main_menu .gd_menu__primary > li > a {
    padding: 1.5rem 0;
}

.logo {
    align-self: center;
    padding: 15px 0;
}

    .logo a {
        display: flex;
        align-items: baseline;
        height: 100%;
    }

    #header.sticky .logo {
        padding: 10px 0;
    }

    #header.sticky .logo a {
        height: 60px;
        /*overflow: hidden;*/
        position: relative;
        width: 160px;
    }

/*Menu*/
.gd_main_menu_container {
    display: flex;
    justify-content: flex-end;
    max-width: 100%;
    position: relative;
}

    .gd_main_menu_container .offer {
        display: inline-block;
        background: url(../images/offer.png) no-repeat center center;
        width: 81px;
        height: 71px;
        margin-left: 30px;
    }

.gd_main_menu ul {
    padding: 0;
}

.gd_main_menu .gd_menu__primary {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .gd_main_menu .gd_menu__primary li {
        list-style: none;
        padding: 0 12px;
        position: relative;
    }

        .gd_main_menu .gd_menu__primary li a {
            color: #333;
            display: block;
            padding: 8px 0;
        }

        .gd_main_menu .gd_menu__primary li:last-child {
        }

    .gd_main_menu .gd_menu__primary > li {
        padding: 0 30px;
    }

        .gd_main_menu .gd_menu__primary > li > a {
            text-transform: uppercase;
            font-size: 1rem;
            position: relative;
            text-decoration: none;
            overflow: hidden;
            white-space: nowrap;
            font-weight: 600;
            cursor: pointer;
            color: #f4ecec;
            padding: 1.88rem 0;
        }

            .gd_main_menu .gd_menu__primary > li > a::after, .gd_main_menu .gd_menu__primary > li > a::before {
                /*content: "";*/
                position: absolute;
                left: 0;
                background: #008ed4;
                height: 3px;
                width: 100%;
                bottom: 0;
                transform: translate(-100%);
                transition: all 300ms ease-in 0ms;
                visibility: hidden;
            }

            .gd_main_menu .gd_menu__primary > li > a:before {
                display: none;
                width: 25px;
                bottom: 0;
                transition: all 300ms ease-in 150ms;
            }

        .gd_main_menu .gd_menu__primary > li:hover > a::after, .gd_main_menu .gd_menu__primary > li:hover > a:before,
        .gd_main_menu .gd_menu__primary > li.current-menu-item > a::after, .gd_main_menu .gd_menu__primary > li.current-menu-item > a:before {
            visibility: visible;
            transform: translate(0);
        }

        .gd_main_menu .gd_menu__primary > li:hover > a, .gd_main_menu .gd_menu__primary .current-menu-item > a {
            color: var(--color) !important;
        }
        .gd_main_menu .gd_menu__primary > li:first-child:hover .fa.fa-home, .gd_main_menu .gd_menu__primary > li.current-menu-item:first-child .fa.fa-home {
            color: var(--color);
        }

    .gd_main_menu .gd_menu__primary .current-menu-item > a {
    }

    .gd_main_menu .gd_menu__primary > li:hover, .gd_main_menu .gd_menu__primary .current-menu-item {
    }

    .gd_main_menu .gd_menu__primary > li:first-child {
        padding-left: 0;
    }

        .gd_main_menu .gd_menu__primary > li:first-child:hover, .gd_main_menu .gd_menu__primary > li.current-menu-item:first-child {
            background: none;
        }

        .gd_main_menu .gd_menu__primary > li:first-child > a {
            /*font-size: 0;
                    background: url('../images/icon/icon-home.png') no-repeat center center;
                    height: 47px;
                    width: 47px;*/
        }

    .gd_main_menu .gd_menu__primary > li.menu-item-has-children::before {
        content: "\e5cf";
        display: none;
        position: absolute;
        right: -2px;
        top: 50%;
        font-family: 'icomoon' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .gd_main_menu .gd_menu__primary > li.menu-item-has-children.mega-menu::before {
        display: none;
    }

.gd_main_menu .sub-menu {
    display: block;
    left: 0;
    position: absolute;
    top: 108%;
    z-index: 1000;
    visibility: hidden;
    min-width: 80%;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

    .gd_main_menu .sub-menu.submenu_right {
        right: 100% !important;
        top: 0;
        left: auto;
        margin-right: 1px;
        -moz-transform-origin: right;
        -ms-transform-origin: right;
        -o-transform-origin: right;
        -webkit-transform-origin: right;
        transform-origin: right;
    }

    .gd_main_menu .sub-menu.submenu_left {
        left: 100% !important;
        top: 0;
        right: auto;
        margin-left: 1px;
        -moz-transform-origin: left;
        -ms-transform-origin: left;
        -o-transform-origin: left;
        -webkit-transform-origin: left;
        transform-origin: left;
    }

.gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) .sub-menu {
    box-shadow: 0px 3px 3px #a1a1a1;
    border-top: 3px solid #fff112;
    border-bottom: 2px solid #f0f0f0;
}

.gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) > .sub-menu {
    transform: translateX(-50%) rotateX(90deg);
    left: 50%;
    transform-origin: center top 0;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    visibility: hidden;
}

.gd_main_menu ul.gd_menu__primary > li:hover:not(.mega-menu) > .sub-menu {
    opacity: 1;
    transform: translateX(-50%) rotateX(0deg);
    visibility: visible;
}

.gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) .sub-menu li {
    border-bottom: 1px solid #e5e5e5;
    -moz-transition: all 300ms ease-in 0ms;
    -o-transition: all 300ms ease-in 0ms;
    -webkit-transition: all 300ms ease-in 0ms;
    transition: all 300ms ease-in 0ms;
    padding: 0;
}

    .gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) .sub-menu li a {
        background: #fff;
        padding: 8px 15px;
        white-space: nowrap;
        font-size: 1rem;
    }
        
    .gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) .sub-menu li:hover > a {
        background: #f8f9fa;
    }

    .gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) .sub-menu li:last-child {
        border: none;
    }

    .gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) .sub-menu li .sub-menu {
        transform: rotateY(90deg);
        margin-top: -3px;
    }

    .gd_main_menu ul.gd_menu__primary > li:not(.mega-menu) .sub-menu li:hover > .sub-menu {
        visibility: visible;
        opacity: 1;
        transform: rotateY(0deg);
    }

.cta_hotline {
    display: inline-block;
    background-color: #f26522;
    color: #fff;
    font-weight: bold;
    padding: 8px 15px;
    line-height: 1;
    border-radius: 1px;
    margin-left: 5px;
}

.gd_header_cta {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.kh_language_btn {
    display: flex;
    border: 1px solid #c4c4c4;
    border-radius: 20px;
    overflow: hidden;
  /*! background-color: #0077c1; */
}
.kh_box_header {
    padding: 0 50px;
}
.kh_box_header .d-flex.justify-content-between {
    align-items: center;
}
.kh_language_btn .kh_btn {
    padding: 3px 7px;
    border-right: 1px solid #c4c4c4;
    transform: skew(-13deg);
    background-color: #fff;
}
.kh_text_btn {
    transform: skew(13deg);
    padding: 0 5px;
}
.kh_language_btn .kh_btn:last-child {
    border-right: unset;
}
.kh_language_btn .kh_btn.active {
    background-color: #0077c1;
}
.kh_language_btn .kh_btn.active .kh_text_btn {
    color: #fff;
}


.cta_hotline i {
    margin-right: 5px;
}

.cta_hotline:hover {
    background-color: #183885;
    color: #fff;
}

.search-form {
    width: 100%;
    position: absolute;
    right: 0;
    z-index: 10;
    background: rgba(0,0,0,0.92);
    text-align: center;
    height: 55px;
    display: none;
    animation: fadeInDown 0.3s ease 0s;
    bottom: -55px;
    max-width: 400px;
}

.search_active .search-form {
    display: block;
    /* position: fixed; */
    /* height: 100vh; */
    /* top: 0; */
    /* z-index: 101; */
}

.gd_search__box .search-icon {
    cursor: pointer;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    border: 1px solid var(--color2);
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;;    
    z-index: 999999;
    position: sticky;
    margin-left: 15px;
}
.gd_search__box .search-icon i {
    font-weight: 900;
    font-size: 13px;
}

.search-form .d-flex {
    max-width: 1200px;
    margin: auto;
}

.search-form .form-control {
    background: transparent;
    border: none;
    border-radius: 0;
    height: 55px;
    font-size: 16px;
    color: #fff;
    text-align: left;
}

    .search-form .form-control:focus {
        border: none;
        box-shadow: none;
        background: none;
        color: #fff;
    }

    .search-form .form-control::-moz-placeholder, .search-form .form-control::placeholder {
        /*color: rgba(255,255,255,0.85);*/color: #fff;
    }
    .search-form .form-control::placeholder {
        color: rgba(255,255,255,0.85) !important;
        font-size: 1rem;
    }
.search-form [type="submit"] {
    border: none;
    color: #fff;
    background-color: unset;
    padding: 15px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold;
    padding-right: 15px;
    padding-bottom: 7px;
}
.search_active .search-form .d-flex {
    /* position: absolute; */
    left: 50%;
    border-bottom: 1px solid rgba(255,255,255,.5);
    /* transform: translate(-50%, -50%); */
    /* top: 50%; */
    /* justify-content: space-between; */
    padding: 0 15px;
}
.search_active .search-form .form-control {
    padding: 10px 15px;
    background: transparent;
    color: #fff;
    width: 100%;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    font-size: 30px;
    flex: 1 0 70%;
    font-weight: 100;
    padding-left: 0;
}
.search_active .search-form .far.fa-search {
    font-size: 20px;
    padding-top: 10px;
}
.kh_btn_search {
    display: flex;
}
.far.fa-search {
}
.kh_btn_search .far.fa-search {
    margin-right: 7px;
    color: #a3001c;
}
.kh_txt_search {
    color: rgba(255,255,255,0.85);
    padding-top: 7px;
}

/*Test CTA box header*/
.gd_header_cta .kh_language {
    padding-left: 10px;
}
.hb_languages_box {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color2);
    border-radius: 50%;
}
.kh_icon_hotline {
    height: max-content;
}
.kh_hotline_header {
    align-items: center;
    padding: 5px 20px 5px 4px;
    background-color: #252525;
    border-radius: 30px;
}
.kh_icon_hotline a {
    padding: 9.5px 10px;
    color: #111111;
    background-color: #f3ec78;
    background-image: linear-gradient(45deg, #f6bb2f, #fde583, #f6bb2f);
    border-radius: 50%;
}
.kh_right_hotline div {
    color: #fff;
    font-weight: 600;
    line-height: 1;
}
.kh_right_hotline a {
    color: var(--color);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}
.kh_right_hotline {
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding-left: 10px;
}

/*#endregion */
/* ----------- Non-Retina Screens ----------- */
@media screen and (max-device-width: 1600px) and (min-device-width: 1440px) {
    .gd_header_cta {
        margin-left: 0;
    }
    .gd_main_menu .gd_menu__primary > li {
        padding: 0 10px;
    }
    .gd_main_menu .gd_menu__primary > li > a{
        font-size: 15px;
    }
    
}
@media screen and (min-device-width: 1600px) and (max-device-width: 1800px) {
/*   .gd_header_cta {
        margin-left: 100px;
    }
    .gd_main_menu .gd_menu__primary > li {
        padding: 0 35px;
    }
    .gd_main_menu .gd_menu__primary > li > a{
        font-size: 1rem;
    }*/
}
@media screen and (min-device-width: 1440px) and (-webkit-min-device-pixel-ratio: 1) {
    :root {
        font-size: 16px;
    }

    .container {
        max-width: 1410px;
    }
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1440px) {
    :root {
        font-size: 14px;
        --content-size: 1170px;
    }

    .container {
        max-width: 1170px;
    }
    .gd_main_menu .gd_menu__primary > li {
        padding: 0 10px;
    }
    .gd_header_cta {
        margin-left: 5px;
    }
   
    .kh_right_hotline a{
        font-size: 1rem;
    }
    .kh_hotline_header{
        padding: 5px 15px 5px 4px;
    }
    .kh_box_header{
        padding: 0 20px;
    }
    #header.sticky .logo a{
        height: auto;
    }
    .kh_icon_hotline a{
        padding: 10px 11.5px;
    }
}
@media only screen and (max-width: 1200px) {
    .gd_main_menu .gd_menu__primary > li{
        padding: 0 5px;
    }
    .gd_main_menu .gd_menu__primary > li > a{
        font-size: 0.9rem;
    }
}

@media only screen and (max-width: 1199px) {
    :root {
        font-size: 14px;
        --content-size: 960px;
    }

    .logo {
        align-self: center;
        padding: 15px 0;
    }

    .gd_main_menu .gd_menu__primary > li {
        padding: 18px 4px 16px;
        padding-left: 4px;
    }
    .gd_header_cta {
        margin-left: 0px;
    }
    .logo {
        margin-right: 10px;
    }
}
@media only screen and (max-width: 1119px) and (min-width: 1080px) {
    .kh_language_btn .kh_btn {
        padding: 3px 2px;
    }
    .kh_text_btn {
        padding: 0 2px;
    }

    .gd_header_cta {
        margin-left: 0px;
    }
    .logo {
        margin-right: 10px;
    }
    .kh_hotline_header {
        display: none !important;
    }

}
@media screen and (max-device-width: 1024px){
    .gd_main_menu .gd_menu__primary > li{
        padding: 18px 5px 16px;
    }
    .kh_box_header{
        padding: 0 30px;
    }
    .kh_hotline_header{
        padding: 5px 10px 5px 4px; 
    }
    .kh_icon_hotline a{
        padding: 5px 7px;
    }
    .logo img{
        max-width: 130px;
    }
    #header.sticky .logo a{
        width: auto;
    }
    .kh_right_hotline a{
        font-size: 1rem;
    }
    .gd_main_menu .gd_menu__primary > li > a {
        font-size: 0.76rem;
    }
}
@media only screen and (min-device-width : 992px) and (max-device-width : 1199px) {
    :root {
        font-size: 14px;
        --content-size: calc(100vw - 30px);
    }

    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .gd_main_menu .gd_menu__primary > li {
        padding: 18px 7px 16px;
    }

        .gd_main_menu .gd_menu__primary > li > a {
            padding: 10px 0;
        }

    #header.sticky .gd_main_menu .gd_menu__primary > li > a {
        padding: 10px 0;
    }
}

@media only screen and ( max-width: 992px) and ( min-width: 768px) {
    .gd_header_cta {
        padding-right: 50px;
    }

    .gd_main_menu_container {
        position: relative;
    }

    .search-form {
        width: 100vw;
        right: -39px;
        left: auto;
    }

    :root {
        font-size: 14px;
        --content-size: 720px;
    }
}

@media only screen and (max-width: 992px) {

    .logo {
        max-width: 272px;
        z-index: 10000;
    }

    /* #region MEAN MENU*/
    /* hide the link until viewport size is reached */
    a.meanmenu-reveal {
        display: none;
    }

    /* when under viewport size, .mean-container is added to body */
    .mean-container .mean-bar {
        background: none;
        float: right;
        padding: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 9999;
    }

    .mean-container a.meanmenu-reveal {
        color: #fff112;
        cursor: pointer;
        display: block;
        font-family: Arial;
        font-weight: 700;
        padding: 0;
        position: absolute;
        text-decoration: none;
        width: 40px;
        background: none;
        border-radius: 4px;
    }

    .gd_menu__mobile.mean-container {
        height: 100%;
        width: 100%;
    }

    .gd_main_menu_container {
        display: block;
    }

        .mean-container a.meanmenu-reveal::before {
            content: "MENU";
            font-size: 11px;
            font-weight: 400;
            text-indent: 0px;
            display: block;
            line-height: 1;
            text-align: center;
        }

        .mean-container a.meanmenu-reveal.meanclose::before {
            display: none;
        }

        .mean-container a.meanmenu-reveal span {
            background: #fff112;
            border-radius: 3px;
            display: block;
            height: 2px;
            margin: 4px 0 0 5px;
            width: 30px;
        }

            .mean-container a.meanmenu-reveal span:first-child {
                margin-top: 4px;
            }

    .mean-container .mean-nav {
        position: fixed;
        width: 100vw;
        left: 0;
        top: 0;
        padding: 0;
        z-index: 2000;
        max-height: calc(100vh - 50px);
        overflow-y: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
        /*margin-top: 72px;*/
    }

        .mean-container .mean-nav::-webkit-scrollbar {
            display: none; /* Chrome Safari */
        }

        .mean-container .mean-nav ul {
            padding: 0;
            margin: 0;
            width: 100%;
            background: var(--color);
            list-style-type: none;
            float: left;
        }


            .mean-container .mean-nav ul li {
                border-top: 1px solid rgba(255,255,255,0.2);
                background: none;
                float: left;
                position: relative;
                width: 100%;
            }

                .mean-container .mean-nav ul li a {
                    color: #fff;
                    display: block;
                    font-size: 1.125rem;
                    float: left;
                    line-height: 42px;
                    margin: 0;
                    padding: 0;
                    text-align: left;
                    text-decoration: none;
                    width: 100%;
                }

                .mean-container .mean-nav ul li li a {
                    width: 90%;
                    padding: 0 5%;
                    opacity: 0.75;
                    filter: alpha(opacity=75);
                    text-shadow: none !important;
                    visibility: visible;
                }

        .mean-container .mean-nav > ul > li:first-child {
            border: none;
        }

        .mean-container .mean-nav .sub-menu li a {
            text-transform: none;
            white-space: nowrap;
        }

        .mean-container .mean-nav ul li.mean-last a {
            border-bottom: none;
            margin-bottom: 0;
        }

        .mean-container .mean-nav ul li li li a {
            width: 80%;
            padding: 0 10%;
        }

        .mean-container .mean-nav ul li li li li a {
            width: 70%;
            padding: 0 15%;
        }

        .mean-container .mean-nav ul li li li li li a {
            width: 60%;
            padding: 0 20%;
        }

        .mean-container .mean-nav ul li a:hover {
            background: rgba(255, 255, 255, 0.1);
            font-weight: bold;
        }

        .mean-container .mean-nav ul li a.mean-expand {
            margin-top: -1px;
            width: 45px;
            line-height: 1rem;
            padding: 12px !important;
            text-align: center;
            position: absolute;
            right: 0;
            top: 0;
            z-index: 2;
            font-weight: 300;
            background: none;
            border: none !important;
            /* border-left: 1px solid rgba(255, 255, 255, 0.4) !important; */
            /* border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important; */
            color: rgba(255,255,255,0.5);
        }

            .mean-container .mean-nav ul li a.mean-expand:hover {
                background: none;
            }

    .mean-container .mean-push {
        float: left;
        width: 100%;
        padding: 0;
        margin: 0;
        clear: both;
    }

    .mean-nav .wrapper {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    /* Fix for box sizing on Foundation Framework etc. */
    .mean-container .mean-bar, .mean-container .mean-bar * {
        /*-webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;*/
    }

    .mean-remove {
        display: none !important;
    }

    .home .mean-container a.meanmenu-reveal, .sticky .mean-container a.meanmenu-reveal {
        color: #fff112;
    }

        .home .mean-container a.meanmenu-reveal span, .sticky .mean-container a.meanmenu-reveal span {
            background: #fff112;
        }

    .mean-container .mean-nav > .gd_menu__primary {
        padding: 0 15px;
    }
    /* #endregion MEANMENU*/
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .kh_hotline_header {
        display: flex !important;
    }
}

@media only screen and (max-width: 767px) {
    :root {
        font-size: 14px;
        --content-size: calc(100vw - 30px);
    }

    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .mean-container .mean-bar {
        position: absolute;
        right: 15px;
    }
    .kh_box_header {
        padding: 0 15px;
    }
    .gd_header_cta {
        padding-right: 50px;
    }
    .gd_c_lang {
        border-bottom: none;
    }
    #header.sticky .logo a {
        height: unset;
    }
    .logo {
        max-width: 150px;
    }
    .kh_language_btn .kh_btn {
        padding: 3px 2px;
    }
    .kh_text_btn {
        padding: 0 3px;
    }
    .gd_header_cta {
        margin-left: unset;
    }
    .search-form .form-control::placeholder{
        font-size: 13px;
    }
    .gd_search__box .kh_txt_search{
        display: none;
    }
    .search_active .search-form{
        z-index: 10000;
    }
}

@media only screen and (min-width: 577px) and (max-width: 636px) {
    .gd_header_cta {
        margin-right: 15px;
    }
}

@media only screen and (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .logo {
        padding: 7px 0;
    }
    .logo a {
        align-items: center;
    }

    .logo a .img-fluid {
        max-width: 80%;
    }

    .mean-container .mean-bar {
        top: 0;
        display: flex;
        align-items: center;
    }
    .gd_header_cta {
        display: block;
    }
    .gd_search__box .search-icon {
        margin-right: 15px;
    }
    .search_active .search-form {
        width: 100vw;
        right: -15px;
    }

    .kh_hotline_header {
        display: none !important;
    }

    .cta_hotline {
        display: none;
    }
    .gd_c_lang span {
        display: none;
    }

    .gd_banner .owl-dots .owl-dot span {
        width: 10px !important;
        height: 10px !important;
    }

    .gd_banner .owl-dots {
        bottom: 5px !important;
    }
}
@media screen and (max-width: 375px){
    .mean-container .mean-nav .sub-menu li a {
        white-space: inherit;
        line-height: 1.42;
        font-size: 14px;
        padding: 12px 15px;
    }
    .gd_c_lang span {
        display: none;
    }
    .gd_c_lang > img {
        margin-right: 0;
    }
}
