/* ====================================== */
/* ======== begin new slider css ======== */
/* ====================================== */
.grid-container {
  background: white;
}

/* ENABLE CSS GRID FOR LIFT OFF  🚀 */
@supports(display: grid) {

  .grid-container {
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto 1fr auto;

    /*     Let the craziness begin!!! */
    grid-template-areas:
      "header header header"
      "title title footer"
      "main main main";
    @media screen and (max-width: 500px) {
      grid-template-columns: 1fr;
      grid-template-rows: 0.3fr 1fr auto 1fr;
      grid-template-areas: 
      "header"
      "title"
      "main"
      "footer";
    }
  }

  .grid-container .grid-item {
    color: #fff;
    padding: 3.5em 1em;
    font-size: 1em;
    font-weight: 700;
  }

  .grid-container .title {
    color: gray;
    background-color: lighten(skyblue, 25%);
    grid-area: title;
  }

  .grid-container .main-div {
    grid-area: main;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
  }


  .grid-container .items {
    position: relative;
    width: 100%;
    padding: 0 4rem;
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    transition: all 0.2s;
    transform: scale(0.98);
    will-change: transform;
    user-select: none;
    cursor: pointer;

    /*     background: black; */
  }
  @media (max-width: 767px) {
    .grid-container .items {
    padding: 0 1rem;
    }
  }

  .grid-container .items.active {
    background: rgba(255,255,255,0.3);
    cursor: grabbing;
    cursor: -webkit-grabbing;
    transform: scale(1);
  }

  .grid-container .item {
    display: inline-block;
    /*     background: skyblue; */
    min-height: 150px;
    min-width: 200px;
    margin: 2em 2em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    @media screen and (max-width: 767px) {
      margin: 2em 15px;
      min-height: 200px;
      min-width: 150px;
    }
  }
}


.grid-container a {
  display: block;
  /*   color: lighten(skyblue, 15%); */
  text-decoration: underline;
  margin: 1em auto;
  &:hover {
    cursor: pointer;
  }
}

.grid-container p {
  text-align: left;
  text-indent: 20px;
  font-weight: 100;
}



/* scrollbar css */

.grid-container .items::-webkit-scrollbar {
  height: 15px;
}
.grid-container .items::-webkit-scrollbar-track-piece {
  background: lightgray;
  border-radius: 100px;
}
.grid-container .items::-webkit-scrollbar-thumb {
  background: red;
  border-radius: 100px;
  height: 10px;
}
.grid-container .items::-webkit-scrollbar-button:end:increment {
  width: 40%;
  display: block;
  background: transparent;
}
.grid-container .items::-webkit-scrollbar-button:start:decrement {
  width: 40%;
  display: block;
  background: transparent;
}
/* ==================================== */
/* ======== end new slider css ======== */
/* ==================================== */


.client-logos-slider .swiper-pagination-bullet{
  margin: 0px!important;
  margin-left: 0px!important;
}
.client-logos-slider .title-des-txt{
  margin-bottom: 10px;
}
.client-logos-slider .client-logo-slider-box{
  background-color: #fff;
  padding: 25px 0px;
}

.client-logos-slider .client-slider-pagination-box{
  padding-top: 47px;
}

.slider-container .range-slider {
  width: 224px;
  border:none;
  box-shadow: none;
  /* position: absolute;
  top: 10px;
  left: 11%; */
  padding: 2px;
}
/* range 2 */
input[type="range"] {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none; 
  /* creating a custom design */
  width: 100%;
  cursor: pointer;
  outline: none;
  border-radius: 15px;
  /*  overflow: hidden;  remove this line*/

  /* New additions */
  height: 5px;
  background: #d5d5d5;
}
input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
}
input[type=range]::-moz-range-track{
  background: transparent;
}
/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none; 
  /* creating a custom design */
  height: 24px;
  width: 24px;
  background-color: #db1313;
  border-radius: 50%;
  border: none;
  position: relative;
  top: -8px;
  left: -2px;
  /* box-shadow: -407px 0 0 400px #f50; emove this line */
  transition: .2s ease-in-out;
}

/* Thumb: Firefox */
input[type="range"]::-moz-range-thumb {
  height: 24px;
  width: 24px;
  background-color: #db1313;
  border-radius: 50%;
  border: none;
  /* box-shadow: -407px 0 0 400px #f50; emove this line */
  transition: .2s ease-in-out;
}



input[type=range]:focus::-moz-range-thumb, input[type=range]:focus::-webkit-slider-thumb{
  outline: none !important;
} 

.client-logos-slider .owl-carousel .owl-stage{
  display: flex;
  align-items: center;
}
.client-logos-slider .owl-carousel .owl-item{
  padding: 0px 20px;
}
.client-logos-slider .slider-container{
  max-width: max-content;
  margin: 0 auto;
  position: inherit;
  width: 100%;
  background-color: #fff;
  border-radius: 50px;
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-carousel {

}