.contact {
    background:#fff;
  }
  .contact h1 {
    font-weight: bold;
    animation: fromTop 1s linear;
    font-size: 35px;
  }
  .contact h3 {
    font-size: 17px;
  color: rgba(0, 0, 0, 0.455);
  text-align: center;
    
  }
  .contact .row {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    flex-direction: row;
  
   
  }
  
  .contact .image img {
   display: block;
   margin: 10px auto;
    max-width: 240px;
    border-radius: 50px;
    
    margin-bottom: 25px; 
  
  }
  
  .contact .row .form-container {
    width: 30%;
    text-align: center;
  }
  
  .contact .row .form-container input,
  textarea {
    height: 4rem;
    width: 450px;
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 2rem 1rem;
    margin: 1rem 0;
    color: black;
    font-size: 1.9rem;
    transition: 0.2s linear;
    border: 3px solid black;
  
  }
  
  .contact .row .form-container textarea {
    height: 20rem;
    border-radius: 1rem;
    resize: none;
  }
  
  .contact .row .form-container input[type="submit"] {
    width: 450px;
    background: var(--blue);
    color: #fff;
    cursor: pointer;
    font-size: 2.2rem;
    transition: 1.1s;
    border: 3px solid black;
    margin-bottom: 25px;
    padding-top: 0px;
  }
  
  .contact .row .form-container input[type="submit"]:hover {
    background: red;
    border: 0.2rem solid var(--red);
    
  }
  
  .contact .icons {
    padding: 0.5rem 0;
    text-align: center;
    animation: fromTop 1s linear;
  }
    
  .contact .icons a{
    padding-left: 10px;
   
  }
  
  .contact .icons img{
    max-width: 50px;
    border-radius: 50%;
    padding-left: 8px;
  }
  
  .contact .icons img:hover 
  {transition: transform 0.5s;
  transform: scale(1.1);}
 


  @media (max-width: 1300px) {
    
    .contact .row {
      flex-direction: column;
      align-items: center;
      width: 550px;
      margin: auto;
    }
    .contact .row .form-container {
      width: 80%;
      padding-top: 0;
      padding-right: 0;
    }

    .contact .title  {
      margin-bottom: 0;
    }

    .contact .row .image img:hover{
        transition: transform 1s;
        transform: scale(1);
      }
      .contact .icons img:hover 
      {transition: transform 0.5s;
      transform: scale(1);}

      .contact .row .image{
           
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0;
        padding-top: 0;
        
      }
    .contact .row .image img {
            height: 300px;
            width: 300px;
            margin-top: 0;
            margin-right: 0;
            margin-bottom: 10px;
          }
    }

    @media (max-width: 950px) { 
          
        
          .contact .icons {
            padding: 12px;
            
          }
          .contact .icons a {
            padding: 5px;
          }
            
    }
    @media (max-width: 600px) { 
          
        
      .contact .row {
        
        width: 100%;
        
      }

      .contact .row .form-container input,
      textarea {
        width: 250px;
      }
      .contact .row .form-container input[type="submit"]{
        width: 250px;
      } 
}
    @media (max-width: 370px) { 
      .contact .image img{
        
        width: 185px;
      } 
      .contact .icons img{
        width: 50px;
      }
      .contact h1{
        font-size: 25px;
      }
      .contact h3{
        font-size: 15px;
      }
}
@keyframes fromTop{
  0%{
    opacity: 0;
    transform: translateY(-50px);
}

  100%{
    opacity: 1;
    transform: translateY(0px);
}
}

@keyframes fromLeft{
  0%{
    opacity: 0;
    transform: translateX(-50px);
}

  100%{
    opacity: 1;
    transform: translateX(0px);
}

}

   