/* XXL devices (very large screens, 1400px and up) */
@media (min-width: 1400px) {
}

/* Extra large devices (large desktops, 1200px to 1399.98px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
      .logo-section img {
    height: 120px;
}
.coming-soon-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #979797;
    font-family: inter;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
}

/* Large devices (desktops, 992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
      .logo-section img {
    height: 110px;
}
.coming-soon-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #979797;
    font-family: inter;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
}

/* Medium devices (tablets, 768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .logo-section img {
    height: 100px;
}
.coming-soon-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #979797;
    font-family: inter;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
}

/* Small devices (phones, 576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
      .logo-section img {
    height: 60px;
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .logo-section img {
    height: 60px;
  }
}
