.slaider_box {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}
.box_slide_1 {
  background-image: url("../resources/slide1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}
.box_slide_2 {
  background-image: url("../resources/slide2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}

.slaider_box_header {
  position: absolute;
  z-index: 100;
  width: 100%;
  margin: 0 auto;
}

.slaider {
  position: relative;
  width: 100%;
  height: 100vh;
}
.gallery_slide {
  display: none;
  width: 100%;
  height: 100%;
  transition: transform 2s ease-in-out;
}
.slaider_conteiner {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  padding-bottom: 40px;
  align-items: flex-end;
}
.slide_title {
  max-width: 655px;
  text-shadow: 2px 2px 2px black;
  color: var(--white, #fff);
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.slaider_box_text {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.slide_data {
  color: var(--white, #fff);
  opacity: 0.8;
  text-shadow: 2px 2px 2px black;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.slide_text {
  max-width: 655px;
  color: var(--white, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.slide_btn_info {
  margin-top: 44px;
  margin-bottom: 96px;
}
.slide_vidio {
  width: 411px;
  height: 231px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15),
    0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  padding: 12px;
  display: flex;
  justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}
.script_number {
  color: #fff;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}
.slide_vidio_slide_1 {
  background: url("../resources/video_slide1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}
.slide_vidio_slide_2 {
  background: url("../resources/video_slide2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}

.slide_vidio_btn {
  position: relative;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 100px;
  background: var(--red-base, #d8251d);
  padding: 8px;
  
}
.slide_vidio_btn_hover {
  position: absolute;
  z-index: -1;
  background-image: url("../resources/slide_vidio_btn_hover.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 48px;
  height: 48px;
  left: 0px;
  top: 0px;
}


.slide_vidio_btn:hover .slide_vidio_btn_hover {
  left: 2px;
  top: 2px;
}
.slide_vidio_btn:hover {
  background: var(--red-base, #971a14);
}




.slaider_controls_wrapper {
  position: absolute;
  bottom: 50px;
  right: 65%;
  left: calc(5% + ((100% - 1440px) / 2));
}
.script_number {
  display: flex;
  align-items: center;
  gap: 16px;
}
.slaider_control_prev {
  background: url("../resources/Arrow_left.svg");
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}
.slaider_control_next {
  background: url("../resources/Arrow_right.svg");
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}

.timerProgress {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 0;
}

.timerProgress::-webkit-progress-bar {
  background-color: rgba(255, 255, 255, 0.25);
}

.timerProgress::-webkit-progress-value {
  background-color: #ffffff;
  border-radius: 0;
}
.gallery_slide_active {
  display: block;
}
@media (max-width: 1400px) {
  .slaider_controls_wrapper {
    left: 10%;
    right: 65%;
  }
}
@media (max-width: 991px) {
  .slide_vidio {
    display: none;
  }
  .slaider_controls_wrapper {
    left: 15%;
    right: 15%;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
  .slaider_conteiner{
    padding-bottom: 10px;
  }
  .slaider_controls_wrapper {
    left: 10px;
    right: 10px;
  }
  .slide_title {
    font-size: 28px;
  }

  .slide_data {
    font-size: 16px;
  }
  .slide_text {
    font-size: 14px;
  }
}
