@keyframes bubble{
    0%{
        transform: translateY(0);
        opacity: 0;
    }

    25%{
        opacity: 1;
    }

    70%{
        opacity: 1;
    }

    100%{
        transform: translateY(-80vh);
        opacity: 0;
    }
}
.container{
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (max-width:772px){
    .container{
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .blog-single-content{
        padding-bottom: 20px !important;
    }
}

.page-page{
    padding-top: 50px !important;
}


.sub-bnr{
    min-height: 150px !important;
    max-height: 150px !important;
    height: 150px !important;
    background-color: #57c5e8;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.sub-bnr h1{
    color: #FFF !important;
}

.bubbles{
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: -70px;
}

.bubbles img{
    width: 30px;
    animation: bubble 7s linear infinite;
}

.bubbles img:nth-child(1){
    animation-delay: 2s;
    width: 25px;
}

.bubbles img:nth-child(2){
    animation-delay: 1s;
}

.bubbles img:nth-child(3){
    animation-delay: 3s;
    width: 25px;
}

.bubbles img:nth-child(4){
    animation-delay: 4.5s;
}

.bubbles img:nth-child(5){
    animation-delay: 2s;
}

.bubbles img:nth-child(6){
    animation-delay: 6s;
    width: 20px;
}

.bubbles img:nth-child(7){
    animation-delay: 7s;
    width: 35px;
}

header{
    background: none !important;
}

header.single{
    border-bottom: 1px solid lightgray;
}

header .logo{
    float: none !important;
}

header .logo img{
    width: 110px;
}

.logo-nav-container{
    position: relative;
    display: grid;
    grid-template-columns: 200px auto;
    align-items: center;
}

.close-nav{
    font-weight: bold;
    cursor: pointer;
    text-align: left;
    margin-left: 20px;
    font-size: 30px;
}

.d-navbar ul{
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    align-items: center;
}

.d-navbar ul li{
    list-style: none;
}

.d-navbar ul li a{
    font-weight: bold;
    text-transform: uppercase;
}

.d-navbar ul li.active a, .d-navbar ul li:hover a{
    color: #00b9e2;
}

.close-nav{
    display: none;
    text-align: center;
}

.mobile-menu-icon{
    display: none;
    text-align: center;
    cursor: pointer;
}

.mobile-menu-icon span{
    display: block;
    margin: 5px auto;
    width: 40px;
    background-color: #000;
    height: 3px;
}

@media (max-width: 800px) {
    .mobile-menu-icon, .close-nav{
        display: block;
    }

    .logo-nav-container{
        grid-template-columns: 1fr;
        position: relative;
    }

    .d-navbar{
        text-align: center;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(255, 255, 255, 1);
        width: 100%;
        height: 100vh;
        z-index: 9999999;
        display: none;
    }

    .d-navbar ul{
        justify-content: center;
        text-align: center;
        display: block;
    }

    .d-navbar ul li{
        margin: 20px 0 20px 20px;
    }
}

@media (max-width: 767px) {
    header {
        text-align: center;
      padding-bottom: 20px !important;
    }

    header .logo{
        text-align: center !important;
    }
}

.rights.style-2{
    background-color: #57c5e8;
    /*
    background-image: url(../imgs/banner-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    */
    color:#FFF;
    padding: 30px 0;
}

.rights.style-2 p{
    color:#FFF;
}

.slides li{
    background-color: #00b9e2 !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}

.home-slide-container{
    height: 560px;
}

.home-slide-data{
    height: 560px;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    justify-content: center !important;
    align-items: center !important;
}

.home-slide-img{
    
}

.home-slide-text{
    color: #FFF !important;
    
}

.home-slide-text h1 {
    margin-bottom: 10px !important;
    font-size: 40px !important;
    color: #FFF !important;
}

.home-slide-text h5{
    color: #FFF !important;
    margin-bottom: 10px;
}

@media (max-width:800px){
    .home-slide-data{
        display: block !important;
    }

    .home-slide-text h1 {
        font-size: 20px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .home-slide-text h5 {
        font-size: 17px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

.flex-direction-nav .flex-next,
.flex-direction-nav .flex-prev {
    color: #FFF !important;
    background-color: #FFF !important;
    display: grid;
    justify-content: center;
    align-items: center;
  }


.flex-control-paging li a {
    background: #000 !important;
}

.flex-control-paging li a.flex-active {
    background: #FFF !important;
}

.products{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:25px;
    justify-content: center;
    align-items: center;
}

@media (max-width:1000px){
    .products{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:500px){
    .products{
        grid-template-columns: repeat(1, 1fr);
    }
}

.product{
    text-align: center;
    box-shadow: 2px 2px 5px lightgrey;
    transition: box-shadow 0.3s ease; /* Smooth transition */
    padding: 25px;
}

.product:hover {
    box-shadow: 4px 4px 10px grey; /* Shadow changes on hover */
}

section h1{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media (max-width:800px){
    section h1{
        font-size: 30px !important;
    }
}



.products-page h3{
    text-align: center;
    margin: 50px 0;
}

.margin-top-10{
    margin-top: 10px !important;
}

.nf-form-title, .nf-before-form-content{
    display: none !important;
    visibility: hidden !important;
}

.form{
    margin-top: 30px;
}

.form input, .form textarea{
    border:1px solid #CCC;
    padding: 10px 3%;
    width: 100%;
    margin-bottom: 10px;
}

.form textarea{
    height: 200px;
}