#targetsCarousel{
  --f-carousel-slide-width: calc((100% - 80px) / 3);
  --f-carousel-slide-height: auto;
  --f-carousel-spacing: 40px;
  --f-progress-color: #1d1d1d;
}
#personCarousel{
  --f-carousel-slide-width: calc((100% - 80px) / 3);
  --f-carousel-spacing: 40px;
  --f-progress-color: transparent;
}
#targetsCarousel .f-progress{
  display: none;
}
#targetsCarousel .f-carousel__slide,
#personCarousel .f-carousel__slide {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
#targetsCarousel .f-carousel__slide{
  border: 1px solid #fff;
}

#targetsCarousel .f-carousel__slide img,
#personCarousel .f-carousel__slide img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
}

#targetsCarousel .tgSlideContent {
  padding: 20px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  min-height: 350px;
  justify-content: space-between;
}
#targetsCarousel .tgSlideContent ul{
  list-style: disc;
}
#targetsCarousel .tgSlideContent ul li{
  list-style: disc;
  margin-left: 20px;
  padding-bottom: 5px;
}
#targetsCarousel .tgSlideContent>a {
  display: inline-block;
  width: 220px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  background-color: #1d1d1d;
  border-radius: 10px;
  border: 1px solid #1d1d1d;
  transition: all 0.5s ease-in-out;
}
#targetsCarousel .tgSlideContent>a:hover{
  background-color: #fff;
  color: #1d1d1d;
}

#targetsCarousel .f-carousel__nav,
#personCarousel .f-carousel__nav{
  position: absolute;
  top: -75px;
  right: 0px;
}
#targetsCarousel .f-carousel__nav .f-button.is-next, 
#targetsCarousel .fancybox__nav .f-button.is-next,
#personCarousel .f-carousel__nav .f-button.is-next, 
#personCarousel .fancybox__nav .f-button.is-next{
  right: 0px!important;
  width: 30px!important;
  height: 30px!important;
}
#targetsCarousel .f-button.is-next svg, 
#targetsCarousel .fancybox__nav .f-button.is-next svg,
#personCarousel .f-button.is-next svg, 
#personCarousel .fancybox__nav .f-button.is-next svg{
  transform: rotate(270deg);
}
#targetsCarousel .f-carousel__nav .f-button.is-prev, 
#targetsCarousel .fancybox__nav .f-button.is-prev,
#personCarousel .f-carousel__nav .f-button.is-prev, 
#personCarousel .fancybox__nav .f-button.is-prev{
  left: -90px!important;
  width: 30px!important;
  height: 30px!important;
}
#targetsCarousel .f-carousel__nav .f-button.is-prev svg, 
#targetsCarousel .fancybox__nav .f-button.is-prev svg,
#personCarousel .f-carousel__nav .f-button.is-prev svg, 
#personCarousel .fancybox__nav .f-button.is-prev svg{
  transform: rotate(90deg);
}
#targetsCarousel .f-carousel__nav .f-button.is-next:hover svg path, 
#targetsCarousel .fancybox__nav .f-button.is-next:hover svg path,
#targetsCarousel .f-carousel__nav .f-button.is-prev:hover svg path,
#targetsCarousel .fancybox__nav .f-button.is-prev:hover svg path,
#personCarousel .f-carousel__nav .f-button.is-next:hover svg path, 
#personCarousel .fancybox__nav .f-button.is-next:hover svg path,
#personCarousel .f-carousel__nav .f-button.is-prev:hover svg path,
#personCarousel .fancybox__nav .f-button.is-prev:hover svg path{
  stroke: #fff;
}

#personCarousel .pBody{
  padding: 20px;
}
#personCarousel .pName{
  font-size: 27px;
  font-weight: 500;
  text-transform: uppercase;
}
#personCarousel .pPosition{
  margin-top: 10px;
}
@media (max-width: 1200px) {
  #targetsCarousel{
    --f-carousel-slide-width: calc((100% - 40px) / 3);
    --f-carousel-slide-height: auto;
    --f-carousel-spacing: 20px;
  }
  #targetsCarousel .tgSlideContent{
    min-height: 400px;
  }
  #personCarousel{
    --f-carousel-slide-width: calc((100% - 40px) / 3);
    --f-carousel-spacing: 20px;
  }
}
@media (max-width:960px) {
  #targetsCarousel,
  #personCarousel{
    --f-carousel-slide-width: calc((100% - 20px) / 2);
  }
  #personCarousel .pName{
    font-size: 23px;
  }
}
@media (max-width:640px) {
  #targetsCarousel,
  #personCarousel{
    --f-carousel-slide-width: 300px;
  }
  #targetsCarousel .f-carousel__nav,
  #personCarousel .f-carousel__nav{
    top: -64px;
  }
}
@media (max-width:480px) {
  .mainTargets h2,
  .mainPerson h2{
    margin-bottom: 92px;
  }
  #targetsCarousel .f-carousel__nav,
  #personCarousel .f-carousel__nav{
    top: -54px;
    right: unset;
    left: 80px;
  }
}