/* ----------------------------------------------- */
/* MEDIA QUERIES
/* ----------------------------------------------- */

/* --------------------------------------------------------- */
/* Big tablet to 1350px (widths smaller than 1350px row) */
/* --------------------------------------------------------- */

@media screen and (max-width: 1350px){

/* ABOUT - GRID ----------------------------------------------- */
    .about {
        padding: 5vh 20vw;
    }
    
/* SIGNUP - GRID ----------------------------------------------- */
    .signup {
        padding: 5vh 10vw;
        width: 80vw;
    }
}

/* --------------------------------------------------------- */
/* Big tablet to 1280px (widths smaller than 1250px row) */
/* --------------------------------------------------------- */

@media screen and (max-width: 1280px){

/* SECTION 1 - GRID ----------------------------------------------- */
    .sec1-text{
        grid-template-columns: 80%;
    }
    
/* HOW IT WORKS - GRID ----------------------------------------------- */
    .howitworks{
        grid-gap: 0;
        grid-column-gap: 2rem;
    }

/* SIGNUP - GRID ----------------------------------------------- */
    .signup {
        padding: 5vh 8vw;
        width: 84vw;
    }

/* SIGN UP - STYLE ----------------------------------------------- */ 
    .plan-box ul li {
        font-size: 80%;
    }
}

/* --------------------------------------------------------- */    
/* smaller than 1160px row */
/* --------------------------------------------------------- */
    
@media screen and (max-width: 1160px){
    
/* SECTION 1 - GRID ----------------------------------------------- */
    .sec1-text{
        grid-template-columns: 90%;
    }

/* HOW IT WORKS - STYLE ----------------------------------------------- */
    .howitworks-img{
        max-width: 100%;
    }
    
}

/* --------------------------------------------------------- */    
/* smaller than 1111px row */
/* --------------------------------------------------------- */

@media screen and (max-width: 1111px){
    
/* BODY - STYLE ----------------------------------------------- */
    .app {
    font-size: 18px;
    }
    
/* ABOUT - GRID ----------------------------------------------- */
    .about{
        padding: 5vh 10vw;
    }

/* HOW IT WORKS - GRID ----------------------------------------------- */
    .howitworks{
        padding: 5vh 8vw;
    }
    
/* SIGNUP - GRID ----------------------------------------------- */
    .signup {
        padding: 5vh 6vw;
        width: 88vw;
    }
}

/* --------------------------------------------------------- */    
/* Small tablet to 1023px (widths smaller than 1023px row) */
/* --------------------------------------------------------- */

/* --------------------------------------------------------- */    
/* smaller than 980px row */
/* --------------------------------------------------------- */

@media screen and (max-width: 980px){

/* MOBILE NAV ------------------------------------------ */

    /* SECTION 1 - GRID ----------------------------------------------- */

        .header{
            grid-template-columns: auto 1fr auto;
            grid-template-rows: 90px;
            overflow-y: visible;
        }

    /* SECTION 1 - STYLE ----------------------------------------------- */
        .logo-name{
            align-self: flex-start;
            padding-top: 4%;
        }
    
        .links{
            align-self: flex-start;
            margin-top: .5em;
            z-index: 9999;
        }

        .links nav{
            display: flex;
            flex-direction: column;
            z-index: 9999;
        }

        .mobile-nav-icon i {
            display: block;
            font-size: 200%;
            color: #fff;
        }
        
        .header-link:link, .header-link:visited{
            font-size: 120%;
            padding: 6px 10px;
            background-color: rgba(70, 70, 70, 0.9);
            border-radius: 5px;
            margin: 2% 0;
        }

/* MOBILE STICKY NAV ------------------------------------------ */

    /* SECTION 1 - STYLE ----------------------------------------------- */
        .sticky {
            height: 52px;
            overflow-y: visible;
            padding: 1vh 5vw 0 5vw;
        }
        
        .sticky .mobile-nav-icon i {
            font-size: 220%;
            color: #F9A624;
            margin-top: 0;
        }
        
        .sticky .logo-name-sticky{
            align-self: flex-start;
        }

        .sticky .logo-name-sticky h1{
            margin-top: 1em;
        }
        
        .sticky .links{
            align-self: flex-start;
            margin-top: .5em;
        }

        .sticky .links nav{
            display: flex;
            flex-direction: column;
            margin: 0;
            z-index: 9999;
        }
                
        .sticky .header-link:link, .sticky .header-link:visited {
            color: #555;
            font-size: 120%;
            padding: 6px 10px;
            background-color: rgba(252, 206, 135, 0.9);
            border-radius: 5px;
            margin: 2% 0;
        }

   
/* SECTION 1 - GRID ----------------------------------------------- */
    .sec1-text{
        grid-template-columns: 100%;
    }
/* HOW IT WORKS - GRID ----------------------------------------------- */
    .howitworks{
        height: auto;
    }
    
/* SIGN UP - STYLE ----------------------------------------------- */
    .signup {
        padding: 5vh 3vw;
    }
        
    .plan-box {
        width: 95%;
        margin: 5% 0 0 0;
    }
    
    .plan-box div {
        padding: 20px 5px;
    }
}

/* --------------------------------------------------------- */    
/* Small tablet to 834px (widths smaller than 834px row) */
/* --------------------------------------------------------- */

@media screen and (max-width: 834px){
    
/* BODY - STYLE ----------------------------------------------- */
    .app {
        font-size: 17px;
    }
    
/* SECTION 1 - STYLE ----------------------------------------------- */  
    .text {
        font-size: 180%;
    }
    
    .sec1-textindent1{
        text-indent: 15%;
    }

    .sec1-textindent2{
        text-indent: 30%;
    }

/* ABOUT - GRID ----------------------------------------------- */
    .about{
        height: auto;
    }    

/* HOW IT WORKS - GRID ----------------------------------------------- */
    .howitworks{
        height: auto;
    }

/* SIGNUP - GRID ----------------------------------------------- */
    .signup {
        padding: 5vh 5vw;
        width: 90vw;
        height: auto;
    }
}
    
/* --------------------------------------------------------- */    
/* Small tablet to 811 (widths smaller than 811px row) */
/* --------------------------------------------------------- */

@media screen and (max-width: 811px){
    
/* SIGN UP - STYLE ----------------------------------------------- */   
    .signup{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    .signup-card {
        padding: 0 5%;
    }
    
    .plan-box {
        width: 100%;
        min-width: 250px;
    }
    
    .plan-box div {
        padding: 20px;
    }
    
    .plan-box ul li {
        font-size: 100%
    }
    
/* HOW IT WORKS - STYLE ----------------------------------------------- */  
    .howitworks-text1, .howitworks-text3, .howitworks-text5{
        font-size: 140%;
        height: 30px;
        width: 30px;
        padding: 5px;
    }
}

/* --------------------------------------------------------- */    
/* smaller than 785px row */
/* --------------------------------------------------------- */

@media screen and (max-width: 785px){
        
/* HOW IT WORKS - GRID ----------------------------------------------- */ 
    .howitworks{
        grid-gap: 0;
    }

    .howitworks-img, .howitworks-text {
        grid-column: 1 / span 2;
        grid-row-gap: 1rem;
        padding: 0 5%;
    }
    
/* HOW IT WORKS - STYLE ----------------------------------------------- */ 
    .iphone-img{
        max-width: 250px;
        margin: 1rem auto;
    }
    
    .howitworks-img{
        display: grid;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

/* --------------------------------------------------------- */    
/* Small tablet to 767 (widths smaller than 767px row) */
/* --------------------------------------------------------- */

@media screen and (max-width: 767px){
/* SECTION 1 - STYLE ----------------------------------------------- */   
    .sec1-text {
        margin: 0 8%;
    }
}
    
/* --------------------------------------------------------- */    
/* Small tablet to 739px (widths smaller than 739px row) */
/* --------------------------------------------------------- */
    
@media screen and (max-width: 739px){
    
/* BODY - STYLE ----------------------------------------------- */
    .app {
    font-size: 16px;
    }
    
/* SECTION 1 - STYLE ----------------------------------------------- */   
    .sec1-text {
        margin: 0;
    }
     
    .text {
        text-align: center;
        margin-top: 10%;
    }

    .sec1-textindent1{
        padding-top: 5%;
        text-indent: 0;
    }

    .sec1-textindent2{
        padding-top: 5%;
        text-indent: 0;
    }

    .buttons{
        padding-top: 15%;
        text-align: center;
    }
}

/* --------------------------------------------------------- */    
/* smaller than 697 row */
/* --------------------------------------------------------- */

@media screen and (max-width: 697px){
    
/* HOW IT WORKS - STYLE ----------------------------------------------- */
    .traco{
        display: none;
    }
    
    .simples{
        display: none;
    }
}

/* --------------------------------------------------------- */    
/* Small tablet to 667px (widths smaller than 667 row) */
/* --------------------------------------------------------- */
   
 @media screen and (max-width: 667px){   
/* SECTION 1 - STYLE ----------------------------------------------- */    
    .logo-img{
        height: 80px;
    }
}

/* --------------------------------------------------------- */    
/* Small phones to 482px (widths smaller than 481px row) */
/* --------------------------------------------------------- */

@media screen and (max-width: 482px){

/* SECTION 1 - GRID ----------------------------------------------- */
    .sec1 {
        padding: 5vh 5vw;
    }
    
/* ABOUT - GRID ----------------------------------------------- */
    .about {
        padding: 5vh 5vw;
    }
    
/* ABOUT - STYLE ----------------------------------------------- */
    .about-title1 {
        display: none;
    }

    .about-title2{
        display: contents;
    }
    .about-photo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        float: none; 
        margin: 0 auto;
}
    
/* HOW IT WORKS - GRID ----------------------------------------------- */ 
    .howitworks{
        grid-gap: 0;
    }

    .howitworks-img, .howitworks-text {
        padding: 0;
    }
}
    
/* --------------------------------------------------------- */    
/* Smaller than 413px row) */
/* --------------------------------------------------------- */
    
/* --------------------------------------------------------- */    
/* Smaller than 376px row) */
/* --------------------------------------------------------- */

@media screen and (max-width: 376px){
    
/* SECTION 1 - STYLE ----------------------------------------------- */    
    .logo-img{
        height: 70px;
    }
    
    .sec1-text {
        margin: 0 10%;
    }

    .text {
        font-size: 180%;
        text-align: center;
        margin-top: 10%;
    }

    .sec1-textindent1{
        padding-top: 15%;
        text-indent: 0;
    }

    .sec1-textindent2{
        padding-top: 10%;
        text-indent: 0;
    }

/* SIGN UP - STYLE ----------------------------------------------- */   
    
    .signup{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    .signup-card {
        padding: 0 5%;
    }
    
    .plan-box {
        width: 100%;
        min-width: 250px;
    }
    
    .plan-box div {
        padding: 20px;
    }
    
    .plan-box ul li {
        font-size: 90%
    }
}
    
    
    
    
