/* ==========================================================================
   Responsive styles
   ========================================================================== */

/* Wide Screens */

@media (min-width: 1920px) and (max-width: 2560px) {
  .container {
    max-width: 1920px;
    margin: 0px auto;
  }
}

/* Desktop */

@media (max-width: 1600px) {
}

/* Laptop */

@media screen and (min-device-width: 768px) and (max-device-width: 1600px) {
  h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  h3 {
    font-size: 24px;
  }
}

/* Tablet Landscape */

@media (max-width: 1024px) {
  section {
    height: inherit;
  }
}

/* Tablet Portrait */

@media (max-width: 980px) {
}

/* Macbook 13 Inch */

@media (min-device-width: 700px) and (max-device-width: 1200px) {
}

/* Mobile Landscape */

@media (max-width: 768px), (orientation: landscape) and (max-height: 500px) {
}

@media (orientation: landscape) and (max-height: 500px) {
}

/* Mobile Large */

@media (max-width: 768px) {
  .coming .container-wide {
    flex-direction: column-reverse;
  }

  .w-50 {
    width: 100%;
  }

  h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }
  h3 {
    font-size: 18px;
  }

  video {
    width: 100%;
    height: 60vh;
    object-fit: cover;
  }

  .logo {
    width: 75px;
  }
}
/* Mobile Small */
@media (max-width: 375px) {
}
