
{# Slider #}
.resource-slider .resource-slider__container.slick-initialized.slick-slider{
  display: flex;
}

.resource-slider .slick-list{
  overflow-x: hidden;
  margin: 0;
  padding: 10px 0 10px 10px;
}

.resource-slider button{
  padding: 20px;
  color: #000;
  background-color: transparent;
  border: none;
}

.resource-slider button i{
  font-size: 1.5rem;
}

.resource-slider .slick-slide.slick-active{
  opacity: 1;
  transition: all 0.2s linear;
}

.resource-slider .slick-slide:not(.slick-active){
  opacity: 0;
  transition: all 0.2s linear;
}

{# Other #}
.resource-slider .resource-slider__top{
  text-align: center;
}

.resource-slider .resource-slider__top h2{
  font-size: 45px;
  line-height: 1;
  font-weight: 400;
  color: #293242;
  margin-bottom: 27px;
}

{# Resources #}
.resource-slider .resource{
  width: 100%;
  box-shadow: 0px 3px 6px #0000007E;
  border-radius: 20px;
  background-color: #fff;
  max-width: 295px;
  width: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}

.resource-slider .resource:hover{
  box-shadow: 0 3px 6px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease-in-out;
}

.resource-slider .resource img{
  width: 100%;
  border-radius: 20px 20px 0 0;
  transition: all 0.3s ease-in-out;
}

.resource-slider .resource img:hover{
  filter: brightness(0.9);
  transition: filter 0.3s ease-in-out;
}

.resource-slider .resource .resource__content > div{
  padding: 26px 24px 20px 24px;
}

.resource-slider .resource .resource__content > div > span{
  display: inline-block;
  font-size: 16px;
  line-height: 17px;
  color: #0062E1;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.resource-slider .resource .resource__content > div > h3,
.resource-slider .resource .resource__content > div > h3 > a{
  display: block;
  font-size: 28px;
  line-height: 32px;
  font-weight: 400;
  color: #000;
  transition: all 0.3s ease-out;
}

.resource-slider .resource .resource__content > div > h3 > a:hover{
  color: #0062E1;
  transition: all 0.3s ease-out;
}

.resource-slider .resource__solutions{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
}

.resource-slider .resource__solutions--tag{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.2rem;
  border: 1px solid #0062E1;
  border-radius: 20px;
  padding: 3px 7px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
}

.resource-slider .resource__solutions--tag > i{
  color: #0062e1;
  font-size: 9px;
  line-height: 1;
}

.resource-slider .resource__solutions--tag > img{
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.resource-slider .resource__solutions--tag > span{
  display: block;
  width: 11px;
  height: 11px;
}

.resource-slider .resource__solutions--tag > span svg{
  fill: #0062E1;
}

.resource-slider .resource__link{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-size: 20px;
  line-height: 1;
  color: #000;
  transition: color 0.3s ease-out;
  padding: 0 24px 22px 24px;
}

.resource-slider .resource__link:hover{
  color: #0062e1;
  transition: color 0.3s ease-out;
}

.resource-slider .resource__link > span{
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

ul.slick-dots{
  display: none !important;
}

@media screen and (max-width: 800px){

  .resource-slider .slick-list{
    padding: 10px;
  }
  
  .resource-slider .resource-slider__top h2{
    font-size: 32px;
  }

}