@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}








/*==========================================================
0. SLICK DOTS
==========================================================*/
.slick-dots {
  position: absolute;
  bottom: -30px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 0;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  width: 14px;
  height: 14px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button::before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  content: none;
  text-align: center;
  opacity: .25;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button::before {
  opacity: 1;
  color: var(--secondary);
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  background-color: var(--white);
  border-radius: 50%;
  font-size: 0px; // This step is very important to hide the numbers
  border: 0;
  background-color: transparent;
  border: 2px;
  border-style: solid;
  border-color: rgba(22, 22, 22, 0.25);
  border-color: var(--primary);
}

.slick-dots li:hover button {
  background-color: transparent;
  border-color: var(--secondary);
}

.slick-dots li.slick-active button {
  background-color: var(--secondary);
  border-color: var(--secondary);
}


/*==========================================================
0. SLICK DOTS BAR
==========================================================*/
/*.dotted-bar .slick-dots {bottom: 20px;}*/
.dotted-bar .slick-dots li {width: auto; height: auto; padding: 5px 0;}
.dotted-bar .slick-dots li button::before {content: none;}
.dotted-bar .slick-dots li button {
	width: 40px;
	height: 4px;
	padding: 0px;
  border-radius: 0;
  border: none;
	background: rgba(195, 195, 195, 0.5);
	background: var(--white);
	background: var(--primary);
}
.dotted-bar .slick-dots li.slick-active button {background-color: var(--secondary);}


/*==========================================================
0. SLICK NAVIGATION
==========================================================*/
.slick-nav {
  width: 50px;
  height: 50px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 25px);
}

.slick-nav.prev-arrow {
  left: 2%;
  /*transform: scaleX(-1);*/
  z-index: 999;
}

.slick-nav.next-arrow {
  right: 2%;
  left: auto;
}

.slick-nav {
  color: var(--white);
  background: transparent;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.slider:hover .slick-nav {visibility: visible; opacity: 1;}
.slick-nav:hover {
  color: var(--primary);
  background: var(--white);
  border: 2px solid var(--white);
}





/*====================================================================================
	MON SLICK
====================================================================================*/

.home-ref-slider .slick-slide {
	display: block;
	height: 70vh;
}

.home-ref-slider .slick-slide img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
  object-position: center center;
}

.home-client-slider .slick-slide {padding: 0 10px; box-sizing: border-box;}
.home-client-slider .client-slide {display: grid; place-items: center;}
.home-client-slider .client-slide, .home-client-slider .slick-slide img {width:100%; height:150px}
.home-client-slider .client-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
