:root {
  --header-height: 5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(220, 68%, 54%);
  /* --first-color-lighten: hsl(220, 68%, 97%); */
  --first-color-lighten: hsl(0, 0%, 100%);
  --title-color: hsl(220, 48%, 28%);
  --title-color1: #fff;
  /* --title-color: hsl(220, 48%, 28%); */
  --text-color: hsl(220, 12%, 45%);
  --body-color: hsl(220, 100%, 99%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: 1.5rem;
  --small-font-size: 1.2rem;
  --smaller-font-size: .9 rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  /* --z-tooltip: 10; */
  --z-fixed: 1001;
}


#nav{
 position: sticky;
 top: 0;
 z-index: 1000;
}




#nav ul li .nav-link{
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--title-color);
  font-family: "Roboto Condensed", sans-serif;

}



.nav__logo{

  align-items: center;
  column-gap: 0.25rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}

.nav__logo img{
  width: 150px;
}

.mega-menu-box{
  background-color: #000d29;
}

.mega-menu-box .title{
  color:white;
  margin-top: 20px;
 font-weight: 800;
 font-size: 1.2rem;
}


.mega-menu-box .menu-img{
  background-color: white;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: relative;
  margin-left: 148px;

}

.mega-menu-box .menu-img img{
   position: absolute;
   top: 18px;
   left: 18px;
}

.mega-menu-box .menu-img-1{
  background-color: white;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: relative;
  margin-left: 218px;

}

.mega-menu-box .menu-img-1 img{
  position: absolute;
  top: 18px;
  left: 18px;
}


.mega-menu-box .menu-img-2{
background-color: white;
height: 60px;
width: 60px;
border-radius: 50%;
position: relative;
margin-left: 343px;

}

.mega-menu-box .menu-img-2 img{
position: absolute;
top: 18px;
left: 18px;
}

.animate-charcter {
  text-transform: uppercase;
  cursor: pointer;
  background-image: linear-gradient(-225deg,
      #231557 0%,
      #44107a 29%,
      #ff1361 67%,
      #fff800 100%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 5s linear infinite;
  display: inline-block;
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: 700;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.animates-charcter {
  text-transform: capitalize;
  background-image: linear-gradient(-225deg,
      /* #231557 0%,
#44107a 29%, */
      #ff1361 67%,
      #fff800 100%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 5s linear infinite;
  display: inline-block;
  /* text-transform: uppercase; */
  /* font-size: 190px; */
}

/* Dropdown code start*/

.dropdown1 {
position: relative;
display: inline-block;

}

.dropdown-content {
display: none;
position: absolute;
background-color: white;
border-radius: 5px;
min-width: 210px;
margin-left: -89px;
z-index: 1;





}

/* .dropdown1:hover .dropdown-content {
display: block;
transition: all 3s ease;

} */

/* dropdown code end*/



.navbar .megamenu{ padding: 1rem; }
/* ============ desktop view ============ */


/* ============ mobile view ============ */


@media screen and (max-width:1024px){

  .mega-menu-box .title {
    color:white;
  }

.mega-menu-box .menu-img{
  background-color: white;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-left: 85px;


}

.mega-menu-box .menu-img img{

   top: 18px;
   left: 18px;
}
 

.mega-menu-box .menu-img-1{
  background-color: white;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: relative;
  margin-left: 125px;

}

.mega-menu-box .menu-img-1 img{
  position: absolute;
  top: 18px;
  left: 18px;
}


.mega-menu-box .menu-img-2{
  background-color: white;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: relative;
  margin-left: 206px;

}

.mega-menu-box .menu-img-2 img{
  position: absolute;
  top: 18px;
  left: 18px;
}



}


@media all and (min-width: 992px) {
  
  .navbar .has-megamenu{position:static!important;}
  .navbar .megamenu{left:0; right:0; width:100%; margin-top:0px;  }

  .dropdown:hover .dropdown-menu{
      display: block!important;
      transition: all .5s ease-in-out;
  }
  
  .dropdown:focus .dropdown-menu{
      display: block!important;
      transition: all .5s ease-in-out;
  }
  
  .dropdown:hover .dropdown-menu.show{
      display: none!important;
  }
  
}	
/* ============ desktop view .end// ============ */


@media screen and (max-width:912px){

  .mega-menu-box{
    background-color: #000d29a4;
    border: none;
  }
  
  .mega-menu-box .menu-img{
      
    background-color: transparent;
    margin-left: -20px;
  }  


  .mega-menu-box .menu-img img{
    margin-top: -15px;
    color: #fff;
  }
  .mega-menu-box .title {
    color:white;
    margin-top: -58px;
    margin-left: -344px;
    font-weight: 800;
    font-size: 1.2rem;
  }


  .mega-menu-box  #slide , #slide1, #slide2, #slide3{
    margin-left: -384px;
    line-height: 40px;
  }
}


@media screen and (max-width:820px){

  .mega-menu-box{
    background-color: #000d29a4;
    border: none;
  }
  
  .mega-menu-box .menu-img{
      
    background-color: transparent;
    margin-left: -20px;
  }  


  .mega-menu-box .menu-img img{
    margin-top: -15px;
    color: #fff;
  }
  .mega-menu-box .title {
    color:white;
    margin-top: -58px;
    margin-left: -344px;
    font-weight: 800;
    font-size: 1.2rem;
  }


  .mega-menu-box  #slide , #slide1, #slide2, #slide3{
    margin-left: -384px;
    line-height: 40px;
  }

  
    .mega-menu-box #about{
      margin-left: -2px;
      font-size: 1.2rem;
      font-weight: 800;
    }
    .mega-menu-box #contact{
      margin-top: 1px;
      margin-left: -2px;
      font-size: 1.2rem;
      font-weight: 800;
    }

    .mega-menu-box .menu-img-2{
      background-color: white;
      height: 60px;
      width: 60px;
      border-radius: 50%;
      position: relative;
      margin-left: 135px;
    
    }

    .mega-menu-box .menu-img-2{
      background-color: white;
      height: 60px;
      width: 60px;
      border-radius: 50%;
      position: relative;
      margin-left: 200px;
    
    }
    
    .mega-menu-box .menu-img-2 img{
      position: absolute;
      top: 18px;
      left: 18px;
    }
    .mega-menu-box #carrers{
      margin-left: 7px;
      margin-top: 18px;
    }
    .mega-menu-box #credentials{
      margin-left: 7px;
      margin-top: 18px;
    }

    .mega-menu-box #vision{
      
      margin-left: 7px;
      margin-top:18px;
    }
}


@media screen and (max-width:712px){

  .mega-menu-box{
    background-color: #000d29a4;
    border: none;
  }
  
  .mega-menu-box .menu-img{
      
    background-color: transparent;
    margin-left: -20px;
  }  


  .mega-menu-box .menu-img img{
    margin-top: -15px;
    color: #fff;
  }
  .mega-menu-box .title {
    color:white;
    margin-top: -58px;
    margin-left: -163px;
    font-weight: 800;
    font-size: 1.2rem;
  }


  .mega-menu-box  #slide , #slide1, #slide2, #slide3{
    margin-left: -163px;
    line-height: 40px;
  }
 

  .mega-menu-box .menu-img-2{
    background-color: white;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: relative;
    margin-left: 82px;
  
  }

  
  .mega-menu-box .menu-img-1{
    background-color: white;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: relative;
    margin-left: 90px;
  
  }
  
  
    .mega-menu-box #carrers{
      margin-left: 7px;
      margin-top: 18px;
    }
    .mega-menu-box #credentials{
      margin-left: 7px;
      margin-top: 18px;
    }
  
    .mega-menu-box #vision{
      
      margin-left: 7px;
      margin-top:18px;
    }
}



@media screen and (max-width:500px){

  .mega-menu-box{
    background-color: #000d29a4;
    border: none;
  }
  
  .mega-menu-box .menu-img{
      
    background-color: transparent;
    margin-left: -20px;
  }  


  .mega-menu-box .menu-img img{
    margin-top: -15px;
    color: #fff;
  }
  .mega-menu-box .title {
    color:white;
    margin-top: -58px;
    margin-left: 17px;
    font-weight: 800;
    font-size: 1.2rem;
  }

  


  .mega-menu-box  #slide , #slide1, #slide2, #slide3{
    margin-left: 4px;
    line-height: 40px;
  }

  .mega-menu-box .menu-img-2{
    background-color: white;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: relative;
    margin-left: 59px;
  
  }

  
.mega-menu-box .menu-img-1{
  background-color: white;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: relative;
  margin-left: 60px;

}


  .mega-menu-box #carrers{
    margin-left: 7px;
    margin-top: 18px;
  }
  .mega-menu-box #credentials{
    margin-left: 7px;
    margin-top: 18px;
  }

  .mega-menu-box #vision{
    
    margin-left: 7px;
    margin-top:18px;
  }
}


@media screen and (max-width:360px){

  .mega-menu-box{
    background-color: #000d29a4;
    border: none;
  }
  
  .mega-menu-box .menu-img{
      
    background-color: transparent;
    margin-left: -20px;
  }  


  .mega-menu-box .menu-img img{
    margin-top: -15px;
    color: #fff;
  }
  .mega-menu-box .title {
    color:white;
    margin-top: -58px;
    margin-left: 11px;
    font-weight: 800;
    font-size: 1.2rem;
  }


  .mega-menu-box  #slide , #slide1, #slide2, #slide3{
    margin-left: 11px;
    line-height: 40px;
  }

  .mega-menu-box .menu-img-2{
    background-color: white;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: relative;
    margin-left: 42px;
  
  }

  .mega-menu-box .menu-img-1{
    background-color: white;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: relative;
    margin-left: 50px;
  
  }
  
  
    .mega-menu-box #carrers{
      margin-left: 7px;
      margin-top: 18px;
    }
    .mega-menu-box #credentials{
      margin-left: 7px;
      margin-top: 18px;
    }
  
    .mega-menu-box #vision{
      
      margin-left: 7px;
      margin-top:18px;
    }
}







