@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0px;
  padding: 0px;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Poppins";
}

/* Contact Us Started */
.contact-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('/Images/contact/background.png');
    background-position-x: -500px;
    background-position-y: -50px;
    background-repeat: no-repeat;
    margin-top: 50px;
    
  }
  .contact-us h3{
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #ce2144;
    
  }
  .contact-form{
    width: 300px;
    display: flex;
    justify-content: center;
  }
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  .contact-form form input{
    padding: 15px 15px;
    margin-bottom: 20px;
    width: 300px;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #F4F4F4;
  }
  .contact-form form input:hover{
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  }
  .contact-form form textarea{
    resize: none;
    width: 300px;
    padding: 10px 15px;
    overflow: hidden;
    outline: none;
    background-color: #F4F4F4;
    border: none;
  }
  .contact-form form textarea:hover{
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  }
  
  .contact-form form button{
    padding: 15px 0px;
    margin-top: 20px;
    border: none;
    border-radius: 20px;
    background-color: #CB2142;
    color: white;
    font-size: 16px;
    font-weight: bold;
  }
  .contact-form form button:hover{
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    cursor: pointer;
  }
  .contact-details .loc .img-cont{
    width: 100px;
    height: 80px;
  }
  .contact-details .loc img{
    width: 100%;
    height: 100%;
  }
  .contact-details .loc {
    display: flex;
    align-items: center;
  }
  .contact-details .loc p{
    max-width: 200px;
    font-size: 13px;
  }
  .contact-details .mail p{
    max-width: 50px;
  }
  .contact-details {
    background-color: rgba(0,0,0,0.05);
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(4px);
    border-radius: 20px;
    margin-bottom: 40px;
    padding-top: 20px;
  }
  iframe{
    width: 320px;
    height: 200px;
    align-self: center;
    opacity: 0.8;
    border-radius: 20px;
  }
  
  @media only screen and (min-width: 800px)
  {
    .wrapper{
      display: flex;
      flex-direction: row-reverse;
      justify-content: space-evenly;
      width: 100%;
      margin-bottom: 50px;
    }
    .contact-us h3{
      font-size: 50px;
     
      
    }
    .contact-details {
      background-color: rgba(0,0,0,0.01);
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      backdrop-filter: blur(4px);
      border-radius: 20px;
      margin-bottom: 40px;
      transition:  0.2s;
    }
    .contact-details:hover{
      transform: scale(1.1);
      transition: transform 0.2s;
      box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    }
    .contact-us {
      display: flex;
      flex-direction: column;
      align-items: center;
      background-image: url('/Images/contact/background.png');
      background-position-x: -900px;
      background-position-y:100px;
      background-repeat: no-repeat;
      margin-top: 60px;
      
    }
  
  }
  @media only screen and (min-width: 1200px)
  {
    .contact-form form input{
      width: 500px
    }
    .contact-form form textarea{
      width: 500px;
    }
  
  }
/* Contact Us Ended */