@charset "UTF-8";


/*---------------------------------------------------------------*\
$all livers
\*---------------------------------------------------------------*/

#all_livers {
  width: 100%;
  position: relative;
  display: grid;
  padding: 8% 6%;
  grid-template-columns: repeat(3,minmax(0,1fr));
  margin: 0 auto;
  z-index: 1;
  gap: 32px;
}
#all_livers .each_liver_card {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
}
#all_livers .each_liver_card > a {
  display: block;
  height: 100%;
  width: 100%;
}
#all_livers .thumbnail_profile img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#all_livers .info_each_liver {
  padding: 24px 56px 24px 24px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#all_livers .icon_arrow_livers {
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
}
#all_livers .name_liver {
  font-size: 14px;
}


/*---------------------------------------------------------------*\
$1400px-
\*---------------------------------------------------------------*/
@media screen and (min-width: 1400px) {

  #all_livers {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }
}


/*---------------------------------------------------------------*\
$1080px
\*---------------------------------------------------------------*/
@media screen and (max-width: 1080px) {

  #all_livers {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  #all_livers .each_liver_card:nth-of-type(2n) {
    margin-right: 0%;
  }
  #all_livers .each_liver_card:nth-last-child(-n+4) {
    margin-bottom: 3%;
  }
  #all_livers .each_liver_card:nth-last-child(-n+2) {
    margin-bottom: 0 !important;
  }
}


/*---------------------------------------------------------------*\
$960px
\*---------------------------------------------------------------*/
@media screen and (max-width: 960px) {

  #all_livers .icon_arrow_livers {
    width: 6px;
    height: 6px;
  }
}


/*---------------------------------------------------------------*\
$600px
\*---------------------------------------------------------------*/
@media screen and (max-width: 600px) {

  #all_livers {
    border-radius: 40px;
    gap: 16px;
    padding: 16px;
  }
  #all_livers .name_liver {
    font-size: 14px;
  }
}