.project, .tissue{
  padding: 2rem 10% 2rem;
  background-color: #fff;
}
.project-list{
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: calc(50rem / 40);
}
.project-item{
  width: calc(100% / 3);
  position: relative;
  overflow: hidden;
}
.project-item:nth-child(1) >.project-item-image {
  border-top-left-radius: 2rem;
}
.project-item:nth-child(3) >.project-item-image {
  border-top-right-radius: 2rem;
}
.project-item:nth-child(4)> .project-item-image {
  border-bottom-left-radius: 2rem;
}
.project-item:nth-child(6)> .project-item-image {
  border-bottom-right-radius: 2rem;
}
.project-item:hover .project-item-content {
  transform: translateY(0);
}
.project-item:nth-child(1) >.project-item-content {
  border-top-left-radius: 2rem;
}
.project-item:nth-child(3) >.project-item-content {
  border-top-right-radius: 2rem;
}
.project-item:nth-child(4)> .project-item-content {
  border-bottom-left-radius: 2rem;
}
.project-item:nth-child(6)> .project-item-content {
  border-bottom-right-radius: 2rem;
}
.project-item:hover .project-item-content {
  transform: translateY(0);
}

.project-item-image{
  width: 100%;
  height: 100%;
}

.project-item-content{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(192, 25, 31, 0.6);
  backdrop-filter: blur(5px);
  padding: 2rem 0.8rem 0 0.8rem;
  box-sizing: border-box;
  transform: translateY(-101%);
  transition: 0.3s all;
}
.project-item-title{
  font-size: 0.7rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.project-item-desc {
  text-align: justify;
  margin-top: 0.5rem;
  font-size: 0.45rem;
  color: #FFFFFF;
  line-height: 1rem;
}

.awards{
  padding: 2rem 10% 2rem;
  background: #F6F6F6;
}
.awards-swiper{
  position: relative;
  padding: 1.5rem 0 2rem;
  overflow: hidden;
  cursor: pointer;
}
.swiper-slide{
  display: flex;
  justify-content: center;
}
.awards-item{
  background-color: #fff;
  border-radius: 0.4rem;
  width: calc(480rem / 40);
  overflow: hidden;
}
.awards-item-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border-radius: 0.4rem;
  width: 100%;
  height: calc(278rem / 40);
  box-sizing: border-box;
  overflow: hidden;
}
.awards-item-image{
  max-width: 100%;
  max-height: 100%;
}

.awards-item-name{
  margin: 0.3rem 0.5rem 0.6rem;
  font-size: 0.45rem;
  color: #000000;
  line-height: 0.9rem;
  height: 1.8rem;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.awards-swiper .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s all;
}
.awards-swiper .swiper-pagination-bullet-active{
  width: 0.8rem;
  height: 0.5rem;
  border-radius: initial;
  background-image: url(./../img/about/swiper_icon.png);
  background-repeat: no-repeat;
  background-size: contain; 
  background-color: initial;
}

.tissue-list {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.tissue-item{
  width: 47.5%;
  overflow: hidden;
  border: 1px solid #DADADA;
  border-radius: 0.6rem;
  padding: 1rem calc(150rem / 40);
  box-sizing: border-box;
}
.tissue-item:hover .tissue-item-image{
  transform: scale(1.1);
}
.tissue-item-image{
  width: 100%;
  transition: 0.3s all;
}

.project-m-list{
  display: none;
}

@media screen and (max-width: 1000px) { 
  .tissue-list {
    flex-direction: column;
  }
  .tissue-item{
    width: 100%;
    padding: 0;
  }
  .tissue-item:not(:first-child) {
    margin-top: 1rem;
  }
  .project-list{
    display: none;
  }
  .project-m-list{
    display: block;
    position: relative;
    padding-bottom: calc(32rem / 26);
    margin-top: 1rem;
    overflow: hidden;
  }
  .project-m-item{
    width: 100%;
  }
  .project-m-item-image{
    width: 100%;
  }
  .project-m-item-content{
    padding: calc(14rem / 26) 0;
  }
  .project-m-item-title{
    font-size: calc(16rem / 26);
    font-weight: 600;
    color: #1A1A1A;
    line-height: calc(23rem / 26);
    text-align: center;
  }
  .project-m-item-desc{
    font-size: calc(14rem / 26);
    font-weight: 400;
    color: #1A1A1A;
    line-height: calc(24rem / 26);
    margin-top: calc(10rem / 26);
  }

  .project-m-list .swiper-pagination {
    bottom: 0;
  }
  .project-m-list .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
    background: #F1F3F5;
    border-radius: 50%;
    transition: 0.3s all;
  }
  .project-m-list .swiper-pagination-bullet-active{
    width: 0.8rem;
    height: 0.5rem;
    border-radius: initial;
    background-image: url(./../img/about/swiper_icon.png);
    background-repeat: no-repeat;
    background-size: contain; 
    background-color: initial;
  }
}

@media screen and (max-width: 500px) { 
  .awards, .tissue, .project{
    padding: 1rem 5%;
  }
}