.slider-wrapper {
  position: relative;
  overflow: hidden;
  margin: 50px 0px 20px;
}

#first-slider {
  width: 978px;
  height: 468px; 
}

.gray-div {
  position: absolute;
  top: 0;
  left: 0;  
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.0);
}


.slides-container {
  display: flex;
  overflow: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slides-container img {
  object-fit: cover; 
}

.slides-container::-webkit-scrollbar {
  display: none;
}

.slide-arrow {
  position: absolute;
  z-index: 11;
  display: flex;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 4rem;
  background-color: white;
  border: none;
  width: 2rem;
  font-size: 3rem;
  padding: 0;
  cursor: pointer;
  opacity: 0.4 !important;
  transition: opacity 100ms;
}

.slide-arrow-prev {
  left: 0;
  padding-left: 0.25rem;
  border-radius: 0 2rem 2rem 0;
}

.slide-arrow-next {
  right: 0;
  padding-left: 0.75rem;
  border-radius: 2rem 0 0 2rem;
}

.slides-container li {
  object-fit: cover;
  margin-right: 10px;
}

.slides-container li:last-child {
  margin-right: 0px;
}

#first-slider .slide img {
  width: 826px;
  height: 464px;	
}

#second-slider {
  width: 986px;
  height: 464px; 
}


#second-slider .slide img {
  width: 696px;
  height: 464px;	
}

.large-bottom-mr {
  margin-bottom: 70px;
}

.cslide_size img {
  width: 309px !important;
}

/* Modal */

.m-container {
  display: flex;
  justify-content: space-between;
}

.m-container > img {
  width: 306px;
}

.m-container > img:hover {
  cursor: pointer;
}	

.modal {
  display: none;
  position: fixed;
  z-index: 5000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}
.modal-content-custom {
  margin: 0 auto;
  max-width: 705px;
}

.modal img {
  width: 100%;
}

.close-modal {
  cursor: pointer;
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

