@font-face {
    font-family: "MontserratBold";
    src: url("../fonts/MontserratBold.eot");
    /* IE9 Compat Modes */
    src: url("../fonts/MontserratBold.eot?#iefix") format("Lato-Regular"), url("../fonts/MontserratBold.woff") format("woff"), url("../fonts/MontserratBold.woff2") format("woff2"),
    url("../fonts/MontserratBold.ttf") format("truetype"), url("../fonts/MontserratBold.svg#Lato-Regular") format("svg");
    font-display: swap;
    /* Legacy iOS */
}

@font-face {
    font-family: "MontserratRegular";
    src: url("../fonts/MontserratRegular.eot");
    /* IE9 Compat Modes */
    src: url("../fonts/MontserratRegular.eot?#iefix") format("SegoeProDisplayRegular"), url("../fonts/MontserratRegular.woff") format("woff"),
    url("../fonts/MontserratRegular.ttf") format("truetype"), url("../fonts/MontserratRegular.svg#SegoeProDisplayRegular") format("svg");
    font-display: swap;
    /* Legacy iOS */
}

@font-face {
    font-family: "MontserratAlternatesLight";
    src: url("../fonts/MontserratLight.eot");
    /* IE9 Compat Modes */
    src: url("../fonts/MontserratLight.eot?#iefix") format("SegoeProDisplayBold"), url("../fonts/MontserratLight.woff") format("woff"),
    url("../fonts/MontserratLight.ttf") format("truetype"), url("../fonts/MontserratLight.svg#SegoeProDisplayBold") format("svg");
    font-display: swap;
    /* Legacy iOS */
}

:root {
    --orange-color: rgba(255, 110, 1, 1);
    --Green-color: #095143;
    --darkGreen-color: #0e3429;
    --blue-color: #4472c4;
    --light-blue-color: rgba(58, 130, 254, 1);
    --white-color: rgba(255, 255, 255, 1);
    --yellow-color: #dea01e;
    --light-green-color: #37b35c;
    --dark-blue--color: rgba(19, 52, 85, 1);
    --black-color: #5f5f5f;
    --light-blackColor: #7d7f80;
    --red-color: rgba(228, 60, 92, 1);
    --light-red-color: rgba(253, 239, 242);
    --darkBlack-color: #111;
    --purple-color: rgba(103, 84, 152, 1);
    --light-purple-color: rgba(145, 153, 216, 1);
    --font-size: 1rem;
    --main-color: #4472c4;
}

html {
    font-size: 0.833vw;
}

@media screen and (min-width: 1921px) {
    html {
        font-size: 16px;
    }
}

/*@media screen and (min-width: 1151px) and (max-width: 1200px) {
  html {
    font-size: 1.2vw;
  }
}*/
@media screen and (max-width: 1150px) {
    html {
        font-size: 14px;
    }
}

body {
    margin: 0px;
    padding: 0px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background-position: top center;
    background-repeat: no-repeat;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.8em;
    -webkit-text-size-adjust: none;
    color: var(--black-color);
    letter-spacing: 0.1px;
    overflow-x: hidden;
}

@media screen and (max-width: 1080px) {
    body {
        padding: 10px;
    }
}

a:hover {
    text-decoration: none;
}

header {
    position: sticky;
    top: 0;
    background-color: var(--white-color);
    z-index: 100;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

a:hover {
    color: var(--orange-color);
    transition: color 0.3s;
}

a {
    color: var(--blue-color);
    text-decoration: none;
}

h1, .h1,
h2, .h2,
h3, .h3 {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: bold;
}

h3 {
    font-size: calc(1.2 * var(--font-size));
}

h4,
h5,
h6 {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: bold;
}

p {
    margin: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}

@media screen and (min-width: 1201px) {
    body {
        font-size: 16px;
        --font-size: 16px;
    }
}


img {
    max-width: 100%;
    height: auto;
}

sub,
sup {
    position: relative;
    font-size: 50%;
    line-height: 0;
}

.clear {
    clear: both;
}

p a[href],
li > a[href] {
    color: var(--blue-color);
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
}

p a[href]:hover,
li > a[href]:hover {
    color: var(--yellow-color);
}

.row-layout {
    display: flex;
}

@media screen and (max-width: 1080px) {
    .row-layout {
        flex-direction: column;
    }
}

@media screen and (min-width: 1081px) {
    .row-layout {
        flex-direction: row;
    }
}

.gotop {
    position: fixed;
    border: 1px solid var(--blue-color);
    background: none;
    height: 40px;
    width: 40px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    bottom: 40px;
    right: 10px;
    z-index: 100;
    box-shadow: 1px 0 20px rgba(126, 126, 126, 0.5);
    cursor: pointer;
    outline: none;
    display: none;
}

.gotop > span {
    font-size: 24px;
    color: var(--blue-color);
}

@media screen and (min-width: 1151px) {
    header {
        box-shadow: 1px 0 20px rgba(21, 21, 21, 0.1);
    }

    .header-shell {
        position: relative;
        width: 100%;
        z-index: 100;
    }

    .header-shell .naviBlock {
        position: relative;
        padding: 10px 0px 0px;
    }

    .header-shell .naviBlock > .row-layout {
        justify-content: space-between;
        align-items: center;
    }
}

@media screen and (max-width: 1200px) {
    .header-shell .naviBlock {
        padding: 5px 15px 10px;
    }

    .header-shell .naviBlock .navigation_title.row-layout {
        display: none;
    }

    .header-shell .naviBlock > .row-layout {
        display: unset;
    }

    .header-shell .naviBlock > .row-layout > .row-layout {
        display: unset;
    }
}

.logo {
    position: relative;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    display: block;
    line-height: 1.3;
}
.logo img{
	width: auto;
	height: 50px;
	max-width: 100%;
}

/**************************************************mobile-menu****************************************************/
@media (max-width: 1200px) {
    .mobile-menu svg {
        height: 60px;
        position: absolute;
        width: 60px;
    }

    .mobile-menu {
        height: 60px;
        width: 60px;
        position: absolute;
        right: 10px;
        top: 0;
        z-index: 200;
    }

    /*    .burger {
            filter: url(#gooeyness);
        }*/
    .mobile-menu .x {
        transform: scale(0);
        transition: transform 400ms;
    }

    .mobile-menu .line {
        fill: none;
        stroke: white;
        stroke-width: 6px;
        stroke-linecap: round;
        stroke-linejoin: round;
        transform-origin: 50%;
        transition: stroke-dasharray 500ms 200ms, stroke-dashoffset 500ms 200ms, transform 500ms 200ms;
    }

    .x .line {
        stroke-width: 5.5px;
    }

    .mobile-menu .line2 {
        stroke-dasharray: 40 200;
        stroke-dashoffset: 0px;
    }

    .mobile-menu .line3 {
        stroke-dasharray: 40 179;
        stroke-dashoffset: 0px;
    }

    .active .line {
        transition: stroke-dasharray 500ms, stroke-dashoffset 500ms, transform 500ms;
    }

    .active.mobile-menu .line1 {
        transform: scale(0, 1);
        transition: transform 500ms 100ms;
    }

    .active.mobile-menu .line2 {
        stroke-dasharray: 5px 200;
        stroke-dashoffset: -164px;
    }

    .active.mobile-menu .line3 {
        stroke-dasharray: 5px 179;
        stroke-dashoffset: -142px;
    }

    .active.mobile-menu .x {
        transform: scale(1);
        transition: transform 400ms 350ms;
    }
}

@media screen and (min-width: 1200px) {
    .mobile-menu {
        display: none;
    }

    .mobile-nav {
        display: flex;
        align-items: center;
    }
}

/**************************************************mobile-menu****************************************************/
@media screen and (min-width: 1200px) {
    .navigation_title {
        display: flex;
    }

    .navigation_title > li {
        padding: 10px 15px;
        --leng: 0;
    }

    .navigation_title > li > a {
        font-size: 17px;
        line-height: 22px;
        position: relative;
    }

    .navigation_title > li > a::before {
        position: absolute;
        content: "";
        background: var(--black-color);
        height: 1px;
        bottom: -10px;
        left: 0;
        width: var(--leng);
        -webkit-transition: all ease-in-out 0.4s;
        -moz-transition: all ease-in-out 0.4s;
        -ms-transition: all ease-in-out 0.4s;
        -o-transition: all ease-in-out 0.4s;
        transition: all ease-in-out 0.4s;
    }

    .navigation_title > li > ul {
        display: none;
        position: absolute;
        width: 100%;
        top: 95%;
        left: 0;
        background: var(--white-color);
        padding: 30px;
    }

    .navigation_title > li > ul > li > a {
        font-weight: bold;
    }

    .navigation_title > li > ul li {
        position: relative;
        width: 100%;
    }

    .navigation_title > li > ul li a {
        color: var(--black-color);
    }

    .navigation_title > li > ul li span {
        width: 20px;
        height: 20px;
        position: absolute;
        right: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        top: 5px;
        -webkit-transition: all ease-in-out 0.4s;
        -moz-transition: all ease-in-out 0.4s;
        -ms-transition: all ease-in-out 0.4s;
        -o-transition: all ease-in-out 0.4s;
        transition: all ease-in-out 0.4s;
        cursor: pointer;
    }

    .navigation_title > li > ul li ul {
        display: none;
    }

    .navigation_title > li > ul > li > ul {
        display: block;
    }

    .navigation_title > li > ul > li > ul ul {
        margin-left: 1rem;
    }

    .navigation_title > li > ul > li > span {
        display: none;
    }

    .navigation_title > li:hover {
        --leng: 100%;
    }

    .navigation_title > li:hover > ul {
        display: grid;
        grid-template-columns: repeat(auto-fill, 31%);
        justify-content: space-between;
        box-shadow: 1px 0 20px rgba(21, 21, 21, 0.2);
    }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
	.navigation_title > li > a{
		font-size: 15px;
	}
    .navigation_title > li {
        padding: 10px 10px;
    }
    .header-shell .container{
    	width: 100%;
    	max-width: 100%;
    	padding: 0px 15px;
    }
}
@media screen and (max-width: 1200px) {

.head-information{
	display: none !important;
}
	
}

@media screen and (max-width: 1200px) {
    .navigation_title {
        display: none;
        margin-top: 60px;
        width: 100%;
    }

    .navigation_title li {
        position: relative;
    }

    .navigation_title > li {
        padding: 5px 0;
    }

    .navigation_title > li > a {
        font-weight: bold;
    }

    .navigation_title a {
        color: var(--white-color) !important;
    }

    .navigation_title ul {
        display: none;
        margin-left: 15px;
    }

    .navigation_title span {
        width: 20px;
        height: 20px;
        position: absolute;
        right: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        top: 5px;
        -webkit-transition: all ease-in-out 0.4s;
        -moz-transition: all ease-in-out 0.4s;
        -ms-transition: all ease-in-out 0.4s;
        -o-transition: all ease-in-out 0.4s;
        transition: all ease-in-out 0.4s;
        cursor: pointer;
        color: var(--white-color);
    }

    .mobile-nav {
        position: relative;
        background: var(--blue-color);
        padding: 10px;
        min-height: 60px;
    }

    .mobile-nav::before {
        position: absolute;
        content: "Menu";
        left: 10px;
        top: 15px;
        color: var(--white-color);
        font-weight: bold;
        font-size: 1.2rem;
    }
}

.navigation_title li a {
    color: var(--black-color);
}

@media screen and (min-width: 1081px) {
    .moreContentLayout .naviView {
        display: none;
        width: 100%;
        grid-template-columns: repeat(auto-fill, 22%);
        grid-template-rows: none;
        grid-auto-flow: unset;
        height: max-content;
        grid-gap: 20px;
    }

    /*  .moreContentLayout .naviView > ul {
      max-height: unset;
      overflow-y: unset;
      overflow-x: unset; }*/
    .moreContentLayout:hover .naviView {
        display: block !important;
    }

    .moreContentLayout:hover .naviView > li > a {
        display: block;
        border-bottom: 1px solid rgba(21, 21, 21, 0.1);
        margin-bottom: 3px;
    }

    .moreContentLayout .naviView > li > ul {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, 31%);
        justify-content: space-between;
        max-height: unset !important;
        overflow: unset !important;
    }

    .moreContentLayout .naviView > li > ul > li {
        margin: 5px 0;
    }

    .moreContentLayout .naviView > li > ul > li > ul {
        position: absolute;
        display: none;
        background-color: var(--white-color);
        width: 100%;
        padding: 10px;
        box-shadow: 1px 0 20px rgba(21, 21, 21, 0.1);
    }

    .moreContentLayout .naviView > li > ul > li > span {
        display: block;
    }

    .moreContentLayout .naviView > li > ul > li:hover {
        z-index: 10;
    }

    .moreContentLayout .naviView > li > ul > li:hover > ul {
        display: block;
    }

    .moreContentLayout .naviView {
        overflow: unset;
        width: 100%;
    }

    .moreContentLayout .naviView .navigation_content {
        width: 100%;
        max-width: unset;
    }
}

.navigation_title > li:hover > ul.block {
    display: block !important;
    width: max-content;
}

.fixed_header-shell {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: white;
    -webkit-animation: ease-in-out frombottom 0.5s;
    -o-animation: ease-in-out frombottom 0.5s;
    animation: ease-in-out frombottom 0.5s;
    height: max-content;
    box-shadow: 1px 2px 4px 1px rgba(12, 12, 12, 0.3);
    width: 100%;
}

.fixed_header-shell .logo {
    width: 280px;
}

.fixed_header-shell .navigation_title li a {
    color: var(--black-color) !important;
}

.rotate-angle {
    -webkit-transform: rotateZ(90deg);
    -moz-transform: rotateZ(90deg);
    -ms-transform: rotateZ(90deg);
    -o-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
}

.search-platform {
    position: relative;
    padding: 0;
    background: var(--white-color);
    border-radius: 4px;
    border: 1px solid var(--blue-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5px;
}

.search-platform input {
    position: relative;
    padding: 0px 10px;
    border: none;
    outline: none;
    width: 200px;
    flex-grow: 1;
}

.search-platform select {
    border: none;
}

.search-platform button {
    position: relative;
    outline: none;
    --color: var(--blue-color);
    background: var(--color);
    border: 1px solid var(--color);
    color: var(--white-color);
    cursor: pointer;
    padding: 12px;
    font-size: 16px;
    transition: all ease-in-out 0.4s;
    display: block;
}

.search-platform button:hover {
    color: var(--yellow-color);
}

@media screen and (min-width: 1200px) {
    .header-search > input {
        width: 200px;
    }
}

@media screen and (max-width: 1200px) {
    .header-search > span {
        display: none;
    }

    .search-platform {
        display: none;
        width: 100%;
        margin: 0px 0;
        position: absolute;
        left: 0px;
        top: 100%;
        background: #fff;
    }
    .search-platform.shows {
        display: flex;
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container,.maincon{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 100vw;
}

@media (max-width: 576px) {
    .container-sm,
    .container,.maincon {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md,
    .container-sm,
    .container,.maincon {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-lg,
    .container-md,
    .container-sm,
    .container,.maincon {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container,.maincon {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container,.maincon {
        max-width: 1360px;
    }
}
@media (max-width: 768px) {
   .maincon {
        max-width: 100%;
        width: 100%;
        padding: 0px 15px;
    }
}
.new-btn {
    padding: 0.2rem 2rem;
    background: var(--blue-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: var(--font-size);
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: block;
    width: max-content;
}

.new-btn:hover {
    /*color: var(--blue-color);*/
    color: #fff;
}

.new-btn:hover::after {
    transform: skewX(-45deg) scale(1, 1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.new-btn::after {
    content: "";
    background: var(--orange-color);
    position: absolute;
    z-index: -1;
    left: -20%;
    right: -20%;
    top: 0;
    bottom: 0;
    transform: skewX(-45deg) scale(0, 1);
    transition: all 0.5s;
}

a.new-btn {
    padding: 0.5rem 2rem;
}

.contact-address::before,
.contact-email::before,
.contact-call::before,
.contact-fax::before {
    position: absolute;
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-family: "icomoon";
    width: 30px;
    height: 30px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    font-size: 1.2em;
    /*background:var(--red-color);*/
    color: var(--blue-color);
}

.contact-address::before {
    content: "\e904";
}

.contact-email::before {
    content: "\e931";
}

.contact-call::before {
    content: "\e97b";
}

.contact-fax::before {
    content: "\e942";
}

.head-information {
    position: relative;
}

.head-information li {
    position: relative;
    padding-left: 2em;
}

@media screen and (min-width: 697px) {
    .head-information {
        display: flex;
    }

    .head-information li {
        margin-right: 1rem;
    }
}
@media (max-width: 991px){
    .head-information{ display:none;}
}

.header-contact {
    position: relative;
    display: flex;
}

.header-contact > li {
    margin: 0 10px;
}

.header-contact > li > a {
    color: var(--blue-color);
    -webkit-transition: all ease 0.6s;
    -moz-transition: all ease 0.6s;
    -ms-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    font-size: 1em;
    aspect-ratio: 1;
    padding: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.header-contact > li > a:hover {
    color: var(--yellow-color);
}

/*************************************bannerCarousel**************************************/
.banner-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* height: 600px;*/
    --y: -1;
}

.banner-carousel .operate {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100px;
    background: none;
    z-index: 100;
    cursor: pointer;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    font-size: 1.4em;
    --backColor: none;
    --borderColor: var(--white-color);
}

.banner-carousel .operate span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
}

.banner-carousel .operate span::after {
    position: absolute;
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid var(--borderColor);
    width: 40px;
    height: 40px;
    background: var(--backColor);
    z-index: -1;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.banner-carousel .operate.left {
    left: 100px;
}

.banner-carousel .operate.right {
    right: 100px;
}

@media screen and (max-width: 1601px) {
    .banner-carousel .operate.left {
        left: 0;
    }

    .banner-carousel .operate.right {
        right: 0;
    }

    .banner-carousel .operate {
        width: 50px;
    }

    .banner-carousel .operate span::after {
        width: 40px;
        height: 40px;
    }
}

.banner-carousel .operate:hover {
    --backColor: rgba(31, 78, 121, 0.6);
    --borderColor: var(--blue-color);
}

.banner-carousel ul.carousel-content {
    position: relative;
    width: 100%;
    height: calc(100vh - 8 * var(--font-size));
}

.banner-carousel ul.carousel-content > li {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    top: 0;
    --imgSrc: "";
    --imgSrcwebp: "";
}

.banner-carousel ul.carousel-content > li .imgData {
    position: relative;
    height: calc(100vh - 8 * var(--font-size));
    width: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

@media screen and (max-width: 1140px) and (min-width: 1081px) {
    .banner-carousel ul.carousel-content {
        height: calc(100vh - 8 * var(--font-size));
    }

    .banner-carousel ul.carousel-content > li .imgData {
        height: calc(100vh - 8 * var(--font-size));
    }
}

.banner-carousel ul.carousel-content > li img {
    vertical-align: top;
}

.banner-carousel ul.carousel-content > li .carousel-contentMess {
    position: absolute;
    /* width:88%;*/
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*z-index: 10;*/
    /*  left: 0;*/
    top: 0;
    color: white;
    /* max-width: 1320px;*/
}

@media screen and (max-width: 1080px) {
    .banner-carousel ul.carousel-content > li .carousel-contentMess {
        padding: 50px;
    }
}

.banner-carousel ul.carousel-content > li .carousel-contentMess {
    align-items: center;
}

.banner-carousel ul.carousel-content > li .carousel-contentMess p {
    width: 80%;
}

.banner-carousel ul.carousel-content > li .carousel-contentMess > div {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 90%;
}

.banner-carousel ul.carousel-content > li.show_ {
    opacity: 1;
    /* position: relative;*/
    z-index: 1;
}

.banner-carousel ul.carousel-content > li.current {
    animation: simpleAn 0.6s ease forwards;
    z-index: 2;
    /*    position: relative;*/
}

.banner-carousel ul.carousel-content > li:first-child {
    opacity: 0;
    position: relative;
    z-index: -1;
    height: calc(100vh - 8 * var(--font-size));
    width: 100%;
}

.banner-carousel ul.carousel-content li h2,
.banner-carousel ul.carousel-content li h1,
.banner-carousel ul.carousel-content li .banner-title {
    position: relative;
    font-weight: bold;
    margin: 2rem 0;
    font-size: 2em;
    margin-bottom: 1rem;
}

.banner-carousel ul.carousel-content li .banner-title {
    width: 100%;
    font-family: "GALANOGROTESQUEDEMOBOLD";
}

@media screen and (min-width: 1081px) {
    .banner-carousel ul.carousel-content > li h2,
    .banner-carousel ul.carousel-content > li h1,
    .banner-carousel ul.carousel-content li .banner-title {
        font-size: calc(3 * var(--font-size));
        /*  text-align: center;*/
        line-height: 1.2em;
    }

    .banner-carousel ul.carousel-content > li h2 span,
    .banner-carousel ul.carousel-content > li h1 span,
    .banner-carousel ul.carousel-content li .banner-title span {
        font-family: "GALANOGROTESQUEDEMOBOLD";
    }

    .banner-carousel ul.carousel-content > li p {
        font-size: 1.6rem;
        margin: 1.4rem 0;
        line-height: 3rem;
    }
}

.titleCurrent {
    animation: simpleAn 2.6s cubic-bezier(0.13, 0.95, 0, 0.99) forwards;
}

.imgCurrent {
    animation: simpleAn 2s cubic-bezier(0.13, 0.95, 0, 0.99) forwards;
}

@-webkit-keyframes simpleAn {
    0% {
        -webkit-transform: translateX(calc(50% * var(--y)));
        -moz-transform: translateX(calc(50% * var(--y)));
        -ms-transform: translateX(calc(50% * var(--y)));
        -o-transform: translateX(calc(50% * var(--y)));
        transform: translateX(calc(50% * var(--y)));
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.banner-carousel ul.carousel-content > li.after {
    -webkit-animation: simplyAn 0.6s ease forwards;
    -o-animation: simplyAn 0.6s ease forwards;
    animation: simplyAn 0.6s ease forwards;
    /* position: relative;*/
}

@-webkit-keyframes simplyAn {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(calc(-100% * var(--y)));
        -moz-transform: translateX(calc(-100% * var(--y)));
        -ms-transform: translateX(calc(-100% * var(--y)));
        -o-transform: translateX(calc(-100% * var(--y)));
        transform: translateX(calc(-100% * var(--y)));
        opacity: 1;
    }
}

.banner-carousel ul.scroll {
    position: absolute;
    bottom: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*    background:rgba(88,88,88,0.8);*/
    z-index: 10;
}

.banner-carousel ul.scroll > li {
    position: relative;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: white;
    margin: 10px;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    cursor: pointer;
}

.banner-carousel ul.scroll > li.current {
    background: rgba(255, 255, 255, 0.6);
    width: 30px;
}

.banner-carousel ul.scroll > li:hover {
    background: var(--yellow-color);
}

.banner-carousel .new-btn {
    margin: 3rem 0;
    padding: 0.5rem 2rem;
    width: max-content;
    height: auto;
    white-space: nowrap;
}

@media screen and (max-width: 1320px) {
    .banner-carousel .new-btn {
        margin: 2em 0;
    }
}

/*************************************bannerCarousel**************************************/
.mt-4 {
    margin-top: 2rem !important;
}

.mt-6 {
    margin-top: 3rem !important;
}

.sticky-online-inquiry.mobile-control {
    position: sticky;
    top: 100px;
    z-index: 9999
}

.sticky-online-inquiry__btn {
    padding: 6px 16px;
    cursor: pointer;
    background-color: #f97425;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-online-inquiry__btn:hover{
    background-color: var(--blue-color);
}

.sticky-online-inquiry__btn em {
    font-style: normal
}

.sticky-online-inquiry__btn:before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 21px;
    background-image: url(../images/side-inquiry.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 6px;
    vertical-align: middle
}

.sticky-online-inquiry_text {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 140px;
    height: auto;
    padding: 18px 16px 14px;
    background: #fff;
    box-shadow: 0 0 18px #bbb;
    border-radius: 10px
}

.sticky-online-inquiry_text p {
    margin-bottom: 0;
    line-height: 1.6;
    padding: 0;
    color: #2a2f33;
    font-weight: bold;
}

.sticky-online-inquiry_text .close {
    position: absolute;
    top: 4px;
    right: 5px;
    color: #aaa;
    cursor: pointer;
    width: 20px;
    height: 20px;
    line-height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center
}

.sticky-online-inquiry_text .close:before {
    content: "x";
    font-family: arial;
    font-size: 16px;
    font-weight: normal;
}

.sticky-online-inquiry_text .close:hover {
    color: #333;
}

.sticky-online-inquiry {
    position: relative;
    z-index: 9
}

.sticky-online-inquiry .sticky-online-inquiry__btn em {
    font-style: normal
}

.sticky-online-inquiry .sticky-online-inquiry__btn:before {
    width: 22px;
    height: 21px
}

.sticky-online-inquiry.fixed {
    position: fixed;
    z-index: 99;
    right: 11px;
    bottom: 150px;
    top: inherit
}

.sticky-online-inquiry.fixed .sticky-online-inquiry__btn {
    width: 58px;
    height: 58px;
    line-height: 56px;
    border-radius: 50%;
    padding: 0;
    margin-bottom: 0
}

.sticky-online-inquiry.fixed .sticky-online-inquiry__btn:before {
    width: 32px;
    height: 30px;
    margin: 0 auto
}

.sticky-online-inquiry.fixed .sticky-online-inquiry__btn em {
    display: none
}

.sticky-online-inquiry.fixed .sticky-online-inquiry_text {
    font-size: .9em
}

.sticky-online-inquiry.fixed .sticky-online-inquiry_text.text-show {
    display: block
}

@media (max-width: 991px) {
    .sticky-online-inquiry .sticky-online-inquiry__btn {
        margin-bottom: 40px
    }
    .search-platform select{
    	display: none;
    }
}
.toper-right{
	display: none;
}
.sp_nav{width:25px;position:relative;cursor:pointer;height:22px;display: none;}
.sp_nav span{display:block;background:#1d4ed8;width:25px;height:2px;position:absolute;left:0px;transition:all ease 0.35s}
.sp_nav span:nth-of-type(1){top:0px}
.sp_nav span:nth-of-type(2){top:10px}
.sp_nav span:nth-of-type(3){top:20px}
.sp_nav_se span:nth-of-type(1){top:10px;transform:rotate(45deg)}
.sp_nav_se span:nth-of-type(2){width:0}
.sp_nav_se span:nth-of-type(3){top:10px;transform:rotate(-45deg)}
.navs{
	width: auto;
	height: 100%;
	position: relative;
	margin-top: 0;
}
.navs a{
	font-size: 16px;
	color: #fff;
	transition: 0s all;
}
.navs a:first-child{
	margin-left: 0px;
}
.navs a:hover{
	color: #fcc10e;
}
.navs ul{
	padding-left: 0px;
	margin-bottom: 0px;
}
.navs ul li{
	list-style: none;
	margin-bottom: 0px;
}
.navs>ul{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.navs>ul>li{
	width: auto;
	height: 60px;
	line-height: 60px;
	margin-left: 35px;
	position: relative;
}
.navs>ul>li:first-child{
	margin-left: 0px;
}
.navs>ul>li>span{
    float: right;
    margin-left: 5px;
    color: #23324a;
    font-size: 16px;
}
.navs>ul>li>span::before{
	content: '\e90e';
	font-family: 'icomoon' !important;
    right: 0;
    top: 0;
}
.navs>ul>li>a{
	color: #23324a;
}
.navs>ul>li:hover>a{
	color: #1d4ed8;
}
.navs>ul>li:hover>span{
	color: #1d4ed8;
}
.navs ul li ul li{
	width: 100%;
    height: auto;
    padding: 8px 10px;
    border-bottom: 1px solid #d2d7da;
    margin-bottom: 0px;
    position: relative;
    line-height: 25px;
    float: left;
}
.navs ul li ul li span::before{
	content: '\e910';
	font-family: 'icomoon' !important;
	color: #000;
	position: absolute;
	top: 50%;
    right: 15px;
    position: absolute;
    transform: translateY(-50%);
}
.navs ul li ul li a{
	font-size: 15px;
	line-height: 20px;
    color: #000;
    display: inline-block;
    max-width: calc(100% - 20px);
    font-weight: 100;
    transition: all .1s ease-out;
    font-weight: 400;
}
.navs ul li ul li:hover>a{
	color: #1d4ed8;
}
.navs ul li ul li:hover>span::before{
	color: #1d4ed8;
}
.navs>ul>li>ul{
	position: absolute;
	left: 0px;
	top: calc(100% - 2px);
	background: #fff;
	width: 340px;
	height: auto;
	display: none;
}
.navs ul li ul li ul{
	position: absolute;
	left: 100%;
	top: 0px;
	background: #fff;
	width: 100%;
	height: auto;
	display: none;
}


@media screen and (min-width:1200px){



.navs{
	position: static;
}
.navs>ul>li.spread-nav{
	position: static;
}
.navs>ul>li.spread-nav:after{
	content: none;
}
.navs>ul>li.spread-nav ul li:hover {
    background: #fff;
}
.navs>ul>li.spread-nav ul li:hover a{
    color: #062134;
}
.navs>ul>li.spread-nav ul li:hover>span::before {
    color: #062134;
}
.navs>ul>li.spread-nav>ul{
	width: 1400px;
	max-width: 100%;
	max-height: calc(100vh - 140px);
	overflow-y: auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	padding: 15px 15px !important;
	box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
	flex-wrap: wrap;
	top: calc(100% - 2px);
	align-items: stretch;
}
.navs>ul>li.spread-nav>ul::-webkit-scrollbar {
        width: 5px;     
       background: #1e1e1e;
    }
.navs>ul>li.spread-nav>ul::-webkit-scrollbar-thumb {
        border-radius: 0px;
        -webkit-box-shadow: inset 0 0 0px #ab7525;
        background: #1d4ed8;
        width: 5px;     
        height: 5px;
    }
.navs>ul>li.spread-nav>ul::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 0px #1e1e1e;
        border-radius: 0px;
        background: #fff;
    } 
    
.navs>ul>li.spread-nav>ul .navbox-level1{
	width: 340px;
}
.navs>ul>li.spread-nav>ul .navbox-level1>li{
	float: none;
	border-bottom: none;
	padding: 10px 5px;
	position: relative;
}
.navs>ul>li.spread-nav>ul .navbox-level1>li>a{
	color: #000;
}
.navs>ul>li.spread-nav>ul .navbox-level1>li>span:before {
    color: #000;
}
.navs>ul>li.spread-nav>ul .navbox-level1>li.act {
    background: #F4F8FD;
}
.navs>ul>li.spread-nav>ul .navbox-level1>li.act>a {
    color: #1d4ed8;
}
.navs>ul>li.spread-nav>ul .navbox-level1>li.act>span:before {
    color: #1d4ed8;
}
.navs>ul>li.spread-nav>ul .navbox-level1>li:after{
	content: '';
	width: 3px;
	height: 0px;
	background: #1d4ed8;
	position: absolute;
	right: -2px;
	top: 50%;
	transform: translateY(-50%);
	transition: all .5s;
}
.navs>ul>li.spread-nav>ul .navbox-level1>li.act:after{
	height: 100%;
}

.navs>ul>li.spread-nav>ul .navbox-level2{
	width: calc(100% - 340px);
	border-left: 1px solid #d2d7da;
	padding-left: 40px;
	display: block;   
}
.navs>ul>li.spread-nav>ul .navbox-level2>li{
	display: none;
	float: none;
	border-bottom: none;
	padding: 0px 0px;
}
.navs>ul>li.spread-nav>ul .navbox-level2>li.shows{
	display: block;
}
.navs>ul>li.spread-nav>ul .navbox-level2 ul{
	display: none;
	position: static;
	box-shadow: none;
}
.navs>ul>li.spread-nav>ul .navbox-level2>li>ul{
	display: flex;
	flex-wrap: wrap;
	column-gap: 4%;
}
.navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li{
	width: 48%;
	float: none;
	border-bottom: none;
	padding: 2px 0px;
	margin-bottom: 8px;
}
.navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>a{
	color: #000;
	width: calc(100% - 16px);
}
.navs>ul>li.spread-nav>ul .navbox-level2 a:hover{
	color: #1d4ed8;
}
.navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li span{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 0px;
	top: 8px;
	cursor: pointer;
}
.navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li span:before{
	position: static;
	transform: none;
	line-height: 12px;
	font-weight: bold;
	font-size: 14px;
	transition: all .2s;
	display: none;
}
.navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li span.down:before{
	transform: rotate(90deg);
	transition: all .2s;
}
.navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul{
	padding-left: 20px;
	padding-top: 5px;
	display: block !important;
}
.navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li{
	padding: 2px 0px;
	border-bottom: none;
	float: none;
	list-style: disc;
}
.navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li ul{
	padding-left: 10px;
	padding-top: 5px;
}
.navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li ul li {
    padding: 2px 0px;
    border-bottom: none;
    float: none;
}
.navs>ul>li.spread-nav>ul .navbox-level2>li>ul>li>ul>li a{
	color: #717171;
	font-size: 14px;
}



}


@media screen and (max-width:1200px){



.toper-right{
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 6px;
}
.toper-right .searchicon {
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 70px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1d4ed8;
    margin-right: 0px;
    display: flex;
    background: none;
}
.toper-right .searchicon:hover {
    color: #1d4ed8;
}
.toper-right .searchicon:before {
    content: '\e989';
	font-family: 'icomoon' !important;
    font-size: 20px;
    line-height: 22px;
}
.toper-right .searchicon.shows:before {
    content: '\2716';
}
.sp_nav {
    display: block;
}	
.navs {
    width: 100%;
    height: auto;
    position: absolute;
    top: calc(100% - 2px);
    margin-top: 0px;
    right: 0px;
    background: #000;
    padding-top: 0px;
    padding-left: 0px;
    z-index: 999;
    transition: .15s ease-in-out;
    -webkit-transition: .15s ease-in-out;
    -moz-transition: .15s ease-in-out;
    -ms-transition: .15s ease-in-out;
    -o-transition: .15s ease-in-out;
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    opacity: 0;
    visibility: hidden;
    max-height: calc(100vh - 120px);
    overflow: auto;
}
.navs a{
    width: 100%;
    height: auto;
    border-bottom: 1px solid #d8d8d8;
    line-height: 50px;
    line-height: 50px;
    display: block;
    margin-left: 0px;
    z-index: 999;
    padding: 0px 20px;
    float: left;
    color: #fff;
    font-size: 16px;
    text-align: center;
}
.navs.visible{transform: translateY(0); -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); opacity: 1; visibility: visible;}
.navs>ul{
	width: 100%;
	height: auto;
	flex-wrap: wrap;
}
.navs ul li a{
	font-size: 15px;
	line-height: 22px;
    color: #fff;
    display: inline-block;
    width: auto;
    text-align: left;
    border-bottom: none;
    padding: 10px 0px;
    max-width: calc(100% - 40px);
}
.navs ul{
	margin-top: 0px;
}
.navs ul li{
	width: 100%;
    height: auto;
    padding: 0px 0px 0px 15px;
    margin-bottom: 0px;
    position: relative;
    margin-left: 0px;
    line-height: 40px;
    border-bottom: 1px solid #585858;
    display: inline-block;
}
.navs ul li:last-child{
    margin-bottom: 0px;
}
.navs>ul>li:last-child{
	border-bottom: 1px solid #585858;
    margin-bottom: 10px;
}
.navs ul li ul{
	display: none;
	padding-left: 10px;
	overflow: hidden;
}
.navs ul li ul li{
	padding: 0px 0px;
}
.navs ul li ul li:last-child{
	border-bottom: none;
}
.navs ul li ul li a{
	line-height: 22px;
	padding: 8px 0px;
	max-width: calc(100% - 40px);
}
.navs>ul>li>ul{
	position: static;
	width: 100%;
	padding-left: 10px;
	background: none;
}
.navs ul li ul li ul{
	position: static;
}
.navs ul li ul li ul {
    position: static;
    width: 100%;
}
.navs>ul>li:hover{
	padding-bottom: 0px;
}
.navs>ul>li>ul>li>a{
	color: #fff;
}
.navs>ul>li>ul>li>ul>li>a{
	color: #fff;
}
.navs>ul>li>ul>li>ul>li>ul>li>a{
	color: #fff;
}
.navs>ul>li>ul>li>ul>li>ul>li>ul>li>a{
	color: #fff;
}
.navs>ul li span{
	float: right;
	margin-right: 15px;
	font-size: 18px;
	line-height: 22px;
	font-weight: bold;
	margin-top: 7px;
}
.navs ul li span::before{
	color: #fff;
    content: "+";
    font-weight: bold;
}
.navs ul li span.down::before{
	color: #fff;
    content: "-";
    font-weight: bold;
}
.navs>ul>li:hover {
    background: none;
    border-bottom: 1px solid #585858;
}
.navs ul li ul li span::before{
	color: #fff;
	content: "+";
}
.navs ul li ul li span.down::before{
	content: "-";
}
.navs ul li ul li:hover>span::before{
	color: #fff;
}
.navs ul li ul li{
	border-bottom: 1px solid #585858;
}
.navs ul li ul li:hover {
    background: none;
    border-bottom: 1px solid #585858;
}
.navs>ul>li:after{
	content: none;
}
.navs ul li ul li ul{
	background: none;
	padding-left: 10px;
}
.navs ul li ul li span::before{
	top: 18px;
}
.navs a:hover{
	color: #fff;
}
.navs>ul>li:hover>a{
	color: #fff;
}
.navs ul li ul li:hover>a{
	color: #fff;
}
	
}