@import url(../poppins/css/Poppins.css);
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Roboto:wght@300;400;500;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

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

@media (min-width:1640px) {
    .container {
        max-width: 1600px;
    }
}

/* 页面进入前效果 */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.hidden {
    display: none;
}
.loader-logo img{
    width: 90px;
}
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    --color: #C52620;
    --animation: 2s ease-in-out infinite;
}

.loader .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 20px;
    height: 20px;
    border: solid 2px var(--color);
    border-radius: 50%;
    margin: 0 10px;
    background-color: transparent;
    animation: circle-keys var(--animation);
}

.loader .circle .dot {
    position: absolute;
    /* transform: translate(-50%, -50%); */
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--color);
    animation: dot-keys var(--animation);
}

.loader .circle .outline {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: outline-keys var(--animation);
}

.circle:nth-child(2) {
    animation-delay: 0.3s;
}

.circle:nth-child(3) {
    animation-delay: 0.6s;
}

.circle:nth-child(4) {
    animation-delay: 0.9s;
}

.circle:nth-child(5) {
    animation-delay: 1.2s;
}

.circle:nth-child(2) .dot {
    animation-delay: 0.3s;
}

.circle:nth-child(3) .dot {
    animation-delay: 0.6s;
}

.circle:nth-child(4) .dot {
    animation-delay: 0.9s;
}

.circle:nth-child(5) .dot {
    animation-delay: 1.2s;
}

.circle:nth-child(1) .outline {
    animation-delay: 0.9s;
}

.circle:nth-child(2) .outline {
    animation-delay: 1.2s;
}

.circle:nth-child(3) .outline {
    animation-delay: 1.5s;
}

.circle:nth-child(4) .outline {
    animation-delay: 1.8s;
}

.circle:nth-child(5) .outline {
    animation-delay: 2.1s;
}

@keyframes circle-keys {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes dot-keys {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes outline-keys {
    0% {
        transform: scale(0);
        outline: solid 20px var(--color);
        outline-offset: 0;
        opacity: 1;
    }

    100% {
        transform: scale(1);
        outline: solid 0 transparent;
        outline-offset: 20px;
        opacity: 0;
    }
}

/* Header Top Area
============== */
.header-top {
    background: linear-gradient(to right, #C52620, #254F6C);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    padding: 10px 0;
    width: 100%;
}

.header-top-mail {
    display: flex;
    align-items: center;
}

.header-top-mail a {
    display: block;
    display: flex;
    align-items: center;
}

@media (max-width:520px) {
    .header-top {
        display: none;
    }
}

.header-top-social a {
    color: white;
    margin-right: 8px;
    font-size: 20px;
}

.header-top-social a .iconfont {
    font-size: 20px;
}

header .container-fluid {
    padding: 0 3%;
}

.header-area {
    position: fixed;
    width: 100%;
    z-index: 9999;
    padding-top: 20px;
    /* background-image: linear-gradient(to bottom , rgba(255, 255, 255, 0.5), transparent); */
    /* background-color: rgba(255, 255, 255, 0.2); */
    /* backdrop-filter: blur(10px); */
}

.other-header {
    position: relative;
    z-index: 99;
    background-color: white;
    padding-top: 0;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 2px 0 !important;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-in-out;
}

.header-area .logo img {
    width: 80px;
}

@media (max-width:575px) {
    .header-area .logo img {
        width: 70px;
    }
}

.header-area .main-menu {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding-bottom: 15px;
}
.header-area.other-header .main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
}

.fixed-header .main-menu {
    padding-bottom: 0 !important;
    align-items: center !important;
}

.header-area .nav-link {
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.nav-link.nav-link-bg {
    color: white !important;
    background-color: #C52620;
    padding: 8px 20px !important;
    font-size: 13px !important;
    border-radius: 500px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

/* .header-area .nav-item .nav-link::before {
    display: none;
    position: absolute;
    left: 0;
    bottom: 33%;
    content: '';
    width: 50%;
    height: 2px;
    background-color: #0545A3;
    transition: all .3s ease;
}

.header-area .nav-item.active .nav-link::before {
    display: block;
} */

header .nav-ul {
    display: flex;
}

.nav-ul li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

.nav-ul li a:nth-child(1) {
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 500;
    display: block;
    padding: 35px 0;
    color: #000000;
    align-items: center;
}

.nav-ul li .fa-caret-down {
    font-size: 14px;
    margin-left: 5px;
}

.nav-ul li.active a {
    color: #0579C6;
    font-weight: 600;
}

/*.nav-ul li.active a::before{
    background: #0579C6;
    content: "";
    height: 3px;
    position: absolute;
    bottom: 25px;
    width: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.nav-ul>li:hover a::before,
.nav-ul>li.active a::before {
    width: 100%;
}*/
.nav-ul>li:hover a {
    color: #0579C6;
}

.nav-ul>li:hover .sub-menu a {
    color: #2e3237;
}

.sub-menu {
    position: absolute;
    top: 80px;
    left: 0;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    background-color: white;
    /*transition: 0.3s;*/
    visibility: hidden;
    z-index: 999;
}

.nav-item:hover .sub-menu {
    visibility: visible;
}

.sub-menu li {
    margin: 0 !important;
}


.sub-menu-item {
    position: relative;
}

.sub-menu-2 {
    position: absolute;
    top: 7px;
    left: 101%;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* background: #001ae2; */
    background-color: white;
    /* background: linear-gradient(to right,  #2744bb,#112780); */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.05);
}

.sub-menu-2::before {
    position: absolute;
    width: 100%;
    height: 3px;
    top: 0;
    left: 0;
    content: '';
    background: linear-gradient(to right, #C52620, #254F6C);
}

.sub-menu-item:hover .sub-menu-2 {
    opacity: 1;
    visibility: visible;
    top: 0;
}

.btn-radio a {
    padding: 15px 25px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: white;
    border-radius: 600px;
    background: linear-gradient(to right, #C52620, #C52620);
    text-align: center;
    transition: all .3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-radio a:hover {
    border: 2px solid #C52620;
    color: #C52620;
    background: rgba(255, 255, 255, 0.9);
}

/* 圆角浅蓝动态按钮 */
.btn-donate {
    --clr-font-main: hsla(0 0% 20% / 100);
    --btn-bg-1: hsla(194 100% 69% / 1);
    --btn-bg-2: hsla(217 100% 56% / 1);
    --btn-bg-color: hsla(360 100% 100% / 1);
    --radii: 7px;
    cursor: pointer;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.8s;
    background-size: 280% auto;
    background-image: linear-gradient(325deg,
            var(--btn-bg-2) 0%,
            var(--btn-bg-1) 55%,
            var(--btn-bg-2) 90%);
    border: none;
    border-radius: var(--radii);
    color: var(--btn-bg-color);
    box-shadow:
        0px 0px 10px rgba(71, 184, 255, 0.5),
        0px 5px 5px -1px rgba(58, 125, 233, 0.25),
        inset 4px 4px 8px rgba(175, 230, 255, 0.5),
        inset -4px -4px 8px rgba(19, 95, 216, 0.35);
}

.btn-donate:hover {
    background-position: right top;
    color: white;
}

.btn-donate:is(:focus, :focus-visible, :active) {
    outline: none;
    box-shadow:
        0 0 0 3px var(--btn-bg-color),
        0 0 0 6px var(--btn-bg-2);
}

@media (prefers-reduced-motion: reduce) {
    .btn-donate {
        transition: linear;
    }
}

.slick-dots li button {
    cursor: pointer;
    text-indent: -9999px;
}

.main-btn {
    color: white;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    background-color: #C52620;
    /* box-shadow: 0px 20px 20px rgb(0 88 255 / 10%); */
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.main-btn::before {
    position: absolute;
    content: '';
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #142D65;
    border-radius: inherit;
    z-index: -1;
    transition: all .3s ease;
}

.main-btn:hover::before {
    width: 100%;
}

.main-btn:hover {
    color: white;
}

@media (max-width: 579px) {
    .main-btn {
        font-size: 14px;
        padding: 7px 20px;
    }
}


/*banner*/
.index-banner-slick {
    position: relative;
}

.index-banner-slick .slick-list {
    height: auto !important;
}

.index-banner-slick-item {
    position: relative;
}

.index-banner-slick-item-img img {
    width: 100%;
}

.index-banner-slick-item-img {
    position: relative;
}

.index-banner-slick-img-phone {
    display: none !important;
}

.index-banner-slick-content,
.other-banner-slick-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.index-banner-slick-content h2,
.other-banner-slick-content h2 {
    font-family: 'oswald', sans-serif;
    font-size: 125px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    line-height: 1.1;
    transition: all .3s ease;
}

.index-banner-slick-content h2 span,
.other-banner-slick-content h2 span {
    color: #C52620;
}

.other-banner-slick-content h2 {
    position: relative;
    font-size: 70px;
    display: inline-block;
}
.other-banner-slick-content h2::before{
    position: absolute;
    content: '';
    width: 50%;
    height: 15px;
    background-color: #142D65;
    left: 0;
    bottom: -27px;
}
.other-banner-slick-content h2::after{
    position: absolute;
    content: '';
    width: 50%;
    height: 15px;
    background-color: #C52620;
    left: 50%;
    bottom: -27px;
}

.other-banner-slick-content h3 {
    font-size: 22px;
    font-weight: 400;
    /* text-transform: uppercase; */
    color: white;
    line-height: 1.3;
}
.index-banner-slick-content h2{
    opacity: 0;
    transform: translateX(-50px);
}
/* 从左进入动画核心样式 */
.animate-from-left {
    animation: fromLeftEnter 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
/* 动画关键帧：从左向右移动并显示 */
@keyframes fromLeftEnter {
    0% {
        opacity: 0;
        transform: translateX(-50px); /* 初始位置：左侧偏移50px */
    }
    100% {
        opacity: 1;
        transform: translateX(0); /* 最终位置：恢复正常 */
    }
}
/* 非活跃幻灯片的标题重置（避免轮播切换时残留动画） */
.index-banner-slick-item:not(.slick-active) .animate-from-left {
    animation: none;
    opacity: 0;
    transform: translateX(-50px);
}


@media only screen and (max-width: 1366px) {
    .other-banner-slick-content h2 {
        font-size: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .other-banner-slick-content h2 {
        font-size: 45px;
    }
}

.index-banner-slick-content p {
    font-size: 22px;
    color: white;
    transition: all .3s ease;
}

.index-banner-slick-a {
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.index-banner-slick-a a {
    display: block;
    width: 100%;
    height: 100%;
}


@media (max-width:1199px) {
    .index-banner-slick-content h2 {
        font-size: 80px;
    }
    .index-banner-slick-content p {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width:991px) {
    .index-banner-slick-content h2 {
        font-size: 62px;
    }
}

@media (max-width: 767px) {
    .index-banner-section {
        height: 87vh;
        overflow: hidden;
    }
    .index-banner-slick-item-img img{
        height: 87vh;
        object-fit: cover;
    }
    .index-banner-slick-img-phone {
        display: block !important;
    }

    .index-banner-slick-img-pc {
        display: none !important;
    }
    .index-banner-slick-a {
        width: 100%;
        height: 50%;
    }
    .index-banner-slick-content h2 {
        font-size: 70px;
    }

    .other-banner-section{
        height: 32vh;
        overflow: hidden;
    }
    .other-banner-section .index-banner-slick-item-img img{
        height: 32vh;
        object-fit: cover;
    }
}


.index-banner-slick .slick-dots {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);

}

.index-banner-slick .slick-dots li button {
    border: none;
    width: 25px;
    height: 4px;
    display: inline-block;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.9);
    margin: 0 5px;
    outline: none;
    transition: all .3s ease;
}

.index-banner-slick .slick-dots li.slick-active button {
    background: #36393a;
}

/*index*/
.index-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.index-title-1 h2 {
    color: #222222;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}

.index-title-1 h2 span {
    display: inline;
    color: #C52620;
}

.index-title-lin h2 {
    font-weight: 600;
    color: #0545A3;
    font-size: 45px;
    background: linear-gradient(to bottom, #0545A3, #3a3a3a);
    background-repeat: repeat;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-position: center center;
    background-size: cover;
}

.index-title-2 h5 {
    color: #1F3F6E;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.2;
}



.index-title-ab h2 {
    font-weight: 700;
    font-size: 45px;
    text-transform: uppercase;
    position: relative;
    color: #36393A;
    line-height: 1.3;
    display: inline-block;
}
.index-title-ab h2 span{
    color: #C52620;
}

.index-title-ab h2::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 3.5px;
    background-color: #D71619;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}


.index-title.other-title .index-title-ab h2{
    font-size: 60px;
    font-family: 'oswald', sans-serif; 
    font-weight: 900;
}
.index-title.other-title .index-title-ab h2::before{
    width: 77px;
    left: 0;
    transform: translateX(0);
}
.index-title.other-title .index-title-1 h2 {
    font-family: 'oswald', sans-serif; 
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
}

@media only screen and (max-width: 1366px) {
    .index-title-1 h2 {
        font-size: 40px;
    }
    .index-title-ab h2 {
        font-size: 50px;
    }
    .index-title.other-title .index-title-1 h2{
        font-size: 50px;
    }
    .index-title.other-title .index-title-ab h2{
        font-size: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .index-title-1 h2 {
        font-size: 30px;
    }
    .index-title-ab h2 {
        font-size: 42px;
    }
    .index-title.other-title .index-title-1 h2{
        font-size: 42px;
    }
    .index-title.other-title .index-title-ab h2{
        font-size: 42px;
    }
}

.video-play-btn .iconfont {
    font-size: 30px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: white;
    color: #C52620;
    border-radius: 50%;
}


/*  */
.btn-text a {
    position: relative;
    color: #C52620;
}

.btn-text a::before {
    position: absolute;
    bottom: 0px;
    width: 0%;
    height: 1px;
    content: '';
    background-color: #C52620;
    transition: all .3s ease;
}

.index-category-detail:hover .btn-text a::before {
    width: 100%;
}

.btn-text a:hover::before {
    width: 100%;
}

/* index-counter */
.index-counter-item {
    padding: 20px 0;
}

.index-counter-item h4 {
    font-size: 48px;
    font-style: italic;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: white;
    margin-bottom: 15px;
}

.index-counter-item h6 {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    color: rgb(223, 223, 223);
}
@media (max-width:767px) {
    .index-counter-item h4{
        font-size: 40px;
    }
}
@media (max-width:510px) {
    .index-counter-item h4{
        font-size: 27px;
    }
}

/* index-ad */
.index-ad-section {
    padding: 60px 30px;
}

.index-ad-icon {
    margin-bottom: 10px;
}

.index-ad-icon img {
    width: 65px;
}

.index-ad-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.index-ad-item h4 {
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.index-ad-item p {
    width: 80%;
    color: #222222;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    line-height: 20px;
    margin-bottom: 0;
}

@media (max-width:767px) {
    .index-ad-item h4{
        font-size: 17px;
    }
    .index-ad-item p {
        width: 100%;
    }
}


/* index-application */
.index-application-item-top {
    position: relative;
    margin: 0 8px 15px;
}

.index-application-item-title {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    padding: 17px 0;
}

.index-application-item-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001d41;
    mix-blend-mode: hard-light;
    z-index: 1;
}

.index-application-item-title h4 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: .5px;
    line-height: 1.3;
    z-index: 2;
}

.index-application-item-bottom {
    border-left: 2px solid #575757;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#index-application-item-4 .index-application-item-bottom {
    border-right: 2px solid #575757;
}

.index-application-item-icon img {
    height: 57px;
}

.index-application-item-bottom p {
    margin-bottom: 0;
    margin-top: 10px;
    color: #222222;
    font-size: 20px;
}

@media (max-width:991px) {
    .index-application-item {
        margin-bottom: 20px;
    }

    .index-application-item-bottom {
        border: none !important;
        padding: 0;
    }
}

@media (max-width:767px) {
    .index-application-item-title h4 {
        font-size: 17px;
    }

    .index-application-item-icon img {
        height: 55px;
    }
}

@media (max-width:575px) {
    .index-application-item-title {
        padding: 10px 15px;
    }

    .index-application-item-title h4 {
        font-size: 15px;
    }

    .index-application-item-bottom p {
        font-size: 15px;
    }

    .index-application-item-icon img {
        height: 45px;
    }
}

@media (max-width:392px) {
    .index-application-item-title {
        padding: 10px 31px;
    }

    .index-application-item-icon img {
        height: 37px;
    }
}

/* index-pro */
.index-product-slick .slick-list {
    height: auto !important;
}

.index-product-slick-item {
    position: relative;
}

.index-product-slick-item-img {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.index-product-slick-item-img img {
    width: 350px;
}

.index-product-slick-item-title {
    position: absolute;
    top: 50%;
    left: -1%;
    transform: translateY(-50%);
}

.index-product-slick-item-title h2 {
    text-transform: uppercase;
    color: #B6B6B6;
    font-size: 92px;
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
}

.index-product-slick-item-a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    z-index: 3;
}
@media (max-width:1650px) {
    .index-product-slick-item-title h2{
        font-size: 74px;
    }
}
@media (max-width:1395px) {
    .index-product-slick-item-title h2{
        font-size: 60px;
    }
}
@media (max-width:991px) {
    .index-product-slick-item-title{
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
    }
    .index-product-slick-item-title h2{
        font-size: 82px;
        text-align: center;
    }
}
@media (max-width:542px) {
    .index-product-slick-item-title h2{
        font-size: 60px;
    }
}

/* index-talent */
.index-talent {
    position: relative;
}

.index-talent-img img {
    width: 100%;
}

.index-talent-text-section {
    position: absolute;
    top: 45%;
    left: 62%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.75);
    padding: 55px 30px;
    transition: all .3s ease;
}

.index-talent-text-section h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 37px;
    margin-bottom: 15px;
}

.index-talent-text-section p {
    font-family: 'Poppins', sans-serif;
    color: #222222;
    font-size: 18px;
    line-height: 22px;
    width: 500px;
}

.index-talent-text-section h5 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    color: white;
    background-color: #C52620;
    display: inline-block;
    padding: 7px 12px;
}

@media (max-width:703px) {
    .index-talent-text-section {
        position: static;
        transform: translate(0, 0);
        padding: 35px 27px;
    }

    .index-talent-text-section p {
        width: 100%;
    }
}

/* index-news */
.index-news-check {
    /* padding: 0 5%; */
}

.index-news-check .nav-link {
    position: relative;
    color: #222222 !important;
    font-size: 42px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    background: none !important;
    border: none !important;
    padding: 0 0 15px 0;
    margin-right: 40px;
    cursor: pointer;
}

.index-news-check .nav-link::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background-color: #C52620;
    transition: all .3s ease;
}

.index-news-check .nav-link:hover::before,
.index-news-check .nav-link.active::before {
    width: 100%;
}

.index-news-list {
    border: 3px solid #E0E0E0;
    border-left: none;
    border-right: none;
}

.index-news-list-left {
    padding-top: 50px;
    border-right: 3px solid #E0E0E0;
}

.index-news-list-left-img a {
    display: block;
}

.index-news-list-left-img img {
    width: 100%;
}

.index-news-list-left-content {
    padding: 0 25px 45px 45px;
}

.index-news-list-left-date span {
    color: white;
    background-color: #C52620;
    padding: 5px 25px;
    font-size: 18px;
    letter-spacing: .5px;
}

.index-news-list-left-content h4 a {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    color: #C52620;
    margin: 12px 0 10px 0;
    line-height: 1.2;
}

.index-news-list-left-content h4 a:hover {
    color: #142D65;
}

.index-news-list-left-content p {
    color: #222222;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    line-height: 22px;
    margin-bottom: 0;
}

.index-news-list-right {
    padding: 50px 35px;
}

.index-news-list-right a {
    color: #222222;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.index-news-list-right a:hover {
    color: #C52620;
}

@media (max-width:991px) {
    .index-news-list {
        padding-left: 15px;
        padding-right: 15px;
    }

    .index-news-list-left {
        border-right: none;
    }

    .index-news-list-right {
        padding: 30px 0;
    }

}

@media (max-width:767px) {
    .index-news-list-left-content {
        padding: 30px 0 0 0;
    }
}

/*首页之外 banner*/
.other-banner-section .slick-dots {
    display: none;
}

.other-banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    /* z-index: 2; */
    width: 100%;
    /* padding: 200px 0 120px 0; */
    display: flex;
    align-items: center;
}

.other-banner:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(to right, #363b3f 0%, transparent 90%);
    opacity: 0.9;
}

.other-banner-bg {
    width: 100%;
}

.other-banner-bg img {
    width: 100%;
}

.other-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.banner-title h2 {
    font-size: 55px;
    font-weight: 800;
    color: white;
    height: 55px;
    border-left: #C52620 solid 5px;
    padding-left: 20px;
}

@media only screen and (max-width: 1366px) {
    .banner-title h2 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-title h2 {
        font-size: 30px;
    }
}



/* about */
.about-company-since h2{
    display: inline;
    text-transform: uppercase;
    font-family: 'oswald', sans-serif;
    /* font-style: italic; */
    color: white;
    font-size: 30px;
}
.about-company-since{
    display: inline-block;
    background-color: #142D65;
    padding: 5px 20px;
}
/* about-company-counter */
.about-company-counter {
    /* display: grid;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.08); */
}

.about-counter-item {
    position: relative;
    padding: 37px 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    background-color: #142D65;
    transition: all .3s ease;
}
.about-counter-item::before{
    top: 0;
    left: 0;
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, #142D65, #061841);
    z-index: 0;
    transition: all .5s ease;
}
.about-counter-icon{
    position: relative;
    z-index: 1;

}
.about-counter-icon .iconfont {
    font-size: 70px;
    color: white;
    text-align: center;
}
.about-counter-content {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 400;
    color: white;
    font-family: 'oswald', sans-serif;
}
.about-counter-content span {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-right: 5px;
    
}
.about-counter-des {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    text-transform: capitalize;
    color: white;
    font-family: 'oswald', sans-serif;
    font-style: italic;
    text-transform: uppercase;
}
.about-counter-item:hover::before{
    width: 100%;
    height: 100%;
}
@media (max-width:471px) {
    .about-counter-icon .iconfont {
        font-size: 37px;
    }
    .about-counter-content span{
        font-size: 29px;
    }
}


/* about-factory */
.about-factory p{
    margin-bottom: 0;
}
.about-video-bg{
    height: 100%;
    width: 100%;
    /* border-radius: 17px;
    overflow: hidden;
    position: relative; */
}
.about-video-bg video{
    height: 100%;
    width: 100%;
    border-radius: 15px;
}
.about-factory-video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-fa-item{
    border-radius: 25px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    overflow: hidden;
}
.about-fa-item h3{
    text-transform: uppercase;
    font-family: 'oswald', sans-serif;
    font-weight: 900;
    font-size: 30px;
    color: #142D65;
    text-align: center;
}
.about-fa-item-content{
    width: 100%;
    height: 100%;
    display: block;
    background-color: #f9f9f9;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.about-fa-item-content p{
    font-size: 16px;
    color: #222222;
    line-height: 24px;
    margin-bottom: 0;
    margin-top: 15px;
    text-align: center;
}
.about-fa-img{
    position: relative;
    overflow: hidden;
}
.about-fa-img::before{
    position: absolute;
    content: '';
    width: 87px;
    height: 200%;
    transform: rotate(45deg);
    top: -45%;
    left: -60%;
    background-color: white;
    opacity: 0.15;
    z-index: 1;
    transition: all 1s ease;
}
.about-fa-img:hover:before{
    left: 150%;
}


/* about-history */
.about-factory-video-section{
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    display: inline-block;
}
.about-factory-video-section::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    /* background-color: #c5252059; */
    border-radius: 50%;
    border: 1px solid #c5252077;
    -webkit-animation: btnIconRipple 2s 
cubic-bezier(0.23, 1, 0.32, 1) both infinite;
    animation: btnIconRipple 2s 
cubic-bezier(0.23, 1, 0.32, 1) both infinite;
    z-index: -1;
}
@keyframes btnIconRipple {
    0% {
        border-width: 4px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    80% {
        border-width: 1px;
        -webkit-transform: scale(1.35);
        transform: scale(1.35);
    }
    100% {
        opacity: 0;
    }
    
}

.about-history {
    position: relative;
    overflow: hidden;
}

.about-history h5 {
    font-family: 'Roboto', sans-serif;
}

.about-history-title {
    position: relative !important;
}

.about-history-title::after {
    position: absolute;
    content: '';
    right: -7px;
    top: 33px;
    width: 20px;
    height: 15px;
    background-color: #c5c5c5;
    clip-path: polygon(0 1%, 0% 100%, 100% 50%);
}

.about-history-content,
.about-history-title {
    position: relative;
    z-index: 1;
}

.about-history-content .slick-list,
.about-history-title .slick-list {
    height: auto !important;
}

.about-history-title .slick-track {
    padding-top: 40px;
}

.about-history-title-item {
    /* background-color: white; */
    /* border: 1px solid black; */
    text-align: center;
    position: relative;
    padding: 17px 0;
    cursor: pointer;
}

.about-history-title-item::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #c5c5c5;
    left: 0;
    top: 0;
    z-index: 1;
}

.about-history-title-item::before {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #C52620;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
}

.about-history-title-item.slick-current::before {
    opacity: 1;
}

.about-history-title-item:hover::before {
    opacity: 1;
}

.about-history-content-item {
    margin: 0 7px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.about-history-content-item h5 {
    font-size: 42px;
    line-height: 68px;
    font-weight: 900;
    font-style: italic;
    font-family: 'oswald', sans-serif;
    color: #142D65;
}

.about-history-content-item p {
    font-size: 15px;
    line-height: 22px;
    color: #4e4e4e;
    margin-bottom: 0;
    padding: 12px 15px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    text-align: center;
    width: 100%;
}

.about-history-content-logo {
    border-radius: 50%;
    margin-top: 20px;
    transition: all .3s ease;
}

.about-history-content-logo img {
    width: 60px;
}

.about-history-bg-icon-1 {
    position: absolute;
    right: 2.5%;
    top: -120px;
    z-index: 0;
}

.about-history-bg-icon-2 {
    position: absolute;
    left: 2.5%;
    bottom: -120px;
    z-index: 0;
}

.about-history-bg-icon-1 .iconfont,
.about-history-bg-icon-2 .iconfont {
    font-size: 258px;
    line-height: 258px;
    color: white;
    font-weight: 800;
}

.about-history-content-item:hover .about-history-content-logo {
    transform: translateY(-7px);
}

@media (min-width:1200px) {
    .about-history-content-item p {
        min-height: 120px;
    }
}

@media (max-width:767px) {
    .about-history-title .slick-track {
        padding-top: 27px;
    }

    .about-history-content-item h5 {
        font-size: 32px;
    }

    .about-history-content-item p {
        font-size: 14px;
    }

    .about-history-title::after {
        top: 20px;
    }
}


/* about-honor */
.about-honor-item{
    margin-bottom: 30px;
}
.about-honor-img{
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-honor-img a{
    width: 72%;
    display: block;
    position: relative;
    overflow: hidden;
}
.about-honor-img a::before{
    position: absolute;
    content: '';
    width: 87px;
    height: 200%;
    transform: rotate(45deg);
    top: -45%;
    left: -60%;
    background-color: white;
    opacity: 0.2;
    z-index: 1;
    transition: all 1s ease;
}
.about-honor-img a:hover:before{
    left: 150%;
}
.about-honor-img img{
    width: 100%;
    box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.08);
}
.about-honor-des{
    padding: 7px 12px;
    text-align: center;
    background-color: #142D65;
    position: relative;
}
.about-honor-des p{
    margin-bottom: 0;
    text-align: center;
    color: white;
    line-height: 22px;
}
.about-honor-des::before{
    position: absolute;
    content: '';
    width: 14%;
    height: 37px;
    background-color: #071a44;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.about-honor-des::after{
    position: absolute;
    content: '';
    width: 14%;
    height: 37px;
    background-color: #071a44;
    top: 0;
    right: 0;
    transform: translateY(-100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);;
}


/* about-check */
.about-check-links {
    position: sticky;
    top: 120px;
}

.about-check-links .nav {
    flex-direction: column;
}

.about-check-links .nav-item {
    margin-bottom: 20px;
}

.about-check-links .nav-link {
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 10px 20px -5px rgb(0 0 0 / 10%);
    background-color: white;
    border: none;
    border-top: 4px solid #36393A;
    cursor: pointer;
    transition: all .5s ease;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* align-items: center; */
    /* justify-content: space-between; */
}

.about-check-links .nav-link h5 {
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
    color: #36393A;
    margin-top: 20px;
}

.about-check-links .nav-link .about-check-links-icon {
    width: 48px;
}

.about-check-links .nav-link.active {
    background-color: white;
    border-top: 4px solid #C52620;
}

.about-check-links .nav-link:hover {
    border-top: 4px solid #2D396B;
    background-color: #f8f9f9;
}

.about-check-links .nav-link:hover .about-check-links-icon {
    animation: flipInY .5s;
}

.about-check-content-title h4 {
    font-size: 32px;
    font-weight: 600;
    color: #222222;
    display: flex;
    align-items: center;
}

.about-check-content-title h4 .iconfont {
    font-size: 32px;
    font-weight: 500;
    color: #6072FF;
    margin-right: 10px;
}

.about-check-content-item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #36393A;
    letter-spacing: .2px;
}

.about-check-content-img-gird img {
    border-radius: 7px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-check-content-img-gird {
    padding: 20px;
    background-color: white;
    box-shadow: 0px 10px 20px -5px rgb(0 0 0 / 10%);
    display: grid;
    grid-template-columns: 7fr 4fr;
    grid-gap: 20px;
}

.about-check-content-img-right {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 20px;
}

@media (max-width:991px) and (min-width:428px) {
    .about-check-links .nav {
        flex-direction: row;
        justify-content: space-between;
    }

    .about-check-links .nav-item {
        width: 47%;
    }
}

@media (max-width:767px) {
    .about-check-content-title h4 {
        font-size: 26px;
    }
}

/* application */
.application-icon {
    width: 100%;
    display: flex;
    justify-content: center;
}
.application-slick{
    position: relative;
}
.application-slick .slick-list {
    padding: 15px 0;
    height: auto !important;
}
.application-slick-item{
    margin: 0 15px;
}
.application-slick-item .application-slick-item-img {
    width: 100%;
    background-color: white;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 9px 2px rgba(0, 0, 0, 0.03);
    border-radius: 80px;
}
.application-slick-item .application-slick-item-img img{
    max-height: 90%;
}
.application-slick .slick-arrow{
    background-color: white;
    border-radius: 50%;
    width: 37px;
    height: 37px;
    border: 1px solid #ebebeb;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: all .3s ease;
    box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.07);
}
.application-slick .slick-arrow.slick-prev{
    left: -2px;
}
.application-slick .slick-arrow.slick-next{
    right: -2px;
}
.application-slick .slick-arrow:hover{
    border-color: #C52620;
    color: #C52620;
}
.application-1-item{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.application-1-item-icon .iconfont{
    background-color: #C52620;
    color: white;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    font-size: 32px;
}

.application-1-item-des{
    padding: 0 12px;
}
.application-1-item-des h4,
.application-2-item-des h4{
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    /* text-align: center; */
    line-height: 1.3;
    font-weight: 400;
    /* color: white; */
}
.application-2-img-des{
    position: relative;
    display: inline-block;
    font-size: 57px;
    font-family: 'owsald', sans-serif;
    font-weight: 700;
    /* text-transform: uppercase; */
}
/* .application-2-img-des-span-1{
    border-bottom: 3px solid #C52620;
}
.application-2-img-des-span-2{
    border-bottom: 3px solid #142D65;
} */
.application-2-img-des::before{
    position: absolute;
    content: '';
    width: 47%;
    height: 4px;
    background-color: #C52620;
    bottom: -7px;
    left: 0;
}
.application-2-img-des::after{
    position: absolute;
    content: '';
    width: 53.5%;
    height: 4px;
    background-color: #142D65;
    bottom: -7px;
    right: 0;
}
.application-2-item{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}
.application-2-item-des h4{
    /* text-align: center; */
    font-size: 16px;
}

/*products*/
/*products-category*/
.pro-category-item{
    margin-bottom: 60px;
}
.pro-category-item-img{
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    position: relative;
}
.pro-category-item-img-a{
    display: block;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    position: relative;
}
.pro-category-item-img img{
    width: 70%;
    padding: 30px 0;
}
.pro-category-item-title{
    position: absolute;
    left: 50%;
    bottom: -35px;
    transform: translateX(-50%);
    background-color: white;
    width: 60%;
    box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05); 
    display: flex;
    justify-content: center;
    align-items: center;
}
.pro-category-item-title h3{
    width: 100%;
    text-align: center;
}
.pro-category-item-title h3 a{
    text-align: center;
    text-transform: uppercase;
    font-family: 'oswald', sans-serif;
    font-weight: 900;
    font-size: 28px;
    display: block;
    width: 100%;
    padding: 27px 0;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    z-index: 3;
}
.pro-category-item-title::before{
    position: absolute;
    content: '';
    width: 7px;
    height: 50%;
    background-color: #C52620;
    top: 0;
    left: 0;
    transition: all .3s ease;
    z-index: 1;
}
.pro-category-item-title::after{
    position: absolute;
    content: '';
    width: 7px;
    height: 50%;
    background-color: #142D65;
    bottom: 0;
    left: 0;
    transition: all .3s ease;
    z-index: 1;
}
.pro-category-item-img:hover .pro-category-item-title::before,
.pro-category-item-img:hover .pro-category-item-title::after{
    width: 100%;
}
.pro-category-item-img:hover .pro-category-item-title h3 a{
    color: white;
}
.pro-category-item-content{
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 30px 20px;
}
.pro-category-item-content-title h2{
    text-transform: uppercase;
    font-family: 'oswald', sans-serif;
    font-weight: 900;
    display: inline-block;
    position: relative;
}
.pro-category-item-content-title h2::before{
    position: absolute;
    content: '';
    width: 77px;
    height: 2px;
    border-radius: 5px;
    background-color: #C52620;
    bottom: 0;
    right: -7px;
    transform: translateX(100%);
}
.pro-category-item-content p{
    margin-bottom: 0;
    line-height: 25px;
}
@media (max-width:991px) {
    .pro-category-item{
        margin-bottom: 20px;
    }
    .pro-category-item-content{
        margin-top: 10px;
    }
    .pro-category-item-content-title h2{
        display: none;
    }
}
@media (max-width:500px) {
    .pro-category-item-title{
        width: 75%;
    }
}

/* product-list */
.pro-category-section .pro-category-title {
    border: none;
}
.pro-category-section .pro-category ul{
    display: flex;
}
.pro-category-section .pro-category ul li{
    padding: 15px;
    display: flex;
    align-items: center;
    border-top: 1px solid #e6e6e6;
}
@media (max-width:1289px) {
    .pro-category-section .pro-category ul{
        flex-wrap: wrap;
    }
    .pro-category-section .pro-category ul li{
        width: 25%;
    }
}
@media (max-width:767px) {
    .pro-category-section .pro-category ul li{
        width: 33.3333333%;
    }
}
@media (max-width:550px) {
    .pro-category-section .pro-category ul li{
        width: 50%;
    }
}
.pro-check-section{
    margin-top: -50px;
}
.pro-check-items{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.pro-check-item{
    /* width: 33.33333%; */
    background-color: #142D65;
}
.pro-check-item a{
    display: block;
    width: 100%;
}
.pro-check-item h2{
    color: white;
    /* font-family: 'oswald', sans-serif; */
    font-weight: 900;
    font-size: 27px;
    text-transform: uppercase;
    text-align: center;
    padding: 25px 25px;
    transition: all .3s ease;
    background-image: linear-gradient(to right, #142D65, #0b2764);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.15);
}
/* .pro-check-item.active h2,
.pro-check-item:hover h2{
    padding: 37px 0;
    background-image: linear-gradient(to right, #C52620, #b31510);
}
@media (max-width: 991px) {
    .pro-check-section{
        margin-top: -30px;
    }
    .pro-check-item h2{
        font-size: 25px;
        padding: 20px 0;
    }
    .pro-check-item.active h2,
    .pro-check-item:hover h2{
        padding: 27px 0;
    }
}
@media (max-width: 767px) {
    .pro-check-section{
        margin-top: -20px;
    }
    .pro-check-item h2{
        font-size: 20px;
        padding: 17px 0;
    }
    .pro-check-item.active h2,
    .pro-check-item:hover h2{
        padding: 23px 0;
    }
}
@media (max-width: 767px) {
    .pro-check-section{
        margin-top: -20px;
    }
    .pro-check-item h2{
        font-size: 18px;
        padding: 15px 0;
    }
    .pro-check-item.active h2,
    .pro-check-item:hover h2{
        padding: 20px 0;
    }
} */


.pro-section {
    position: relative;
}

.pro-section .pro-category {
    position: sticky;
    top: 120px;
}

.pro-category-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
    /* padding: 18px 15px; */
    /* background: linear-gradient(to right, #0377a5, #C52620); */
    /* border-radius: 5px 5px 0 0; */
}

.pro-category h2 {
    font-family: 'oswald', sans-serif;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    color: #C52620;
    position: relative;
}

.pro-category-title h2::before {
    position: absolute;
    content: '';
    width: 77px;
    height: 2px;
    border-radius: 5px;
    background-color: #C52620;
    bottom: 0;
    left: calc(100% + 7px);
}

/* .pro-category-title h2::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 3px;
    border-radius: 5px;
    background-color: #fffb00;
    bottom: 0;
    left: calc(100% + 7px);
    animation: afterMove 2.5s ease-in-out infinite;
} */

@keyframes afterMove {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(45px);
    }

    100% {
        transform: translateX(0px);
    }
}


.category-lists {
    /* border: 1px solid #dbe3ef; */
    /* margin-top: 10px; */
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    /* background-color: rgba(235, 244, 249, 0.5); */
}

.menu-item-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.menu-item-container .iconfont {
    color: #C52620;
}

.pro-menu-li-1 p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 22px;
}

.pro-menu-2 {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.pro-menu-2 li {
    margin: 0 !important;
}

.pro-menu-2 li:nth-last-child(1) {
    border-bottom: none;
    padding-bottom: 0;
}

.pro-menu-2.active {
    opacity: 1;
    max-height: 1000px;
    margin-top: 10px;
    border-top: 1px solid #a8e1ff;
}

.pro-menu-2.active li {
    padding-left: 15px;
}

.pro-menu-li-1.active {
    border-bottom-color: #a8e1ff;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.toggle-icon.active {
    transform: rotate(180deg);
}

.category-lists li a {
    transition: all .3s ease;
    color: #222222;
    font-family: 'Poppins', sans-serif;
}

.category-lists li a:hover {
    color: #C52620;
}

.pro-category-title-2 {
    color: #C52620;
    padding: 7px 15px;
    border-bottom: 1px solid #dbe3ef;
    text-transform: capitalize;
    display: flex;
}

.pro-category-title-2 a,
.pro-category-title-2 dt {
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
    color: #222;
    padding: 8px 0;
    /* letter-spacing: 0.5px; */
    font-weight: 500;
}

.category-lists li {
    /* margin: 0 15px; */
    padding: 15px 0;
    /* background-color: #fff; */
    display: block;
    color: #222222;
    border-bottom: 1px solid #e6e6e6;
    text-transform: capitalize;
}

.pro-list-item-a {
    display: block;
    width: 100%;
}

.pro-list-item-a img {
    width: 100%;
}

.pro-list-des h5 {
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1.3;
    font-size: 18px;
    margin-bottom: 3px;
    color: #222222;
}

.pro-list-img {
    position: relative;
    overflow: hidden;
    background-color: white;
    /* padding: 15px; */
    border: 1px solid #e6e6e6;
}

@media (max-width:767px) {
    .pro-list-img {
        padding: 5px;
    }
}

.pro-list-img-case {
    position: absolute;
    left: -100%;
    top: 0;
    transition: all .3s ease;
    /* display: none; */
}

.pro-list-img:hover .pro-list-img-case {
    /* display: flex; */
    left: 0;
}
.pro-section .p-list {
    display: flex;
    justify-content: center;
}

.sidebar-news {
    background-color: white;
    padding: 25px 15px;
}

.sidebar-news h2 {
    font-size: 22px;
    font-weight: 600;
    color: #00488D;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sidebar-news-item {
    width: 100%;
    display: block;
    padding: 25px 15px;
    border-bottom: 1px solid #eee;
}

.sidebar-news-item-date {
    color: #C52620;
    font-size: 13px;
    text-transform: uppercase;
}

.sidebar-news-item-title {
    color: #333333;
    font-size: 15px;
    text-transform: capitalize;
    /* letter-spacing: .5px; */
    font-weight: 600;
    margin-top: 5px;
}

.sidebar-contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
    opacity: 0.7;
}

.sidebar-contact-detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.sidebar-contact-detail h3 {
    font-size: 28px;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
    text-align: center;
    line-height: 1.3;
}

@media (max-width:991px) {
    .sidebar-news {
        display: none;
    }

    .sidebar-contact {
        display: none;
    }
}

/*product-ar*/
.pro-img {
    width: 100%;
    /* padding: 15px 0; */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #dbe3ef;
}

.pro-img img {
    height: 350px;
}

.pro-ar-title h2 {
    font-family: 'oswald', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
}

.pro-typename {
    font-size: 16px;
    margin-top: 15px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    color: #C52620;
}

.pro-ar-social {
    display: flex;
    gap: 7px;
    justify-content: flex-start !important;
}

.pro-slick-big-item {
    padding: 0 5px;
}

.pro-slick-big .slick-list {
    height: auto !important;
    /* padding: 10px 0; */
}

.pro-slick-big {
    position: relative;
}

.pro-slick-big .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;
    /* border: 1px solid #eeeeee; */
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.pro-slick-big .slick-arrow svg {
    font-size: 15px;
}

.pro-slick-big .slick-prev {
    left: 5%;
}

.pro-slick-big .slick-next {
    right: 5%;
}

.pro-slick-big-item-img,
.pro-slick-small-item-img {
    width: 100%;
    display: flex;
    justify-content: center;
    /* border: 1px solid #dbe3ef; */
    /* padding: 10px; */
}

.pro-slick-big-item-img img {
    width: 100%;
}

.pro-slick-small-item-img {
    border: none !important;
}

/* .pro-slick-big-item-img {
    height: 400px;
} */

.pro-slick-small .slick-list {
    /* height: auto !important; */
    /* border-top: 1px solid #dbe3ef; */
    /* border-bottom: 1px solid #dbe3ef; */
}

.pro-slick-small-item {
    cursor: pointer;
}

.pro-slick-small-item {
    margin-bottom: 10px;
}

.pro-section-over {
    padding: 27px 0;
    font-weight: 600;
    font-size: 22px;
    color: #333333;
    background-color: #fff;
    text-align: center;
}

/* .pro-ar-btn a {
    padding: 15px 25px;
    color: #C52620;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #C52620;
    text-transform: capitalize;
    transition: all .3s ease;
}
.pro-ar-btn a:hover{
    color: #C52620;
    border-color: #C52620;
} */
.pro-detail-section .col-lg-4,
.pro-detail-section .col-md-6 {
    border: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    padding: 15px 10px 0 15px;
}

.pro-ar-text p,
.pro-ar-text div,
.pro-ar-text {
    font-size: 16px;
    font-weight: normal;
    line-height: 28px;
    color: #222222;
    margin-bottom: 15px;
}

.pro-ar-text iframe {
    margin-top: 30px;
    width: 100%;
}

.pro-ar-text table {
    width: 100%;
    border: none;
    margin-top: 30px;
}

.pro-ar-text table tr {
    border: none;
}

.pro-ar-text table td {
    border: 1px solid #eef1f8;
    color: #6a6b71;
    text-align: center;
}

.pro-ar-text table thead tr td {
    background-color: #C52620;
    color: white;
    font-weight: 600;
}

.pro-ar-text-video-h h2 {
    color: #333333;
}

.pro-ar-other .pro-ar-other-slick .slick-list {
    height: auto !important;
}

.pro-ar-other-slick {
    position: relative;
}

.pro-ar-other-slick .slick-arrow,
.index-pro-slick .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: #333333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 1px solid #eeeeee;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 2;
    visibility: hidden;
}

.pro-ar-other-slick .slick-prev,
.index-pro-slick .slick-prev {
    left: -3%;
}

.pro-ar-other-slick .slick-next,
.index-pro-slick .slick-next {
    right: -3%;
}

.pro-ar-other-slick .slick-arrow:hover {
    color: #C52620;
    border-color: #C52620;
}

.index-pro-slick .slick-arrow:hover {
    color: #043272;
    border-color: #043272;
}

.pro-ar-other-slick:hover .slick-arrow,
.index-pro-slick:hover .slick-arrow {
    visibility: visible;
}

/* technology */
.tech-title p {
    font-size: 15px;
    line-height: 25px;
    color: #4e4e4e;
}

.technology-box-title {
    display: flex;
    align-items: center;

}

.technology-box-title h4 {
    color: #222222;
    position: relative;
}

.technology-box-title .iconfont {
    font-size: 22px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-image: linear-gradient(198deg, #C52620, #00D1AB);
    border-radius: 50%;
    text-align: center;
    color: white;
    margin-right: 10px;
}

.technology-box-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.technology-content-slick .slick-list {
    height: auto !important;
}

.technology-content-slick .technology-box-item {
    margin: 0 10px;
}

@media (max-width:1199px) {
    .technology-box-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:991px) {
    .technology-box-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .technology-box-item-img img {
        height: 150px !important;
    }
}

@media (max-width:767px) {
    .technology-box-content {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 0;
        column-gap: 10px;
    }

    .technology-box-item-img img {
        height: 100px !important;
    }
}

.technology-box-item {
    position: relative;
}

.technology-box-item h6 {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: 80%;
    line-height: 1.2;
    text-align: center;
    color: white;
    font-weight: 500;
    font-size: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 7px 5px;
    text-align: center;
    border-radius: 5px;
    z-index: 2;
}

.technology-box-item-img {
    position: relative;
}

.technology-box-item-img img {
    height: 173px;
    width: 100%;
    object-fit: cover;
    border-radius: 17px;
}

.technology-box-item-img::before {
    position: absolute;
    width: 100%;
    height: 0;
    content: '';
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to top, #C52620, transparent);
    border-radius: 17px;
    opacity: 0.7;
    z-index: 1;
    transition: all .3s ease;
}

.technology-box-item-img:hover::before {
    height: 100%;
}

@media (max-width:767px) {
    .technology-box-item h6 {
        position: relative;
        transform: translateX(-50%);
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        padding: 5px 5px 0;
        margin-top: 10px;
        color: #222222;
        background-color: transparent;
    }

    .technology-box-item-img img {
        border-radius: 7px;
    }
}


.technology-box-slick .slick-list {
    height: auto !important;
}

.technology-box-slick-item {
    padding: 15px;
    background-color: #C526201a;
}

.technology-work-detail-counter {
    text-align: center;
    /* box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.03); */
    font-size: 25px;
    color: #222222;
    padding: 25px 0;
    border: 1px solid #E0ECF6;
    background-color: white;
}

.technology-work-detail-counter span {
    font-size: 30px;
    font-weight: 600;
    color: #C52620;
}

.technology-work-detail-2 {
    margin-bottom: 20px;
}

.technology-work-detail-top {
    display: flex;
    gap: 10px;
    align-items: center;
}

.technology-work-detail-top-count {
    font-size: 45px;
    line-height: 45px;
    font-weight: 800;
    font-style: italic;
    color: #C52620;
}

.technology-work-detail-top h5 {
    font-size: 20px;
    font-style: italic;
}

.technology-work-detail-2 p {
    margin-bottom: 0;
    margin-top: 10px;
    font-weight: 400;
    font-size: 16px;
    color: #222222;
    line-height: 24px;
}

@media (max-width:1199px) {
    .technology-box-machining-items {
        padding: 0 15px;
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width:1199px) {
    .technology-box-machining-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.technology-box-machining .technology-box-item {
    margin-bottom: 10px;
}

.technology-box-machining .technology-box-item-img img {
    height: 137px;
}

/*news*/
.news-sidebar-list .category-lists li {
    padding: 12px 0 4px 0;
}

.news-item {
    margin-bottom: 25px;
}

.news-item-img a {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center 20%;
    background-repeat: no-repeat;
    background-size: cover;
}

.news-item-img {
    overflow: hidden;
    height: 280px;
    box-shadow: 0px -3px 9px 2px rgba(0, 0, 0, 0.08);
    border-radius: 7px;
}

.news-item-img a:hover {
    transform: scale(1.05);
}

.news-item-content {
    /* align-items: center; */
    padding: 25px 0;
    background-color: white;
}
.news-item-tag span{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #C52620;
    color: white;
    padding: 7px 15px;
    border-radius: 12px;
}

.news-item-icon {
    font-size: 16px;
    font-family: 'oswald', sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    color: #BBBBBB;
    display: flex;
    align-items: center;
}

.news-item-icon .iconfont {
    /* color: #C52620; */
    font-weight: 600;
    font-size: 22px;
    margin-right: 5px;
}

.news-item-title h3 {
    font-size: 25px;
    font-family: 'oswald', sans-serif;
    line-height: 1.2;
}
.news-item-content p{
    margin-bottom: 0;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    line-height: 22px;
    /* color: #4e4e4e; */

}

.news-item-btn a {
    font-weight: 800;
    font-size: 15px;
    color: #C52620;
    text-transform: uppercase;
}

.news-item-btn a:hover {
    color: #142D65;
}

@media (max-width:768px) {
    .news-item-content {
        padding: 30px 25px;
    }
}

.news-ar-back a {
    color: #C52620;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}

.news-ar-back .iconfont {
    background-color: #C52620;
    color: white;
    padding: 5px;
    font-size: 20px;
    border-radius: 50%;
    margin-right: 7px;
}

.news-ar-title h3 {
    font-size: 30px;
    font-weight: 600;
    font-family: 'oswald', sans-serif;
    text-transform: capitalize;
    line-height: 1.3;
}

.news-ar-detail,
.news-ar-detail div {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    position: relative;
    color: #4e4e4e;
}

.news-ar-detail img {
    width: 100%;
    margin-bottom: 20px;
}

.news-ar-detail strong {
    color: #C52620;
    margin-top: 15px;
    display: inline-block;
}

/* service */
.service-1-left h2,
.service-contact-right h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 1.2;
    text-transform: capitalize;
    color: #333333;
}

.service-contact {
    border-radius: 7px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 3;
}

.service-contact-right {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-contact-right h2 {
    font-size: 37px;
}

.service-contact-icon {
    display: flex;
    padding-bottom: 25px;
    border-bottom: 1px solid #eeeeee;
}

.service-contact-icon-i {
    width: 67px;
    height: 67px;
    border-radius: 15px;
    /* padding: 10px; */
    background-color: #52C4FE;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.service-contact-icon-i .iconfont {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 40px;
    color: white;
}

.service-contact-icon-des h3 {
    font-weight: 600;
    color: #333333;
    font-size: 25px;
}

.service-contact-icon-des a {
    font-size: 16px;
    margin-top: 10px;
}

.service-2 {
    margin-top: -120px;
    position: relative;
    background-size: cover;
    z-index: 2;
}

.service-2::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: #333333;
    opacity: 0.9;
}

.service-2-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.service-2-icon {
    padding: 20px;
    background-color: #52C4FE;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 600px 600px 600px 0;
}

.service-2-icon .iconfont {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 70px;
    color: white;
}

.service-2-h {
    font-size: 33px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.service-2-des,
.service-2-des a {
    font-size: 16px;
    color: #eee;
    text-transform: capitalize;
    letter-spacing: .5px;
}

.service-3-h3 h3 {
    font-size: 33px;
    font-weight: 600;
    text-transform: capitalize;
    color: #333333;
}

.service-3-h4 h4 {
    padding-left: 120px;
    font-size: 27px;
    text-transform: capitalize;
    color: #C52620;
    position: relative;
}

.service-3-h4 h4::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 2px;
    background-color: #C52620;
}

.service-3 {
    background-position: top right;
    background-repeat: no-repeat;
}

.service-faq-slick-item {
    padding: 20px;
    border: 1px solid #eeeeee;

}

.service-faq-slick-item-q {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1.5px dashed #dadada;
}

.service-faq-slick-item-title {
    font-family: 'oswald', sans-serif;
    text-transform: capitalize;
    font-size: 20px;
    color: #333333;
    font-weight: 600;
    position: relative;
    padding-left: 50px;
}

.service-faq-slick-item-title::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '\ec9e';
    width: 30px;
    height: 30px;
    color: white;
    line-height: 30px;
    font-family: 'iconfont';
    font-size: 15px;
    text-align: center;
    font-weight: 900;
    border-radius: 50%;
    background-color: #142D65;

}

.service-faq-slick-item-a p {
    position: relative;
    /* padding-left: 50px; */
    margin-bottom: 0;
}

.service-faq-slick-item-a p::before {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    content: '2';
    width: 30px;
    height: 30px;
    color: white;
    line-height: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    border-radius: 50%;
    background-color: #142D65;
}

/*contact*/
.contact-info-section {
    padding: 35px 20px 20px 30px;
    margin-bottom: 50px;
    position: relative;
    /* border: 1px solid #E0ECF6; */
    box-shadow: 0 0 17px 2px rgba(0, 0, 0, 0.03);
}

.contact-info-title {
    border-bottom: 1px solid #C52620;
}

.contact-info-title h5 {
    color: #222222;
    padding-bottom: 15px;
    font-size: 25px;
    border-bottom: 2px solid #C52620;
    display: inline-block;
}

.contact-info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.contact-info-icon .iconfont {
    width: 30px;
    height: 30px;
    line-height: 25px;
    font-size: 25px;
    color: #C52620;
    border-radius: 50%;
    text-align: center;
}

.contact-info-item h5 {
    font-size: 22px;
    margin-bottom: 7px;
    color: #36393a;
    font-weight: 600;
}

.contact-info-item p,
.contact-info-item p a {
    font-size: 16px;
    margin-bottom: 0px;
    line-height: 20px;
    /* text-transform: capitalize; */
    color: #222222;
}
.contact-info-item p a:hover{
    color: #C52620;
}

.contact-info-social {
    display: flex;
    gap: 7px;
    justify-content: flex-start;
}

.contact-form label{
    color: #222222;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
}
.contact-form label span{
    color: #C52620;
}

input::placeholder,
textarea::placeholder {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
}

input:focus,
textarea:focus {
    border-color: #C52620;
}

/*footer*/
footer {
    background-color: #142D65;
    background-position: center;
    background-size: cover;
}

footer .container-fluid {
    padding: 0 5%;
}

.footer-top {
    display: flex;
    align-items: center;
}

.footer-top .footer-top-logo {
    padding-right: 17px;
    margin-right: 17px;
    border-right: 1px solid white;
}

.footer-top img {
    width: 70px;
}

.footer-top-des h2 {
    color: white;
}
@media (max-width:513px) {
    .footer-top-des h2 {
        font-size: 30px;
    }
}

.footer-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 25px;
    color: white;
}

footer .main-btn::before{
    background-color: #36393a;
}

.footer-p {
    font-size: 14px;
    line-height: 24px;
    color: #e0e0e0;
}

.footer-des a:hover {
    color: #C52620;
}

.footer-des-1 a {
    padding-left: 17px;
    position: relative;
    text-transform: capitalize;
}

.footer-bottom img {
    width: 190px;
    padding: 7px 20px;
    background-color: #C52620;
    border-radius: 100px;
}

.footer-a a {
    font-size: 16px;
    color: #d3d3d3;
    margin-bottom: 20px;
    text-transform: capitalize;
    transition: all .3s ease;
}

.footer-a a:hover,
.footer-contact-item a:hover {
    color: #C52620;
}

.footer-contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.footer-contact-item span,
.footer-contact-item a {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.2;
    max-width: 83%;
}

.footer-contact-item .iconfont {
    background-color: #C52620;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: white;
    font-size: 18px;
    margin-right: 10px;
    text-align: center;
    border-radius: 8px;
}


.footer-item input,
.footer-item textarea {
    border: 1px solid #e9e9e9;
    border-radius: 7px;
    padding: 12px 17px;
}

.footer-item textarea {
    height: 100px;
}

.footer-item input::placeholder,
.footer-item textarea::placeholder {
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 7px;
}

.social-fixed {
    position: fixed;
    bottom: 100px;
    right: 30px;
    transform: translateY(-50%);
    z-index: 999;
}

.social-fixed a {
    margin-bottom: 7px;
}

/* social */
.social-btn a {
    width: 37px;
    height: 37px;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    line-height: 37px;
    color: white;
    background-color: #C52620;
    /* margin-right: 10px; */
    position: relative;
}

.social-btn .iconfont {
    font-size: 18px;
}

#facebook a {
    background-color: #4060a5;
}

#lin a {
    background-color: #0173B2;
}

#whatsapp a {
    background-color: #40C351;
}

#email a {
    background-color: #233EFF;
}

#ins a {
    background-image: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    ;
}

#facebook a:hover {
    background-color: #1a3672;
}

#lin a:hover {
    background-color: #004a72;
}

#whatsapp a:hover {
    background-color: #047c14;
}

#email a:hover {
    background-color: #001ae2;
}

#ins a:hover {
    background-image: linear-gradient(45deg, #ffc31d, #e76400, #ff0073, #950acc, #3140e2);
    ;
}

.btn-tooltip {
    font-size: 12px;
    position: absolute;
    top: 0;
    right: -152px;
    left: unset;
    opacity: 0;
    background-color: #40C351;
    color: white;
    padding: 1px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .2s;
    pointer-events: none;
    letter-spacing: 0.5px;
}

.btn-tooltip::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background-color: #40C351;
    background-size: 1000%;
    background-position: center;
    transform: rotate(45deg);
    right: unset;
    left: -3%;
    transition-duration: .3s;
}

.footer-social a:hover .btn-tooltip {
    opacity: 1;
}


/*backontop*/
.backontop {
    position: fixed;
    width: 50px;
    height: 50px;
    color: white;
    background: linear-gradient(35deg, #C52620 0%, #C52620 80%);
    bottom: 50px;
    right: 30px;
    /* border: 2px solid white; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    visibility: hidden;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
}

.backontop:hover {
    background: linear-gradient(35deg, #C52620, #aa1712);
}

/* phone-language-section */
.phone-language-section {
    padding: 15px 0 50px 0;
    display: flex;
    gap: 10px;
}

.phone-language-section a {
    display: flex;
    align-items: center;
}

.phone-language-icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: 800;
    background-color: #C52620;
    border-radius: 5px 0px 0px 5px;
}

.phone-language-des {
    background-color: white;
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    color: #222222;
    font-weight: 500;
    min-width: 64px;
}