*{
    margin: 10px;
    font-family: 'Times New Roman', Times, serif;
    
   
}

body{
     background-color:#efefff;
}
.header{
      position:sticky;
      top: 0px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-left: 100px;
      padding-right: 100px;
      padding-top: 10px;
      padding-bottom: 10px;
      color: white;
      border-bottom: blue;
      border-style: solid;
      z-index: 999;
      background-color: white;
      box-shadow: 0px 0px 20px rgb(46, 46, 250);
    }
.logo{
    width: 150px;
    cursor: pointer;

}

.nav{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 25px;
    font-weight: bold;
}
.nav a{
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: 0.3s;
}
.nav :hover{
    color: red;
    transform: translateY(-10px);
}
.hbutton{
    background-color: rgb(38, 206, 239);
    border-radius: 20px;
    font-size: 20px;
    padding: 10px 20px 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-width: none;
    transition: 0.3s;
}
.hbutton:hover{
    background-color: rgb(9, 214, 255);
    color: white;
    transform: scale(0.9);
}
.container{
    display: flex;
}
.container1{
    padding-top: 50px;
    margin-left: 80px;
}
.container1 h2{
    color: #1e73be;
    font-size: 35px;
    text-decoration: none;
}
.Heading{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: red;
    font-size: 50px;
    font-style: italic;
}

.container1 p{
    padding-top: 20px;
    font-size: 20px;
    text-align: justify;
}
.container1 button {
   margin-top: 30px;
   background-color: rgb(38, 206, 239);
   padding-left: 20px;
   padding-right: 20px;
   padding-top: 10px;
   padding-bottom:10px ;
   font-size: 20px;
   font-family: 'Times New Roman', Times, serif;
   border-radius: 20px;
   transition: 0.3s;
   cursor:pointer

}
 
.container1 button:hover{
    background-color: rgb(9, 214, 255);
    color: white;
    transform: scale(0.9);
}
.img{
    padding-right: 80px;
}
.container2{
    margin-top: 30px;
   margin-left: 80px;
   color: #1e73be;
}
.container3{
    display: flex;
}
.img2 img {
    margin-right: 80px;
    padding-left: 40px;
}
.para {
     align-content: center;
     font-size: 23px; 
     text-align: justify; 
     padding-right: 80PX;   
}
.container4{
    margin-top: 10px;
    margin-bottom: 30px;
   text-align: center;
   color: #1e73be;
}
.box{
  display: flex;              
  gap: 20px;                  
  justify-content: center;  
  align-items: center;       
  padding: 20px;
  
}

.box1{
  width: 400px;
  background-color:255, 255, 255;
  height: 300px;
  border-style: solid;
  border-width: 3px;
  border-color: red;
  border-radius: 20px; 
  transition: 0.3s;
 
}
.box1:hover{
    box-shadow: 0px 0px 10px red;
    transform: scale(0.9);
    cursor: pointer;
}
.box1 i{
    
    color: red;
    font-size: 80px;
    padding :30px 170px;
    transition: 0.3s;
}
.box1 h6{
    padding: 0px 0px 0px 0px;
    font-size: 25px;
    color: red;
    padding-left: 20px;
    font-weight: 100;
}
.box1 p{
    padding: 20px 0px 0px 0px;
    font-size: 18px;
    color:black;
    padding-left: 20px;
    font-weight: 100;
    padding-bottom: 20px;
}
.box1 a{
    font-size: 18px;
    color: red;
    padding-left: 20px;
    text-decoration: none;
  
}
.box1 a:hover{
    text-decoration: underline;
}
.box1 i:hover{
  
    cursor: pointer;
    color: blue;
    transform: rotate(20deg)

}
.mvbox:{
  display: flex;               
  gap: 20px;                  
  justify-content: center;  
  align-items: center;       
  padding: 20px;   
 box-shadow: 0px 0px 10px red; 
   

}
.vbox{
  width: 400px;
  background-color:255, 255, 255;
  height: 300px;
  border-style: solid;
  border-width: 3px;
  border-color: red;
  border-radius: 20px; 
  transition: 0.3s;
 
  
}
.mvbox :hover{
    transform: translateX(50px);
    box-shadow: 0px 0px 10px red;
    border-radius: 200px;

}
    
@keyframes bounceIn {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

.animated-box {
  width: 150px;
  height: 150px;
  background-color: #e74c3c;
  animation: bounceIn 1s ease-out;
}
.conform{
    display: grid;
    grid-template-columns: 3fr 1fr;
}
.conform form{
    background-color: rgb(193, 193, 241);
    border-radius: 10px;
    padding: 40px 20px 50px 50px;
}
.conform form input{
    border: solid rgb(97, 92, 92)  2px;
    border-radius: 20px;
    padding: 10px 20px 10px 20px ;
}
.conform form textarea{
 border: solid rgb(97, 92, 92)  2px;
    border-radius: 20px;
    padding: 10px 20px 10px 20px ;

}
.conform label{
    font-size:20px;
    font-weight: bold;
}
