/*--------------------------------------------------------------
    laptop, desktop
---------------------------------------------------------------*/

@media only screen and (min-width: 992px) and (max-width: 1200px) {
}

/*--------------------------------------------------------------
    large mobile
----------------------------------------------------------------*/

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .test-item {
    width: 300px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .logo img {
    height: 35px;
  }
}

/*--------------------------------------------------------------
   medium mobile
----------------------------------------------------------------*/

@media only screen and (min-width: 360px) and (max-width: 479px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .test-item {
    width: 300px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .trust-item {
    padding: 30px 20px;
  }
  .logo img {
    height: 35px;
  }
}

/*--------------------------------------------------------------
    small mobile
----------------------------------------------------------------*/

@media only screen and (min-width: 320px) and (max-width: 359px) {
}
