/* 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) {
}

/* Large devices (desktops, 992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* Medium devices (tablets, 768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {

     .logo-text {
   
    display: flex;
   
    justify-content: center;
  }

  .logo-text img {
    height: 100px;
  }

  .contact-item {
    padding: 10px 0px;
  }

  .contact-info {
    display: flex;
    /* flex-direction: column; */
    gap: 30px;

    margin-bottom: -80px;
    letter-spacing: 0.5px;
  }
}

/* Small devices (phones, 576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {

     .logo-text {
   
    display: flex;
   
    justify-content: center;
  }

  .logo-text img {
    height: 70px;
  }

  .contact-item {
    padding: 10px 0px;
  }

  .contact-info {
    display: flex;
    /* flex-direction: column; */
    gap: 30px;

    margin-bottom: -80px;
    letter-spacing: 0.5px;
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .logo-text {
    width: 55px;
    height: 55px;
    display: flex;
    font-size: 1.3rem;
    justify-content: center;
  }

  .logo-text img {
    height: 50px;
  }

  .contact-item {
    padding: 10px 0px;
  }

  .contact-info {
    display: flex;
    /* flex-direction: column; */
    gap: 30px;

    margin-bottom: -80px;
    letter-spacing: 0.5px;
  }
}
