section{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    align-content: center;
    padding: 0px 20px;
}
#left{
    width: 70%;
}
#left img{
    display: none;
}
#right{
    width: 30%;
}
.device-screen{
    max-height: 460px;
    height: auto;
    display: none;
}
.device-screen.active{
    display: block;
}
#qmumns{
    position: -webkit-sticky;
    position: sticky;
    top: calc((100vh + var(--nav-height))/2);
    transform: translate(0%, -50%);
}
#qmumns .device-screen{
    max-height: 500px;
}
#scroller section{
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 100px 0;
}
#scroller .section-title{
    font-size: var(--font-size-medium);
    font-weight: bold;
}
#scroller .section-desc{
    font-size: var(--font-size-small);
}
#description{
    background: var(--main-color);
    background-size: cover;
    color: #ffffff;
}


/*

ANIMATION FADE IN

*/
.fade-in {
    -webkit-animation: fade-in .8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
            animation: fade-in .8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes fade-in {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/*

PRODUCTS BOX

*/
#products-frames{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.frame-container{
    width: 300px;
    height: 300px;
    margin: 0 2em;
    padding: 20px;
    box-shadow: 0px 0px 3px #001c59;
    border-radius: 10%;
    background: #ffffff;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.6, 1.73, 1, 1);
}
.frame-container p{
    font-size: var(--font-size-small);
    color: black;
}
.frame-container:hover{
    box-shadow: 0px 0px 20px #001c59;
    border-radius: 10%;
    transform: scale(1.05,1.05);
}
.frame-container div{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.frame-container a{
    text-decoration: none;
}

#products-frames img{
    max-width: 60%;
    padding: 0.7em;
    height: auto;
}
.section-desc{
    text-align: center;
    font-size: var(--font-size-small);
    margin-bottom: 60px;
}


/*

Mobile CSS

*/
@media screen and (max-width: 768px){
    .hero{
        border-radius: 0px;
        margin-top: 0px;
    }
    .hero__title{
        font-size: var(--font-size-medium);
    }
    .keto__img-wrap img{
        max-width: 370px;
        max-height: 350px;
    }
    .keto__img-wrap::before{
        transform: translate(-10px, 110px);
    }
    #right{
        display: none;
    }
    #left{
        width: 100%;
    }
    #left img{
        display: block;
        max-width: 300px;
        margin: auto;
    }
    section{
        flex-direction: column;
    }
    #products-frames{
        flex-direction: column;
    }
    #products-frames > div{
        margin-bottom: 20px;
    }
}