@font-face {
    font-family: 'Open Sans';
    src: url(../fonts/open-sans.ttf);
}
.clear {
    clear: both;
    height: 0px;
    overflow: hidden;
}
ul {
    padding: 0;
}
header {
    position: relative;
    width: 100%;
    height: 85px;
}
.topbar {
    background-color: #2F395F;
    padding: 0px 0px;
    overflow: hidden;
}
@media (max-width: 480px){
header {
    height: 0;
}
.topbar {
    display: none;
}}

/* @media (max-width: 768px){
.topbar .container::after {
    width: 50%;
}} */
.topbar .w::after {
    content: '';
    position: absolute;
    right: 0;
    width: 40%;
    height: 100px;
    background-color: #F8351E;
    top: 0px;
    -webkit-clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0 100%);
    clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0 100%);
}
.w {
    width: 91.3%;
    margin: 0 auto;
}
.row_l {
    flex: 0 0 auto;
    width: 50%;
}
@media (min-width: 992px){
.row_l {
    flex: 0 0 auto;
    width: 58.33333333%;
}}
@media (min-width: 768px){
.row_l {
    flex: 0 0 auto;
    width: 66.66666667%;
}}
.topbar-contact {
    display: flex;
    justify-content: flex-start;
    height: 100%;
    align-items: center;
}
.topbar-contact li:first-child {
    padding-right: 15px;
    margin-left: 0;
}
.topbar-contact li {
    margin-left: 15px;
}
.topbar-contact li a {
    color: #ffffff;
}
.topbar-contact li a i {
    margin-right: 8px;
}
.row_r {
    flex: 0 0 auto;
    width: 50%;
}
@media (min-width: 992px){
.row_r {
    flex: 0 0 auto;
    width: 41.66666667%;
}}
@media (min-width: 768px){
.row_r {
    flex: 0 0 auto;
    width: 18%;
}}
@media (max-width: 768px){
    .row_r {
        display: none;
    }}
.topbar-social-wrapper {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 10;
}
.topbar-social-wrapper ul {
    margin: 0 auto;
    position: relative;
}
.topbar-social-wrapper ul li {
    display: inline-block;
    margin-left: 5px;
}
.topbar-social-wrapper ul li a {
    background: #013CA6;
    opacity: .9;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
}
.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (min-width: 992px){
.navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
}} 
.navbar>.w {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}
.navbar.fixed-top{
    position: fixed;
    background-color: #ffffff;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
    border-bottom: 1px solid #dee2e6;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.navbar-dark .navbar-nav .nav-link{
    color: #6D6D6D;
    font-family: MicrosoftYaHeiLight;
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-dark .navbar-brand {
    color: #fff;
    width: 220px;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown .nav-link:after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar-nav .nav-item{
    margin-right: 30px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: #005EB8;
}
.whatsapp-ewm{
    width: 110px;
    height: 110px;
    background: #fff;
    text-align: center;
    position: absolute;
    left: -35px;
    top: 50px;
    display: none;
}
.wx {
    width: 110px;
    height: 110px;
    background: #fff;
    text-align: center;
    position: absolute;
    left: 15px;
    top: 50px;
    display: none;
}
.topbar-social-wrapper .f-w.on .whatsapp-ewm, .topbar-social-wrapper .weixin.on .wx {
    display: block;
}
@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}


.navbar{
    background: #fff;
    box-shadow: transparent;
    transition: none !important;
    height: 85px;
}

.dropdown-menu{
    min-width: 14rem;
}


.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: #6D6D6D;
    font-family: 'Inter-Regular';
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
}
.navbar .nav-item .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
}

.dropdown-menu li a:hover{
    color: #005EB8;
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.dropdown-menu{
    transition: ease-in-out 0.3s;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0d6efd;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #1e2125;
    background-color: #e9ecef;
}
.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
}
.btn-main {
    color: #fff;
    background-color: #F8351E;
    transition: ease-in-out 0.3s;
    border: 1px solid #F8351E;
}
.theme-btn {
    border-radius: 6px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding: 10px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    transition: ease-in-out 0.3s;
    font-size: 14px;
}
.btn-main:hover {
    background-position: left bottom;
    color: #fff;
    background-color: #7f2116;
    transition: ease-in-out 0.3s;
}
.top-footer {
    background-color: #252525;
}
.all {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0px;
}
.f_m, .f_c, .f_e ,.f_l{
    width: 23%;
    margin-right: 2%;
}
.f_m h3, .f_c h3, .f_e h3, .f_l h3 {
    font-weight: bold;
	font-stretch: normal;
	line-height: 23px;
	letter-spacing: 0px;
	color: #777777;
    font-size: 14px;
    font-family: 'Open Sans';
}
.m li {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 8px 0px;
}
.m li a, .m p, .m a{
    font-size: 16px;
    color: #CCCCCC;
    font-family: 'Open Sans';
}
.m li a:hover,.m a:hover {
    color: #005EB8;
}
@media (min-width: 768px){
    .f_r {
        display: flex;
        justify-content: end;
        margin-top: -32px;
    }}
@media (max-width: 768px){
    .f_r {
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }}
.f_r a {
    cursor: pointer;
    display: inline-block;
    padding: 0 4px;
    vertical-align: middle;

}
.f_i {
    border-radius: 4px;
    height: 24px;
    line-height: 22px;
    opacity: 1;
    width: 24px;
    background-repeat: repeat;
    display: inline-block;
    float: none;
    vertical-align: middle;
}
.f_i svg {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: none;
    display: block;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    top: 0;
    width: 18px;
    height: 18px;
}
.f_label {
    border-radius: 4px;
    height: 32px;
    line-height: 32px;
    opacity: 1;
    width: 32px;
    display: inline-block;
    float: none;
    vertical-align: middle;
    position: absolute!important;
    -webkit-clip-path: polygon(0px 0px,0px 0px,0px 0px);
    overflow: hidden;
}
.f_r a:hover span {
    opacity: .7;
}
.m-img {
    float: left;
    margin-right: 30px;
}
.m-img img {
    width: 90%;
    height: auto;
}
@media (max-width: 768px){
    .f_m, .f_c {
        width: auto;
        margin: 0 auto;
    }
    .f_e, .f_l {
        width: auto;
        margin-left: 18%; 
    }
}
@media (max-width: 480px){
    .f_e, .f_l {
        margin-left: 0; 
    }
    .m-img {
        margin: 20px 5px;
    }
    .m-img img {
        width: 80%;
        height: auto;
    }
}
.bottom-footer {
    background-color: #1c1c1c;
    font-family: MicrosoftYaHeiLight;
	font-size: 13px;
    line-height: 32px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #ffffff;
}
.b_f {
    font-family: 'Open Sans';
    text-align: center;
}
.b_f p {
    float: right;
    margin-bottom: 0;
}
@media (max-width: 480px){
    .b_f p {
        float: none;
    }
    }
.navbar-dark .navbar-toggler {
    color: rgba(255,255,255,.55);
    border-color: rgba(255,255,255,.1);
}
@media (min-width: 992px){
.navbar-expand-lg .navbar-toggler {
    display: none;
}}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: box-shadow .15s ease-in-out;
}
[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}
.end {
    background-color: #F0F2F3;
}
.a-banner {
    position: relative;
}
.a-banner img {
    width: 100%;
}
@media (max-width: 768px) {
    .a-banner img {
        width: 100%;
        height: 200px;
    }
}
.m {
    padding-top: 50px;
}
.m .contact_us img {
    width: 80px;
    height: 80px;
}
.m .contact_us {
    display: flex;
}
.contact_us p {
    color: #005EB8;
    line-height: 42px;
    font-size: 18px;
    margin-bottom: 0;
}