.about {
  padding-top: 72px;
}
.about__container {
  position: relative;
  background-color: white;
  border-radius: 24px;
  padding: 72px 56px 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  overflow: hidden;
  gap: 10px;
}
@media (max-width: 920px) {
  .about__container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 200px;
    padding: 0px;
  }
}
.about h2 {
  font-size: clamp(28px, 3vw, 52px);
}
.about p {
  line-height: 1.3;
}
.about__text-container {
  max-width: 604px;
}
.about__text-container p {
  padding-top: 32px;
}
@media (max-width: 480px) {
  .about__text-container p {
    padding-top: 16px;
  }
}
.about__left {
  z-index: 1;
}
@media (max-width: 920px) {
  .about__left {
    padding: 32px 32px 0;
  }
}
@media (max-width: 480px) {
  .about__left {
    padding: 16px 16px 0;
  }
}
.about__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  position: absolute;
  top: -145px;
  z-index: 0;
}
@media (max-width: 1200px) {
  .about__right {
    gap: 10px;
  }
}
@media (max-width: 920px) {
  .about__right {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .about__right {
    top: -20px;
  }
}
.about__slider {
  position: relative;
}
@media (max-width: 920px) {
  .about__slider {
    overflow: hidden;
  }
}
.about__right-dinam {
  transform: rotate(15deg);
  cursor: pointer;
}
@media (max-width: 1200px) {
  .about__right-dinam {
    transform: rotate(0);
  }
  .about__right-dinam img {
    max-width: 100%;
  }
}
@media (max-width: 920px) {
  .about__right-dinam {
    transform: rotate(15deg);
  }
  .about__right-dinam img {
    max-width: 80%;
  }
}
.about__right-dinam .goup {
  transform: translate3d(0, 0, 0);
  animation-name: move;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 10s;
  animation-direction: normal;
  animation-delay: 0s;
}
@media (max-width: 1200px) {
  .about__right-dinam .goup {
    animation-name: move1200;
  }
}
@media (max-width: 1020px) {
  .about__right-dinam .goup {
    animation-name: move1024;
  }
}
@media (max-width: 920px) {
  .about__right-dinam .goup {
    animation-name: move900;
  }
  .about__right-dinam .goup li {
    display: flex;
    justify-content: end;
  }
}
.about__right-dinam .godown {
  transform: translate3d(0, 0, 0);
  animation-name: move;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 10s;
  animation-direction: reverse;
  animation-delay: 0s;
}
@media (max-width: 1200px) {
  .about__right-dinam .godown {
    animation-name: move1200;
  }
}
@media (max-width: 1020px) {
  .about__right-dinam .godown {
    animation-name: move1024;
  }
}
@media (max-width: 920px) {
  .about__right-dinam .godown {
    animation-name: move900;
  }
}
.about__right-dinam ul {
  display: grid;
  gap: 30px;
}
@media (max-width: 1200px) {
  .about__right-dinam ul {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .about {
    padding-top: 16px;
  }
}

.item {
  display: grid;
  gap: 30px;
}
@media (max-width: 1200px) {
  .item {
    gap: 10px;
  }
}

@keyframes move {
  100% {
    transform: translateY(calc(-51% - 0.1vw));
  }
}
@keyframes move1200 {
  100% {
    transform: translateY(calc(-50.5% - 0.2vw));
  }
}
@keyframes move1024 {
  100% {
    transform: translateY(calc(-50.5% - 0.1vw));
  }
}
@keyframes move900 {
  100% {
    transform: translateY(-50.5%);
  }
}/*# sourceMappingURL=about.css.map */