/* Link Card CSS */
.smw-link-card {
    height: 380px;
}

.smw-link-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 24px;
    border-radius: 16px;
    background: #FFFFFF;
    transition: all 0.3s;
}

.smw-link-card a:hover {
    background-color: #36B8FF;
}

.smw-link-card .content {
    margin-top: auto;
}

.smw-link-card .title {
    /* font-family: Obviously Narrow; */
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    color: #350F6B;
    margin: 0;
    padding-bottom: 10px;
    transition: all 0.3s;
}

.smw-link-card .description {
   /* font-family: Neue Montreal; */
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.16px;
    color: #350F6B;
    transition: all 0.3s;
}

.smw-link-card a:hover .description,
.smw-link-card a:hover .title {
    color: #FFFFFF;
}


@media (max-width: 991px) {
    .smw-link-card {
        height: 320px;
    }

    .smw-link-card .title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .smw-link-card {
        height: 300px;
    }
}
/* Link Card CSS End */

/* Video CSS */
.smw-video-frame {
  margin: auto;
  border-radius: 24px;
}

.smw-video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.smw-video-wrapper video {
  width: 100%;
  height: 604px;
    object-fit: cover;
  display: block;
  cursor: pointer;
}

.smw-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #251B007A;
  transition: all 0.3s;
}

.smw-play-btn {
  width: 105px;
  height: 105px;
  background: #fff;
  fill: #FE5B00;
  color: #FE5B00;
  font-size: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  pointer-events: none;
}

.smw-play-btn svg {
  width: 1em;
  height: 1em;
}

.smw-video-overlay:hover .smw-play-btn {
  transform: scale(1.1);
}

/* Video CSS End */