*{
    margin: 0px;
    padding: 0px;
}
body{
   font-family: 'Times New Roman', Times, serif;
   color:  #444444;
}
top{
    display: flex;
    justify-content: space-around;
    background-color: white;
    width: 100%;
    height: 20px;
}
nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
 
    background-color: #1781be;
    color: #444444;

    top: 0;
    width: 100%;
}
ul{
    display: flex;
}
ul li{
    list-style: none;
}
ul li a{
    text-decoration: none;
    font-size: 20px;
    margin-inline: 16px;
    color: #444444;
}
ul li a:hover{
    color: black;
    border-bottom: 2px solid black;
}
.main{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    margin-top: 55px;
    height: 410px;
    color:#444444;
   
}
.mainText h1{
    margin-top: 55px;
}
.footer{
    height: auto;
    display: flex;    
    justify-content: space-around;  
   margin-top: 20px;
    background-color: #3fbbc0;
    color: #444444;
}
.text1 p a{
    text-decoration: none;
    color: #444444;
}
.text1 p a:hover{
    color: black;
    border-bottom: 2px solid black;
}

.About{
    display: flex;
    justify-content: center;
  align-items: center;
  
}
.About .card{
    width: 100%;
    height: 420px;
    background-color: white;
    border-radius: 10px;
   text-align: center;
 
  margin-inline: 5px;  
}
.flex{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  margin-left: 10px;
}
.flex .department{
    width: 300px;
    height: 200px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(6, 7, 7, 0.5);
    padding: 20px 0 30px 0;     
     margin: 10px;
     margin-left: 10px;
}
.department p{
    margin-left: 10px;
    padding: 10px;
}
.department img{
  
    border-radius: 50%;
    border: 2px solid #3fbbc0;
    margin-left: 40%;
    width: 60px;
    height: 60px;
}
.card p{
    margin-top: 20px;
    margin-left: 20px;
}
.head{
    text-align: center;
    padding: 20px;
    text-decoration: underline 2px solid rgb(231, 20, 4);
   
}

.text-block {
    position: absolute;
    top: 20px;
    right: 20px;    
    color: black;
    padding-left: 20px;
    padding-right: 20px;
  }
  .logo a{
    text-decoration: none;
    color: white;
  }
  .contact{
    display: flex;
   justify-content: center;
   padding: 20px;
   
  }
  .contact .card{
    
    width: 100%;
    height: 400px;
    background-color: white;
    border-radius: 5px;
    margin-inline: 10px;
    box-shadow: 0 0 20px rgba(6, 7, 7, 0.5);
    padding: 20px 0 30px 0;
    text-align: center;
   
}
.contact .card .card1{
 width: 98%;
    height: 250px;
    background-color: rgb(247, 247, 247);
    border-radius: 5px;
    margin-top: 5px;
    margin-left: 5px;
   align-items: center;
  
}
.contact .card .card2{
    width: 98%;
    height: 150px;
    background-color: white;
    border-radius: 5px;
    margin-top: 5px;
    margin-left: 5px;
    margin-inline: 10px;    
    display: flex;
    
}
.contact .card .card3{
    width: 50%;
    height: 150px;
    background-color: rgb(247, 247, 247);
    border-radius: 5px;
    margin-top: 5px;
    margin-left: 5px;
    margin-inline: 10px;    
   
}
.contact .card .card4{
    width: 98%;
       height: 400px;
       background-color: rgb(247, 247, 247);
       border-radius: 5px;
       margin-top: 5px;
       margin-left: 5px;
      
     
   }
.contact.card p{
    margin-top: 20px;
    margin-left: 20px;
    color: white;
}
.hidden{
opacity: 0;
filter: blur(5px);
transform: translateX(-100%);
transition: all 2s;
}
.show{
opacity: 1;
filter: blur(0);
transform: translateX(0);
}