/*-- TURN OFF WAYPOINTS/ANIMATION ON MOBILE --
@media (max-width: 767px) {
.animated, .os-animation {
	-webkit-animation: none!important;
	-moz-animation: none!important;
	-o-animation: none!important;
	animation: none!important;
	opacity: 1!important;
	-webkit-animation-delay: none !important;
	-moz-animation-delay: none !important;
	animation-delay: none !important;
	}
}
*/

/*============= MEDIA QUERIES =============*/

/* Devices over 1200px (xl) */
@media (min-width: 1200px) {
  
}

/* Devices under 1200px (lg) */
@media (max-width: 1199.98px) {
  .hero .hero-footer {
    left: 2%;
  }

  .gallery-item {
    flex: 0 0 43%;
    max-width: 43%;
  }
}

/* Devices under 992px (md) */
@media (max-width: 991.98px) {
  .hero .row > .col-md-8 {
    flex: 0 0 88%;
    max-width: 88%;
  }

  .about .about-introduction-row-image {
    background: none;
    padding-bottom: 30px;
  }

  .about .col-md-offset-7 {
    margin-left: 0;
  }

  .about .col-md-5.about-introduction-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .gallery-item {
    flex: 0 0 83%;
    max-width: 83%;
  }
}

/* Devices under 768px (sm) */
@media (max-width: 767.98px) {
	
}

/* Devices under 576px (xs) */
@media (max-width: 576.98px) {

  body .navbar {
    transform: translateY(0) !important;
  } 
  
  .mobile-toggler-checkbox,
  .mobile-toggler-icon {
    display: block;
    visibility: visible;
  }

  .mobile-brand {
    display: block;
    visibility: visible;
  }

  .navbar-nav {
    display: none;
    visibility: hidden;
  }

  .contact-bg > .navbar {
    background: var(--dark-contrast) !important;
    box-shadow: rgb(255 255 255 / 12%) 0 1px 3px !important;
  }

  .contact-bg .navbar-mobile > .nav-item .nav-link {
    color: var(--light-color);
  }

  body .navbar.home-nav {
    background-color: #f4f4f4 !important;
  }

  .navbar-mobile {
    width: 100vh;
    text-align: center;
  }

  .navbar-mobile .nav-item:hover .nav-link {
    color: var(--primary-color);
  }

  h4 {
    font-size: 2.8em;
  }

  .hero .row > .col-md-8 {
    padding-top: 0;
  }

  .hero h1 {
    font-size: 70px;
    line-height: 70px;
  }
}

@media (max-width: 359.98px) {
  h4 {
    font-size: 2.4em;
  }

  .hero h1 {
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 0;
  }

  .hero h3 {
    font-size: 18px;
    line-height: 30px;
  }

  .hero .btn-theme-custom {
    font-size: 1rem;
  }

  .about-introduction-content h2 {
    font-size: 3em;
  }

  .about .about-introduction-content ul li span {
    position: static;
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 15px;
  }

  .about .about-introduction-content ul li label {
    text-align: center;
    display: block;
    margin-bottom: 5px;
  }
}

/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/