/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {

  .map-wrapper {
    height: 84vh;
  }

  /* a bit taller on large screens */
  .left-scroll {
    max-height: 75vh;
  }

  .highlight-section .d-flex {
    margin-top: 38px !important;
  }

}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {

  /* CSS */
  .highlight-section .d-flex {
    margin-top: 38px !important;
  }

}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {

  .banner {
    min-height: 35vh;
  }

  .highlight-section .d-flex {
    margin-top: 38px !important;
  }

}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

  .banner {
    min-height: 60vh;
  }

  .map-wrapper {
    height: 70vh;
  }

  /* tablet/desktop map height */
  .left-scroll {
    max-height: 70vh;
    /* same height as map */
    overflow-y: auto;
    /* enable vertical scroll */
    padding-right: .25rem;
    /* room for scrollbar */
  }

  .highlight-section .d-flex {
    margin-top: 38px !important;
  }

}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {

  .highlight-section {
    padding: 20px 0 !important;
  }

  .lifestyle-section {
    padding: 20px 0 !important;
  }

  .form-image-container img {
    width: 100% !important;
    height: auto !important;
  }

  .form-container {
    padding: 20px !important;
  }

  .responsive-indent {
    text-indent: 1.5em;
  }

  .banner {
    min-height: 22vh;
  }

  .map-wrapper {
    height: auto;
  }

  .left-scroll {
    max-height: none;
    overflow: visible;
  }

  #mainNavbar {
    border-bottom: 1px solid #E8C39E;
  }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {

  .highlight-section {
    padding: 20px 0 !important;
  }

  .lifestyle-section {
    padding: 20px 0 !important;
  }

  .form-image-container img {
    width: 100% !important;
    height: auto !important;
  }

  .form-container {
    padding: 20px !important;
  }

  .responsive-indent {
    text-indent: 1.5em;
  }

  .banner {
    min-height: 22vh;
  }

  .map-wrapper {
    height: auto;
  }

  .left-scroll {
    max-height: none;
    overflow: visible;
  }

  #mainNavbar {
    border-bottom: 1px solid #E8C39E;
  }
  
  nav .phone-btn {
    width: 157px;
  }
}



@media (max-width: 767.98px) {
  .custom-btn-width {
    width: 100%;     /* full width only on mobile */
  }
}