<style>
.con_w_video_wrap {
  padding: 40px 0;
  background-color: #f5f5f5;
}

.con_w_video_wrap .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.con_w_video_wrap .content-col,
.con_w_video_wrap .booking-widget-col,
.con_w_video_wrap .video-col {
  flex: 1 1 100%;
  padding: 0 15px;
  margin-bottom: 20px;
}

.con_w_video_wrap .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.con_w_video_wrap .video_wrap {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.con_w_video_wrap video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.con_w_video_wrap .video_wrap .play_video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  z-index: 9;
  cursor: pointer;
}

.con_w_video_wrap .video_wrap .play_video svg {
  width: 100%;
  height: 100%;
}

.con_w_video_wrap .video_wrap.played > div {
  display: none;
}

.con_w_video_wrap .content-col .feature_wrap {
  padding-top: 20px;
}

.con_w_video_wrap .content-col .feature_wrap .item {
  margin-bottom: 20px;
}

.con_w_video_wrap .content-col .feature_wrap .item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
}

.con_w_video_wrap .content-col .feature_wrap .item:last-child,
.con_w_video_wrap .content-col .feature_wrap .item:last-child p:last-child {
  margin-bottom: 0;
}

.con_w_video_wrap .content-col h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.con_w_video_wrap .content-col h3 {
  font-weight: 300;
  font-size: 20px;
}

.con_w_video_wrap .content-col h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

.con_w_video_wrap .content-col p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.booking-widget-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hostfully-widget-container {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: visible;
}

.hostfully-widget-container h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

#leadWidget {
  width: 100%;
  min-height: 300px;
}

#leadWidget input,
#leadWidget select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#leadWidget button {
  width: 100%;
  padding: 12px;
  background-color: #333333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#leadWidget button:hover {
  background-color: #555555;
}

.hs-btn-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hs-button {
  padding: 10px 20px;
  background-color: #333333;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hs-button:hover {
  background-color: #555555;
}

.pop_wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.pop_wrap.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pop_wrap_inner {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
}

.close_icon {
  float: right;
  cursor: pointer;
  font-size: 24px;
}

@media (min-width: 768px) {
  .con_w_video_wrap .row {
    flex-wrap: nowrap;
  }

  .con_w_video_wrap .content-col,
  .con_w_video_wrap .booking-widget-col,
  .con_w_video_wrap .video-col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .con_w_video_wrap .video_wrap .play_video {
    width: 80px;
    height: 80px;
  }

  .con_w_video_wrap .content-col h2 {
    font-size: 28px;
  }

  .con_w_video_wrap .content-col h3 {
    font-size: 24px;
  }

  .con_w_video_wrap .content-col h4 {
    font-size: 22px;
  }
}

@media (min-width: 1200px) {
  .con_w_video_wrap {
    padding: 60px 0;
  }

  .con_w_video_wrap .video_wrap .play_video {
    width: 96px;
    height: 96px;
  }

  .con_w_video_wrap .content-col h2 {
    font-size: 32px;
  }

  .con_w_video_wrap .content-col h3 {
    font-size: 28px;
  }

  .con_w_video_wrap .content-col h4 {
    font-size: 24px;
  }
}

.con_w_video_wrap.con_pos_right .row {
  flex-direction: row-reverse;
}
</style>