@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Roboto:wght@300;400;500;700;900&display=swap");
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-in-out;
    ;
}

.nav-item-language .sub-menu li a{
    display: flex;

}
.nav-item-language .sub-menu li a img{
    width: 30px;
    margin-right: 7px;
}
.sub-menu-2,.sub-menu-3{
    position: absolute;
    top: 0;
    left: 100%;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    width: 250px;
    background-color: #fff;
    z-index: 1;
    transition: all .3s ease;
    visibility: hidden;
    opacity: 0;
}
.sub-menu-2::after ,.sub-menu-3::after{ 
    position: absolute;
    content: "";
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #00a7e9, #015c80);
}
.sub-menu .dropdown:hover .sub-menu-2{
    visibility: visible;
    opacity: 1;
}
.sub-menu-2 .dropdown:hover .sub-menu-3{
    visibility: visible;
    opacity: 1;
}
.other-banner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.other-banner-img{
    width: 100%;
    height: 100%;
}
.other-banner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.other-banner:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(to right, #363b3f, transparent);
    opacity: 0.8;
}
.other-banner-content{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 3;
}
.other-banner-content h3{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
.banner-title h2 {
    font-size: 55px;
    font-weight: 800;
    color: white;
    height: 55px;
    border-left: #E62129 solid 5px;
    padding-left: 20px;
}
@media (max-width:580px) {
    .banner-title h2{
        font-size: 40px;
        height: 40px;
    }
}


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

.main-slider.style1 {
    margin-top: 0px;
}

.main-slider .slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* padding: 215px 0px; */
    min-height: 85vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.main-slider .slide::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #151515;
    opacity: 0.7;
}
.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-layer2:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #363b3f, transparent);
    opacity: 0.7;
    content: "";
    z-index: -1;
}

.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: #E62129;
}

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

.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); */
    color: white;
    font-size: 55px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: capitalize;
    opacity: 0;
    transform: translateY(80px);
    transition: all .4s ease-in-out .1s;
}
.main-slider .content .slide-h2-2{
    background: none;
    -webkit-background-clip: inherit;
    color: #47cbff;

}

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

.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.marleft {
    margin-left: 16px;
}

.btns-box a {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 16px;
    cursor: pointer;
    
    background: #E62129;
    position: relative;
    transition: all .5s ease;
    overflow: hidden;
    z-index: 1;
}
.btns-box a::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    background: black;
    z-index: -1;
    transition: all .8s;
}
.btns-box a:hover::before{
    width: 130%;
}

.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: #E62129;
    border-color: #E62129;
}

.slide-bg {
    position: relative;
    width: 100%;
    height: 80vh;
    background-color: wheat;
}

.index-title h2 {
    font-size: 46px;
    font-weight: 600;
    text-transform: capitalize;
    background: linear-gradient(to bottom, #E62129, #660014);
    background-repeat: repeat;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-position: center center;
    background-size: cover;
    line-height: 1.3;
}

.index-title-2 h2 {
    font-size: 45px;
    font-weight: 600;
    color: #222222;
    line-height: 1.2;
    text-transform: capitalize;
    position: relative;
}

.index-title-2 p {
    font-size: 16px;
    margin-top: 20px;
}
@media only screen and (max-width: 1199px) {
    .index-title h2,.index-title-2 h2 {
        font-size: 40px;
    }
}
@media only screen and (max-width: 767px) {
    .index-title h2,.index-title-2 h2 {
        font-size: 30px;
    }
}

.index-last-title {
    font-size: 17px;
    color: #E62129;
    text-transform: uppercase;
    line-height: 1.2;
}
.index-last-title span{
    padding: 0 20px;
}

.section-btn-lin {
    padding: 0 45px;
    background: white;
    font-size: 18px;
    color: #E62129;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    border: 2px solid #E62129;
    height: 55px;
    line-height: 55px;
}

.section-btn-lin:hover {
    background: linear-gradient(to right, #E62129, #9e0020);
    font-size: 18px;
    color: #ffffff;
    border: 2px solid white;
}

.section-btn-lin:before {
    background-color: #fff;
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    transform: rotate(35deg);
    transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    opacity: 0;
}

.section-btn-lin:hover:before {
    left: 120%;
    transition: all 1300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.index-about {
    position: relative;
}

.index-about-counter{
    position: absolute;
    top: 60%;
    left: 5%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #E62129, #9e0c29);
    color: white;
    text-transform: uppercase;
    padding: 30px 20px;
}
.index-about-counter h1{
    font-size: 65px;
    color: white;
}
@media (max-width: 767px) {
    .index-about-counter{
        transform: translateX(0%);
    }
    
}

.section-border::before {
    position: absolute;
    content: "";
    width: 98px;
    height: 2px;
    background: #E62129;
    top: 45%;
    left: 26px;
}

.index-bg {
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    text-align: center;
    z-index: -2;
}
.index-bg img{
    width: 100%;
}

.index-des {
    font-size: 16px;
    color: #6a6b71;
    line-height: 28px;
    font-weight: normal;
}

.index-des-title{
    background: linear-gradient(to right, transparent, #E62129,#E62129, transparent);
    color: white;
    font-size: 18px;
    text-align: center;
    padding: 15px 0;
    font-weight: 600;
}
.index-des-2s .col-lg-4{
    padding-left: 8px;
    padding-right: 8px;
}
.index-des-2{
    color: white;
    background: linear-gradient(135deg, #E62129, #9e0c29);    
    padding: 15px;
    border-radius: 25px 0px;
    min-height: 100px;
    display: flex;
    align-items: center;
}

.index-pro {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}
.index-pro::after{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background: linear-gradient(to right ,#171717,#3b3b3b);
    opacity: 0.95;
    z-index: 0;
}
.index-pro-box .nav{
    flex-direction: row;
    flex-wrap: wrap;
}

.index-pro-box .nav-link{
    border-radius: 0;
    /* padding: 20px; */
    /* width: 150px; */
    width: 100%;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: #222222;
    margin: 0 7px 10px;
    font-weight: 600;
    font-family: 'Poppins',sans-serif;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #E62129;
}
.index-pro-box .nav-link i{
    height: 65px;
    overflow: hidden;
    margin-bottom: 7px;
}
.index-pro-box .nav-link i img{
    transform: translateY(-65px);
}
.index-pro-box .nav-link.active i img{
    transform: translateY(0);
}
.index-pro-section .col-lg-3{
    padding-left: 0px;
    padding-right: 0px;
}
.index-pro-item{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.index-pro-detail{
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 17px 20px;
    flex: 1;
    min-height: 80px;
    margin-bottom: 15px;
}
.index-pro-detail h6{
    color: #222222;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}
.btn-text a{
    color: #E62129;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    text-transform: capitalize;
}
.btn-text a::before{
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: 1px;
    background-color: #E62129;
    content: '';
    transition: all .3s ease;
}
.btn-text a:hover::before{
    width: 100%;
}
.index-portfolio{
    position: relative;
    z-index: 2;
    margin-top: -60px ;
    background: linear-gradient(to bottom, transparent, #f9f9f9);
}
.index-portfolio-slick-item{
    position: relative;
    margin: 0 15px;
}
.index-portfolio-slick-item::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom ,transparent 0% , #222222 77%);
    opacity: 0.8;
    transition: all .3s ease;
}
.index-portfolio-slick-item:hover::after{
    opacity: 1;

}
.index-portfolio-left{
    position: absolute;
    left: 15px;
    top: 15px;
}
.index-portfolio-left span, .solution-img-left span{
    background-color: #E62129;
    color: white;
    padding: 5px 12px;
    font-size: 15px;
    font-weight: 600;
    
}
.index-portfolio-bottom{
    position: absolute;
    left: 30px;
    bottom: 35px;
    color: white;
    font-size: 20px;
    /* font-weight: 600; */
    
    text-transform: capitalize;
    z-index: 1;
}
.index-portfolio-bottom-2{
    color: #ff0033;
    font-size: 14px;
    margin-top: 7px;
    font-weight: 600;
}
.index-portfolio-slick .slick-list{
    height: auto !important;
}

.index-ad-item{
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
}
.index-ad-item-title{
    font-family: 'Poppins',sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #222222;
    line-height: 1.3;
    text-align: center;
    text-transform: capitalize;
}
.index-ad-item .iconfont {
    color: white;
    font-size: 34px;
    font-weight: 500;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background-color: #E62129;
    margin-bottom: 15px;
}

.index-news .slick-list{
    height: auto !important;
}
.index-news-item{
    width: 400px;
    margin: 0 15px;
    /* background-color: black; */
}
.index-news-item img{
    border-radius: 8px;
    width: 100%;
    width: 400px;
}
.index-news-detail{
    transform: translateY(-50px);
    margin: 0 3%;
    width: 94%;
    background-color: white;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 25px 30px;
    border-radius: 8px;
    transition: all .3s ease;
}
.index-news-detail-icon{
    display: flex;
    align-items: center;
}
.index-news-detail-icon span{
    font-size: 14px;
}
.index-news-title a{
    line-height: 1.3;
    font-size: 18px;
    color: #161C2D;
}
.index-news-detail p{
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}
.index-news-btn a{
    color: #161C2D;
    text-transform: capitalize;
}
.index-news-item:hover .index-news-detail{
    transform: scale(1.03) translateY(-30px);
}
.index-news-btn a:hover{
    color: #E62129;
}
.index-news .slick-arrow{
    display: inline-block;
    width:  45px;
    height: 45px;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #c2c0c0;
    background-color: white;
    color: #9c9b9b;
    transition: all .3s ease;
}
.index-news .left-arrow{
    margin-right: 15px;
}
.index-news .slick-arrow:hover{
    border: 1px solid #E62129;
    background-color: white;
    color: #E62129;
}

/*product*/
.product-logo{
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.product-logo img{
    width: 100px;
    height: auto !important;
    opacity: 0.3;
}
.index-pro-item-img .product-logo ,.about-service .product-logo{
    left: 50%;
    /* bottom: 50%; */
    transform: translate(-50%,-50%);
}
.index-pro-item-img .product-logo img{
    width: 160px;
}

/* product */
.pro-category{
    display: flex;
    justify-content: space-between;
}
.pro-category a{
    padding: 0;
    margin: 0;
    height: 165px;
    width: 200px;
    background: #f7f7f9;
    text-align: center;
    font-size: 22px;
    /* font-weight: 600; */
    color: #1b1f2e;
    display: block;
    padding-top: 12px;
    border-radius: 0;
    text-transform: capitalize;
}
@media (max-width:1199px) {
    .pro-category a{
        width: 170px;
    }
}
@media (max-width:991px) {
    .pro-category{
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .pro-category a{
        min-width: 145px;
        margin-bottom: 15px;
    }
}
.pro-category a i{
    display: block;
    font-size: 56px;
    color: #171717;
    height: 65px;
    overflow: hidden;
    margin: 15px 0;
}
.pro-category a img{
    transform: translateY(-65px);

}
.pro-category a.active{
    background: #E62129;
    color: white;
}
.pro-category a.active i img{
    transform: translateY(0px);
}
.pro-item-img a {
    display: block;
    width: 100%;
}
.pro-item-img img {
    width: 100%;
}
.pro-item-detail{
    width: 100%;
    padding: 17px;
    border: 1px solid #eeeeee;
}
.pro-item-des span{
    color: white;
    background-color: #E62129;
    font-size: 15px;
    padding: 5px 12px;
    font-weight: 600;
    
}

.pro-item-title{
    font-size: 20px;
    line-height: 1.3;
    color: #222222;
}
.pro-item-btn a{
    color: white;
    background-color: #E62129;
    padding: 10px 20px;
    border-radius: 50px;
}

/* pro-am */
.pro-am-lists .container-fluid{
    padding: 0 5%;
}
.pro-am-category-title h4{
    width: 100%;
    padding: 20px;
    display: block;
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(to right, #E62129, #96001e);
    color: white;

}
.pro-am-category-list{
    margin-top: 10px;
}
.pro-am-category-list ul li {
    width: 100%;
}
.pro-am-category-list ul li a{
    display: block;
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    background-color: #F7F7F9;
    border-bottom: 1px solid #eeeeee;
    color: #222222;
}
.pro-am-category-list ul li a:hover{
    color: #E62129;
}
.pro-img{
    width: 100%;
}
.pro-list-item-category{
    color: #E62129;
    text-transform: uppercase;
}
.pro-detail-btn a {
    padding: 15px 45px;
    background-color: #E62129;
    border-radius: 500px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: .3px;
    border: 2px solid white;
    transition: all .3s ease;
}

.pro-detail-btn a:hover {
    color: #E62129;
    border-color: #E62129;
    background-color: white;
}

@media (max-width: 770px) {
    .pro-list-item {
        display: inherit;
    }

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

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

.product-content-title {
    border-bottom: 1px solid #dbe3ef;
}

.product-content-title h4 {
    line-height: 1.2;
    display: inline-block;
    padding-bottom: 15px;
    text-transform: uppercase;
    color: #E62129;
    border-bottom: 2px solid #E62129;
    padding-right: 50px;
}

.product-content-table {
    width: 100%;
}
.product-content-des ,.product-content-des div{
    font-size: 16px;
    font-weight: normal;
    line-height: 28px;
    color: #888888;
}

.product-content-table thead {
    background-color: #E62129;
    color: white;
}

.product-content-table thead td {
    border: 1px solid #E62129;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 10px;
}

.product-content-table tbody td {
    border: 1px solid #eef1f8;
    text-align: center;
}

/*about*/
.about-company {
    width: 100%;
    /* height: 500px; */
    /* background-color: #393B3F; */
}
.about-founded .about-founded-1 span{
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 600;
    color: white;
    background-color: #E62129;
    padding: 20px;
}
.about-founded .about-founded-2 h1{
    font-size: 75px;
    color: #E62129;
}
@media (max-width:767px) {
    .about-founded .about-founded-1 span{
        font-size: 19px;
        padding: 8px 12px;
    }
    .about-founded .about-founded-2 h1{
        font-size: 55px;
        text-align: center;
        margin-top: 8px;
    }
    .index-about p{
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 2px;
    }
}
.about-des p{
    line-height: 25px;
    font-size: 15px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 7px;
}
.about-des p::before{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
    content: '';
    background-color: #E62129;
}
.about-ad-item{
    display: flex;
    align-items: start;
}
.about-ad-icon .iconfont{
    font-size: 45px;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    color: #222222;
    background-color: #F3F5F2;
    transition: all .3s ease;
}
.about-ad-item:hover .about-ad-icon .iconfont{
    color: white;
    background-color: #E62129;
}
.about-ad-des{
    margin-left: 25px;
}
.about-ad-des h6{
    font-size: 20px;
    font-weight: 600;
    color: #E62129;
}
.about-ad-des p{
    line-height: 1.3;
}
.about-counter{
    background-position: center;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    width: 100%;
    padding: 100px 0;
    z-index: -1;
}
.about-counter-icon .iconfont{
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    color: white;
    background-color: #E62129;
    font-size: 45px;
}
.about-counter-content{
    color: white;
    font-size: 20px;
}
.about-counter-content span{
    font-size: 60px;
    font-weight: 700;
    margin-right: 10px;
}
.about-counter-des{
    color: #bbbbbb;
    margin-top: 20px;
}

.about-service-item{
    background-color: #f1f1f1;
    padding: 10px;
    margin-bottom: 30px;
    position: relative;
}
.about-service-item a{
    position: relative;
    display: block;
}
.about-service-item a::before{
    position: absolute;
    content: '\e848';
    font-family: iconfont;
    font-size: 35px;
    color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(201,  0, 40,0.7);
    transition: all .3s ease;
    opacity: 0;
}
.about-service-item a:hover::before{
    opacity: 1;
}

.about-delay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(10 9 3 / 100%);
    opacity: .8;
    z-index: 0;
}
.about-honor .slick-list{
    height: auto !important;
}
.about-honor-item{
    margin: 0 10px;
}
.about-1-bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.about-honor-2{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.about-honor-2 .index-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: white !important;
    line-height: 1.3;
}
.about-honor-2-item{
    background: white;
    padding: 15px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    border-bottom: 5px solid #fff;
    transition: .3s;
    width: 300px;
    box-sizing: border-box;
    margin: 10px;
    /* height: 400px; */
}
.about-honor-2-item-icon{
    position: absolute;
    top: 0;
    left: 15%;
    transform: translate(-50%,-50%);
    width:  50px;
    height: 50px;
    background-color: #E62129;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-honor-2-item-icon .iconfont{
    font-size: 30px;
    color: white;
}
.about-honor-2 .slick-list{
    padding-top: 50px;
}
@media (max-width:992px) {
    .about-1-bg {
        min-height: 300px;
    }

    .about-company-row {
        padding: 0 !important;
    }
}

.about-company-imgs {
    /* background-color: yellow; */
    padding: 0 !important;
}

.about-company-imgs img:hover {
    transform: scale(1.05);
}

.about-honor .honor-img {
    margin: 35px;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.2);
    transition: all .5s ease;
}

.about-honor .honor-img:hover {
    transform: scale(1.05);
}


/* news */
.news-item {
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.05);
}

.news-item-img {
    height: 300px;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
}

.news-item-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 300px;
    width: 100%;
    /* max-height: 250px; */
    object-fit: cover;
    display: block;
}

.news-item-detail {
    width: 100%;
    padding: 30px;
    border-radius: 20px;
    transition: all .3s ease;
}

.news-item-detail-title a h2 {
    line-height: 1.3;
    color: #1E4064;
    font-size: 24px;
    font-weight: 500;
}

.news-item:hover .news-item-detail-title h2 {
    color: #004561;
}

.news-item-detail-icon {
    display: flex;
}

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

/* From Uiverse.io by vinodjangid07 */
.news-item-detail-btn-a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #E62129;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0px 0px 0px 4px rgba(14, 136, 205, 0.2); */
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    position: relative;
    color: white;
}

.svgIcon {
    width: 12px;
    transition-duration: 0.3s;
}

.svgIcon path {
    fill: white;
}

.news-item-detail-btn-a:hover {
    width: 180px;
    border-radius: 50px;
    transition-duration: 0.3s;
    background: linear-gradient(to right, #E62129, #8d001c);
    align-items: center;
}

.news-item-detail-btn-a:hover .svgIcon {
    /* width: 20px; */
    transition-duration: 0.3s;
    transform: translateX(200px);
}

.news-item-detail-btn-a::before {
    position: absolute;
    bottom: -20px;
    content: "Learn More";
    text-transform: uppercase;
    /*  */
    color: white;
    /* transition-duration: .3s; */
    font-size: 0px;
}

.news-item-detail-btn-a:hover::before {
    font-size: 16px;
    opacity: 1;
    bottom: unset;
    /* transform: translateY(-30px); */
    transition-duration: 0.3s;
}

.news-ar-area h3{
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    color: #222222;
}
.news-ar-p{
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    position: relative;
    color: #898a9c;
}

/* solution */
.solution-item{
    display: flex;
    width: 100%;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.1);
    /* margin-bottom: 30px; */
}
.solution-item .col-lg-6{
    padding-left: 0;
    padding-right: 0;
}
.solution-item a{
    position: relative;
    display: block;
    width: 100%;
}
.solution-img-left{
    position: absolute;
    left: 15px;
    top: 15px;
}
.solution-item .solution-img{
    display: flex;
    overflow: hidden;
}
.solution-img img{
    height: auto;
    object-fit: cover;
    width: 100%;
}
.solution-item .solution-detail{
    height: 100%;
    background: linear-gradient(to bottom,  #0c1d5a , #222222 );
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.solution-detail-title-1{
    font-size: 16px;
    font-weight: 600;
    color: white;
}
.solution-detail-title-1 span{
    padding: 7px;
    background-color: #222222;
}
.solution-detail-title-2{
    font-family: 'Poppins',sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
}
.solution-item p{
    color: #eeeeee;
    font-size: 16px;
    
    line-height: 24px;
}
.solution-item:hover .solution-img img{
    transform: scale(1.1);
}

/* ce */
.ce-img-item{
    background-color: #f1f1f1;
    padding: 10px;
    margin-bottom: 30px;
    position: relative;
}
.ce-img-item a{
    position: relative;
    display: block;
}
.ce-img-item a::before{
    position: absolute;
    content: '\e848';
    font-family: iconfont;
    font-size: 35px;
    color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(201,  0, 40,0.7);
    transition: all .3s ease;
    opacity: 0;
}
.ce-img-item a:hover::before{
    opacity: 1;
}


/*contact*/

.contact-left-item {
    display: flex;
    align-items: center;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #f0efef;
    margin-bottom: 25px;
}

.contact-icon {
    margin-right: 20px;
    color: #E62129;
    /* font-size: 30px; */
}

.contact-left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-content-1 {
    color: #E62129;
    margin-bottom: 10px;
    font-family: 'Poppins';
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
}

.contact-content-2 {
    color: #052950;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
}

.contact-right form {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #f0efef;
    width: 90%;
}

@media (max-width:992px) {
    .contact-right form {
        width: 100%;
    }
}

.contact-right form input,
.contact-right form textarea {
    border-radius: 8px !important;
}

input::placeholder,
textarea::placeholder {
    
    letter-spacing: 0.5px;
}

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

/*footer*/
footer {
    background: linear-gradient(to right, #3b3b3b 0%, #000 65%);
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}
.footer-logo {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    background-color: #E62129;
    padding: 45px 0;
    /* border-radius: 500px; */
    font-size: 35px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    
}
@media (max-width:767px) {
    .footer-logo{
        font-size: 20px;
        padding: 20px 0;
    }
}
footer:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../img/bg/footer-bg.png) no-repeat center center;
    background-size: cover;
    z-index: -1;
}
.footer-social a{
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 550px;
    color: #222222;
    background-color: white;
    margin-right: 7px;
}
.footer-social a:hover{
    color: white;
    background-color: #E62129;
}
.footer-a a,
.footer-des {
    position: relative;
    color: #A8A8A8;
    margin-bottom: 20px;
    /*  */
    font-size: 16px;
}
.footer-des a {
    position: relative;
    color: #A8A8A8;
    /* margin-bottom: 20px; */
    /*  */
    font-size: 16px;
}
.footer-des a::before ,.footer-a a::before{ 
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background-color: #E62129;
    left: 0;
    bottom: -1.5px;
    transition: all .5s ease;
}
.footer-des a:hover::before ,.footer-a a:hover:before {
    width: 100%;
}
.footer-a a{
    text-transform: capitalize;
}
.footer-des .iconfont{
    color: #E62129;
    font-size: 18px;
}
.footer-title{
    font-size: 22px;
    color: white;
    font-weight: 600;
}
.footer-a a:hover, .footer-des a:hover {
    color: #E62129;
}

.social-a a {
    font-size: 15px;
    color: #E62129;
    text-align: center;
    width:  30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: white;
    margin-right: 10px;
}

.social-a a:hover {
    background-color: #E62129;
    color: white;
}

/*backontop*/
.backontop  {
    position: fixed;
    width: 50px;
    height: 50px;
    color: white;
    background-color: #E62129;
    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;
}
.toNav{
    position: fixed;
    width: 50px;
    height: 50px;
    color: white;
    background-color: #E62129;
    bottom: 50% !important;
    right: 30px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999;
    transition: all 0.5s ease-in-out;
    transform: translateY(-50%);
    z-index: 999999;
}

.backontop:hover {
    border: 2px solid #E62129;
    color: white;
    background-color: #E62129;
    transform: translateY(-10px);
}
.toNav a:hover{
    color: white;
}
.toNav:hover {
    border: 2px solid #E62129;
    color: white;
    background-color: #E62129;
    transform: translateY(-10px);
}