* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body {
    font-family: poppins, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
}

a {
    text-decoration: none;
    color: #2f3542;

}

ul {
    margin: 0px;
    padding: 0px;
}
/* ============= Go Top Button CSS ===================  */
#progress{
    background: #0066b4;
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    place-items: center;
    cursor: pointer;
    box-shadow: 0px 10px 10px #dddddd32;
    z-index: 111;
}
#progress-value{
    display: block;
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: #001a2e; 
}
/* ============= Go Top Button CSS End ===================  */

/* Site Width Section */

.site-width {
    max-width: 1220px;
    margin: 0px auto;
}

@media screen and (max-width:480px) {
    .site-width {
        max-width: 95%;
    }
}

/* ======================= Header Section ============================== */
.sticky {
    position: fixed;
    z-index: 1111;
    width: 100%;
}
.header-section {
    border-bottom: 3px solid #ff2f402c;
    background: #f7f7f7;
    /* position: relative; */
}
.progress-bar{
    position: fixed;
    width: 100%;
    height: 3px;
    z-index: 11111;
    top: 110px;

}
.filled {
    width: 100%;
    height: 100%;
    background: #ff2f40;
    
}
.logo-section {
    width: 150px;
    padding: 8px 0px;
}

.logo-section img {
    width: 100%;
}

.top-header-container {
    border-bottom: 1px solid #ffffff;
    background: #0067b5;
    box-shadow: 0px 5px 5px #00000021;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    min-height: 40px;
    align-items: center;
}

.top-header-contact ul {
    display: flex;
    list-style: none;
    margin: 0px;
    padding-left: 6px;
}

.top-header-contact ul li {
    margin: 0px 20px 0px 0px;
}

.top-header-contact ul li i {
    color: #fff;
}

.top-header-contact ul li a {
    color: #fff;
}

.top-header-social ul {
    display: flex;
    list-style: none;
    float: right;
    padding-right: 6px;
}

.top-header-social ul li {
    margin: 0px 0px 0px 26px;
}

.top-header-social ul li i {
    color: #fff;
}

.navbar-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* .main-header-row{
    align-items: center;
    min-height: 70px;
} */
.navigation-bar ul {
    display: flex;
    list-style: none;
}

.navigation-bar ul li {
    /* margin: 0px 40px 0px 0px; */
    padding: 23px 0px 23px 0px;

}

.navigation-bar ul li a {
    position: relative;
}
.navigation-bar ul li a.active{
    position: relative;
}
.navigation-bar ul li a.active::after{
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ff2f40;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.4s ease-in-out;
    margin: auto;
}
.navigation-bar ul li a::after {
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff2f40;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.4s ease-in-out;
    margin: auto;
}

.navigation-bar ul li:hover a:after {
    width: 100%;
}

.navigation-bar ul li:hover a {
    color: #0067b5;
}

.navigation-bar ul li a {
    margin: 0px 38px 0px 0px;
    transition: 0.4s ease-in-out;
}

.navigation-bar {
    width: fit-content;
    float: left;
}
/* Dropdown */
.navigation-bar ul li.menu-has-child{
    position: relative;
    transition: all 0.4s ease-in-out;
}
.navigation-bar ul li.menu-has-child:hover .dropdown-menus {
    position: absolute;
    opacity: 1;
    top: 73px;
    transform: scale(1);
}
.navigation-bar ul li .dropdown-menus{
    position: absolute;
    opacity: 0;
    top: 73px;
    z-index: 2;
    transition: all 0.4s ease-in-out;
    transform: scale(0);
    margin: 0px;
    left: 0;
    bottom: 0;
    right: 0;
}
.navigation-bar ul li .dropdown-menus ul{
    display: grid;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.navigation-bar ul li .dropdown-menus ul li{
    padding: 11px 42px 11px 15px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    width: 246px;
}
.navigation-bar ul li .dropdown-menus li a{
    margin: 0px 0px 0px -14px!important;  
    position: inherit!important;  
    padding: 11px 42px 11px 15px;
    color: #4a4747dd;
}
.navigation-bar ul li .menu-has-child:hover .dropdown-menus li a{
    border: none;
}

.navigation-bar ul li .dropdown-menus ul li:hover{
    background: #f7f7f7;
}
.navigation-bar ul li .dropdown-menus li a::after{
    position: inherit;
}
/* .navigation-bar ul li a::after */
.product-search-section {
    width: fit-content;
    float: right;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.product-search-section input {
    padding: 10px 16px;
    border-radius: 30px;
    border: 0px;
    outline: 0;
    transition: 0.4s ease-in-out;
}

.product-search-section input:focus {
    box-shadow: 0px 0px 10px #ddd;

}

.product-search-section .search-btn {
    position: absolute;
    right: 16px;
    bottom: 0px;
    top: 25%;
    margin: auto;
}

/* ======================= Header Section end ============================== */

/* ====================== Mobile Header Section CSS ======================== */
.mobile-header{
    display: none;
}
.mobile-header-wrapper{
    display: flex;
    justify-content: space-between;
    padding: 5px 0px;
}
.mob-navigation-sec ul {
    display: grid;
    place-items: center;
    list-style: none;
    margin-top: 50px;
}
.mob-navigation-wrapper{
    width: 100%;
    left: -100%;
    height: 100vh;
    position: fixed;
    z-index: 111111;
    top: 0px;
    transition: all 0.6s ease-in-out;
    background: linear-gradient(91deg, #000 40%, #210724);
}
.dropdown-menu-for-mobile.active .menu-toggle-mobile{
    color: #0066b4;
}

.dropdown-menu-for-mobile.active{
    display: block;
    transition: all 0.4s ease-in-out;
    background: #00000059;
    border: 1px solid #dddddd24;
}
.dropdown-menu-for-mobile{
    display: none;
    transition: all 0.4s ease-in-out;
   
}
.dropdown-menu-for-mobile ul{
    margin: 0px;
}
.dropdown-menu-for-mobile.show.active ul li{
    border-bottom: 1px solid #dddddd2b;
}


.hamgurger div{
    width: 40px;
    height: 4px;
    background: #0066b4;
    margin: 0px 0px 5px 0px;
}
.mob-navigation-wrapper.show{
    left: 0px;
    background: linear-gradient(91deg, #000 40%, #210724);
    transition: all 0.6s ease-in-out;
}
.mob-navigation-wrapper ul li a{
    height: 70px;
    list-style-type: none;
    text-align: center;
    line-height: 55px;
    transition: all 0.5s ease;
    color: #fff;
}
.mob-navigation-wrapper.show ul li{
    width: 100%;
    text-align: center;
    position: relative;
}
.mob-navigation-wrapper.show ul li .menu-toggle-mobile{
    position: absolute;
    z-index: 2;
    top: 4px;
    right: 46px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.hamgurger {
    width: 30px;
    height: 58px;
    z-index: 11111111111;
    top: 0px;
    left: 0px;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    float: right;
    position: sticky;
}
.hamgurger div {
    width: 30px;
    height: 4px;
    background-color: #0066b4;
    display: block;
    margin: 5px 0px;
    transition: all 0.6s ease-in-out;
}
.hamgurger div:nth-child(1) {
    margin-top: 22px;
}
.hamgurger.active {
    left: 90%;
    transition: all 600ms ease-in-out;
}
.hamgurger.active #one {
    transform: translateY(9px) rotate(-135deg);
    transition: all 0.6s ease-in-out;
    background-color: #ff2f40;
}
.hamgurger.active #two {
    opacity: 0;
    transition: 0.4s ease;
}
.hamgurger.active #three {
    transform: translateY(-9px) rotate(-45deg);
    transition: all 0.6s ease-in-out;
    background-color: #ff2f40;
}


.mob-logo-sec{
    width: 100%;
    /* text-align: center; */
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
}
.mob-logo-sec img{
    width: 38%;
}
.mob-search-bar-sec{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.mob-search-bar-sec button{
    background: none;
    outline: none;
    border: none;
}
.mob-search-box{
    width: 95%;
    opacity: 0;
    position: fixed;
    background: #fff;
    padding: 6px 5px;
    z-index: 11111111111;
    right: -100%;
    transition: all 0.6s ease-in-out;
}
.mob-search-box input{
    width: 94%;
    padding: 7px;
    border: 1px solid #ddd;
    outline: none;
}
.mob-search-box.show{
    right: 0px;
    opacity: 1;
}

/* ====================== Mobile Header Section CSS End ======================== */

/*  ========================== Banner Slider ===================== */
.banner-slider .item {
    height: 450px;
    position: relative;
}

.banner-slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slider .item .cover {
    padding: 75px 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.banner-slider .item .cover .header-content {
    position: relative;
    padding: 25px;
    overflow: hidden;
    width: 56%;
    left: -78px;
}

.banner-slider .item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 5px solid #fff;
    -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}
.banner-slider .item .cover .header-content .line-light{
    border: 5px solid #0066b4!important;
}
.banner-slider .item .cover .header-content h2 {
    font-weight: 500;
    font-size: 26px;
    color: #fff;
}

.banner-slider .item .cover .header-content h1 {
    font-size: 56px;
    font-weight: normal;
    margin: 5px 0 1px;
    word-spacing: 0px;
    color: #fff;
    font-family: Berkshire Swash;
}

.banner-slider .item .cover .header-content h4 {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #fff;
}

.banner-slider .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.banner-slider .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.banner-slider .owl-item.active h4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}
.header-content-light-bg h1{
    color: #0067b5!important;
}
.header-content-light-bg h2{
    color: #ff2f40!important;
}
.header-content-light-bg h4{
    color: #383838!important;
}
.banner-slider .owl-item.active .line {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}

.banner-slider .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 50%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

.banner-slider .owl-nav .owl-prev span {
    font-size: 1.6875rem;
    color: #fff;
}

.banner-slider .owl-nav .owl-prev:focus {
    outline: 0;
}

.banner-slider .owl-nav .owl-prev:hover {
    background: #000 !important;
}
.owl-theme .owl-nav{
    margin-top: 0px!important;
}
.banner-slider .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 50%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

.banner-slider .owl-nav .owl-next span {
    font-size: 1.6875rem;
    color: #fff;
}

.banner-slider .owl-nav .owl-next:focus {
    outline: 0;
}

.banner-slider .owl-nav .owl-next:hover {
    background: #000 !important;
}

.banner-slider:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

.banner-slider:hover .owl-next {
    right: 0px;
    opacity: 1;
}

/*  ========================== Banner Slider end ===================== */

/* ============================ Highlights ============================ */
.highlights-section{
    padding: 60px 0px 60px;
    position: relative;
    background: url(../images/texture/texture-shape-3.png);
    
}
.title-section{
    text-align: center;
}
.title-section .title-heading{
    font-size: 42px;
    position: relative;
    display: inline;
    font-weight: 600;
}
.title-section .title-heading::before{
    position: absolute;
    content: '';
    bottom: -7px;
    left: 0;
    right: 0;
    margin: auto;
    width: 85%;
    height: 3px;
    background-color: #0066b4;
    border-radius: 5px;
}
.title-section .title-heading::after{
    position: absolute;
    content: '';
    bottom: -7px;
    left: 20%;
    margin: auto;
    width: 7%;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
    transition: 0.6s ease-in-out;
    
}
section:hover .title-heading:after{
     left: 70%;
}
.highlights-section:hover .title-heading:after{
    left: 70%;
}
.title-section p{
    margin-top: 16px;
    font-size: 17px;
}
.texture-shape-1{
    position: absolute;
    top: 0;
    right: 0;
    animation: up_down_mover 5s ease-in-out both infinite;
}
.texture-shape-2{
    position: absolute;
    top: 40px;
    left: -50px;
    animation: up_down_mover 7s ease-in-out both infinite;
   
}
.texture-shape-2 img{
    transform: rotate(229deg);
}
.texture-shape-3{
    position: absolute;
    top: 60px;
    left: -50px;
    animation: up_down_mover2 10s ease-in-out both infinite;
   
}
.texture-shape-3 img{
    transform: rotate(229deg);
}
@keyframes up_down_mover {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(30px);
    }
    100%{
        transform: translateY(0px);
    }
}
@keyframes up_down_mover2 {
    0%{
        transform: translateY(30px);
    }
    50%{
        transform: translateY(0px);
    }
    100%{
        transform: translateY(30px);
    }
}
.hightlight-carousel{
    margin-top: 40px;
}
.highlight-card{
    text-align: center;
}
.highlight-card .highlight-card-img{
    width: 160px;
    border-radius: 50%;
    height: 160px;
    border: 3px solid #0067b5;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    margin: 0px auto;
}
.highlight-card .highlight-card-img img{
    width: 100%;
    border-radius: 50%;
}
.hightlight-card-content h1{
    font-size: 19px;
    font-weight: 600;
    margin-top: 20px;
}
.hightlight-card-content p{
    font-size: 15px;
    margin: 0px;
}
/* ============================ Highlights end ============================ */

/* ============================== About Us ==================================== */
.aboutus-section{
    background: url(../images/texture/bgn-industries.png);
    background-size: cover;
    padding: 60px 0px 60px;
    position: relative;
}
.side-section-title h2{
    font-size: 30px;
    font-weight: 600;
}
.side-section-title p{
    font-size: 18px;
    padding-left: 10px;
    border-left: 2px solid #ff2f40;
    margin: 5px 0px;
}
.about-ul ul li{
    list-style-type: none;
    line-height: 26px;
}
.about-ul ul li i{
    color: #ff2f40;
}
.about-us-contents p{
    text-align: justify;
    line-height: 26px;
}
.about-feature-icon{
    width: 50px;
}
.about-feature-icon img{
    width: 100%;
}
.common-box{
    display: flex;
    padding: 15px 15px;
    background-color: #0067b21c;
    margin: 10px 0px;
    box-shadow: 10px 10px 20px #dddddd6b;
    border: 1px solid #0067b5;
    align-items: center;
    border-radius: 10px;
}
.counter-wrapper{
    padding-left: 10px;
}
.counter-num .timer{
    font-size: 22px;
    font-weight: 600;
}
.about-us-wrapper{
    animation: up_down_mover 20s ease both infinite;
}
.about-us-wrapper img{
    width: 100%;
}




/* ============================== About Us End ==================================== */

/* ================================= product section ============================ */
.products-section{
    padding: 60px 0px 60px;
    background: #0067b505;
}
.product-card{
    display: flex;
    border-radius: 20px;
    transition: 0.7s ease;
    /* border: 1px solid #dddddd52; */
    box-shadow: 0px 2px 10px #dddddd23;
    margin: 12px 0px;
}
.product-card:hover{
    box-shadow: 2px 2px 0px #ff2f40;
    cursor: pointer;
   
}
.product-card .product-card-img{
    width: 35%;
    margin: 0px auto;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    position: relative;
}
.product-card .product-card-img::after{
    position: absolute;
    content: '';
    width: 0%;
    height: 0%;
    background-color: #0066b4;
    opacity: 0;
    top: 0;
    left: 0;
    /* right: 0; */
    bottom: 0;
    margin: auto;
    transition: 0.7s ease;
}
.product-card:hover .product-card-img img{
    transform: scale(1.2);
    
}
.product-card:hover .product-card-img:after{
    opacity: 0.6;
    width: 100%;
    height: 100%;
}
.product-card .product-card-img img{
    width: 100%;
    transition: 1s ease;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.product-card-content{
    width: 65%;
    padding: 15px;
    position: relative;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #ffff;
    transition: 0.7s ease;
}
.product-card:hover .product-card-content{
    background: transparent;
}
.product-card-content::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background-image: url(../images/product-card-content-bg.jpg);
    background-size: cover;
    opacity: 0.2;
    transition: 0.7s ease;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: -1;
}
.product-card:hover .product-card-content:after{
    opacity: 0.2;
}
.product-card-content h1{
    font-size: 22px;
    font-weight: 600;
}
.product-card-content .pr-readmore-btn{
    opacity: 0;
    transition: 0.7s ease;
}
.product-card:hover .product-card-content .pr-readmore-btn{
    opacity: 1;
}
.product-card-content a i{ 
    transform: translateX(-30px);
    opacity: 0;
    transition: 0.5s ease;
}
.product-card:hover .product-card-content a i{
    transform: translateX(2px);
    opacity: 1;
}
.product-card-content-text {
    transform: translateY(35px);
    transition: 0.7s ease;
}
.product-card:hover .product-card-content-text{
    transform: translateY(12px);
}
.pr-card-row{
    margin-top: 42px;
}
/* ================================= product section end ============================ */

/* =============================== Why Choose us section ========================== */

.why-choose-us-section{
    padding: 60px 0px 60px;
    position: relative;
    background: url(../images/texture/bgn-industries.png);
    background-size: cover;
}
.why-choose-row{
    align-items: center;
}
.why-choose-content p{
    text-align: justify;
    line-height: 32px;
}
.read-more-btn a{
    position: relative;
    padding: 10px 32px;
    line-height: 24px;
    color: #111;
    text-align: center;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
    letter-spacing: 0px;
    border: 1px solid #0066b4;
    font-family: 'poppins', sans-serif;
    overflow: hidden;
    z-index: 111;
    transition: 0.6s ease;
    border-radius: 30px;
}
.read-more-btn a::after{
    top: 50%;
    left: 50%;
    height: 0%;
    width: 100%;
    content: "";
    z-index: -1;
    position: absolute;
    background: #0066b4;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);

}
.read-more-btn a:hover{
	color: #fff;
}
.read-more-btn a:hover:after {
	height: 533%;
}
/* =============================== Why Choose us section end ========================== */

/* =============================== News Section ================================= */
.news-section{
    padding: 60px 0px 60px;
    background: #0067b505;
    position: relative;
}
.news-row{
    margin-top: 40px;
}
.news-card{
    background: #fff;
    box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
    padding: 22px 22px 24px 22px;
    transition: 0.3s;
}
.news-img{
    position: relative;
    overflow: hidden;
}
.news-img img{
    max-width: 100%;
    height: auto;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}
.news-card:hover .news-img img{
    transform: scale(1.1);
    
}
.news-content h1{
    color: #0066b4;
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
}
.news-date ul{
    overflow: hidden;
    margin: 0 0 5px;
    padding: 0 0 12px;
    font-size: 13px;
    display: flex;
    align-items: center;
    list-style: none;
}
.news-date ul li{
    margin-right: 15px;
}
.news-date-icon{
    display: inline-block;
    font-weight: 400;
    font-size: 13px;
    color: #555;
}
.news-date-icon i{
    color: #0066b4;
    margin-right: 3px;
    font-size: 14px;
    font-weight: 600;
}
.news-date .author{
    display: inline-block;
    padding: 0;
    margin-right: 0;
    line-height: normal;
    color: #555;
}
.news-date .author i{
    color: #0066b4;
    margin-right: 3px;
    font-size: 14px;
    font-weight: 600;
}
.news-content p{
    line-height: 27px;
    font-weight: 400;
    color: #454545;
    margin-bottom: 15px; 
}
.continue-reading-btn a{
    text-align: center;
    display: inline-block;
    color: #0066b4;
    padding-right: 25px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 15px;
}
.continue-reading-btn a::after{
    content: "\f30b";
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 15px;
    top: 5px;
    right: 3px;
    opacity: 1;
    transition: all 0.3s;
}
.continue-reading-btn a:hover:after{
    right: -5px;
    opacity: 1;
}
/* =============================== News Section end ================================= */

/* =============================== Certifications =================================== */
.certifications-section{
    padding: 60px 0px 60px;
    background: url(../images/texture/bgn-industries.png);
    background-size: cover;
    position: relative;
}
.certifications-section .item{
    text-align: center;
}
.certifications-section .item img{
    width: 120px;
    text-align: center;
    margin: 0px auto;
}
.certifications-carousel{
    margin-top: 40px;
}
/* =============================== Certifications End =================================== */

/* =============================== News Letter Section =============================== */
.newsletter-section{
    padding: 60px 0px 60px;
    background: url(../images/backgrounds/news-letter-bg.jpg);
    background-size: cover;
}
.newsletter-wrapper h1{
    font-size: 38px;
    font-weight: 600;
    text-align: right;
    color: #fff;

}
.newsletter-wrapper .row{
    align-items: center;
}
.newsletter-card input{
    width: 70%;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #ddd;
    outline: none;
    margin-right: 20px;

}
.newsletter-card button{
    padding: 10px 20px;
    background-color: #0066b4;
    color: #fff;
    outline: none;
    border: none;
    border-radius: 30px;
}
/* =============================== News Letter Section End =============================== */

/* Footer Section */
.footer {
    padding: 50px 0px 50px;
    background: #0000009c;
    background-image: url(../images/backgrounds/dddddddd.jpg);
    background-size: cover;
    background-blend-mode: color;
}
.footer ul{
    list-style: none;
}
.footer-intro .footer-logo {
    width: 130px;
    margin: 0px 0px 5px 0px;
}
.footer-intro .footer-logo img{
    width: 100%;
}
.footer-intro p{
    text-align: justify;
    color: #fff;
}
.footer-social ul{
    display: flex;

}
.footer-social ul li{
    margin: 0px 10px 0px 0px;
}
.footer-social ul li a{
    padding: 10px 15px;
    background-color: #ddd;
}
.footer-site-links{
    padding-top: 36px;
    padding-left: 40px;
    transition: 0.4s ease;
}
.footer-site-links h1{
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    position: relative;
    display: inline;
}
.footer-site-links h1::after{
    position: absolute;
    content: '';
    width: 40px;
    height: 3px;
    background: #0066b4;
    left: 0;
    bottom: -5px;
    transition: 0.4s ease;
}
.footer-site-links:hover h1:after{
    width: 80%;
    background-image: linear-gradient(89deg, #0066b4, #ff2f40);
}
.footer-site-links ul{
    margin-top: 22px;
}
.footer-site-links ul li{
    margin: 0px 0px 10px 0px;
}
.footer-site-address .footer-location{
    display: flex;
    align-items: center;

}
.footer-location i{
    color: #ff2f40;
}
.footer-site-address p{
    margin: 0px;
    margin-left: 12px;
}
.footer-site-links a{
    color: #edfaff;
    transition: 0.4s ease;
}
.footer-site-links a:hover{
    color: #0066b4;
    transition: 0.4s ease;
}
.footer-social a{
    background: #edfaff;
    color: #ff2f40;
    transition: 0.4s ease;
}
.footer-social a:hover{
    background: #ff2f40;
    color: #fff;
}

/* Copy right Section */
.copyright{
    background-color: #000;
    padding: 18px 0px;
}
.copyright p{
    color: #fff;
    margin: 0px;
}
.copyright .aks-copyr-w {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


/* Version 2 */
.other-chemical-section{
    background: url(../images/texture/texture-shape-3.png);
}
.chemical-sec-wrapper{
    margin-top: 40px;
}
.chem-for-wrapper{
    padding: 10px;
    display: flex;
    align-items: center;
    /* justify-content: space-evenly; */
    background-color: #e6f0f8;
    border-radius: 10px;
    border: 1px solid #0066b4;
    transition: 0.2s ease-in-out;
    cursor: pointer;
    margin: 0px 0px 25px 0px;
    background-image: url(../images/texture/pngwing.com.png);
    background-size: cover;
}
.chem-for-icon{
    width: 50px;
    padding: 10px;
    border-radius: 100%;
    height: 50px;
    border: 1px solid #0066b4;
    margin-right: 12px;
    background: #fff;
    transition: 0.4s ease-in-out;
}
.chem-for-icon img{
    width: 100%;
}
.chem-for-wrapper:hover .chem-for-icon{
    transform: rotate(360deg);
    transition: 0.4s ease-in-out;
}
.chem-for-wrapper:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    background-color: #d4e7f7;
}
.chem-for-content h3{
    margin: 0px;
    font-size: 22px;
}

/* Inner Page */
.inner-banner-section{
    background-image: url(../images/backgrounds/inner-p-bg.jpg);
    background-position: center center;
    background-size: cover;
}
.inner-banner-wrapper{
    min-height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.inner-banner-content h3{
    color: #fff;
    font-size: 36px;
}
.inner-banner-content p{
    color: #fff;
}
.inner-banner-content p a{
    color: #fff;
}
.inner-banner-content p a:hover{
    color: #31a6ff;
}
.about-ul-inner ul li{
    display: flex;
    align-items: baseline;
}
.about-ul-inner ul li i{
    margin-right: 10px;
}
.vision-and-mission-section{
    padding: 60px 0px;
    background-color: #f5fafd;
    background-image: url(../images/texture/texture-shape-3.png);
    background-blend-mode: multiply;
}
.vision-section {
    display: flex;
    align-items: center;
    background-image: url(../images/vision-bg.jpg);
    background-size: cover;
    background-position: center center;
    border-radius: 10px;
    padding: 20px;
    background-color: #07365bb8;
    background-blend-mode: multiply;
    height: 200px;
}
.mission-bg.vision-section{
    background-image: url(../images/mission-bg.jpg);
    background-color: #032641f0;
}
.v-m-icon{
    width: 500px;
    padding: 10px;
    position: relative;
    margin-right: 10px;
}
.v-m-icon img{
    width: 100%;
}
.v-m-icon::after{
    position: absolute;
    width: 80%;
    height: 80%;
    border-left: 5px solid #fff;
    /* content: ''; */
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-radius: 100%;
    z-index: 2;
    border-right: 5px solid #fff;
    transition: 0.5s ease-in-out;
}
.vision-section:hover .v-m-icon:after{
    transform: rotate(150deg);
    width: 100%;
    height: 100%;
}
.v-m-content h3{
    color: #29e0f8;
    font-weight: 600;
    position: relative;
}
.v-m-content h3::after{
    position: absolute;
    content: '';
    width: 60px;
    height: 2px;
    background: #fff;
    bottom: 0;
    left: 0;

}
.v-m-content p{
    color: #fff;
    text-align: justify;
    padding-right: 20px;
    padding-top: 10px;
}


.our-team-section{
    padding: 60px 0px;
    background: url(../images/texture/bgn-industries.png);
    background-size: cover;
    position: relative;
}
.our-team-card-wrapper{
    position: relative;
    overflow: hidden;
    padding-bottom: 95px
}
.our-team-img{
    width: 100%;
   
}
.our-team-img img{
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.our-team-card-wrapper:hover .our-team-img img{
    transform: scale(1.1);
}
.our-team-content{
    background: #eeeeee;
    padding: 15px 20px;
    bottom: 0;
    left: 0;
    text-align: center;
    position: absolute;
    height: 95px;
    overflow: hidden;
    transition: .3s all ease;
}
.our-team-card-wrapper:hover .our-team-content{
    height: 150px;
    background: #0069b5;
}
.team-fade-in-content{
    opacity: 0;
    transition: .4s all ease;
}
.our-team-card-wrapper:hover .team-fade-in-content{
    opacity: 1;
}
.team-fade-not h3{
    font-size: 24px;
    font-weight: 700;
    color: #0067b5;
}
.team-fade-not p{
    margin: 0px;
    margin-bottom: 6px;
    color: #001a2e;
}
.our-team-card-wrapper:hover .team-fade-not p, .our-team-card-wrapper:hover .team-fade-not h3, .our-team-card-wrapper:hover .team-fade-in-content{
    color: #ffff;
}
.our-team-card-wrapper::after{
    position: absolute;
    content: '';
    bottom: 0;
    width: 100%;
    height: 4px;
    left: 0;
    background: #0066b4;
}


.contact-us-section{
    padding: 60px 0px;
    background: url(../images/texture/bgn-industries.png);
    background-size: cover;
}
.contact-us-row{
    margin-top: 40px;
}
.contact-detail-card{
    display: flex;
    align-items: center;
    padding: 20px;
}
.contact-card-icon{
    width: 48px;
    margin-right: 20px;
}
.contact-card-icon img{
    width: 100%;
}
.contact-card-content h3{
    font-size: 20px;
    margin: 0px;
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-card-content p{
    margin: 0px;
}


.contact-form-wrapper {
    padding: 0px 0;
  }
  
  .contact-form {
    padding: 0px;
    background-color: #ffffff;
    border-radius: 12px;
    width: 100%;
}
  
  .contact-form textarea {
    resize: none;
  }
  
  .contact-form .form-input,
  .form-text-area {
    background-color: #f0f4f5;
    height: 50px;
    padding-left: 16px;
    border: 1px solid #0067b5;
    border-color: #0067b5!important;
  }
  
  .contact-form .form-text-area {
    background-color: #f0f4f5;
    height: auto;
    padding-left: 16px;
  }
  
  .contact-form .form-control::placeholder {
    color: #aeb4b9;
    font-weight: 500;
    opacity: 1;
  }
  
  .contact-form .form-control:-ms-input-placeholder {
    color: #aeb4b9;
    font-weight: 500;
  }
  
  .contact-form .form-control::-ms-input-placeholder {
    color: #aeb4b9;
    font-weight: 500;
  }
  
  .contact-form .form-control:focus {
    border-color: #0067b5;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07), 0 0 8px #0067b5;
}
  
  .contact-form .title {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
  }
  
  .contact-form .description {
    color: #aeb4b9;
    font-size: 14px;
    text-align: center;
  }
  
  .contact-form .submit-button-wrapper {
    text-align: center;
  }
  
  .contact-form .submit-button-wrapper input {
    border: none;
    border-radius: 4px;
    background-color: #f23292;
    color: white;
    text-transform: uppercase;
    padding: 10px 60px;
    font-weight: 500;
    letter-spacing: 2px;
  }
  
  .contact-form .submit-button-wrapper input:hover {
    background-color: #d30069;
  }
  
  .page-event {
    background-color: transparent;
    padding-bottom: 40px;
    font-family: "Varela Round", sans-serif;
  }
  .page-event .cover {
    background-color: #36353a;
    height: 360px;
    background-image: url('https://goo.gl/NA3iQP');
    background-position: center center;
    background-size: cover;
  }
  .page-event .cover .heading {
    font-family: 'Telefon Black';
    font-size: 243px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ccc;
    transition: font-size 0.3s;
  }
  .page-event .cover .heading::first-letter {
    color: #db2d8e;
  }
  .page-event .upcoming-sec {
    padding: 18px 0px;
    border-bottom: 1px solid #ccc;
  }
  .page-event .upcoming-sec .heading {
    font-size: 30px;
    color: #0067b5;
    font-weight: 600;
  }
  .page-event .upcoming-event-list {
    color: #ccc;
  }
  .page-event .upcoming-event-list .event-block {
    padding: 5vh 0;
    border-bottom: 1px solid #ccc;
  }
  .page-event .upcoming-event-list .event-block .sec-1,
  .page-event .upcoming-event-list .event-block .sec-2 {
    padding-bottom: 3vh;
  }
  .page-event .upcoming-event-list .event-block .sec-1 table .month {
    text-transform: uppercase;
    color: #ff2f40;
    font-size: 30px;
  }
  .page-event .upcoming-event-list .event-block .sec-1 table .month-date-devider {
    width: 5vh;
    margin: 1vh 0;
    background-color: #3cbfaf;
    height: 5px;
  }
  .page-event .upcoming-event-list .event-block .sec-1 table .date {
    font-size: 60px;
    font-weight: bolder;
    line-height: normal;
    color: #383333;
  }
  .page-event .upcoming-event-list .event-block .sec-1 table .title {
    padding-left: 20px;
    vertical-align: top;
    font-size: 30px;
  }
  .page-event .upcoming-event-list .event-block .sec-2 img {
    width: 100%;
  }
  .page-event .upcoming-event-list .event-block .sec-3 .title {
    font-size: 24px;
    padding-bottom: 2vh;
    color: #0069b5;
    font-weight: 600;
  }
  .page-event .upcoming-event-list .event-block .sec-3 .venue table td {
    vertical-align: top;
  }
  .page-event .upcoming-event-list .event-block .sec-3 .venue table td i {
    color: #0069b5;
    padding-left: 3px;
    padding-right: 10px;
  }
  .page-event .upcoming-event-list .event-block .sec-3 .venue table td .dim-color a {
    color: rgba(204, 204, 204, 0.3);
  }
  .page-event .upcoming-event-list .event-block .sec-3 .time {
    padding-bottom: 3vh;
  }
  .page-event .upcoming-event-list .event-block .sec-3 .time table td {
    vertical-align: top;
  }
  .page-event .upcoming-event-list .event-block .sec-3 .time table td i {
    color: #0069b5;
    padding-right: 10px;
  }
  .page-event .upcoming-event-list .event-block .sec-3 .time table td .dim-color {
    color: rgba(204, 204, 204, 0.3);
  }
  .page-event .upcoming-event-list .event-block .sec-3 .sort-story {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
  }
  .page-event .upcoming-event-list .event-block .sec-3 .group-of-btn {
    padding-top: 3vh;
  }
  .page-event .upcoming-event-list .event-block .sec-3 .group-of-btn .book-ticket {
    background-color: #3cbfaf;
    color: #fff;
    margin-bottom: 10px;
  }
  .page-event .page-heading {
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 17px;
    word-break: break-all;
    padding: 10px;
  }
  .page-event .page-heading::first-letter {
    color: #db2d8e;
  }
  @media (min-width: 992px) {
    .upcoming-event-list .event-block .sec-1 table .title {
      display: none;
    }
  }
  @media (max-width: 991px) {
    .page-event .cover .heading {
      font-size: 180px;
      padding-top: 7vh;
    }
    .upcoming-event-list .event-block .sec-3 .title {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .page-event .cover .heading {
      font-size: 140px;
      padding-top: 11vh;
    }
  }
  @media (max-width: 575px) {
    .page-event .cover {
      height: 214px;
    }
    .page-event .cover .heading {
      font-size: 70px;
    }
    .page-event .upcoming-event-list .event-block .sec-1 table .month {
      font-size: 14px;
    }
    .page-event .upcoming-event-list .event-block .sec-1 table .date {
      font-size: 36px;
    }
    .page-event .upcoming-event-list .event-block .sec-1 table .title {
      padding-left: 20px;
      font-size: 20px;
      vertical-align: top;
    }
  }

.product-sheet-table .table tr td{
    border: 1px solid #ddd;
}
.product-sheet-table .table thead tr td{
    background: #0066b4;
    color: #ffff;
    font-weight: 500;
    text-align: left;
}
.product-sheet-table .table tbody tr:nth-child(even){
    background-color: #f9fdff;
}
.product-sheet-table .table tbody tr:nth-child(odd){
    background-color: #fbf4f7;
}
.product-sheet-section{
    padding: 0px 0px 40px 0px;
}
.product-sheet-table .table tbody tr td:nth-child(1){
    font-weight: 700;
}

/* === HEADING STYLE #3 === */
.three h1 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5em;
    padding-bottom: 15px;
    position: relative;
    text-align: center;
  }
  .three h1:before {
    content: "";
    position: absolute;
    left: 0;
    right:0;
    bottom: 0;
    height: 5px;
    width: 55px;
    background-color: #111;
    margin: 0px auto;
  }
  .three h1:after {
    content: "";
    position: absolute;
    left: 0;
    right:0;
    bottom: 2px;
    height: 1px;
    width: 95%;
    max-width: 255px;
    background-color: #333;
    margin:0px auto
  }

/* 26-06-2023 */
.row.align-item-center{
    align-items: center;
}
  
@media screen and (max-width:425px){
    .vision-section{
        height: auto;
        flex-direction:column
    }
    .v-m-icon{
        width: 190px; 
    }
}


/* 28-06-2023 */
.enquire-now-btn a{
    padding: 10px 20px;
    background: #0069b5;
    color: #fff;
    margin-right: 0px!important;
    border-radius: 24px;
    position: inherit;
}
.enquire-now-btn a::after{
    background: transparent!important;
}
.enquire-now-btn a:hover{
    background: #025797;
    color: #fff!important;
}
.enquire-now-btn a i{
    animation: shake 2s infinite;
    /* animation-play-state: paused, running, paused, running; */
}

/* Keyframe Shake */
@keyframes shake {
    10%, 90% {
      transform: translate3d(-1px, 0, 0);
    }
    
    20%, 80% {
      transform: translate3d(2px, 0, 0);
    }
  
    30%, 50%, 70% {
      transform: translate3d(-3px, 0, 0);
    }
  
    40%, 60% {
      transform: translate3d(3px, 0, 0);
    }
  }