body{
    font-family: "Poppins", sans-serif;
}

:root {
    --primary: #338aa8;
    --secondary: #F65005;
    --dark: #111111;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 36px;
    bottom: 60px;
    z-index: 99;
}

a,.footer a{
    text-decoration: none;
}

.link {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color */
}

.link:hover {
    color: #00ecff; /* Inherit color */
}

.info-card{
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    border: 1px solid #6b8391;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -ms-transform: scale(0);
  transform: scale(0);
  transition: .6s ease;
  }

  .info-card:hover .overlay {
    /* -webkit-transform: scale(1); */
    -ms-transform: scale(1);
    transform: scale(1);
    
  }

  .text {
    color: #00111b;
    /* font-size: 20px; */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 30px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0ss;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    background-color: var(--primary);

}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
    background-color: #66c6d6;
}
.back-to-top{
    width: 50px !important;
    height: 50px !important;
}
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.navbar-toggler{
    border: 2px solid #66c6d6;
}

.navbar{
    background-color: #00111b;
    box-shadow: 0px 6px 6px rgba(12, 3, 3, 0.36);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: #ecf1f3;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #71e7fd;
    
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        /* margin-top: 10px; */
        border-top: 1px solid rgba(0, 0, 0, .07);
        /* background: #FFFFFF; */
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
        background-color:#00111b;
        box-shadow: 0px 0px 9px rgba(76, 112, 130, 0.3);
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.dropdown-item{
    color: #FFFFFF;
    transition: .5s;
   
}

.dropdown-item:hover{
    color: #71e7fd;
    background-color:#00111b;
}


/*** Header ***/

@keyframes kenburns {
    0% {
      transform: scale(1);
      transition: transform ease-in 10000ms;
    }
    100% {
      transform: scale(1.1);
      transition: transform ease-in 10000ms;
    }
  }
  
  .kb-carousel .carousel-item.active {
    transition: transform .3s ease-in 0s, opacity ease-in .3s;
  }
  .kb-carousel > .carousel-inner > .carousel-item > img {
    height: 83vh;
    animation: kenburns 10000ms infinite alternate;
  }
 
  
.carousel-caption {
    top: -90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bolder;
    z-index: 1;
   /* left: 30; */
}

.carousel-caption h1{
    color: #00111b;
    text-shadow:  0 0 3px #71e7fd;
    font-weight: 600;
}

/*.carousel-control-prev,*/
/*.carousel-control-next {*/
/*    width: 12%;*/
/*}*/


/*.carousel-item.slider img{*/
/*    width: 100%;*/
/*    height: 86%;*/
    /*object-fit: cover;*/
/* } */

/*@media (max-width: 768px) {*/
/*  .carousel-item.slider img {*/
/*  width: 100%;*/
/*  height:60vh;*/
/*}*/
/* } */

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/carousel-2.jpg) top right no-repeat;
    background-size: cover;
}



/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}



/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
}


/*** Product ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.product-item:hover {
    box-shadow: 0 0 18px #00111b;
    border-radius: 6px;
}

.product-item {
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
    transition: .5s;
    border-radius: 6px;
    height: 300PX;
}

.product-item img {
    transition: .5s;
    border-radius:9px 9px 0 0;
    height: 76%;
    
}

.product-item:hover img {
    transform: scale(1.1);
}

.crtfct-itm{
    margin: 12px 0;
    /*height: 300px;*/
    /*box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);*/
}

.crtfct-itm img{
   width: 230px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
/* Certificates */

.owl-item img {
    border: 1px solid #c9cbcf;
}


.owl-carousel .owl-nav {
    display: flex;
    justify-content: space-between
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #00ecff;
}


/*** Footer ***/
.footer {
    
    color: #000;
    background-color:#8fbef7;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #000;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    background-color: transparent;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}