/* CSS Document */
@media (min-width: 1181px) {
  .casesIndex {
    background-image: url(../images/team_cases_bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
  }
}
@media (max-width: 1180px) {
  .casesIndex {
    overflow: hidden;
  }
  .casesIndex::before {
    content: "";
    position: absolute;
    width: 100dvw;
    height: 100dvh;
    background-image: url(../images/team_cases_bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.casesIndex .contentBox {
  padding-top: 50px;
  padding-bottom: 20px;
}
@media (max-width: 1180px) {
  .casesIndex .contentBox {
    padding-top: 10px;
  }
}
.casesIndex .casesBox {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.casesIndex .casesBox.hide {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.casesIns .topInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.75px;
}
.casesIns .topInfo .date {
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
}
.casesIns .topInfo .date::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 16px;
  background-color: #535353;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.casesIns .topInfo .classTitle {
  letter-spacing: 0.75px;
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
}
.casesIns .topInfo .classTitle::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 16px;
  background-color: #535353;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.casesIns .topInfo .name {
  color: #a38a77;
}