section.gallerys {
  overflow: hidden;
  padding-bottom: 150px;
}
.gallerys-lst {
  height: 524px;
  margin-top: 60px;
}
.gallerys-lst {
  gap: 50px;
  display: flex;
  align-items: center;
  width: max-content;
  animation: moveRightToLeft 60s linear infinite;
}
.gallerys-lst img {
  width: 100%;
  height: 100%;
  max-width: 600px;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
}

.gallerys-lst img:last-child {
  margin-right: 50px;
}

.gallerys .gallery-title {
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--default-blue);
}
.gallerys .gallery-subtitle {
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 16px 0 0;
}
@media only screen and (max-width: 1024px) {
  .gallerys-lst {
    margin-top: 40px;
  }
  .gallerys-lst img {
    max-width: 500px;
  }
  .gallerys .gallery-title {
    font-size: 2.4rem;
  }
  .gallerys .gallery-subtitle {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 991px) {
  .gallerys-lst {
    height: 356px;
    gap: 30px;
  }
  .gallerys-lst img {
    border-radius: 8px;
    max-width: 450px;
  }
  .gallerys-lst img:last-child {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.gallerys {
    padding-bottom: 78px;
  }
  .gallerys-lst img {
    max-width: 400px;
  }
  .gallerys .gallery-title {
    font-size: 1.8rem;
  }
  .gallerys .gallery-subtitle {
    font-size: 1rem;
  }
}
