
:root {
    --primary-color: #EF0000;
    --orange: #ED6C31;
    --Green: #65BC7A;
    --black: #484848;
    --bg1: #F5F7F9;
    --bg2: #F5F5F5;
    --bg3: #EFEFEF;
    --bg4: #FDFDFD;
    --bg5: #F7F7F7;
    --bg6: #F3F3F3;
    --title: #333333;
    --blue: #F5FCFF;
    --Light_green: #E6F4F4;
  }
  /* For the hero image */
  
  .background-image {
    position: relative;
    background: url('./images/contact_us/hero1.png') no-repeat center center;
    background-size: contain;
    height: 50vh;
    color: white;
    width:98.7vw;
    margin-left: -15px;
}


/* End of the hero image */

.img1{
    width:550px !important;
    height:400px !important;
}

 /* animation starts */

 @keyframes appear {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.zoom {
  animation: appear 5s linear;
  animation-timeline: view();
  animation-range: entry 0% cover 33%;
}
/* animation end */

    /* Mobile view responsive starts */

    @media (min-width:320px) and (max-width:480px){
      p{
        text-align: justify;
        font-size: 16px !important;
      }
      h2{
        font-size: 22px !important;
      }
      .background-image{
        height: 210px !important;
        width: 410px !important;
      }
      .content{
        margin-top: -40px !important;
      }
      .img1{
        height:260px !important;
        width: 370px !important;
        margin-top: 30px;
      }
  }
    
    /* Mobile view responsive end */
    
    /* Tablet view responsive starts */
  
  @media (min-width:500px) and (max-width:1000px){
      
  }
    
    /* Tablet view responsive end */
    
    /* Laptop view responsive start */
  
  @media (min-width:1000px){
      .image2{
          height: 280px !important;
          width: 550px !important;
      }
      .social p{
        margin-top: 20px !important;
      }
  }
    
    /* Laptop view responsive end */



