/*============== 
  TV Screens 
================*/
@media(min-width: 1441px) {
  /*  */
}

/*============== 
  Extra Large 
================*/
@media(max-width: 1440px) {
  /*  */
}

/*============== 
     Large 
================*/
@media(max-width: 1280px) {
  /*  */
}

/*============== 
     Medium 
================*/
@media(max-width: 1025px) {
  /*  */
}

/*============== 
    Tablet 
================*/
@media(max-width: 768px) {
  /* start styling contact us section */
  #contact_us {
    .content {
      flex-direction: column-reverse;
      form {
        width: 100%;
      }
      .map {
        iframe {
          height: 400px;
        }
      }
    }
  }
}

/*============== 
     Mobile 
================*/
@media(max-width: 576px) {
  /* start styling contact us section */
    #contact_us {
      .content {
        flex-direction: column-reverse;
  
        form {
          width: 100%;
          .input-group, .area-group {
            label {
              font-size: 18px;
            }
            input, textarea {
              font-size: 16px;
            }
          }
        }
  
        .map {
          iframe {
            height: 350px;
          }
        }
      }
    }
}