.hero-feature-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.hero-feature-section .left-container {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 992px) {
  .hero-feature-section .left-container {
    width: 100%;
  }
}
.hero-feature-section .left-container .feature-title {
  font-weight: 600;
  font-size: 24px;
}
.hero-feature-section .left-container .with-underline {
  border-bottom: solid 1px black;
  padding: 0 0 10px 0;
}
.hero-feature-section .left-container .cta-button {
  width: 30%;
}
@media (max-width: 1200px) {
  .hero-feature-section .left-container .cta-button {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .hero-feature-section .left-container .cta-button {
    width: 100%;
  }
}
.hero-feature-section .right-container {
  width: 50%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .hero-feature-section .right-container {
    width: 100%;
  }
}
.hero-feature-section .right-container .asset {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .hero-feature-section .right-container .asset {
    width: 100vw;
  }
}

.no-image {
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .no-image {
    padding: 0 24px;
  }
}
.no-image .left-container {
  width: 50% !important;
}
@media (max-width: 768px) {
  .no-image .left-container {
    width: 100% !important;
  }
}
.no-image .left-container .cta-button {
  align-self: center;
}
.no-image .right-container {
  display: none;
}

.image-left, .image-right {
  flex-wrap: wrap;
  padding: 48px 24px;
}
@media (max-width: 992px) {
  .image-left, .image-right {
    padding: 24px;
  }
}

.image-left {
  flex-direction: row-reverse;
}

.image-right {
  flex-direction: row;
}

.image-top, .image-bottom {
  text-align: center;
}
@media (max-width: 768px) {
  .image-top, .image-bottom {
    padding: 0 24px;
  }
}
.image-top .left-container, .image-bottom .left-container {
  width: 50% !important;
}
@media (max-width: 768px) {
  .image-top .left-container, .image-bottom .left-container {
    width: 100% !important;
  }
}
.image-top .left-container .cta-button, .image-bottom .left-container .cta-button {
  align-self: center;
}
.image-top .right-container, .image-bottom .right-container {
  width: 75% !important;
}
@media (max-width: 768px) {
  .image-top .right-container, .image-bottom .right-container {
    width: 100% !important;
  }
}

.image-top {
  flex-direction: column-reverse;
}

.image-bottom {
  flex-direction: column;
}

.video-container {
  position: relative;
  width: 100%;
}
.video-container .video-thumbnail-container {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 40px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .video-container .video-thumbnail-container {
    height: 500px;
    border-radius: 30px;
  }
}
@media (max-width: 992px) {
  .video-container .video-thumbnail-container {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .video-container .video-thumbnail-container {
    height: 300px;
    min-width: 100%;
    max-width: 100vw;
  }
}
@media (max-width: 576px) {
  .video-container .video-thumbnail-container {
    height: 250px;
  }
}
.video-container .video-thumbnail-container .video-thumbnail {
  width: 100%;
  object-fit: cover;
  border-radius: 40px;
}
@media (max-width: 1200px) {
  .video-container .video-thumbnail-container .video-thumbnail {
    border-radius: 30px;
  }
}
@media (max-width: 768px) {
  .video-container .video-thumbnail-container .video-thumbnail {
    width: 100%;
  }
}
.video-container .video-thumbnail-container .overlay-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #3b3ad5;
  transition: transform 0.3s ease;
}
.video-container .video-thumbnail-container .overlay-button:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
.video-container .asset {
  display: none;
  width: 100% !important;
  height: 350px !important;
  border-radius: 40px !important;
}
@media (max-width: 1200px) {
  .video-container .asset {
    height: 500px;
    border-radius: 30px;
  }
}
@media (max-width: 992px) {
  .video-container .asset {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .video-container .asset {
    height: 300px;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .video-container .asset {
    height: 250px;
  }
}
