/********** CSS **********/
:root {
    --primary: #166EB5;
    --secondary: #0F3D88;
    --dark: #222222;
    --light:#373737;
    --bg-light: #F4FAFD;
}

/* @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); 
    }
    40% {
        transform: translateY(-20px); 
    }
    60% {
        transform: translateY(-10px); 
    }
} */

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: "Oswald", sans-serif; */
    font-family: "Roboto Flex", sans-serif;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey;  */
    border-radius: 7px;
}


::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}


/************************ Common ************************/

section {
    padding: 60px 0px;
}

.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.text-dark {
    color: var(--dark) !important;
}
.text-light {
    color: var(--light) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", sans-serif;
}


h1 {
    font-size: 48px;
    font-weight: 600;
}

h2 {
    /* font-size: 40px;
    color: var(--secondary);
    margin-bottom: 25px;
    z-index: 99; */

}

h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: var(--light);
    line-height: 24px;
}

a {
    /* font-size: 17px; */
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;

}

a:hover {
    color: var(--secondary);
}

img {
    width: auto;
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}
.border10{
    border-radius: 10px;
}
.border25{
    border-radius: 25px;
}

/* Content Styles */
.content {
    /* display: none; */
    /* Hide content initially */
}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 400;
}

.btn-primary {
    background-color: var(--primary);
    color: white !important;
    border-radius: 7px;
    border: none;
    text-transform: capitalize;
    /* display: inline-block; */
    padding: 5px 25px;
    min-height: 45px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: var(--secondary);
}

.btn-primary,
.btn-outline-primary:hover {
    border-color: var(--primary) !important;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff !important;
    background-color: var(--primary);
    border: none !important;
    /* border-color: #000; */
    box-shadow: none;
    border-color: var(--primary) !important;

}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
    color: #fff !important;
    background-color: var(--primary);
    /* border-color: #000; */
    border: none !important;
    border-color: var(--primary) !important;
}

.btn-white {
    background-color: white;
    color: var(--primary) !important;
    z-index: 99;
}

.btn-white:hover {
    color: white !important;
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    /* text-transform: capitalize; */
    z-index: 9;
}
.section-title span{
    color: var(--dark);
}

.learn-more {
    background-color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500 !important;
    color: white;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    font-family: "Oswald", sans-serif;
}

.learn-more:hover {
    color: var(--secondary);
}
.learn-more i{
    padding-left: 3px;
}
.read-more {
    font-weight: 500 !important;
    /* color: white; */
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.learn-more-white{
    background-color: white;
    color: var(--primary);
}
.read-more i{
    padding-left: 7px;
}
/************************ Header************************/
header {
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    color: white;
    /* background: white; */
}

.logo-sec{
background: linear-gradient(to right, #0066b3, #8ac8f5, #ffffff, #8ac8f5, #0066b3);
    padding: 5px 50px;
}

/* ------------------------------------- */

.social ul {
    gap: 5px;
    align-items: center;
    margin-bottom: 0;
    padding-left: 10px;
}
.social ul li {
    padding: 0px 10px 0px 0px;
}

.social ul li a {
    border: 1px solid white;
    border-radius: 50%;
    color: white !important;
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 17px;
}
.social ul li a i{
    color: white !important;
    font-size: 17px;
    padding: 0;
}
.social ul li a:hover {
    color: var(--secondary);
    background: var(--primary) !important;
}
/* ------- Top-Sec ------ */

.contact-top {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 3px 50px;
}

.contact-top ul {
    gap: 20px;
    align-items: center;
    margin-bottom: 0;
}

.contact-top i {
    padding-right: 10px;
}

.contact-top a {
    color: white;
    font-weight: 500;
    font-size: 16px;
}

.contact-top i {
    color: white;
}

.contact-top a:hover {
    color: var(--secondary) !important;
}

.contact-top a:hover i {
    color: var(--secondary);
}

/* ---------------------------- */
.logo {
    padding: 0;
}

.logo img {
    height: 60px;
    width: auto;
    margin-bottom: 0;
    border-radius: 0px;
    margin: 0 auto;
    display: block;
}

/* ---------------------------- */

header ul li {
    list-style: none;
}


nav ul li {
    list-style: none;
}

nav ul {
    margin-bottom: 0;
    padding: 0px;
}



nav ul li.active a {
    color: var(--primary);
}

.custom-nav ul li a:hover {
    color: var(--primary) !important;
}




/* custom nav */
/* ======================================================================= */
.custom-nav a {
    font-size: 16px;
    color: var(--dark);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: normal;
    font-weight: 500;
}

.custom-nav .submenu {
    position: absolute;
    display: block;
    background: #fff;
    z-index: 9;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    top: 60px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    /* top: 35px; */
    padding: 10px 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.custom-nav .navbar {
    gap: 25px;
}

.custom-nav .navbar li {
    position: relative;
}

.custom-nav .submenu.open {
    opacity: 1;
    top: 35px;
    pointer-events: all;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.custom-nav .submenu .submenu {
    left: 100%;
    top: 0;
}

.custom-nav .navbar .has-child>a::after {
    display: inline-block;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.custom-nav .navbar .has-child:hover::after {
    color: var(--primary) !important;
}

/* .custom-nav .navbar a {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: normal;
} */

.custom-nav .navbar .submenu a {
    padding: 10px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}


nav.custom-nav {
    display: flex;
    justify-content: space-around;
    /* background-color: var(--primary); */
    padding: 15px 0px !important;
    color: white;
}

nav.custom-nav .navbar>li:nth-last-child(-n+2) .submenu {
    left: auto;
    right: 0;
}

.mainNav-btn {
    display: none;
}


.mainNav-btn {
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: none;
    margin-right: 10px;
    color: #fff;
    outline: none;
    padding: 0 !important;
}


.menu-overlay {
    display: none;
}

.menu-overlay {
    display: block;
    width: 0%;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    opacity: 0;
}

.menu-open .menu-overlay {
    width: 100%;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    opacity: 1;
}


.submenu a {
    color: var(--dark) !important;
}


/************************ Banner ************************/
.banner {
    padding: 0px;
    position: relative;
    /* height: calc(100vh - 120px); */
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner1 {
    position: relative;
    height: 100vh;
    background-size: cover;
    object-fit: cover;
    background-position: center;
}


.banner1 .overlay {
    /* background: linear-gradient(#000000e0, #00000000); */
    background: rgba(7, 44, 103, 0.4);
    content: '';
    display: block;
    position: absolute;
    /* opacity: 0.2; */
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.banner-content {
    position: absolute;
    z-index: 999;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 999;
    color: white;
    text-align: center;
}

.banner h1 {
        color: white;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 40px;
}
.banner-content h2{
    font-size: 34px;
    margin-bottom: 35px;
}
.banner-content .learn-more{
    background: white;
    color: var(--primary);
    text-align: center;
}
.banner-content .learn-more:hover{
    color: var(--secondary);
}

/************************ Welcome ************************/
 .welcome img{
    height: 380px;
    object-fit: cover;
    object-position: center;
 }
 .welcome p{
    margin-bottom: 25px;
 }


/************************ Industries ************************/
.industries{
    background: linear-gradient(to right, #7FC1E4, #00A2DD, #0070B4);
    position: relative;  
}

.industries::before{
    background: url(../img/bg1.png);
    background-repeat: no-repeat;
    position: absolute;
    content: '';
    display: block;
    left: 0;
    bottom: 0;
    opacity: 0.2;
     width: 380px;
    height: 225px;
}
.industries::after{
    background: url(../img/bg2.png);
    background-repeat: no-repeat;
    position: absolute;
    content: '';
    display: block;
    right: 0;
    bottom: 0;
    opacity: 0.2;
     width: 260px;
    height: 350px;
}
.section-title-view-all{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.section-title-view-all .section-title{
    margin: 0;
}

.industries .item {
    position: relative;
}
.industries .item::before{
    background: linear-gradient(to top, #000000db, #0000000d, #ffffff00);
    content: '';
    display: block;
    position: absolute;
    /* opacity: 0.2; */
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.industries img {
    height: 420px;
    object-fit: cover;
    object-position: center;
    position: relative;
}
.industries-info {
    padding: 25px 15px 25px 25px;;
    position: absolute;
    bottom: 0;
    color: white;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    z-index: 9;
    width: 100%;
}

.industries-info h5{
    font-weight: 500;
    /* width: 325px; */
    margin: 0;
}

.industries-info a{
    /* font-size: 15px; */
    background: var(--primary);
    border-radius: 50%;
    color: white !important;
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 17px;
}
.industries-info a i{
    
}


/************************ Products ************************/
.products{ 
}


.products .item {
}
.products1{
    border: 1px solid var(--dark);
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 15px;
}

.products img {
    height: 240px;
    object-fit: contain;
    /* object-position: top; */
    position: relative;
    margin: 0;
}
.products-info {
    color: var(--dark);
    text-align: center;
}

.products-info h5{
    font-weight: 500;
    margin: 0;
}
/************************ Video ************************/
.ad-video{
    padding: 0;

}
.vdo1{
    position: relative;
    padding: 0;
}
.ad-vdo1{
    position: relative;
    height: 420px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
.vdo1 .fancybox{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vdo1 .fancybox button{
    background: none;
    border: none;
}
.vdo1 a.fancybox:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 45%);
}
.play-button img{
    position: relative;
    margin: 0;
    height: 100%;
    /* border-radius: 0; */
    margin: 0;
    width: 75px !important;
    height: 75px !important;
}
.play-button img:hover{
    opacity: 0.7;
}

/************************ Featured Products ************************/
.featured{ 
}


.featured .item {
}
.featured1{
    border: 1px solid var(--dark);
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 15px;
}

.featured img {
    height: 240px;
    object-fit: contain;
    /* object-position: top; */
    position: relative;
    margin: 0;
}
.featured-products-info {
    color: var(--dark);
}

.featured-products-info h5{
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
}
.cart-info{
    width: 100%;
}
.add-cart{
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 7px 12px;
    background: transparent;
    color: var(--primary);
}
.add-cart:hover{
    background: var(--secondary);
    color: white;
}
.add-cart i{
    padding-left: 8px;
}

/************************ Quality ************************/
.quality{
    background: linear-gradient(to bottom, #0F3D88, #166EB5);
    position: relative;  
}
.quality img{
    height: 350px;
}
.quality ul{
    padding: 0;
    margin: 0;
}
.quality ul li {
    font-family: "Roboto Flex", sans-serif;
    color: white;
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 20px;
}

.quality ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: url(../img/list-icon-quality.svg) no-repeat center center;
  background-size: contain;
}

/************************ News ************************/
.news-main img{
    margin-bottom: 20px;
}
.news-main h6{
    font-family: "Roboto Flex", sans-serif;
    font-size: 16px;
}
.news-main h5{
    font-weight: 400;
}
.news-main .read-more:hover{
    color: var(--primary);
}

/************************ Testimonials ************************/
.testimonials{
    background: linear-gradient(to bottom right, #0F3D88, #00A2DD);
    position: relative;
}

.testimonial-carousel{
    margin-bottom: 30px;
}
.testimonials .item{
    padding-top: 45px;
}
.testimonial1{
    padding: 70px 20px 20px 20px;
    background: white;
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
}
.testimonials img{
    height: 90px;
    width: 90px !important;
    border-radius: 50%;
    position: absolute;
    margin: 0;
    font-weight: 500;
    top: -40px;

}
.testimonial-info{
}
.testimonials h5{
    font-size: 18px;
}
.testimonials h6{
    font-size: 16px;
    font-weight: 400;
}
.testimonials p{
    /* margin: 0; */
    border-bottom: 1px solid #37373729;
    padding-bottom: 20px;
}

/************************ Warning ************************/
.warning{
    background: #CEE7F5;
}
.warning .item{
    padding: 30px;
    margin-left: 20px;
    border-radius: 5px;
}
.warning img{
    margin: 0 auto;
    height: 100px;
    width: 100px;
    border-radius: 0;
}

/************************ Certifications ************************/

.certifications{
    
}
.certifications-item{
    padding: 15px 10px;
}
.certifications1{
    background: white;
    box-shadow: 0 4px 20px rgb(0 0 0 / 6%);
    padding: 20px;
}
.certifications img{
    height: 60px;
    width: auto !important;
    margin: 0 auto;
    display: block;
}


/************************ Owl Carousel - carousel controls - All ************************/

.news-carousel .owl-dots{
    display: flex !important;
    gap: 7px;
    justify-content: center;
    margin-top: 20px;
}
.news-carousel .owl-dot span{
    background-color: var(--primary);
    opacity: 0.3;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 10px;
}
.news-carousel .owl-dot.active span{
    background-color: var(--primary);
    opacity: 1;
}
.excellence-carousel .owl-nav {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    bottom: 50%;
    position: absolute;
    right: 0;
    left: 0;
  }
  .excellence-carousel .owl-nav .owl-prev, .excellence-carousel .owl-nav .owl-next{
      background: var(--secondary);
      width: 45px;
      height: 45px;
      border-radius: 50%;
      text-align: center;
      align-items: center;
      justify-content: center;
      display: flex;
      transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
  }
  .excellence-carousel .owl-nav i {
    color: white;
  }
  .excellence-carousel .owl-nav .owl-prev:hover, .excellence-carousel .owl-nav .owl-next:hover{
      background-color: white;
  }
  .excellence-carousel .owl-nav .owl-prev:hover i, .excellence-carousel .owl-nav .owl-next:hover i{
      color: var(--secondary) !important;
  }
  .excellence .owl-nav .owl-prev {
    position: absolute;
    left: 0px;
  }
  .excellence .owl-nav .owl-next {
    position: absolute;
    right: 0px;
  }


/************************ Footer ************************/
footer {
    background: url(../img/footer-bg.jpg);
     background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 45px 0px 20px;
    position: relative;
    z-index: 99;
}

footer::before{
    background: rgba(7, 44, 103, 0.95);
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.ftr{
    z-index: 9999;
}
footer h3{
    font-size: 36px;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
    text-transform: capitalize;
}
footer h5{
    font-size: 21px;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
    text-transform: capitalize;
}
footer h6{
    color: white;
    font-weight: 500;
    margin-bottom: 0;
}
footer p{
    /* margin-bottom: 0; */
}

footer p,
footer a,
footer ul li {
    color: white;
    font-size: 15px;
    font-weight: 400;
}

footer .footer-social ul{
    margin: 0;
    gap: 10px;
}
footer .footer-social ul li a{
    background: transparent;
    border: 1px solid white;
    border-radius: 50%;
    color: white;
    /* display: inline-block; */
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;

}
footer .footer-social ul li i {
    font-size: 17px;
}
footer .footer-social ul li a:hover i{
    opacity: 0.7;
}
footer a:hover {
    color: white;
    opacity: 0.7;
}


.address {
    margin-bottom: 20px;
    align-items: baseline;
}

footer .address i{
    /* background: var(--primary); */
    /* border-radius: 5px; */
    color: white;
    /* display: inline-block; */
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 15px;
    border: 1px solid white;
    border-radius: 50%;

}

.address p,
.address a {
    padding-left: 15px;
    margin-bottom: 0px;
    font-weight: 300;
    line-height: 28px;
}

.address ul{
    align-items: center;
    display: flex;
}
.address li{
    font-size: 20px;
    margin: 0 !important;
}

footer ul {
    padding: 0px;
    margin: 0;
}

footer ul li {
    list-style: none;
    margin-bottom: 10px;
}

.copyright {
    border-top: 1px solid #C2C8CD;
}

.copyright p {
    font-size: 15px;
    padding: 0px;
}

.ipsr img {
    height: 25px;
    margin: 0;
    border-radius: 0;
}

.ipsr img:hover {
    opacity: 0.5;
}

.ipsr p,
.ipsr a {
    padding: 0px;
    margin: 0;
}

.ipsr p,
.ipsr a {
    font-size: 8px !important;
}
/************************  ************************/


