* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;

  background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(38,32,32,1) 35%, rgba(94,94,94,0.9472163865546218) 100%););
  color: #fff;
  font-size: 16px;
}
h1, h2, h3 {
	font-weight: 700;
	line-height: 0.8;
}

h1{
font-size: 46px;
}
.display-3 {
  font-weight: 400;
}
/*
.responsive {
	max-width: 280px;
	height: auto;
	border-radius: 14px;
}

.container {
  max-width: 1200px;
  width: 95%;
}
*/
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
  background-color: #333;
}
::-webkit-scrollbar-thumb {
  background-color: #888;
}
.slider-wrapper {
  position: relative;
  border: 3px solid grey;
  border-radius: 14px;
  padding :10px;
  background-color:#232323;
}
.image-featured{
	border-radius: 14px;
}
.slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  z-index: 5;
  color: #fff;
  display: flex;
  cursor: pointer;
  font-size: 2.2rem;
  background: #005afd;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateY(-50%);
}

.slider-wrapper .slide-button:hover {
  background: #404040;
}

.slider-wrapper .slide-button#prev-slide {
  left: -25px;
  display: none;
}

.slider-wrapper .slide-button#next-slide {
  right: -25px;
}

.slider-wrapper .image-list {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 18px;
  font-size: 0;
  list-style: none;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}

.slider-wrapper .image-list .image-item {
  width: 325px;
  height: 400px;
  object-fit: cover;
}

.container .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.slider-scrollbar .scrollbar-track {
  background: #ccc;
  width: 100%;
  height: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  position: relative;
}

.slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}

.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  background: #000;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  cursor: grab;
  border-radius: inherit;
}

.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}
/*-----------------------------------------------------------------------------------*/
/*  BLOCKS CLASSES
/*-----------------------------------------------------------------------------------*/
.service-container {
  position: relative;
  border: 2px solid #888;
  border-radius: 15px;
  padding: 0 15px;
  background-color: #222;

}
.horizontal-scrollable.container-fluid {
  width: 90%;
  overflow-x: hidden;
}
.horizontal-scrollable > .row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.horizontal-scrollable > .row > .s-block {
  width: 30%;
}
.horizontal-scrollable > .row > .col-sm-3, .horizontal-scrollable > .row > .col-4 {
  flex: 0 0 auto;
}
#content::-webkit-scrollbar {
  /*display: none;*/
}
.scroll-right, .scroll-left {
  font-size: 2.5rem;
  color: #f1f1f5;
  line-height: 1;
  position: absolute;
  top: 43%;
}
.scroll-right:hover, .scroll-left:hover {
  color: #fff;
  transition: all 0.3s;
}
.scroll-right {
  right: -1.5rem;
  background-color: #1366fc;
  border-radius: 50%;
}
.scroll-left {
  left: -1.5rem;
  background-color: #1366fc;
  border-radius: 50%;
}
.s-card {
  position: relative;
  border-radius: 0.25rem;
}
/*-----------------------------------------------------------------------------------*/
/*  BLOCKS CLASSES END
/*-----------------------------------------------------------------------------------*/
/* Styles for mobile and tablets */
@media only screen and (max-width: 1023px) {
  .slider-wrapper .slide-button {
   // display: none !important;
  }

  .slider-wrapper .image-list {
    gap: 10px;
    margin-bottom: 15px;
    scroll-snap-type: x mandatory;
  }

  .slider-wrapper .image-list .image-item {
    width: 120px;
    height: 200px;
  }

  .slider-scrollbar .scrollbar-thumb {
    width: 20%;
  }
}
@media (max-width: 768px) {
  .horizontal-scrollable > .row > .s-block {
    width: 50%;
  }
  .scroll-left {
    left: -0.8rem;
  }
  .scroll-right {
    right: -0.8rem;
  }
}