/* SLICK */
.slick-slide {
  margin: 0 10px;
}

.carousel {
  margin: 0 -10px;
}

/* Arrows */

.hero .slick-prev,
.hero .slick-next {
  font-size: 0;
  line-height: 0;

  position: absolute;
  top: 50%;

  display: block;

  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);

  cursor: pointer;

  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.hero .slick-prev:hover,
.hero .slick-prev:focus,
.hero .slick-next:hover,
.hero .slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.hero .slick-prev:hover:before,
.hero .slick-prev:focus:before,
.hero .slick-next:hover:before,
.hero .slick-next:focus:before {
  opacity: 1;
}

.hero .slick-prev.slick-disabled:before,
.hero .slick-next.slick-disabled:before {
  opacity: .25;
}

.hero .slick-prev:before,
.hero .slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;

  opacity: .75;
  color: white;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero .slick-prev {
  left: -25px;
}

.hero [dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.hero .slick-prev:before {
  content: '←';
}

.hero [dir='rtl'] .slick-prev:before {
  content: '→';
}

.hero .slick-next {
  right: -25px;
}

.hero [dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.hero .slick-next:before {
  content: '→';
}

.hero [dir='rtl'] .slick-next:before {
  content: '←';
}

/* Dots */
.hero .slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.hero .slick-dots {
  position: absolute;
  bottom: -40px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: right;
}

.hero .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.hero .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.hero .slick-dots li button:hover,
.hero .slick-dots li button:focus {
  outline: none;
}

.hero .slick-dots li button:hover:before,
.hero .slick-dots li button:focus:before {
  opacity: 1;
}

.hero .slick-dots li button:before {
  font-size: 32px;
  color: white;
  opacity: 0.5;
  transition: all 0.2s ease;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;

}


.hero .slick-dots li.slick-active button:before {
  font-size: 44px;
  color: red;
  opacity: 1;
}




/* SLICK END */
.header-video-section {
  color: #1F1F1F;
  padding: 60px 0px;
}

.hs_title {
  margin-bottom: 30px;
}

.hs_title h2 {
  font-size: 28px;
  text-align: left;
  width: 100%;
}

.header-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.header-body .left {
  flex: 1;
}

.header-body .left p {
  font-size: 16px;
  line-height: 1.5;
}

.header-body .right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: end;
}

.quote-box {
  border: 1px solid #c80000;
  padding: 40px;
  text-align: center;
  width: 80%;
  text-align: left;
}

.quote-box p {
  color: #c80000;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
}

.quote-box button {
  background: #c80000;
  color: white;
  padding: 12px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.quote-box button:hover {
  background: #900000;
}

.temp {
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  position: relative;
  overflow: hidden;
}

.card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* затемнення */
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.play-button {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.play-button::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid white;
}

.card:hover .overlay {
  opacity: 1;
  pointer-events: auto;
}

.card:hover .play-button {
  opacity: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  margin-bottom: 60px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  color: #fff;
}

.text-block {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-block h1 {
  font-size: 48px;
  color: #fff;
  margin: 5px 0px;
}

.text-block h2 {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 40px;
}

.text-block p {
  font-size: 16px;
  line-height: 1.5;
}

.hero .btn {
  align-self: flex-start;
  padding: 12px 24px;
  border: 1px solid red;
  color: red;
  text-decoration: none;
  transition: 0.3s;
}

.hero .text-block .btn {
  margin-top: 20px;
}

.hero .btn .quote-box {
  color: #fff;
}

.hero .btn:hover {
  background: red;
  color: white;
}

.video-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.video-button {
  width: 80px;
  height: 80px;
  background: red;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-button::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid white;
}

.carousel-wrapper {
  margin-top: 40px;
}

.carousel .card {
  position: relative;
  background: transparent;
  border-radius: 15px;
  overflow: hidden;

  margin: 0 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.carousel .card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 15px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
  color: white;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-info span:last-child {
  background-color: #1F1F1F;
  border-radius: 10px;
  padding: 4px 10px;
  font-size: 11px;
}

.slick-prev:before, .slick-next:before {
  color: white;
  font-size: 28px;
}

.slick-prev {
  left: -30px;
  z-index: 1;
}

.slick-next {
  right: -30px;
  z-index: 1;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: black;
  padding: 0;
}

.modal iframe {
  width: 100%;
  height: 450px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

.custom-arrow {
  z-index: 2;
  border: none;
  padding: 10px;
  cursor: pointer;
  background: none;
}

.custom-arrow img {
  width: auto;
}

.custom-prev {
  left: -40px;
}

.custom-next {
  right: -40px;
}

.navslik {
  margin-top: 15px;
}

.video-button {
  cursor: pointer;
}

.more-btn {
  width: 100%;
  padding: 10px 0;
  background-color: #c80000;
  color: white;
  border: none;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.more-btn:hover {
  background-color: #900000;
}

@media screen and (min-width: 0px) and (max-width: 768px) {
  .hero {
    background: none !important;
    padding: 20px 0;
    margin-bottom: 20px;

  }

  .header-body {
    flex-direction: column;
  }

  .header-body .right {
    flex: none;
    display: flex;
    width: 100%;
  }

  .header-video-section .quote-box {
    width: 100%;
    text-align: left;
    padding: 20px;
  }

  .hero-content {
    display: none;
  }

  .navslik {
    display: none;
  }

  .hero .carousel .card {
    margin: 0 0 !important;
    border-radius: 0;
    padding: 10px;
  }

  .header-video-section {
    padding: 20px 10px 0;
  }

  .hero .card-info {
    position: relative;
    color: #1F1F1F;
    padding: 10px 0px;
    font-size: 22px;
    background: none;
    text-transform: uppercase;
  }

  .hero .card-info span:last-child {
    display: none;
  }

  .hero .carousel-wrapper {
    padding: 0;
    margin: 10px 0 0;
  }

  .hero .slick-slide {
    margin: 0 !important;
  }

  .hero .carousel {
    margin: 0 !important;
    padding: 0 0 !important;
  }

  .hero .overlay {
    background-color: none !important;
  }

  .card:hover .overlay {
    background: none !important;
  }
}