.loader-button {
  font-size: 14px;
  border-radius: 6px;
  color: #fff;
  background-color: #21d2bd;
  font-weight: 600;
  padding: 12px 24px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  margin: 30px auto 0;
  width: 165px;
  min-height: 42px;
  box-sizing: border-box;
}
.loader-button:hover {
  background-color: #13af9c;
}
.loader-button.has-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.loader-button.has-icon .iconfont {
  font-size: 20px;
}
.loader-button.has-icon:hover {
  transform: translateY(-8px);
}
.loader-button .loader-icon {
  display: none;
}
.loader-button.show-loader {
  background-color: #000;
}
.loader-button.show-loader .loader-icon {
  display: grid;
}
.loader-button.show-loader .button-txt {
  display: none;
}
.banner {
  padding: 55px 0;
  display: flex;
  gap: 34px;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/resources/banner-bg.png);
  background-position: center center;
  width: 100%;
}
.banner .wrap-h1 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #000;
}
.banner-desc {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .banner {
    padding: 40rem 15rem;
    display: flex;
    gap: 25rem;
    box-sizing: border-box;
  }
  .banner .wrap-h1 {
    font-size: 28rem;
    line-height: 1.5;
  }
  .banner-desc {
    font-size: 14rem;
  }
}
.resources {
  padding-bottom: 50px;
}
.resources-wrapper {
  margin-top: 50px;
}
.resources-wrapper-header {
  display: flex;
  gap: 15px;
  align-items: center;
}
.resources-wrapper-title {
  font-size: 28px;
  font-weight: 600;
  color: #000;
}
.resources-wrapper-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.resources-wrapper-item.active{
  display: block;
}
.resources-wrapper-item {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  width: 100%;
  min-height: 100%;
  border-radius: 3px;
  transition: all 0.25s;
  display: none;
}
.resources-wrapper-item:hover {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
}
.resources-wrapper-item-header {
  padding: 30px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
}
.resources-wrapper-item-title {
  font-size: 20px;
  font-weight: bold;
  color: #54595f;
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 25px;
}
.resources-wrapper-item-more {
  font-size: 12px;
  font-weight: 500;
  color: #1abc9c;
}
.resources-wrapper-item-date {
  padding: 15px 30px;
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #adadad;
}
@media screen and (max-width: 768px) {
  .resources-wrapper-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}
.loader-icon {
  width: 18px;
  aspect-ratio: 1;
  display: grid;
  -webkit-mask: conic-gradient(from 15deg, #0000, #000);
  animation: l26 1s infinite steps(12);
}
.loader-icon,
.loader-icon:before,
.loader-icon:after {
  background: radial-gradient(closest-side at 50% 12.5%, #fff 96%, #0000) 50% 0/20%
      80% repeat-y,
    radial-gradient(closest-side at 12.5% 50%, #fff 96%, #0000) 0 50%/80% 20%
      repeat-x;
}
.loader-icon:before,
.loader-icon:after {
  content: '';
  grid-area: 1/1;
  transform: rotate(30deg);
}
.loader-icon:after {
  transform: rotate(60deg);
}
@keyframes l26 {
  100% {
    transform: rotate(1turn);
  }
}
