#carousel {
  width: 100%;
  background: #2882BD;
  min-height: 300px;
  position: relative;
  font-family: Cabin, 'Helvetica Neue', Helvetica, sans-serif;
  padding: 20px 0px 20px 0px;
}

#leftArrow {
  position: relative;
  top: calc(50% - 32px);
}

#rightArrow {
  position: relative;
  top: calc(50% - 32px);
  margin-left: auto;
  margin-right: auto;
}

.arrow {
  height: 35px;
  width: 60px;
  position: relative;
  fill: transparent;
  display: block;
  stroke: #F29C1F;
  stroke-width: 2px;
  margin-left: auto;
  margin-right: auto;
  transition: stroke-width .3s ease;    
}

#left:hover > .arrow {
  stroke-width: 4px;
}

#right:hover > .arrow {
  stroke-width: 4px;
}

.left {
  transform: rotate(90deg);
}

.right {
  transform: rotate(-90deg);
}

.box img {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

#theTeam {
  position: relative;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 32px;
  padding: 15px 0px 10px 0px;
  font-weight: 700;
}

.box {
  position: relative;
  display: inline-block;
  transition: all 1s ease;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: top;
  padding-top: 50px;
  padding: 10px;  
}

#innerCarousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-left: auto;
  white-space: nowrap;
  margin-right: auto;
  text-align: center;
}
#left {
  position: absolute;
  top: 0;
  height: 100%;
  left: -7px;
  width: 10%;
  z-index: 10;
    -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none; 
}

#right {
  position: absolute;
  right: -7px;
  height: 100%;
  top: 0;
  width: 10%;
  z-index: 10;
    -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none; 
}

#name {
  color: white;
  font-size: 24px;
  white-space: normal;
  font-weight: 600;
  word-break: break-word;
  padding-top: 10px;
}

#title {
  color: #2c3e50;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  white-space: normal;
  word-break: break-word;
}

#description {
  color: white;
  font-size: 14px;
  white-space: normal;
  font-style: italic;
  padding-top: 10px;
}

.inactive {
  opacity: 0;
}

@media screen and (max-width: 480px) {
  #innerCarousel {
    overflow: auto;
    width: 100%;
  }
  #left {
    display: none;
  }
  #right {
    display: none;
  }
  .inactive { opacity: 1; }
}