.contactUs{
    min-height: 88vh;
    width: 100%;
    background: #46e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    }
.contactUs .container{
    width: 85%;
    background: #FFFFFF;
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .contactUs .container .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
   
   
  .contactUs .msgDisplay{
    width: 40%;
    background: #FFFFFF;
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    
    

  }

  .contactUs .msgDisplay .imgDisplay{
    width: 20%;
    margin-bottom: 4%;       
            
  }

  .contactUs .msgDisplay h3{
    
    color: #0c8836;
    

  }

  
  .contactUs .container .content .left-side{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
  }
  .contactUs .content .left-side::before{
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
  }
  .contactUs .content .left-side .details{
    margin: 14px;
    text-align: center;
  }
  .contactUs .content .left-side .details i{
    font-size: 30px;
    color: #3e2093;
    margin-bottom: 10px;
  }
  .contactUs .content .left-side .details .topic{
    font-size: 18px;
    font-weight: 500;
  }
  .contactUs .content .left-side .details .text-one,
  .content .left-side .details .text-two{
    font-size: 14px;
    color: #3939f7;
  }
  .contactUs .container .content .right-side{
    width: 75%;
    margin-left: 75px;
  }
  .contactUs .content .right-side .topic-text{
    font-size: 23px;
    font-weight: 600;
    color: #3e2093;
  }
  .contactUs .right-side .input-box{
    height: 50px;
    width: 100%;
    margin: 28px 0;
    border-color: #dc3545;
  }

  .contactUs .right-side .input-box input:focus {
    outline: none;
  }

  .contactUs .right-side .input-box.error input{
    border-color: #dc3545;
  }

  .contactUs .right-side .input-box.success input{
    border-color: #28a745;
  }


  .input-box small {
    color: #dc3545;
  }

  .contactUs .right-side .input-box input,
  .right-side .input-box textarea{
    height: 100%;
    width: 100%;
    border: solid 2px #f0f0f0;
    border-radius: 3px;
    
    font-size: 16px;
    background: #F0F1F8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
  }
  .contactUs .right-side .message-box{
    min-height: 110px;
  }
  .contactUs .right-side .input-box textarea{
    padding-top: 6px;
  }
  .contactUs .right-side .button{
    display: inline-block;
    margin-top: 12px;
  }
  .contactUs .right-side .button input[type="submit"]{
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: #3e2093;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .contactUs .button input[type="submit"]:hover{
    background: #5029bc;
  }
  
  @media (max-width: 950px) {
    nav .logo{
      
      margin-left: -20px;
    
    }

    nav{
      padding: 0 0px 0 10px;
    }

    
     nav ul li a{
      color: #f2f2f2;
      text-decoration: none;
      font-size: 10px;
      font-weight: 400;

     }


    .contactUs .container{
      width: 90%;
      padding: 30px 40px 40px 35px ;
    }
    .contactUs .container .content .right-side{
     width: 75%;
     margin-left: 55px;
  }
  }
  @media (max-width: 820px) {
    .contactUs .container{
      margin: 40px 0;
      height: 100%;
    }
    .contactUs .container .content{
      flex-direction: column-reverse;
    }
    .contactUs .container .content .left-side{
     width: 100%;
     flex-direction: row;
     margin-top: 40px;
     justify-content: center;
     flex-wrap: wrap;
   }
   .contactUs .container .content .left-side::before{
     display: none;
   }
   .contactUs .container .content .right-side{
     width: 100%;
     margin-left: 0;
   }
  }