body {
    background: #e9722b;
    color: whitesmoke;
}
.carousel-caption {
  margin-bottom: 50px;
}

@media screen and (max-width: 500px) {
  .carousel-caption {
    margin-bottom: 0px;
  }
  .carousel-caption h3 {
    font-size: 1rem;
  }
  .carousel-caption img {
    width: 200px;
  }
}

@media screen and (max-width: 325px) {
  .carousel-caption h3 {
    font-size: 0.75rem;
  }
  .carousel-caption img {
    width: 150px;
  }
}

.box {
    width: 50%;
    position: relative;
}
.box img {
    filter: brightness(60%);
}
.box img:hover {
    filter: brightness(100%);
    transition: all 0.5s ease-out;
}
.box-text {
    position: absolute;
    top: 50px;
    padding: 0 30px
}
.box-text h3 {
    color: whitesmoke;
    text-align: center
}
@media screen and (max-width: 800px) {
    .boxes-container {
        flex-direction: column;
    }
    .box {
        width: 100%;
    }
    /* font-size para tablets */
}

/* Underline Left to Right */
.sliding-u-l-r {
    display: inline-block;
      position: relative;
    text-decoration: none;
  }
  .sliding-u-l-r:after {
    content: '';
    position: absolute;
    margin-bottom: -10px;
    bottom: 0;
    left: 0;
    width: 0%;
    border-bottom: 3px solid whitesmoke;
    transition: 0.4s;
  }
  .sliding-u-l-r:hover:after {
    width: 100%;
  }

  /* sliders animations */
  @-webkit-keyframes zoom {
    from {
      -webkit-transform: scale(1, 1);
    }
    to {
      -webkit-transform: scale(1.3, 1.3);
    }
  }
  
  @keyframes zoom {
    from {
      transform: scale(1, 1);
    }
    to {
      transform: scale(1.3, 1.3);
    }
  }
  
  .carousel-inner .carousel-item > img {
    -webkit-animation: zoom 20s;
    animation: zoom 20s;
  }