/* @media (max-width : 767px) {}
@media(min-width: 768px) and (max-width:991px) {}
@media(min-width: 992px) and (max-width:1199px){} */

/* Global */

@media (max-width: 767px) {
  .site-header .main-img {
    display: none;
  }

  .site-header .main-img.sm {
    display: block;
  }

  .site-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }

  .downloud-app {
    position: relative;
    right: unset;
    top: unset;

    transform: translateY(0);
    padding: 8px 15px;
    border-radius: 7px;
  }
  .downloud-app:hover {
    transform: translateY(0);
  }
  .downloud-app img {
    width: 35px;
    border-radius: 7px;
  }

  .downloud-app h6 {
    font-size: 12px;
  }

  .the-app .imgs {
    margin-top: 100px;
  }
  .the-app .imgs img:nth-child(odd) {
    margin-top: -50px;
  }

  .the-app .imgs img {
    height: fit-content;
    width: 40%;
  }

  .the-app .imgs::after {
    display: none;
  }

  .the-app .imgs.sm {
    display: flex;
  }

  .the-app .imgs.lg {
    display: none;
  }

  .the-app .imgs img:hover {
    transform: translateY(-10px) scale(1);
  }
}
@media (max-width: 380px) {
  .the-app .imgs img:nth-child(odd) {
    margin-top: 0px;
  }

  .the-app .imgs img {
    height: fit-content;
    width: 80%;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .site-header .main-img {
    display: none;
  }

  .site-header .main-img.md {
    display: block;
  }

  .downloud-app {
    right: 35px;
    padding: 8px;
    border-radius: 7px;
  }

  .downloud-app img {
    width: 35px;
  }

  .downloud-app h6 {
    font-size: 12px;
  }

  .the-app .imgs::after {
    display: none;
  }

  .the-app .imgs img {
    height: fit-content;
    width: 40%;

    border-radius: 15px;
    margin: 20px;
  }

  .the-app .imgs {
    margin-top: 100px;
  }
  .the-app .imgs img:nth-child(odd) {
    margin-top: -50px;
  }

  .the-app .imgs.md {
    display: flex;
  }

  .the-app .imgs.lg {
    display: none;
  }
  .the-app .imgs img:hover {
    transform: translateY(-10px) scale(1);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
}
