.title p{color: #D0C9BC}
.video-guide-section {
  padding: 60px 20px 80px;
  text-align: center;
  @media (max-width: 767px) {
    padding: 20px 20px 80px;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.video-card {
  border: 2px solid #A3976B;
  background: linear-gradient(175deg, #1A1A1A 8.03%, #313130 94.31%);
  border: 2px solid #A3976B;
  border-radius: 18px;
  padding: 30px;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.video-card:after{
	content: '';
	background: url(../../images/ellipse-video.svg) no-repeat;
    background-size: 100%;
    width: 70px;
    height: 160px;
    position: absolute;
    right: 0;
    @media (max-width: 767px) {
        width: 60px;
        height: 150px;
    }
}

.video-card:first-child::after{
    bottom: 0;
     @media (max-width: 767px) {
         transform: rotate(70deg);
         right: 33px;
         bottom: -39px;
     }
}
.video-card:nth-child(2)::after{
    top:20px;
    @media (max-width: 767px) {
         transform: rotate(90deg);
         right: 150px;
         top:auto;
         bottom: -46px;
     }
}
.video-card:nth-child(3)::after{
     bottom: 20px;
}
.video-card:nth-child(4)::after{
    transform: rotate(90deg);
     bottom: -46px;right: 70px;
}
.video-card:nth-child(5)::after{
    transform: rotate(-90deg);
     top: -46px;right: 60px;
}
.video-card:nth-child(6)::after{
     top: 70px;
}


.video-card h2 strong {
  color: #EAD898;
  font-weight: 600;
  text-transform: capitalize
}

.watch-now {
  font-size: 24px;
  font-weight: 500;
  background: none;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  @media (max-width: 767px) {
    font-size: 18px;
  }
}

.play-icon {
  font-size: 18px;
  width: 40px;
  height: 40px;
  border:3px solid #fff;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
	 @media (max-width: 767px) {
        font-size: 14px;
        width: 30px;
        height: 30px;
        border:2px solid #fff;
        padding: 8px;
     }
}
		
.video-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-modal.open {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 820px;
  padding: 3rem;
  border-radius: 10px;
   @media (max-width: 767px) {
	padding: 1.5rem;
	border-radius: 8px;
  }
}

.close-modal {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}
.video-modal video{
	min-height: 100%
}
	
.card-benefits {
  background: #f7f7f7;
  padding: 80px 0;
}

.d-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

P{color: var(--gray-9)}
.faq{background: var(--gray-9)}