:root{
    --primary-color: rgb(0, 69, 255);
    --second-color:rgb(15, 15, 89);
    --third-color:rgb(240, 248, 251);
    --fourth-color: rgb(168, 78, 229);
    --fifth-color:rgb(182, 42, 242);
    --sixth-color: rgb(171, 0, 0);
    --seven-color:rgb(171, 184, 195);
    --eight-color:rgb(233, 236, 239);
    --font-pop: 'Poppins', sans-serif;
    --font-mon: 'Montserrat', sans-serif;
    --wp--style--block-gap: 24px;
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--second-color);
    --bs-tooltip-color: white;
  }


/* Custom classes */

    /* background color */

.bg-prime{
    background-color: var(--primary-color);
}

.bg-second{
    background-color: var(--second-color);
}

.bg-third{
    background-color: var(--third-color);
}

.bg-fourth{
    background-color: var(--fourth-color) 
}

.bg-fifth{
    background-color: var(--fifth-color);
}

.bg-seven{
    background-color: var(--eight-color);
}


.bg-mix{
    background-color: var(--primary-color);
}


    /* text-color */

.text-prime{
    color: var(--primary-color);
}

.text-second{
    color: var(--secondary-color);
}

.text-third{
    color: var(--third-color);
}

.text-fourth{
    color: var(--fourth-color);
}

.text-fifth{
    color: var(--fifth-color);
}

.text-seven{
    color: var(--seven-color);
}


/* border */

.border-prime{
    border: 1px solid var(--primary-color);
}


    /* font family */

.font-pop{
    font-family: var(--font-pop);
    font-weight: 400;
    font-style: normal;
}

.font-ana{
    font-family: var(--anatheim);
    font-weight: 400;
    font-style: normal;
}

.font-mon{
    font-family: var(--font-mon);
}

    
    /* font size */

.fs-huge{
    font-size: 42px;
}


.fs-7{
    font-size: 14px;
}

.fs-8{
    font-size: 12px;
}

.fs-9{
    font-size: 10px;
}

.fs-10{
    font-size: 18px;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    overflow-x: hidden;
}


/* 320 px */

.mode-change{
    background-color: var(--second-color) !important;
    color: white !important;
}

.bg-secondarylight{
    background-color: rgb(100, 100, 100) !important;
}


.hero-text{
    position: absolute;
    color: var(--second-color);
    top: 50%;
    z-index: 10;
    transform: translate(0px, -50%);
    max-width: 1000px;
    left: 10%;
    text-align: center;
}

nav{
    position: relative;
    top: 0px;
    z-index: 15;
    width: 100%;
    padding: 10px 10px;
}

nav img{
    width: 140px;
}

.nav-logo{
    width: 140px;
}

#privateLogo{
    width: 120px;
}

nav ul{
    width: 100%;
}

nav ul li, .offcanvas ul li{
    list-style-type: none;
}

nav ul li a{
    text-decoration: none;
    color: white;
}

nav li a:hover{
    color: var(--primary-color) !important;
    border-top: solid 3px var(--primary-color);
    border-bottom: solid 3px var(--primary-color);
    padding-bottom: 10px;
    padding-top: 10px;
    transition-duration: 0.5s;
}

nav ul li span:hover{
    color: var(--primary-color) !important;
}

.dropdown-item{
    border-top: solid 0px var(--primary-color) !important;
    border-bottom: solid 0px var(--primary-color) !important; 
    padding-bottom: 5px !important;
    padding-top: 5px !important;   
}

.dropdown-item:hover{
    background-color: var(--primary-color);
    color: white !important;
    border-top: solid 0px var(--primary-color) !important;
    border-bottom: solid 0px var(--primary-color) !important; 
    padding-bottom: 5px !important;
    padding-top: 5px !important;
}


.dropdown-menu{
    min-width: 250px;
}

.dropdown-menu{
    display: none;
}

nav ul li span:hover ~ .dropdown-menu{
    display: inline-block;
    color:white !important;
    
}

nav .dropdown ul:hover{
    display: inline-block;
    color:white !important;
    
}

#navbar span{
    color: white;
}

.mode{
    width: 25px;
    height: 25px;
    cursor: pointer;
}

#logout{
    cursor: pointer;
    color: white;
}

.hero{
    position: relative;
}

.home-hero-img{
    width: 100%;
    height: 400px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.hero-text{
    position: absolute;
    color: var(--second-color);
    top: 50%;
    z-index: 10;
    transform: translate(0px, -50%);
    max-width: 1000px;
    left: 0%;
    text-align: center;
}

.hero-text h1{
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
}

.hero-text p{
    max-width: 800px;
    margin: 20px auto 60px;
    font-size: 16px;
    color: #ccc;
}

.demo-btn{
    background-color: var(--second-color);
    color: white;
    padding: 5px 25px;
    font-size: 14px;
    border-radius: 8px;
    display: inline-block;
    line-height: 40px;
    transform: scale(0.9);
    transition: 0.5s;
}

.call-btn{
    background-color: rgb(246, 246, 246);
    color: black;
    padding: 5px 25px;
    font-size: 16px;
    border-radius: 8px;
    display: inline-block;
    line-height: 40px;
    transform: scale(0.9);
    transition: 0.5s;
}

.demo-btn:hover{
    color: white;
    transform: scale(1);
}

.call-btn:hover{
    color: black;
    transform: scale(1);
}

.btn-pill{
    text-decoration: none;
    background-color: var(--second-color);
    color: white;
    padding: 10px 15px;
}

.btn-pill:hover{
    background-color: var(--primary-color);
    color: white;
}

.all-img{
    border-radius: 20px;
}

.blog-img{
    transform: scale(1.2);
    transition: 0.5s;
    margin-bottom: 20px;
}

.all-blog-img img{
    transform: scale(1.2);
    transition: 0.5s;
    margin-bottom: 20px;
}

.card-flush{
    overflow: hidden;
}

.blog-img:hover{
    transform: scale(1.1);
}

.all-blog-img img:hover{
    transform: scale(1.1);
}

nav.scrolled{
    background-color: var(--third-color);
    color: transparent;
    position: fixed;
    top:0px;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 8px gray;
}

.color{
    color: black;
    transition: 0.1s ease-in-out;
}

.small-text{
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 700;
}

.about::after{
    content: "";
    height: 50px;
    width: 200px;
    color: var(--primary-color);
}

.iso-img{
    width: 100%;
}

.check{
    width: 20px;
}

.mix-btn{
    text-decoration: none;
    color: white;
    font-size: 22px;
    background: linear-gradient(to right, rgba(182, 42, 242,1), rgba(0, 69, 255,1));
    padding: 10px 20px;
    border-radius: 5px;
}

.mix-btn:hover{
    background: linear-gradient(to left, rgba(182, 42, 242,1), rgba(0, 69, 255,1));
    color: white;
}

.foot ul li{
    list-style: none;
}

.foot ul li a{
    color: gray;
}

.foot ul li a:hover{
    color: var(--primary-color);
}

/* #count{
    position: relative;
    top: -100px;
} */

.search{
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 50;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 18px;
    border-radius: 50%;
    text-align: center;
}

.about-hero-img{
    background: url("../assets/images/about/banner-bg-img.jpg");
    width: 100%;
    height: 600px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.aboutHero{
    position: relative;
}

.about-hero-text{
    position: absolute;
    color: white;
    top: 28%;
}

.blog-hero-img{
    background: url("../assets/images/about/banner-bg-img.jpg");
    width: 100%;
    height: 1100px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.blog-hero-text{
    position: absolute;
    color: white;
    top: 10%;
}

.blog-form{
    position: absolute;
    top: 40%;
    right: 0.1%;
}

.blog-hero-text h1{
    font-size: 35px;
    font-weight: 500;
}

.blog-hero-text p{
    font-size: 22px;
}


.about-hero-text h1{
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
}

.about-hero-text p{
    font-size: 20px;
}

.contact-hero-img{
    background: url("../assets/images/about/banner-bg-img.jpg");
    width: 100%;
    height: 500px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.cont a:hover{
    color: black;
}

.ez-toc-icon-toggle-span{
    cursor: pointer;
}

#toggle-content div a{
    text-decoration: none;
    color: rgb(63, 142, 194);
}

#toggle-content div a:hover{
    text-decoration: underline;
    color: rgb(38, 103, 147);
}

ul li{
    list-style: none;
}

a{
    text-decoration: none;
}

.service-effect, .service-effectt{
    position: relative;
    z-index: 1;
}

.service-effect div, .service-effectt div{
    background-color: white;
    color: black;
    text-align: center;
    overflow: hidden;
    transition: 0.4s;
}

.service-effect div::before, .service-effectt div::before{
    content: "";
    background-color: var(--primary-color);
    height:40px;
    width: 40px;
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 90%;
    z-index: -1;
}

.service-effect div:hover, .service-effectt div:hover{
    background-color: transparent;
    color: white;
    position: relative;
    z-index: 1;
}

.service-effect div:hover::before{
    height: 800px;
    width: 800px;
    transition: 0.8s;
}

.service-effectt div:hover::before{
    height: 1200px;
    width: 1200px;
    z-index: -1;
}

#showhide, #showhideform{
    cursor: pointer;
}

/* 480 px */


@media only screen and (min-width:480px){

    .blog-form{
        right: 2.5%;
        min-width: 95%;
    }


}

/* 576 px */

@media only screen and (min-width:576px){

    .mix-btn{
        padding: 15px 100px;
    }

    
    .blog-form{
        min-width: 95%;
    }

}



/* 768 px */

@media only screen and (min-width:768px){

    .mix-btn{
        padding: 15px 200px;
    }

    .blog-hero-text{
        top: 10%;
    }
    
    .blog-form{
        position: absolute;
        top: 40%;
        right: 2%;
    }
    
    .blog-hero-text h1{
        font-size: 70px;
        font-weight: 500;
    }
    
    .blog-hero-text p{
        font-size: 30px;
    }

    .service-effect {
        min-height: unset;
      }

}


/* 992 px */

@media only screen and (min-width:992px){

    #hero-video {
        width: 100%;
    }

    #hero-video {
        position: relative;
        max-height: 700px;
        overflow: hidden;
    }

    .hero{
        position: relative;
    }
    
    .hero-text{
        position: absolute;
        color: var(--second-color);
        top: 55%;
        z-index: 10;
        transform: translate(0px, -50%);
        max-width: 800px;
        left: 6.5%;
        text-align: left;
    }
    
    .hero-text h1{
        font-size: 55px;
        font-weight: 600;
        line-height: 1.2;
    }
    
    .hero-text p{
        max-width: 800px;
        margin: 20px 0px 20px 0px;
        font-size: 16px;
        color: #ccc;
    }
    
    .demo-btn{
        background-color: var(--second-color);
        color: white;
        padding: 5px 25px;
        font-size: 14px;
        border-radius: 8px;
        display: inline-block;
        line-height: 40px;
        transform: scale(0.9);
        transition: 0.5s;
    }
    
    .call-btn{
        background-color: white;
        color: black;
        padding: 5px 25px;
        font-size: 16px;
        border-radius: 8px;
        display: inline-block;
        line-height: 40px;
        transform: scale(0.9);
        transition: 0.5s;
    }
    
    .demo-btn:hover{
        color: white;
        transform: scale(1);
    }
    
    .call-btn:hover{
        color: black;
        transform: scale(1);
    }

    nav{
        position: relative;
        top: 0px;
        z-index: 15;
        width: 100%;
        padding: 0px 80px;
    }
    
    nav img{
        width: 200px;
    }
    
    nav ul{
        width: 100%;
    }
    
    nav ul li{
        list-style-type: none;
    }
    
    nav ul li a{
        text-decoration: none;
        color: var(--second-color);
    }
    
    nav li a:hover{
        color: var(--primary-color);
    }

    nav ul li span{
        color: var(--second-color);
    }
    
    nav ul li span:hover{
        color: var(--primary-color) !important;
    }
    
    .dropdown-item:hover{
        background-color: var(--primary-color);
        color: white;
    }
    
    
    .dropdown-menu{
        min-width: 250px;
    }
    
    .dropdown-menu{
        display: none;
    }
    
    nav ul li span:hover ~ .dropdown-menu{
        display: inline-block;
    }

    .mix-btn{
        padding: 15px 300px;
    }
    
    .about-hero-text{
        top: 20%;
    }
    
    .about-hero-text h1{
        font-size: 70px;
        font-weight: 500;
        max-width: 60%;
    }
    
    .about-hero-text p{
        margin-top: 20px;
        font-size: 40px;
        max-width: 60%;
    }
    
    .contact-hero-text p{
        margin-top: 20px;
        font-size: 50px;
        max-width: 100%;
    }
    
    .blog-hero-img{
        height: 800px;
    }
    
    .blog-hero-text{
        position: absolute;
        color: white;
        top: 18%;
    }
    
    .blog-form{
        position: absolute;
        top: 20%;
        right: 5%;
        min-width: 5%;
    }
    
    .blog-hero-text h1{
        font-size: 70px;
        font-weight: 500;
    }
    
    .blog-hero-text p{
        font-size: 40px;
    }
    
    .card-title{
        font-size: 18px;
    }
    

}


/* 1200 px */

@media only screen and (min-width:1200px){
    
    .home-hero-img{
        width: 100%;
        height: 500px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .hero-text{
        position: absolute;
        color: var(--second-color);
        top: 50%;
        z-index: 10;
        transform: translate(0px, -50%);
        max-width: 800px;
        left: 6%;
        text-align: left;
    }

}