.carousel {
    position: relative;
    margin-top: 26px;
    width: 84%;
  }
  
  .carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  
  .carousel-open:checked + .carousel-item {
    position: static;
    opacity: 100;
  }
  
  .carousel-item {
    position: absolute;
    opacity: 0;
    width: 70%;
    margin: 0 auto;
  }

  .carousel-item > div {
    display: flex;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
  }

  .carousel-item > div img {
    align-self: flex-start;
  }

  .carousel-item > div img:last-of-type {
    align-self: flex-end;
  }

  .carousel-item > div p {
    font-size: 18px;
    color: #000000;
    font-weight: normal;
    padding: 0px 10px;
    text-align: left;
    margin-top: 0px;
    width: 100%;
  }
  
  .carousel-item > p:last-of-type {
    font-size: 33px;
    font-weight: 700;
    color: #E86C00;
    text-align: center;
  }
  
  .carousel-control {
    background: #FFFFFF;
    border-radius: 50%;
    color: #2E3A59;
    cursor: pointer;
    display: none;
    font-size: 40px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    cursor: pointer;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-align: center;
    width: 40px;
    /* z-index: 10; */
    bottom: 10px;
  }
  
  .carousel-control.prev {
    right: 8%;
  }
  
  .carousel-control.next {
    right: 0%;
  }
  
  .carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #aaaaaa;
  }
  
  #carousel-1:checked ~ .control-1,
  #carousel-2:checked ~ .control-2,
  #carousel-3:checked ~ .control-3,
  #carousel-4:checked ~ .control-4 {
    display: block;
  }
  
  .carousel-indicators {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 2%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
  }
  
  .carousel-indicators li {
    display: inline-block;
    margin: 0 5px;
  }
  
  .carousel-bullet {
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 35px;
  }
  
  .carousel-bullet:hover {
    color: #aaaaaa;
  }
  
  #carousel-1:checked ~ .control-1 ~ .carousel-indicators li:nth-child(1) .carousel-bullet,
  #carousel-2:checked ~ .control-2 ~ .carousel-indicators li:nth-child(2) .carousel-bullet,
  #carousel-3:checked ~ .control-3 ~ .carousel-indicators li:nth-child(3) .carousel-bullet {
    color: #428bca;
  }

  .carousel-item > div p:first-of-type {
    font-size: 16px;
  }

  .carousel-item > div p:last-of-type {
      font-size: 24px;
  }

  @media only screen and (max-width: 768px) { 
    .carousel {
      width: 100%;
    }
    .carousel-item {
      width: 90%;
    }
    .carousel-control.prev {
      right: 16%;
    }
  }