.res-vp-section {
  background: #183968;
  padding: 80px 0;
  color: #fff;
}

.res-vp-title {
text-align: center;
    margin-bottom: 30px;
    font-family: "Instrument Sans";
    font-weight: 600 !important;
    font-size: 45px;
}

.res-vp-filters {
  gap: 15px;
  margin-bottom: 50px;
}

.res-vp-filter-wrap {
  position: relative;
  min-width: 170px;
}

.res-vp-filter-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 12px 18px;
  padding-right: 42px;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  font-weight:600;
}

.res-vp-filter-select option {
  color: #0f244b;
}

.res-vp-filter-select:hover,
.res-vp-filter-select:focus {
  border-color: #fff;

}

.res-vp-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.res-vp-heading span {
    font-family: "Instrument Sans";
    font-weight: 600 !important;
    font-size: 25px;
}

.res-vp-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #aaa;
  min-width: 120px;
}

.res-vp-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 16px;
  margin: 8px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.res-vp-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.res-vp-img img {
  width: 100%;
  height: auto;
  display: block;
}


.res-vp-image-link,
.res-vp-card h4 a {
  display: inline-block;
  cursor: pointer;
}

.res-vp-image-link:hover,
.res-vp-card h4 a:hover {
  opacity: 0.9;
}

.res-vp-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1c3f73;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}
.res-vp-play img {
  width: 44px;
  height: 44px;
  display: block;
}

.res-vp-card h4 {
  margin: 18px 0 10px;
   font-size: 25px;
  line-height: 1.4;
   font-family: "Instrument Sans";
   font-weight: 500 ;
}

.res-vp-card a {
  color: #fff;
    font-size: 25px;
    line-height: 1.4;
    font-family: "Instrument Sans";
    font-weight: 500;
  text-decoration: none;
}

.res-vp-card a:hover {
  text-decoration: none;
}

.res-vp-item .res-vp-link {
  color: inherit;
  text-decoration: none;
      font-family: "Instrument Sans";
    font-weight: 500;
    font-size: 18px;
}

.res-vp-item .res-vp-link:hover {
  text-decoration: none;
}

.slick-prev,
.slick-next {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  z-index: 15;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.slick-prev:before,
.slick-next:before {
  /*color: #0d1b37;*/
  /*font-size: 20px;*/
  /*opacity: 1;*/
  
  display:none;
}

.slick-arrow img {
    max-width: 50px;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
  overflow: hidden;
}

.slick-slide {
  padding: 0 10px;
  box-sizing: border-box;
}

.slick-slide > div {
  height: 100%;
}

.res-vp-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.res-vp-modal.active {
  display: flex;
}

.res-vp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.res-vp-modal__content {
  position: relative;
  width: min(960px, calc(100% - 32px));
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.res-vp-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0d1b37;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}

.res-vp-modal__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.res-vp-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 992px) {
  .res-vp-filter-wrap {
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .res-vp-section {
    padding: 50px 0;
  }

  .res-vp-title {
    font-size: 32px;
  }

  .res-vp-heading::after {
    width: 100%;
    min-width: 0;
  }

  .res-vp-filters {
    gap: 12px;
  }

  .slick-prev,
  .slick-next {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .res-vp-title {
    font-size: 26px;
  }

  .res-vp-card {
    padding: 14px;
  }

  .res-vp-card h4 {
    font-size: 16px;
  }
}
