@import url(opensans.css);

@font-face {
    font-family: 'Montserrat';
    src: url(../fonts/Montserrat-ExtraBold.ttf) format('woff2');
    font-weight: 800;
    font-style: normal;
}

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

.header-1 {
    padding: 25px 0 65px 0;
    position: relative;
}

.header-1-right {
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

.header-1-right-item {
    display: flex;
    align-items: center;
}

.header-1-icon {
    color: #F7AA38;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 1px solid #F7AA38;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-1-icon .iconfont {
    text-align: center;
    font-size: 25px;
}

.header-1-text h6 {
    color: #F7AA38;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .5px;
}

.header-1-text-a {
    margin-top: 5px;
    color: #606060;
}

.header-1-right-item-address .header-1-text h6 {
    color: #0B9271;
}

.header-1-right-item-address .header-1-icon {
    color: #0B9271;
    border: 1px solid #0B9271;
}

.header-1-bottom {
    color: white;
    position: absolute;
    width: 100%;
    transform: translateY(-50%);
    bottom: -50%;
    left: 0;
    right: 0;
    z-index: 9;
}

.header-1-bottom .container {
    background-color: #00488d;
    border-radius: 8px;
}

.header-1-bottom ul {
    /* padding: 28px 50px; */
    height: 100%;
}

.header-1-bottom li {
    padding: 0 20px;
}

.header-1-bottom a {
    position: relative;
    height: 80px;
    line-height: 80px;
    padding: 0 5px;
    color: white;
    text-transform: uppercase;
}

.header-1-bottom ul a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    /* width: 100%; */
    width: 0;
    height: 3px;
    background-color: white;
    transition: all .5s ease;
}

.header-1-bottom ul a:hover::before {
    width: 100%;
}

.header-1-bottom ul .active a:nth-child(1):before {
    width: 100%;
}

.header-1-bottom ul a:hover {
    background-color: #0154A4;
}

.header-1-bottom-btn {
    padding: 0 !important;
    width: 101.5%;
    height: 100%;
    background-color: #0154A4;
    border-radius: 0 8px 8px 0;
    transform: translateX(2px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-1-bottom-btn a {
    text-align: center;
    font-size: 20px;
}

.header-1-bottom-btn a:hover {
    /* background-color: #fc4f8c; */
}

@media (max-width:992px) {
    .header-1 {
        display: none !important;
    }

    .header-area {
        display: block !important;
    }
}

.header-1-bottom-menu .pr {
    position: relative;
}

.header-1-bottom-menu .header-1-submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 250px;
    height: auto !important;
    transition: all .3s ease;
}

.pr:hover .header-1-submenu {
    display: block;
}

.header-1-bottom-menu .header-1-submenu li {
    width: 100%;
}

.header-1-bottom-menu .header-1-submenu li a {
    width: 100%;
    height: auto !important;
    line-height: 1.1;
    font-size: 14px;
    color: #eeeeee;
    background-color: #0154A4;
    padding: 10px 12px;
}

.header-1-bottom-menu .header-1-submenu li a:hover {
    color: #eeeeee !important;
    background-color: #00488D;
}

.header-1-bottom-menu .header-1-submenu li a::before {
    content: '';
    height: 100%;
    width: 3px !important;
    background-color: #0084ff;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.header-1-bottom-menu .header-1-submenu li a:hover::before {
    opacity: 1;
}


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

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

.header-area .nav-link {
    position: relative;
}

.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 a:hover {
    background-color: #0545A3;
    color: white !important;
}

.sub-menu a:hover li {
    background-color: #0545A3;
    color: white !important;
}

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

.sub-menu-item .sub-menu-2 {
    position: absolute;
    width: 100%;
    left: 101%;
    top: 0;
    display: flex;
    flex-direction: column;
    background-color: white;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.05);
}

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

/* header-top */
.header-top {
    width: 100%;

    /* background-color: #08194A; */
    /* height: 50px; */
}

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

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

.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, #0154A4, #0090D9);
    text-align: center;
    transition: all .3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-radio a:hover {
    border: 2px solid #0090D9;
    color: #0090D9;
    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;
    }
}

/*banner*/
.main-slider {
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 8;
}

.main-slider .slide {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 270px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.main-slider .slide .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: all .8s ease-in-out .4s;
}

.main-slider .slide .image-layer::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #363b3f, transparent);
    opacity: 0.4;
    content: "";
    z-index: 0;
}

.main-slider .active .slide .image-layer {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.main-slider .content {
    position: relative;
    z-index: 11;
}

.main-slider.style1 .content {
    position: relative;
    display: block;
    width: 100%;
}

.main-slider .auto-container {
    position: relative;
    overflow: hidden;
}

.main-slider .content h5 {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(80px);
    transition: all .4s ease-in-out .1s;
    font-family: 'Poppins', sans-serif;
    color: #0090D9;
}

.main-slider .content h5 span {
    position: relative;
    display: inline-block;
    padding: 0 20px;
    color: white;
}

.main-slider .active .content h5 {
    opacity: 1;
    transform: translateY(0px);
    transition: all .4s ease-in-out .3s;
}

.main-slider .content h2 {
    position: relative;
    /* text-shadow: 0 3px 0 rgba(0, 136, 208, 0.1); */
    background: linear-gradient(to bottom, white, white, #cef1ff);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 70px;
    line-height: 1.1;
    font-weight: 700;
    opacity: 0;
    transform: translateY(80px);
    transition: all .4s ease-in-out .1s;
    text-transform: capitalize;
}

.main-slider .content .slide-h2-2 {
    background: none;
    -webkit-background-clip: inherit;
    color: #47cbff;

}

@media (max-width:600px) {
    .main-slider .content h2 {
        font-size: 55px;
    }
}

.main-slider .content h2 .round {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.main-slider .content p {
    font-size: 18px;
}

.main-slider .active .content h2 {
    opacity: 1;
    transform: translateY(0px);
    transition: all .7s ease-in-out .5s;
}

.main-slider .content .btns-box {
    position: relative;
    opacity: 0;
    transform: translateY(80px);
    transition: all .4s ease-in-out .1s;
}

.main-slider .content .btns-box a {
    line-height: 60px;
}

.main-slider .content .btns-box a.marleft {
    margin-left: 16px;
}

.main-slider .content .btns-box a {
    font-size: 17px;
    border-radius: 500px;
    padding: 15px 40px;
    line-height: 1.3;
    color: white;
    background: #0090D9;
    border: 2px solid #0090D9;
}

.main-slider .content .btns-box a:hover {
    color: #0090D9;
    background: rgba(255, 255, 255, 0.9);
}

.main-slider .active .content .btns-box {
    opacity: 1;
    transform: translateY(0px);
    transition: all .7s ease-in-out .7s;
}

.main-slider .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    opacity: 0;
    transform: scale(1.0);
}

.main-slider:hover .owl-theme .owl-nav {
    opacity: 1;
    transform: scale(1.0);
}

.main-slider .owl-theme .owl-prev span,
.main-slider .owl-theme .owl-next span {
    display: block;
}

.main-slider .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: 50px;
    top: 0;
    transform: rotate(180deg);
    background: #ffffff;
    border: 2px solid #ffffff;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    color: #353742;
    font-size: 25px;
    line-height: 56px;
    font-weight: 400;
    opacity: 1;
    margin: 0;
    padding: 0;
    margin-top: -30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: 50px;
    top: 0;
    background: #ffffff;
    border: 2px solid #ffffff;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    color: #353742;
    font-size: 25px;
    line-height: 56px;
    font-weight: 400;
    opacity: 1;
    margin: 0;
    padding: 0;
    margin-top: -30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.banner-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 70px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    line-height: 0;
    /* display: none; */
}

.banner-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline;
    height: 20px;
    width: 20px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 50%;
    margin: 10px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.banner-carousel .owl-dots .owl-dot span {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
}

.banner-carousel .owl-dots .owl-dot.active {
    background-color: #0090D9;
    border-color: #0090D9;
}

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

.index-title-1 h2 {
    color: #0090D9;
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: capitalize;
}

.index-title-lin h2 {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-weight: 700;
    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;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: .5px;
}



.index-p p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px !important;
    letter-spacing: .5px;
}

.index-about-icon {
    display: flex;
    align-items: center;
}

.index-about-icon-span {
    display: inline-block;
    border-radius: 50%;
    background-color: #0545A3;
    display: flex;
    width: 18px;
    height: 18px;
    justify-content: center;
    align-items: center;
}

.index-about-icon-des {
    font-size: 17px;
    color: #313C4C;
    font-weight: 600;
    letter-spacing: .5px;
}

.index-about-img {
    position: relative;
}

.index-about-img .index-about-img-counter {
    position: absolute;
    background-color: #0090D9;
    left: -40px;
    bottom: 40px;
    padding: 15px;
    text-align: center;

}

.index-about-img .index-about-img-counter h2 {
    font-weight: 800;
    color: white;
    font-size: 85px;
}

.index-about-img .index-about-img-counter p {
    color: #eeeeee;
    text-transform: capitalize;
    letter-spacing: .5px;
}

.index-about-service h4 {
    font-size: 27px;
    color: #333333;
    font-weight: 600;
    text-transform: uppercase;
}

.index-about-service-title h5 {
    color: #0154A4;
    font-size: 22px;
    text-transform: capitalize;
}

.index-about-service-item p {
    font-size: 16px;
    line-height: 1.3;
    margin-top: 5px;
}

.index-about-service-item {
    position: relative;
    padding-left: 25px;
}

.index-about-service-item::before {
    position: absolute;
    content: '';
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: #0154A4;
}

.index-about-des {
    position: relative;
}

.index-about-des img {
    position: absolute;
    right: -5%;
    bottom: -5%;
    opacity: 0.1;
}
.index-pro-slick{
    position: relative;
}
.index-pro-slick .slick-list{
    height: auto !important;
}
.index-pro {
    padding: 0 15px;
}

.index-pro-item {
    background-color: white;
    width: 100%;
    border-top: #043272 3px solid;
    transition: all .5s ease;
    padding: 35px;
}

.index-pro-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.03);
}
.index-pro-item-img-case{
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}
.index-pro-item-img-case img{
    flex: 1;
    min-width: 0;
    height: auto;
    object-fit: contain;
    margin: 0 2px;
}
.index-pro-item-title h6 {
    font-size: 15px;
    line-height: 1.2;
    color: #043272;
}

.index-pro-item-title h3 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: #020E28;
}

.index-pro-item-btn a {
    font-size: 14px;
}

.index-categories-item {
    background-color: white;
    padding: 28px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 25px;
}

.index-categories-item-small {
    font-size: 14px;
    color: #333333;
    text-transform: uppercase;
}

.index-categories-item-h {
    font-size: 22px;
    color: #0154A4;
    text-transform: capitalize;
    font-weight: 700;
    flex: 1;
}

.index-categories-btn {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-categories-btn a {
    background: linear-gradient(to left, #0090D9, #007fbf);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 7px 0;
    font-weight: 600;
    text-transform: capitalize;
    transition: all .3s ease;
}

.index-categories-btn a:hover {
    background: #0061bd;
}

/* index-ad */
.faq-area {
    background-color: #30332E;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* min-height: 775px; */
    padding: 100px 120px;
    margin-left: -30px;
    height: 100%;
}

@media (max-width:700px) {
    .faq-area {
        padding: 100px 30px;
        margin-left: 0;
    }
}

.faq-area h2.about-title {
    font-weight: 600;
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 35px;
    line-height: 1.1;
    color: #fff;
}

.faq-area .single-faq .faq-header h3.faq-title button.collapsed {
    border-color: rgba(255, 255, 255, 0.3);
    color: #333333;
    background-color: #eeeeee;
}

.faq-area .single-faq .faq-header h3.faq-title button {
    background-color: #0090D9;
    color: white;
    border: 1px solid transparent;
    display: block;
    width: 100%;
    text-align: left;
    font-size: 18px;
    line-height: 30px;
    padding: 9px 25px;
    font-weight: 700;
    border-radius: 3px;
    transition: all ease 0.4s;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.faq-area .single-faq .faq-header h3.faq-title button:after {
    content: '\e60a';
    position: relative;
    float: right;
    font-family: "iconfont";
    font-weight: 300;
}

.faq-area .single-faq .faq-header h3.faq-title button.collapsed:after {
    content: '\e609';
}

.faq-body p {
    color: #eee;
}

/* index-news */
.index-news-img {
    overflow: hidden;
    border-radius: 7px 7px 0 0;
}

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

.index-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 240px;
    transition: all .3s ease;
    border-radius: 7px 7px 0 0;
}

.index-news-detail {
    width: 100%;
    background-color: #F7F7F9;
    padding: 25px;
    border-radius: 0 0 7px 7px;
}

.index-news-detail-date span {
    font-size: 14px;
    padding: 3px 15px;
    background-color: #0090D9;
    color: white;
}

.index-news-detail-title {
    color: #333333;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.index-news-detail-title::before {
    content: '';
    width: 3%;
    height: 1.8px;
    background-color: #0154A4;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: all .5s ease;
}

.index-news-detail-title:hover:before {
    width: 50%;
}

.index-news-detail-p {
    font-size: 14px;
    line-height: 1.2;
}

.index-news-img:hover img {
    transform: scale(1.1);
}

/*首页之外 banner*/
.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;
    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;
}

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

/* about */
.about-1-img {
    position: absolute;
    right: -20%;
    top: 50%;
    transform: translateY(-50%);
}

.about-factory .container-fluid {
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.about-factory-item {
    position: relative;
    /* border-radius: 10px ; */
    overflow: hidden;
}

.about-factory-item::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    content: '';
    background: #333333;
    opacity: 0.5;
    transition: all .3s ease;
}

.about-factory-des {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    padding: 25px;
    z-index: 1;
    transition: all .5s ease;
}

.about-factory-des p {
    color: white;
    line-height: 25px;
    font-size: 15px;
}

.about-factory-item:hover::after {
    height: 100%;
}

.about-factory-item:hover .about-factory-des {
    bottom: 0;
}

.about-counter {
    background-color: #171717;
    position: relative;
    margin-top: -120px;
    z-index: 0;
}

.about-counter-bg-1,
.about-counter-bg-2 {
    position: absolute;
}

.about-counter-bg-1 {
    left: 0;
    top: 0;
}

.about-counter-bg-2 {
    right: 0;
    bottom: 0;
}

.about-counter-icon {
    background-color: #0090D9;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-counter-icon::before {
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0;
    transition: all .3s ease;
}

.about-counter-item:hover .about-counter-icon::before {
    opacity: 1;
    right: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
}

.about-counter .iconfont {
    font-size: 66px;
    color: white;
}

.about-counter-h h2 {
    color: white;
    font-weight: 800;
    font-size: 60px;
}

.about-counter-h {
    margin-top: 15px;
}

.about-counter-des {
    color: #a8a8a8;
    font-size: 16px;
    margin-top: 15px;
}

/* about-photo */
.app_list .nav-item button {
    width: 100%;
    font-size: 22px;
    padding: 20px 0;
    width: 100%;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}

.app_list .nav-item .active {
    background-color: #0090D9;
}

.about-photo-img-des {
    width: 100%;
    background-color: #eeeeee;
    color: #333333;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    padding: 17px 0;
    transition: all .3s ease;
}

.about-photo-img-item:hover .about-photo-img-des {
    background-color: #0090D9;
    color: white;
}


/*products*/
.pro-category-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 15px;
    color: #FFFFFF;
    background: linear-gradient(to right, #0377a5, #0090D9);
    border-radius: 5px;
}

.pro-category h2 {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

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

.pro-category-title-2 {
    color: #0090D9;
    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;
    /* background-color: #fff; */
    display: block;
    color: #004561;
    border-bottom: 1px solid #dbe3ef;
    text-transform: capitalize;
}
.category-lists li a{
    transition: all .3s ease;
}
.category-lists li a:hover{
    transform: translateX(8px);
}

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

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

.pro-list-des h6 {
    text-transform: capitalize;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    font-size: 18px;
}
.pro-list-img{
    position: relative;
    overflow: hidden;
}
.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;
}

.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: #0090D9;
    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-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: #0090D9;
    font-size: 18px;
    font-weight: 600;
    /* border-radius: 8px; */
    border: 2px solid #0090D9;
    text-transform: capitalize;
    transition: all .3s ease;
}
.pro-ar-btn a:hover{
    color: #0154A4;
    border-color: #0154A4;
}

.pro-ar-text p ,.pro-ar-text div ,.pro-ar-text {
    font-size: 16px;
    font-weight: normal;
    line-height: 28px;
    color: #888888;
    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: #0090D9;
    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: #0090D9;
    border-color: #0090D9;
}
.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;
}

/*news*/
.news-item {
    margin-bottom: 30px;
}

.news-item .row {
    padding: 10px;
    /* padding-bottom: 30px; */
    /* border-bottom: 1px solid #eee; */
    border-radius: 7px;
    overflow: hidden;
}

.news-item .col-lg-5,
.news-item .col-lg-7,
.news-item .col-md-5,
.news-item .col-md-7 {
    padding: 0;
}

.news-item-img a {
    display: block;
    width: 100%;
}

.news-item-img {
    overflow: hidden;
}

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

.news-item-content {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    /* padding: 25px 20px; */
    background-color: white;
    height: 100%;
    padding: 0 25px;
}

.news-item-icon {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.news-item-icon .iconfont {
    color: #0090D9;
    margin-right: 5px;
}

.news-item-des p {
    font-size: 15px;
    line-height: 25px;
}

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

.news-item-btn a:hover {
    color: #0090D9;
}

@media (max-width:768px) {
    .news-item-content {
        padding: 30px 25px;
    }
}
.news-ar-back a{
    color: #0090D9;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}
.news-ar-back .iconfont{
    background-color: #0090D9;
    color: white;
    padding: 5px;
    font-size: 20px;
    border-radius: 50%;
    margin-right: 7px;
}
.news-ar-title h3{
    font-size: 28px;
    font-weight: 600;
    color: #222222;
    line-height: 1.3;
}
.news-ar-detail,.news-ar-detail div{
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    position: relative;
    color: #898a9c;
}
.news-ar-detail img{
    width: 100%;
    margin-bottom: 20px;
}


/* service */
.service-1-left h2, .service-contact-right h2{
    font-weight: 600;
    font-size: 47px;
    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: #0090D9;
    position: relative;
}
.service-3-h4 h4::before{
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 2px;
    background-color: #0090D9;
}
.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-size: 18px;
    color: #333333;
    font-weight: 600;
    position: relative;
    padding-left: 50px ;
}
.service-faq-slick-item-title::before{
    position: absolute;
    left: 0;
    top: 0;
    content: 'Q';
    width: 30px;
    height: 30px;
    color: white;
    line-height: 30px;
    font-size: 18px;
    text-align: center;
    /* font-weight: 600; */
    border-radius: 50%;
    background-color: #0090D9;
    
}
.service-faq-slick-item-a p{
    position: relative;
    padding-left: 50px;
}
.service-faq-slick-item-a p::before{
    position: absolute;
    left: 0;
    top: 0;
    content: 'A';
    width: 30px;
    height: 30px;
    color: white;
    line-height: 30px;
    font-size: 18px;
    text-align: center;
    /* font-weight: 600; */
    border-radius: 50%;
    background-color: #0090D9;
}
/*contact*/
.section-way-left{
    padding: 50px;
    width: 100%;
    height: 100%;
}
.section-way-left-item{
    display: flex;
    margin-bottom: 20px;
}
.section-way-left-icon .iconfont{
    margin-top: 10px;
    color: #0090D9;
    font-size: 40px;
}
.section-way-left-detail{
    margin-left: 15px;
}
.section-way-left-detail h3{
    font-weight: 600;
}
.section-way-left-detail p ,.section-way-left-detail a{
    line-height: 22px;
    font-size: 14px;
    margin-top: 10px;
    color: #898a9c;
}
.section-way-left-detail a:hover{
    color: #0090D9;
}
.section-way-right{
    width: 100%;
    height: 100%;
    padding: 30px;
    background: linear-gradient(to right, #3b3b3b 0% , #333333 100%);
    border-left: 7px solid #0090D9;
}
.section-way-right h3{
    font-size: 28px;
    font-weight: 600;
    color: white;
}
.section-way-right-code{
    display: flex;
    justify-content: space-between;
}
@media (max-width:991px) {
    .section-way-right-code{
        justify-content: flex-start;
    }
    .section-way-right-code img{
        margin-right: 15px;
    }
}
.section-way-right-social a{
    color: white;
    margin-right: 15px;
}

.contact-box {
    padding: .5%;
}

.contact-item {
    border: 2px solid #eaeaea;
    transition: all 0.5s ease;
    /*height: 50px;*/
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-item-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #eaeaea;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.contact-item-icon i {
    font-size: 40px;
    color: #0545A3
}

.contact-des-title {
    font-size: 22px;
    color: #0b2e13;
    font-weight: 600;
    margin-bottom: 30px;

}

.contact-item-des p {
    letter-spacing: 0.5px;
    font-size: 15px;
    padding: 0 20px;
    height: 50px;
    font-family: 'Open Sans', sans-serif;
}

.contact-box:hover .contact-item {
    border-color: #0545A3;
}

.contact-box:hover .contact-item-icon {
    border-color: #0545A3;
}

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

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

/*footer*/
footer {
    background-position: center;
    background-size: cover;
}

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

.footer-item {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

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

.footer-des .iconfont {
    color: #0154A4;
    font-size: 25px;

}

.footer-des a,
.footer-des span {
    color: #333333;
    font-size: 16px;
    line-height: 25px;
}

.footer-des a {
    transition: all .3s ease;
}

.footer-des a:hover {
    transform: translateX(7px);
    color: #0154A4;
}

.footer-social a {
    margin-right: 8px;
}

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

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

.footer-des-1 a::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #0154A4;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width:992px) {
    .footer-product {
        display: flex;
        /* justify-content: space-around; */
        flex-wrap: wrap;
    }

    .footer-product .footer-des-1 {
        width: 50%;
    }
}

@media (max-width:575px) {
    .footer-product .footer-des-1 {
        width: 100%;
    }
}

.footer-bottom {
    color: #eeeeee;
    background-color: #0154A4;
    font-size: 14px;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}
.social-fixed {
    position: fixed;
    bottom: 100px;
    right: 30px;
    transform: translateY(-50%);
    z-index: 999;
}
.footer-social {
    display: flex;
}
.footer-social a {
    width: 37px;
    height: 37px;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    line-height: 37px;
    color: white;
    margin-right: 10px;
}
.footer-social-white a{
    color: #0545A3;
}

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

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

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

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

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

/*backontop*/
.backontop {
    position: fixed;
    width: 50px;
    height: 50px;
    color: white;
    background-color: #0545A3;
    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: 99999;
    transition: all 0.5s ease-in-out;
}

.backontop:hover {
    border: 2px solid #0545A3;
    color: #0545A3;
    background-color: rgba(255, 255, 255, 0.8);
}