html, body{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-size: 16px;
}
.row{
    max-width: 1080px;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* border: 1px solid green; */
    @media only screen and (min-width: 600px){
        flex-direction: row;
        margin: 0 auto 20px;
    }  
}
.row .col{
    width: 100%;
}
h2{
    font-size: 3.6em;
    animation: animate-in-and-out linear both;
    animation-timeline: view();
}
h3{
    font-size: 3em;
    animation: animate-in-and-out linear both;
    animation-timeline: view();
    margin: 10px auto;
}
header{
    background-color: #fff;
}
header h1{
    background-image: url(logoHome.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    width: 400px;
    height: 100px;
    margin: 0;
    font-size: 0;
    line-height: -9999em;
}
#secc1{
    background-color: #7eba00;
    color: white;
}
#secc2{
    background-color: rgba(227,227,227,1);
    color: #444;
}
#secc2 img{
    width: 100%;
    margin: 60px auto;
}
#btnDemos{
    border: 1px solid #595959;;
    background-color: rgba(235,235,235,1);
    color: #595959;;
    border: 1px solid #595959;;
    text-decoration: none;
    width: 200px;
    line-height: 50px;
    position: relative;
    top: -73px;
    right: -310px;
    transition: all .4s ease;
    &:hover{
        background-color: #595959;
        color: rgba(235,235,235,1);
    }
}
#secc2 button{
    border: 1px solid silver;
    background-color: rgba(255,255,255,1);
    color: #000;
    line-height: 60px;
    font-size: 1em;
    width: 260px;
    border-radius: 30px;
    margin: 10px auto;
    cursor: pointer;
    box-shadow: 0 0 1px rgba(255,255,255,1);
    transition: all .4s ease;
    &:hover{
        box-shadow: 0 0 20px rgba(255,255,255,1);
        background-color: rgba(255,255,255,.1);
    }
}
#secc3{
    background-color: rgba(210, 210, 210, 1);
}
section{
    font-size: 1.1em;
    /* border: 1px solid red; */
    width: 100vw;
    height: auto;
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: space-evenly;
}

figure{
    width: 320px;
    height: auto;
    margin: 20px;
    padding: 0;
}
figure figcaption{
    margin: 10px auto;
    padding: 0 20px;
}
figure img{
    width: 100%;
    border-radius: 10px;
}

#text2_1{
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
  }
  
  .carousel-slide {
    position: absolute;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .carousel-slide img {
    width: 100%;
    display: block;
  }
  
  /* Animación keyframes */
  @keyframes fadeAnimation {
    0%, 20% { opacity: 1; }
    25%, 100% { opacity: 0; }
  }
  
  #secc3 iframe{
    border-radius: 20px;
    height: 680px;
    box-shadow: 0 0 0px rgba(0,0,0,.4);
    background-color: rgba(235, 235, 235, 1);
    transition: all .4s ease;
    opacity: .7;
    transform: scale(.95);
    &:hover{
        opacity: 1;
        box-shadow: 0 0 60px rgba(0,0,0,.4);
        transform: scale(1);
    }
  }
  /* Asignamos animaciones a cada imagen con diferente delay */
  .carousel-slide:nth-child(1) {
    animation: fadeAnimation 25s infinite;
    animation-delay: 0s;
  }
  
  .carousel-slide:nth-child(2) {
    animation: fadeAnimation 25s infinite;
    animation-delay: 5s;
  }
  
  .carousel-slide:nth-child(3) {
    animation: fadeAnimation 25s infinite;
    animation-delay: 10s;
  }
  
  .carousel-slide:nth-child(4) {
    animation: fadeAnimation 25s infinite;
    animation-delay: 15s;
  }
  .carousel-slide:nth-child(5) {
    animation: fadeAnimation 25s infinite;
    animation-delay: 20s;
  }