@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&family=Rowdies:wght@300&display=swap');

  @import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100&display=swap');





:root {
    --kain-color:linear-gradient(to right, rgba(0, 89, 255, 0.856),#0c77f2b0,#4097fa );
}

* {
    padding: 0;
    margin: 0;

}


body {
    background-color: #ffffff40;
    font-family: 'Fira Sans', sans-serif;
    
}

.navbar {
    display: flex;
    overflow: hidden;
    margin: -44.8vw 0 45vw 0;
    transition: 0.3s;
    position: fixed;
    width: 100vw;
    
    z-index: 1;

}




.logo img {
    width: 75px;
    margin: 2px 0 0 8vw;
    cursor: pointer;
}

.lists {
    display: flex;
    text-decoration: none;
   
    margin-left: 40px;
    
   
}

.lists li {
    list-style: none;
    font-size: 1em;
    font-family: 'Quicksand', sans-ser;
    transform: scale(1);
    transition: all 0.1s ease-in-out 0.1s;
    padding: 25px 0.5vw 0 0.5vw;
    border-bottom:1px solid rgb(190, 240, 255) ;
    margin: 0 10px;
    cursor: pointer;
}
.lists .active{
  border-bottom:1px solid rgb(255, 217, 0) ;
}
.active a{
  color: rgb(255, 217, 0) ;
 
}
.lists li a {
    text-decoration: none;
    color: white;
  
      
}

.lists li:hover:not(.active) {

  transform: scale(1.03);
  transition: all 0.1s ease-in-out 0.1s;
  border-bottom:4px solid rgb(229, 255, 0) ;

  animation: borderb 1s ease-in ;

}




#content {
    position: absolute;
       margin-left: 30vw;
    margin-top: 41px;
 
    transform: translate(-22%, -30%);
  }
  
  #content.on {
    -webkit-animation-name: in-out;
    animation-name: in-out;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
  
  .inpu {
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: Roboto;
    outline: 0;
    -webkit-transition: width 0.4s ease-in-out, border-radius 0.8s ease-in-out,
      padding 0.2s;
    transition: width 0.4s ease-in-out, border-radius 0.8s ease-in-out,
      padding 0.2s;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
  }
  
  .search {
    background: none;
    position: absolute;
    top: 0px;
    left: 0;
    height: 50px;
    width: 33px;
    padding: 0;
    border-radius: 100%;
    outline: 0;
    border: 0;
    color: inherit;
    cursor: pointer;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
  }
  
  .search:before {
    content: "";
    position: absolute;
height: 5px;
width: 11px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 11px;
    margin-left: 10px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  
  .close {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }
  
  .close:before {
    content: "";
    position: absolute;
    width: 27px;
    height: 4px;
    margin-top: -1px;
    margin-left: -13px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  
  .close:after {
    content: "";
    position: absolute;
    width: 27px;
    height: 4px;
    background-color: #fff;
    margin-top: -1px;
    margin-left: -13px;
    cursor: pointer;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  .square {
    box-sizing: border-box;
    padding: 0 40px 0 10px;
    width: 300px;
    height: 3vw;
    border: 4px solid #ffffff;
    border-radius: 0;
    background: none;
    color: #fff;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    outline: 0;
    -webkit-transition: width 0.4s ease-in-out, border-radius 0.4s ease-in-out,
      padding 0.2s;
    transition: width 0.4s ease-in-out, border-radius 0.4s ease-in-out,
      padding 0.2s;
    -webkit-transition-delay: 0.4s, 0s, 0.4s;
    transition-delay: 0.4s, 0s, 0.4s;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
  }
  

.slider {
    width: 100%;
    height: 44.9vw;
    overflow: hidden;
    background-image: linear-gradient( rgb(0,0,0,0.9), transparent ),url(../image/front-head.jpg);
   background-size: cover;
   background-repeat: no-repeat;
   position: relative;
  }
  canvas{position: absolute;}
  .laptop{
    margin: -600px 0px 0px 14vw;
    width: 50vw;
    z-index: 0;
    position: relative;
}
canvas{

  position: absolute;
}

section{position: relative;}
.cards{position: relative;}
.front-heading {
    margin: -35vw 0vw 10vw 69vw;
    position: absolute;
    font-size: 5vw;
    color: aliceblue;
    font-family: 'Rowdies', cursive;
}
.responsive-heading{
display: none;
}

.starterbtns {
    margin: -9vw 0vw 10vw 69vw;
    position: absolute;
}

.starterbtns button {
    padding: 1.2vw 3vw;
    border: transparent;
    border-radius: 3px;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.1s ease-in-out 0.1s;

}

.starterbtns button:hover:not(.active) {

  transform: scale(1.05);
  transition: all 0.1s ease-in-out 0.1s;
color: rgb(255, 236, 211);

box-shadow: 10px 5px 5px rgb(26, 24, 24);
}

.Lbtn {
    background-color: rgb(147, 150, 150);
    color: white;

}

.Rbtn {
    background-color: rgba(36, 132, 241, 0.829);
    color: aliceblue;
    margin-left: 0.3vw;
}

/*section*/
.s-all{
    width: 40vw;
}
.res-p{
text-align: center;
text-justify: center;
}


footer {
  background-image: var(--kain-color);
   
    display: flex;
    padding: 1vw;
overflow: hidden;

}

.portion1 {
    padding: 0 4vw;
    color: white;
    width: 23vw;

}

.portion2 {
    margin-top: 6vw;
    color: white;
    width: 28vw;
    margin-left: 10vw;
    transform: scale(1);
    transition: all 0.1s ease-in-out 0.1s;

}

.portion3 {
   
    color: white;
    width: 23vw;
    margin-top: 6vw;
    transform: scale(1);
    transition: all 0.1s ease-in-out 0.1s;
}
.pall ul li:hover {
color: rgb(255, 250, 250);
  transform: scale(1.02);
  transition: all 0.1s ease-in-out 0.1s;

}

.portion1 img {
    width: 25vw;
}
.pall ul li{
  padding: 1vw 0;
}

.pall ul a{
  text-decoration: none;
  list-style: none;

  color: white;
}

.text1 {
    padding: 0 1vw;
}

.blue{
background-image: var(--kain-color);
}
  .blue.navbar ul li a{
      color: #fff;
  }
  .blue.navbar ul li:hover {
    background-color: rgb(0, 82, 165);
    color: rgb(255, 255, 255);
    font-weight: bolder;
   
  }
  
  
  .linklogo{
    list-style: none;
     margin-left: auto;
  }




.leftp{
  margin-left: 18vw;
  width: 25vw;
  height: 290px;
}

.rightp{
 margin-left: 6vw;
 width: 30vw;
}
.changeleft{
 animation: runleft 2s ease-in-out;
 
}

.changeright{
  animation: runright 2s ease-in-out;
  
 }
.introslider{
  padding: 4vw 0;
  overflow-x: hidden;
  
  
}

.container{
  height: 30vw;
  padding: 5vw 15vw;
  background-color: rgb(255, 203, 203);
  color: #fff;
}
.cards{
  columns: 3;
   
}
.card img{
  width: 20vw;
  height: 150px;
 
 cursor: pointer;
  transition: all 0.1s ease-in-out 0.1s;
border: 5px solid rgb(255, 255, 255) ;
}


.card img:hover:not(.active) {

  transform: scale(1.05);
  transition: all 0.3s ease-in-out 0s;
color: rgb(255, 236, 211);

box-shadow: 10px 5px 5px rgb(26, 24, 24);
}







  @keyframes runleft {
    0% { margin-left: 230vw;}
    100%{ margin-left: 6vw;}
  }

  @keyframes runright {
    0% { margin-left: -80vw;}
    100%{ margin-left: 18vw;}
  }
  