section{
    min-height: 60vh;
    margin-top: 40px;
}
#left{
    width: 50%;
    transform: translateZ(10px);
    padding-bottom: 3rem;
}
#left img{
    display: none;
}
#right{
    width: 50%;
    z-index: 1;
}
.device-screen{
    max-height: 460px;
    height: auto;
    display: none;
    box-shadow: 5px 5px 15px grey;
    border-radius: 27px;
}
.device-screen.active{
    display: block;
}
#qmumns{
    transform: translate(-200%, -50%) rotate3d(0, 1, 0, -90deg) scale(1);
    transition: cubic-bezier(0.74, -0.1, 0.28, 1.04) 1.2s all;
    -webkit-transform-style: preserve-3d;
}
#qmumns.slide{
    position: -webkit-sticky;
    position: sticky;
    top: calc((100vh + var(--nav-height))/2);
    transform: translate(0%, -50%) rotate3d(0, 0, 0, 0deg) scale(1);
    width: fit-content;
}
#qmumns .device-screen {
    max-height: 42vh;
    max-width: 27vw;
}
div#qmumns.slide-0 {
    transform: translate(50%, -50%) rotate3d(0, 1, 1, 10deg) scale(1.2);
}
#scroller{
    display: -webkit-box;
    transition: all .8s ease-in-out;
}
#scroller .section-title{
    font-size: var(--font-size-medium);
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}
.section-desc{
    text-align: center;
    font-size: var(--font-size-small);
    margin-bottom: 20px;
}
#scroller-holder{
    transition: all .8s ease-in-out;
}
#scroller-holder.slide-0,
#scroller-holder.slide-6{
    background: #ffffff;
}
#scroller-holder.slide-1{
    background: var(--pale-color-1);
}
#scroller-holder.slide-2{
    background: var(--pale-color-2);
}
#scroller-holder.slide-3{
    background: var(--pale-color-3);
}
#scroller-holder.slide-4{
    background: var(--pale-color-4);
}
#scroller-holder.slide-5{
    background: var(--pale-color-5);
}

/*

ANIMATION FADE IN

*/
.fade-in {
    -webkit-animation: fade-in 1.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
            animation: fade-in 1.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;
}


/*

Mobile CSS

*/
@media screen and (max-width: 960px){
    #right{
        display: none;
    }
    #left{
        width: 100%;
    }
    #left img{
        display: block;
        max-width: 100%;
        margin: auto;
    }
    section{
        flex-direction: column;
    }
    .hero__phone-wrap img{
        max-width: 324px;
        transform: rotateZ(17deg) translate(15px, 45px);
    }

    #products-frames > div{
        margin-bottom: 20px;
    }
}