/*** ICONS ***/
/*** COLORS ***/
/*** END COLORS ***/
.content-tabs__list {
  display: grid;
  grid-template: auto/repeat(3, 1fr);
  grid-gap: 5rem 4rem;
  padding-top: 5rem;
  margin-bottom: 7rem;
}
@media (max-width: 1024px) {
  .content-tabs__list {
    grid-gap: 4rem 3rem;
    padding-top: 3rem;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .content-tabs__list {
    grid-template: auto/repeat(2, 1fr);
    grid-gap: 3rem 2rem;
  }
}
@media (max-width: 560px) {
  .content-tabs__list {
    grid-template: auto/100%;
  }
}
.content-tabs__title {
  margin-top: 5rem;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .content-tabs__title {
    margin-top: 4rem;
    font-size: 2.1rem;
  }
}
.content-tabs__materials {
  display: grid;
  grid-template: auto/repeat(2, 1fr);
  grid-gap: 5rem 4rem;
  margin-top: 5rem;
  margin-bottom: 14rem;
}
@media (max-width: 1024px) {
  .content-tabs__materials {
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 768px) {
  .content-tabs__materials {
    grid-gap: 3rem 2rem;
  }
}
@media (max-width: 560px) {
  .content-tabs__materials {
    grid-template: auto/100%;
  }
}
@media (max-width: 1024px) {
  .content-tabs__materials--single {
    margin-top: 4rem;
  }
}

.content-card__img-box {
  position: relative;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .content-card__img-box {
    margin-bottom: 1.4rem;
  }
}
.content-card__img-box::before {
  display: block;
  width: 100%;
  padding-top: 66.8%;
  content: "";
}
.content-card__img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-card__data-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #949494;
}
@media (max-width: 1024px) {
  .content-card__data-box {
    margin-bottom: 1.4rem;
  }
}
.content-card__title {
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}
@media (max-width: 1024px) {
  .content-card__title {
    font-size: 1.6rem;
    line-height: 1.1;
  }
}
.content-card:hover .content-card__title {
  color: #C20014;
}

.material-card {
  cursor: pointer;
}
.material-card__img-box {
  position: relative;
  margin-bottom: 2.2rem;
}
@media (max-width: 1024px) {
  .material-card__img-box {
    margin-bottom: 1.4rem;
  }
}
.material-card__img-box::before {
  display: block;
  width: 100%;
  padding-top: 63.2%;
  content: "";
}
.material-card__img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.material-card__title {
  margin-bottom: 1.4rem;
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 1024px) {
  .material-card__title {
    font-size: 1.6rem;
    line-height: 1.1;
  }
}
.material-card:hover .material-card__title {
  color: #C20014;
}
.material-card__tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.4rem;
  padding: 0;
  list-style-type: none;
  color: #414042;
}
@media (max-width: 1024px) {
  .material-card__tag-list {
    gap: 0.8rem;
  }
}
.material-card__tag {
  padding: 1rem 1.4rem;
  background-color: #F0F0F0;
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 3px;
}
@media (max-width: 1024px) {
  .material-card__tag {
    padding: 0.6rem;
    font-size: 1.1rem;
  }
}