/* CAROUSEL */
   
.carousel {
    position: relative;
    text-align: center;
}
  
.carousel-inner {
    position: relative;
    overflow: hidden;
}
  
.carousel-inner > .item {
    position: relative;
    display: none;
    animation: 0.5s ease-in-out;
}
  
  .carousel-inner > .active,
  .carousel-inner > .next {
    display: block;
  }
  
  .carousel-inner > .next {
    position: absolute;
    top: 0;
    width: 100%;
  }
  
  .carousel-inner > .to-left {
    animation-name: left;
  }
  
  .carousel-inner > .from-right {
    animation-name: right;
  }
  
  .carousel-inner > .to-right {
    animation-name: right;
    animation-direction: reverse;
  }
  
  .carousel-inner > .from-left {
    animation-name: left;
    animation-direction: reverse;
  }
  
  .container {
    margin: 0 auto;
  }
  
  blockquote {
    padding: 10px 20px;
    margin: 30px 90px;
    font-size: 32px;
  }
  
  .author {
    margin: 0;
    opacity: 0.5;
  }
  
  .carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    cursor: pointer;
  }
  
  .carousel-control.right {
    right: 0;
    left: auto;
  }
  
  .carousel-control > .arrow {
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyNiAyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+QXJyb3c8L3RpdGxlPjxwYXRoIGQ9Ik0gMjUuNiAxMC45NzQgbCAtOC41MyA4LjYyIGEgMS4zNiAxLjM2IDAgMCAxIC0xLjkzNSAwLjAwMyBhIDEuMzg3IDEuMzg3IDAgMCAxIC0wLjAwMiAtMS45NSBsIDYuMjAxIC02LjI2OCBxIDEuNjQ3IC0xLjE4NCAwLjAxMiAtMi43NSBoIDAgbCAtNi4yIC02LjI2NyBhIDEuMzg3IDEuMzg3IDAgMCAxIDAuMDAxIC0xLjk1IGEgMS4zNiAxLjM2IDAgMCAxIDEuOTM2IDAuMDAyIGwgOC41MyA4LjYyMSBjIDAuNTMyIDAuNTM4IDAuNTMyIDEuNDEgMCAxLjk0OCIgZmlsbD0iIzFFNzNCQSIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+")  center center no-repeat;
    background-size: 26px 20px;
    opacity: 0.6;
    transform: translateY(-50%);
    transition:0.3s;
  }
  
  .carousel-control > .arrow:hover {
    opacity: 0.8;
    transition:0.3s;
  }
  
  .carousel-control > .arrow.left {
    transform: translateY(-50%) rotate(180deg);
    left:15%;
  }
  
  .carousel-control > .arrow.right {
    right: 15%;
  }
  
  .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    padding-left: 0;
    margin: 0;
    list-style: none;
    transform: translateX(-50%);
  }
  
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    cursor: pointer;
    border: 1px solid #1E73BA;
    border-radius: 10px;
  }
  
  .carousel-indicators li.active {
    background-color: #1E73BA;
  }
  
  @media (min-width: 992px) {
    .container {
      width: 970px;
    }
  }
  
  @media (min-width: 1200px) {
    .container {
      width: 1170px;
    }
  }
  
@keyframes left {
    from {
      left: 0;
    }
    to {
      left: -100%;
    }
}
  
@keyframes right {
    from {
      left: 100%;
    }
    to {
      left: 0;
    }
}
