@keyframes shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(5px);
  }

  75% {
    transform: translateX(-5px);
  }

  100% {
    transform: translateX(5px);
  }
}

.sides-photo {
  border-radius: 15px;
}

.sides-container-info {
  padding-top: 24px;
}

.sides-container-info>h2>a {
  color: #000;
  font-family: 'DM Sans';
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  text-transform: capitalize;
  text-decoration: none;
}

.sides-container-info>a {
  text-decoration: none;
  color: #0094BF;
  text-align: center;
  font-family: DM Sans;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.sides-container-info>a>img {
  margin-left: 1em;
}

.sides-container-info>p>a {
  color: #575a5f;
  font-family: 'Heebo';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.sides-cards {
  display: flex;
  justify-items: center;
  justify-content: center;
  gap: 40px;
  overflow: auto;
  padding: 0 15px 15px 15px;
  scroll-behavior: smooth;
}

.sides-container {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  justify-content: space-between;
  max-width: 400px;
  min-width: 250px;

  @media screen and (max-width: 700px) {
    width: 100%;
    height: auto;
  }

  @media screen and (max-width: 580px) {
    width: 100%;
    height: auto;
  }

  @media screen and (max-width: 400px) {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 1250px) {
  .sides-container-info {
    width: 100% !important;
    padding-top: 20px !important;
  }
}

@media screen and (max-width: 1200px) {
  .sides-container-info>p>a {
    font-size: 14px;
  }

  .sides-container-info>a {
    font-size: 12px;
  }

  .sides-container-info>h2>a {
    font-size: 18px;
  }
}

@media screen and (max-width: 920px) {
  .sides-container-info>p>a {
    font-size: 12px;
  }

  .sides-container-info>a {
    font-size: 10px;
  }

  .sides-container-info>h2>a {
    font-size: 16px;
  }

  .sides-cards {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 380px) {
  .sides-cards {
    gap: 1.5rem;
  }
}