/********************
 * FEATURE CAROUSEL *
 ********************/
.carousel-container {
  position:relative;
  width: 1170px;
}
#carousel {
  height: 540px;
  width: 1170px;
  background-color: #ffffff;
  position:relative;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
}
.carousel-image {
  border: 0;
  display:block;
}
.carousel-feature {
  position:absolute;
  top:-1000px;
  left:-1000px;
    width: 590px;
    height: 580px;
  /*border: 2px solid #5d5d5d;*/
  cursor: pointer;
    /*background-color: #ffffff;*/
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    
    
}
.carousel-feature .carousel-caption {
  position:absolute;
  bottom:0;
    left: 0px;
   padding-top: 15px;
    padding-left: 20px;
    padding-bottom: 15px; 
  width:100%;
    height: 130px;
  background-color:#ffffff;
    opacity: 1;
    display: flex;
    align-items: center;
}
.carousel-feature .carousel-caption p {
 /* margin:0;
  padding:5px;
  font-weight:bold;
  font-size:12px;
  color:white;*/
}
.carousel-caption img {
    width: 25%;
    margin-right: 10px;
}
.depiction-wrap {
    width: 74%;
}
.depiction__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}
.depiction__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #000000;
}
.tracker-summation-container {
    display: block;
  position:absolute;
  color: transparent;
  right: 0;
  top: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
    font-size: 0px;
}
.tracker-individual-container {
  position:absolute;
  /*color:white;*/
  right: 44%;
  /*top:210px;*/
    bottom: 45px;
  padding:0;
  margin:0;
    width: 180px;
    display: flex;
    align-content: space-between;
}
.tracker-individual-container li {
  list-style:none;
}
.tracker-individual-container .tracker-individual-blip {
  /*margin:0 3px;*/
    margin-left: 10px;
    margin-right: 10px;
  /*padding:0 3px;
  color:white;
  text-align:center;*/
  background-color:#DDD;
    display: block;
     width: 17px;
     height: 17px;
     border-radius: 50%;
     border: 1px solid #002f6c;
     background-color: #ffffff;
     padding: 0;
     text-indent: -9999px;
}
.tracker-individual-container .tracker-individual-blip-selected {
  background-color: #002f6c;
}
.arrow-mob {
    display: none;
}
#carousel-left {
  position:absolute;
  bottom:350px;
  left: -90px;
  cursor:pointer;
    transition: all 2s ease-out;
}
#carousel-right {
  position:absolute;
  bottom: 350px;
  right: -90px;
  cursor:pointer;
    transition: all 2s ease-out;
}
#carousel-left:active,
#carousel-right:active {
    transform: scale(0.7);
}

/* 992-1200px */
@media screen and (max-width: 1200px) {
    .carousel-container {
      position:relative;
      width: 950px;
    }
    #carousel {
      height: 540px;
      width: 950px;
    }
    #carousel-left {
      bottom:350px;
      left: 0;
    }
    #carousel-right {
      bottom: 350px;
      right: 0;
    }
}
/* 768-992px */
@media screen and (max-width: 992px) {
    .carousel-container {
      width: 710px;
    }
    #carousel {
      height: 400px;
      width: 710px;
    }
    .carousel-feature {
        width: 450px;
        height: 400px;
    }
    .carousel-image {
        width: 100%;
    }
    .tracker-individual-container {
        right: 38%;
        bottom: 5px;
    }
    #carousel-left {
      bottom: 225px;
      left: 0;
        transform: scale(0.9);
    }
    #carousel-right {
      bottom: 225px;
      right: 0;
        transform: scale(0.9);
    }
    .carousel-feature .carousel-caption {
        height: 80px;
    }
}
/* 576 - 768 px */
@media screen and (max-width: 768px) {
    .carousel-container {
      width: 540px;
    }
    #carousel {
      height: 400px;
      width: 540px;
    }
    .carousel-feature {
        width: 460px;
        height: 400px;
    }
    .tracker-individual-container {
        right: 38%;
        bottom: -10px;
    }
    #carousel-left {
      display: none;
    }
    #carousel-right {
      display: none;
    }
}
/* 320 - 576 px */
@media screen and (max-width: 576px) {
    .carousel-container {
      width: 100%;
    }
    #carousel {
      height: 300px;
      width: 100%;
    }
    .carousel-feature {
        width: 100%;
        height: 300px;
    }
}
/* 405 - 495 px */
@media screen and (max-width: 495px) {
    .tracker-individual-container {
        right: 30%;
        bottom: -77px;
    }
    #carousel {
      margin-bottom: 50px;
    }
}
/* 320 - 404 px */
@media screen and (max-width: 404px) {
    .tracker-individual-container {
        right: 22%;
        bottom: -10px;
    }
    #carousel {
      margin-bottom: 0;
    }
    
}
