/* Big tablets 1024px to 1200px */

@media only screen and (max-width: 1200px) {
}

/* Small tablets to big tablets: from 768px to 1023px */

@media only screen and (max-width: 1023px) {
}

/* Small phones to small tablets: from 480px to 767px */

@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
  .main-footer {
    height: 40px;
    background-color: #202027;
    font-weight: normal;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    padding: 5px;
  }

  .social-link img {
    width: 12px;
  }
}

/* Small phones: from 0 to 480px */

@media only screen and (max-width: 480px) {
  .main-nav a {
    color: inherit;
    text-decoration: none;
    padding: 8px;
  }
  body {
    font-size: 12px;
  }
  .icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 4px;
    padding: 12px;
    width: 80px;
    height: 80px;
    background-color: #202027;
    margin-bottom: 32px;
  }

  .icon img {
    width: 30px;
  }
  .brand-logo img {
    width: 45px;
  }
  .discover-main-section .covers-image {
    margin-top: 32px;
    height: 30vh;
    width: 150px;
    height: 150px;
    align-items: center;
    justify-content: center;
  }
  .input-group {
    margin-bottom: 15px;
  }
  .join-form {
    padding: 25px 40px;
    width: 70vw;
  }
}

/* .join-form {
  padding: 25px 30px;
  width: 70vw;
} */
