:root {
  
  /* Mainly used for .banner_slider */
  --banner-max-heigh-1: 360px;
  --banner-max-heigh-2: 500px;
  --banner-max-heigh-3: 800px;
  
  --slider-icon-offset-1: 16px;
  --slider-icon-offset-2: 64px;
  
  --slider-icon-size-1: 64px;
  
  --slider-next-icon-1: #fff url('https://placehold.co/64') center center no-repeat;
  --slider-prev-icon-1: #fff url('https://placehold.co/64') center center no-repeat;
  
  --dot-width-1: 16px;
  --dot-height-1: 4px;
  --dot-width-active-1: 32px;
  
  /* Mainly used for .partner_slider */
  --slider-next-icon-2: #fff url('https://placehold.co/64') center center no-repeat;
  --slider-prev-icon-2: #fff url('https://placehold.co/64') center center no-repeat;
}

.banner_slider {
  
  & .slick-next{
	background:var(--slider-next-icon-1);
	font-size: 0;
	border:0;
	width: var(--slider-icon-size-1);
	height: var(--slider-icon-size-1);
	position: absolute;
	right: var(--slider-icon-offset-2);
	top: 50%;
	margin-top: -36px;
	cursor: pointer;
	z-index: 20
  }
  
  & .slick-prev{
	background:var(--slider-prev-icon-1);
	font-size: 0;
	border:0;
	width: var(--slider-icon-size-1);
	height: var(--slider-icon-size-1);
	position: absolute;
	left: var(--slider-icon-offset-2);
	top: 50%;
	margin-top: -36px;
	cursor: pointer;
	z-index: 20
  }
  
  & .slick-dots{
	position: absolute;
	bottom: 60px;
	left: 0;
	width: 100%;
	z-index: 10;
	text-align: center;
	margin: 0 0 10px;
	padding: 0
  }
  
  @media screen and (max-width: 576px) {
    & .slick-next {
      right: var(--slider-icon-offset-1);
    }
    & .slick-prev {
      left: var(--slider-icon-offset-1);
    }
    & .slick-dots{
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 100%;
      z-index: 10;
      text-align: center;
      margin: 0 0 10px;
      padding: 0
    }
  }
  
  @media screen and (max-width: 992px) {
    & .slick-next {
      right: var(--slider-icon-offset-1);
    }
    & .slick-prev {
      left: var(--slider-icon-offset-1);
    }
    & .slick-dots{
      position: absolute;
      bottom: 0px;
      left: 0;
      width: 100%;
      z-index: 10;
      text-align: center;
      margin: 0 0 10px;
      padding: 0
    }
  }
  
  @media screen and (max-width: 1440px) {
    & img.banner {
      max-height: var(--banner-max-heigh-2);
    }
  }
  
  @media screen and (min-width: 1440px) {
    & img.banner {
      max-height: var(--banner-max-heigh-3);
    }
  }
  
  & .slick-dots li{
	list-style: none;
	width: var(--dot-width-1);
	height: var(--dot-height-1);
	border-radius: var(--border-radius-2);
	background:gray;
	display: inline-block;
	margin: 4px;
  }
  & .slick-dots li.slick-active{
	background:#000;
    width: var(--dot-width-active-1);
	height: var(--dot-height-1);
  }
  & .slick-dots li button{
	display: none;		
  }
}

.partner_slider, .banner_slider_2 {
  & .slick-slide {
    margin: 8px;
  }
  
  & .slick-list {
    margin-left: 80px;
    margin-right: 80px;
  }
  
  & .slick-next{
	background:var(--slider-next-icon-2);
	font-size: 0;
	border:0;
	width: var(--slider-icon-size-1);
	height: var(--slider-icon-size-1);
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -36px;
	cursor: pointer;
	z-index: 20
  }
  & .slick-prev{
	background:var(--slider-next-icon-2);
	font-size: 0;
	border:0;
	width: var(--slider-icon-size-1);
	height: var(--slider-icon-size-1);
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -36px;
	cursor: pointer;
	z-index: 20
  }
  & .slick-dots{
	position: absolute;
	bottom: -18px;
	left: 0;
	width: 100%;
	z-index: 10;
	text-align: center;
	margin: 0 0 -24px;
  }
  & .slick-dots li{
	list-style: none;
	width: var(--dot-width-1);
	height: var(--dot-height-1);
	border-radius: var(--border-radius-2);
	background:gray;
	display: inline-block;
	margin: 5px;
  }
  & .slick-dots li.slick-active{
	background:#000;
	width: var(--dot-width-active-1);
	height: var(--dot-height-1);
  }
  & .slick-dots li button{
	display: none;		
  }
}

.slick-track {
  display: flex;
  align-items: center;
}

.partner_slider .slick-list .slick-track{
  gap: 1rem !important;
}