/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cards-carousel__item {
    flex: 180px 1 1;
    max-width: 385px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .w-lg-75 {
    width: 75% !important;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}

@media (min-width: 1700px) {
}

@media (min-width: 1920px) {
  .site-wrap {
    width: 1920px;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 1399.98px) {
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .px-custom-lg {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  /* Rotating Cards */
  .cards-carousel {
    position: relative;
    left: 50%;
    width: 180px;
    /* height: 200px; */
    transform: translateX(-50%);
    perspective: 1000px;
  }
  .cards-carousel__content {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: translateZ(-145px) rotateY(0);
    animation: carousel 9s infinite cubic-bezier(1, 0.015, 0.295, 1.225)
      forwards;
  }
  .cards-carousel__item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}
