.mobile-cover {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0;
    z-index: 5;
    pointer-events: none;
    transition: opacity .3s;
}
.mobile-menu {
    position: fixed;
    left: -250px;
    top: 0;
    height: 100vh;
    background-color: rgb(140, 199, 64);
    width: 250px;
    transition: left .3s;
    z-index: 10;
}

@media (max-width: 1050px){

    .show-mobile {
        display: block;
    }
    .hide-mobile {
        display: none;
    }
    body.mobile-nav-open .mobile-menu {
        left: 0;
    }
    body.mobile-nav-open .mobile-cover {
        opacity: .6;
        pointer-events: initial;
    }
}

@media (max-width: 850px){

   .frames {
      flex-direction: column;
   }
   .frame-side {
     max-width: initial;
   }
}

@media (max-width: 800px){

    .cta h1 {
        font-size: 35px;
    }
    .cta h2 {
        font-size: 25px;
    }
    .btn-cta {
        width: auto;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 13px;
    }

    .content h2 {
        font-size: 35px;
    }

    .box h2 {
        font-size: 22px;
    }
}

.mobile-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.mobile-menu a {
    display: block;
    padding: 10px 10px 10px 20px;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid rgb(157, 214, 83);
    font-weight: 300;
}
.mobile-menu a:hover {
    background-color: rgb(157, 214, 83);
}
