@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: "MontserratAlternatesLight", "lato", 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: "MontserratBold";
    font-weight: bold;
}

h3 {
    font-size: calc(1.2 * var(--font-size));
}

h4,
h5,
h6 {
    font-family: "MontserratBold";
    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;
    }
}

@media screen and (max-width: 1080px) {
    p {
        line-height: 1.6em;
    }
}

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: 0.5rem 0 0.3rem 0;
    }

    .header-shell .naviBlock > .row-layout {
        justify-content: space-between;
        align-items: center;
    }
}

@media screen and (max-width: 1150px) {
    .header-shell .naviBlock {
        padding: 20px;
    }

    .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;
    width: 300px;
    -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;
}

/**************************************************mobile-menu****************************************************/
@media (max-width: 1150px) {
    .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: 1151px) {
    .mobile-menu {
        display: none;
    }

    .mobile-nav {
        display: flex;
        align-items: center;
    }
}

/**************************************************mobile-menu****************************************************/
@media screen and (min-width: 1151px) {
    .navigation_title {
        display: flex;
    }

    .navigation_title > li {
        padding: 0.6rem 1rem;
        --leng: 0;
    }

    .navigation_title > li > a {
        font-size: calc(1.2 * var(--font-size));
        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: 1151px) and (max-width: 1200px) {
    .navigation_title > li {
        padding: 20px 10px;
    }
}

@media screen and (max-width: 1150px) {
    .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: 10px;
        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: 0.4em 1em;
    border: none;
    outline: none;
    width: 200px;
}

.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: 1em;
    transition: all ease-in-out 0.4s;
    display: block;
}

.search-platform button:hover {
    color: var(--yellow-color);
}

@media screen and (min-width: 1151px) {
    .header-search > input {
        width: 200px;
    }
}

@media screen and (max-width: 1150px) {
    .header-search > span {
        display: none;
    }

    .search-platform {
        display: flex !important;
        width: 100%;
        margin: 20px 0;
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 100vw;
}

@media (max-width: 576px) {
    .container-sm,
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md,
    .container-sm,
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1320px;
    }
}

.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;
    }
}

.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: 9999;
    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
    }
}