@media screen and (max-width: 1600px) {
    body {
        font-size: 16px !important;
    }
}
@media screen and (max-width: 1440px) {
    .benefits {
        grid-template-columns: 60px 1fr 60px 1fr 60px 1fr !important; /* resize benefits icons 80 => 60 */
    }
    .benefits .lnr {
        height: 60px !important;
    }
    .testimonials {
        grid-template-columns: 1fr 1fr 1fr !important; /* make testimonials 3 per row */
    }
    .testimonials-item:nth-child(4) { /* hide 4th testimonial */
        display: none !important;
    }
    .contacts-details ul { /* contacts icons single column */
        grid-template-columns: 1fr !important;
    }
}
@media screen and (max-width: 1200px) {
    body {
        font-size: 14px !important;
    }
    .grid1 {
        grid-template-rows: 50px auto !important; /* reduce logo height */
    }
    .inner-header-grid .logo { /* reduce logo height; on inner pages too */
        height: 50px !important;
    }
    .device-icons { /* slightly resize device icons in benefits cross-device */
        height: 32px !important;
    }
}
@media screen and (max-width: 1024px) {
    .benefits { /* make benefits 2 per row */
        grid-template-columns: 60px 1fr 60px 1fr !important;
        grid-gap: 30px !important;
    }
    .testimonials { /* make testimonials 2 per row */
        grid-template-columns: 1fr 1fr !important;
    }
    .testimonials-item:nth-child(4) { /* show 4th testimonial */
        display: block !important;
    }
    .faq-items-list { /* from 2 to 1 column FAQ */
        columns: 1 !important;
    }
}

@media screen and (max-width: 960px) {
    body {
        font-size: 12px !important;
    }
    .slide1,
    .slide2,
    .slide3,
    footer,
    .contacts {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    .testimonials,
    .grid1,
    .grid2,
    .grid3,
    .contacts-grid {
        grid-gap: 30px !important;    
    }
    .testimonials-item {
        padding: 30px !important;    
    }
    .slide4 {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }
    .nav a {
        margin-right: 30px !important;
    }
    .nav a:last-child {
        margin-right: 0 !important;
    }
    .text h1,
    .text p {
        margin-bottom: 30px !important;
    }
}

@media screen and (max-width: 860px) {
    .grid1 {
        display: block !important;
    }
    .text {
        margin-bottom: 30px !important;
    }
    .logo,
    .nav,
    .inner-header { /* hide traditional nav, display mobile one */
        display: none !important;
    }
    .mobile {
        display: block !important;
    }
    .slide1,
    .slide2,
    .slide3,
    .slide4,
    footer,
    .faq,
    .contacts,
    .terms-privacy { /* reduce overall section spacing */
        margin: 0 !important;
        padding: 30px !important;
    }
    .slide3 h2 { /* testimonials title space after */
        margin-bottom: 30px !important;
    }
    .btn-joinnow { /* testimonials call-to-action button space before */
        margin-top: 30px !important;
    }
    .faq h1,
    .faq-items-list,
    .answer24h { /* FAQ/contacts space reduction */
        margin-bottom: 30px !important;
    }
    .terms-privacy h1 { /* terms/privacy */
        margin-bottom: 30px !important;
    }
    #privacy {
        margin-top: 30px !important;
    }
}

@media screen and (max-width: 640px) {
    .benefits { /* make benefits 1 per row */
        grid-template-columns: 60px 1fr !important;
    }
    .testimonials, /* make testimonials 1 per row */
    .grid2,
    .grid3,
    .contacts-grid {
        grid-template-columns: 1fr !important;
    }
    .disclaimer,
    .text-login {
        margin: 10px 0 0 0 !important;
        display: block !important;
    }
    .btn-joinnow-align {
        text-align: center !important;
    }
    .faq-item { /* FAQ reduce spacing */
        padding: 10px !important;
    }
    .faq-item-title:before {
        width: 15px !important;
    }
    .faq-item-content {
        padding-top: 5px !important;
    }
}

.mobile {
    width: 100%;
    height: 60px;
    background: #283440;
    display: none;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.4);
}
.mobile-logo {
    float: left;
    margin: 15px 0 0 30px;
}
.mobile-logo img {
    height: 30px;
}
.mobile-nav-icon {
    float: right;
    cursor: pointer;
    padding: 20px 25px 20px 10px; /* not margin; to make the space to trigger bigger; 10-10 left and bottom for same purpose */
}
.mobile-nav-icon img {
    height: 20px;
}
.clear {
    clear: both;
}

.mobile-nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 9999;
    background: #EEC643;
    text-align: center;
    padding-top: 70px;
}
.mobile-nav-close {
    font-size: 3em;
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(0,0,0,0.5);
    cursor: pointer;
}
.mobile-nav a {
    font-size: 2em;
    line-height: 1.5em;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    margin-bottom: 0.5em;
    display: block;
}