.index-page {
  max-width: unset;
}

.advert-wrap {
  margin-top: 0;
  grid-column: 1 / -1;
  width: auto;
  text-align: center;
  grid-row: 2 / span 1;
}
.item-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
  max-width: 1740px;
  margin: 20px auto 0 auto;
}
@media (max-width: 1740px) {
  .item-list {
    padding: 0 20px;
    grid-template-columns: repeat(4, minmax(100px, 1fr));
  }
}
@media (max-width: 1360px) {
  .item-list {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    padding: 0 20px;
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .item-list {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 12px;
    margin-top: 20px;
  }
  .advert-wrap {
    grid-row: auto;
    order: -1;
  }
}
.item-list .item {
  width: 100%;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px 1px rgba(18, 46, 88, 0.08);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.item-list .item .img-wrap {
  aspect-ratio: 16 / 9;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f6f7fb 0%, #eceff6 100%);
}
.item-list .item .img-wrap > img.lazyload {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 8px 0 0;
}
.item-list .item .title {
  padding: 15px;
}
.item-list .item h3 {
  color: #323232;
  font-family: Figtree;
  font-size: 20px;
  line-height: 1.5;
  overflow: hidden;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  border-radius: 6px;
  margin: 0;
  font-weight: unset;
}
.item-list .item:hover h3 {
  text-decoration: underline;
}
.about-us .background {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100%;
}
.about-us .wave {
  width: 100%;
  height: 100px;
  background-image: url('/imgs/purple-wave.png');
  background-repeat: repeat;
}
.about-us .bottom {
  background-color: #2d3367;
  color: #fff;
  padding: 0 10px;
}
.about-us .bottom .content {
  max-width: var(--maxWidth);
  margin: 0 auto;
  padding-bottom: 30px;
}
.about-us .bottom .content h1 {
  font-size: 45px;
  border-bottom: 4px #fff solid;
}
.about-us .bottom .content h2 {
  font-size: 30px;
  margin-bottom: 5px;
}
.about-us .bottom .content p {
  font-size: 20px;
  margin: 5px 0;
}
.about-us .bottom .content br {
  height: 20px;
}
.about-us .bottom .content ul {
  margin: 5px 0;
  font-size: 20px;
}
.about-us .bottom .content ul li {
  margin: 5px 0;
}

@media (min-width: 700px) and (max-width: 1150px) {
  body {
    /* transform: scale(0.9);
    transform-origin: top left;
    width: 111.11%; */
    zoom: 0.9;
  }
}

@media screen and (max-width: 700px) {
  .about-us .bottom .content h1 {
    font-size: 20px;
  }
  .about-us .bottom .content h2 {
    font-size: 16px;
  }
  .about-us .bottom .content p {
    font-size: 14px;
  }
  .about-us .bottom .content br {
    height: 14px;
  }
  .about-us .bottom .content ul {
    font-size: 14px;
  }
}
