
/*--------------------------------------------------------------
  17. Classes
----------------------------------------------------------------*/
.classes-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-height: 500px;
    word-wrap: break-word;
    background-clip: border-box;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
  }
  .icon-box-shop img {
    border-radius: 40px;
}
  .classes-card .classes-img-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    z-index: 12;
    fill: rgba(233, 135, 111, 0.15);
    background: rgba(235, 151, 95, 0.1);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    -webkit-clip-path: polygon(0% -0.75%, 100% 75.25%, 100% 100%, 100% 100%, 0% 100%);
            clip-path: polygon(0% -0.75%, 100% 75.25%, 100% 100%, 100% 100%, 0% 100%);
  }
  .classes-card .classes-img-overlay .classes-text {
    font-family: var(--heading-font-family);
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    color: var(--body-color);
  }
  .classes-card .classes-img-overlay::before {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    z-index: -11;
    left: 0;
    width: 100%;
    height: 0%;
    fill: rgba(241, 111, 111, 0.15);
    background: rgba(239, 85, 85, 0.1);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    -webkit-clip-path: polygon(0% -0.75%, 100% 75.25%, 100% 100%, 100% 100%, 0% 100%);
            clip-path: polygon(0% -0.75%, 100% 75.25%, 100% 100%, 100% 100%, 0% 100%);
    transition: all 0.3s linear;
  }
  .classes-card:hover .classes-img-overlay::before {
    height: 100%;
    background: var(--theme-color);
  }
  .classes-card .card-img {
    transition: transform 0.5s ease;
  }
  .classes-card:hover > .card-img {
    transform: scale(1.2) rotate(10deg);
  }
  
  .classes-details-title-img.style1 {
    width: 100vw;
    display: flex;
    gap: 60px;
    align-items: center;
  }
  .classes-details-title-img.style1 .classes-details-title-info {
    max-width: 558px;
    flex-grow: 1;
  }
  .classes-details-title-img.style1 .classes-details-title-info .classes-details-title {
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 100%;
  }
  .classes-details-title-img.style1 .classes-details-title-info .classes-details-desp {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 50px;
  }
  .classes-details-title-img.style1 .classes-details-img-content {
    flex-grow: 1;
  }
  .classes-details-title-img.style1 .classes-details-img-content .classes-details-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    min-height: 300px;
  }
  .classes-details-title-img.style1 .schedule-duration {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
  }
  .classes-details-title-img.style1 .schedule-duration .schedule-divider {
    width: 1px;
    height: 70px;
    flex-shrink: 0;
    background: #a4f19a;
  }
  .classes-details-title-img.style1 .schedule-duration .schedule .desp,
  .classes-details-title-img.style1 .schedule-duration .duration .desp {
    font-size: 18px;
  }
  .classes-details-title-img.style1 .schedule-duration .schedule .title,
  .classes-details-title-img.style1 .schedule-duration .duration .title {
    font-size: 24px;
  }
  
  .classespages-details-content.style1 .details-content .title {
    font-size: 60px;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  @media screen and (max-width: 991px) {
    .classes-details-title-img.style1 {
      flex-direction: column-reverse;
      width: 100%;
      align-items: flex-start;
    }
    .classes-details-title-img.style1 .classes-details-title-info .classes-details-desp {
      margin-bottom: 30px;
    }
    .classes-details-title-img.style1 .schedule-duration {
      display: flex;
      gap: 30px;
      align-items: center;
      margin-top: 30px;
    }
  }
  @media screen and (max-width: 768px) {
    .classespages-details-content.style1 .details-content .title {
      font-size: 38px;
      text-transform: uppercase;
    }
  }