
/*Carousel Styles*/
  .home {
    margin-top: 1rem;
    height: 85vh;
    overflow: hidden;
    position: relative;
    }
    
    .home .slide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    display: none;
    padding: 0 15px;
    animation: slide 2s ease;
    }
    
    .home .slide.active {
    display: flex;
    }
    /*Efects scale +*/
    @keyframes slide {
    0% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
    }
    .container {
    margin: auto;
    }
    
    .home .container {
    flex-grow: 1;
    }
    .home .caption {
    text-align: center;
    
    }
    .home .caption h1 {
    font-size: 50px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    font-weight: 600;
    
    }
    .home .slide.active .caption h1 {
    opacity: 0;
    animation: captionText 0.5s ease forwards;
    }
    
    /*Efect text slide*/
    @keyframes captionText {
    0% {
      opacity: 0;
      transform: translateX(-100px);
    }
    100% {
      opacity: 1;
      transform: translateX(0px);
    }
    }
    /*Controls*/
    .home .controls .prev,
    .home .controls .next {
    position: absolute;
    z-index: 2;
    top: 50%;
    height: 40px;
    width: 40px;
    margin-top: -20px;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.5s ease;
    }
    .home .controls .prev:hover,
    .home .controls .next:hover {
    background-color: #ffb201;
    border-radius: 15px;
    }
    .home .controls .prev {
    left: 0;
    }
    .home .controls .next {
    right: 0;
    }
    
    .home .indicator {
    
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 2;
    transform: translateX(-50%);
    cursor: pointer;
    }

    
    .home .indicator div {
      background-color: #ffffff;
    display: inline-block;
    width: 10px;
    height: 10px;
    color: #ffffff;
   
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    margin: 0 3px;
    } 
    .home .indicator div.active {
      background-color: #ffb201;
    }
    
    /*responsive*/
    @media (max-width: 767px) {
      .header-area .main-nav .logo img {
        width: 185px;
       }
      .background-header .main-nav .logo img {
        width: 96px;
      }
      .main-nav .logo img.small{
       
        width: 88px;
        }
    .controls {
      display: none;
    }
    .home {
      height: 400px;
    }
    .home .caption h1 {
      font-size: 30px;
    }
    }
     @media (max-width: 440px) {  
    .home .caption h1 {
      font-size: 25px;
    }
    }
    @media (min-width: 1300px){
      .home .caption h1{
        font-size: 70px;
      }
    }
    /*
<!--********************************************-->
<!-- ***** Developers***** -->
  <!--Jose Arabel Fuentes Perez
  contact:
    
     github> https://github.com/JoseFuentes-Dev
  -->
  <!--Claudio Benjamin Osorio
  contact:
     
     github> https://github.com/Claudio-Osorio/ 
  -->
  <!-- ***** Developers***** -->
  <!--********************************************-->
  
*/