.slick-slide {
  padding: 0 8px;
}

.hero-slider div.slick-slide.slick-current+div {
  margin-top: 150px;
}

.hero-slider div.slick-slide.slick-current+div+div {
  margin-top: 75px;
}

.hero-slider div.slick-slide.slick-current+div+div+div {
  margin-top: 225px;
}

.hero-slider div.slick-slide.slick-current+div+div+div+div {
  margin-top: 118px;
}

.hero-slider div.slick-slide div:last-child {
  margin-top: 16px;
  border-radius: 15px;
}
.overlay_img img{
opacity: 25%;
}
.hero-slider {
  background-color: #000;
}
.hero-slider div.slick-slide.slick-current+div {
    display: flex;
    flex-wrap: wrap;
}
.hero-slider div.slick-slide.slick-current+div .text_overlap{ 
  order: -1;
  margin-top: 0;
}
.modal {
  background: rgb(28 26 26 / 74%);
}

.hero-slider div.slick-slide div {
  position: relative;
}

.slick-arrow {
  display: none !important;
}

.hero-slider div.slick-slide .text_overlap {
  background-color: #423F3B;
  width: 100%;
  height: 100%;
  border-radius: 6%;
  padding: 42px 35px;
}


.text_overlap p {
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  font-weight: bold;
  font-family: "SF Pro", Sans-serif;
}

.text_overlap h5{
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #FFFFFF;
  display: block;
  font-family: "SF Pro", Sans-serif;
}

.modal-button {
  background-color: #fff;
  border-radius: 100%;
  width: 48px;
  height: 48px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  bottom: 15px;
  right: 15px;
  position: absolute;
  border: none;
  transition: 0.3s ease all;
  z-index: 1;
  color: #000;
} 
.modal-button:hover, .modal-button:focus {
  background-color: #FFCE48; 
   color: #000;
}
.hero-slider div.slick-slide div img{
   transition: 0.9s ease;
}
.hero-slider div.slick-slide div:hover > img{
  transform: scale(1.08);
}
.text_overlap h6 {
  font-size: 10px;
  line-height: 18px;
  color: rgb(255 255 255 / 50%);
  font-family: "SF Pro", Sans-serif;
  font-weight: 500;
}
.text_overlap:hover p, .text_overlap:hover h5, .text_overlap:hover h6{
  -webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
  -webkit-mask-size: 200%;
  animation: shine 2s infinite;
}
 
@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  
  to {
    -webkit-mask-position: -50%;
  }
}
.modal-button:focus-visible, .modal-button:focus {
  border: none;
  outline: none;
}

.text_overlap p>span {
  color: #FFCE48;
}

.slick-slide img {
  display: block;
  object-fit: contain;
  width: 100%;
}

.modal-dialog {
  background-color: #fff;
  max-width: calc(100% - 300px);
  max-height: 500px;
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}



/********************************/
#lightbox {
  /* ----- Positioning ----- */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  
  /* The code above makes sure that the
  lightbox covers the entire page*/
  
  /* ----- Visibility ----- */
  display: none;
  
  /* ----- Styling ----- */
  background-color: rgba(0, 0, 0, 0.95);
  
  /* Normally, most lightboxes do not use
  a completely solid black, but with about
  90-95% opacity so that the background is
  somewhat visible */
}

#video-wrapper {
  /* ----- Positioning ----- */
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  
  /* The code above makes sure the video is
  both vertically and horizontally centered
  to the screen */
  
  /* ----- Styling ----- */
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  
  /* The code above is used to add a little shadow to the video making blend in better */
  width: calc(100% - 640px);
}

#close-btn {
  /* ----- Text ----- */
  color: grey;
  font-size: 25px;
  
  /* ----- Positioning ----- */
  position: fixed;
  top: 3%;
  right: 3%;
  z-index: 2;
  
  /* The code above is used to put the button on the upper right corner of the lightbox */
  
  /* ----- Transformations ----- */
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  
   /* The code above is used to initialize the scale for the button so that it can be used in transitions */
  
  /* ----- Transitions ----- */
  -webkit-transition: transform .5s ease, color .5s ease;
  -moz-transition: transform .5s ease, color .5s ease;
  -ms-transition: transform .5s ease, color .5s ease;
  -o-transition: transform .5s ease, color .5s ease;
  transition: transform .5s ease, color .5s ease;
}

#close-btn:hover {
  /* ----- Text ----- */
  color: white;
  
  /* ----- Styling ----- */
  cursor: pointer;
  
  /* ----- Transformations ----- */
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
  
    /* ----- Transitions ----- */
  -webkit-transition: transform .5s ease, color .5s ease;
  -moz-transition: transform .5s ease, color .5s ease;
  -ms-transition: transform .5s ease, color .5s ease;
  -o-transition: transform .5s ease, color .5s ease;
  transition: transform .5s ease, color .5s ease;
}
.sticky-section .elementor-container > div:first-child{
position: sticky;
    min-height: 100vh;
    top: 0;
}
.sticky-section .elementor-column .elementor-widget-wrap{
background-size: contain !important;
}