/* ----------------------------------------------- */
/* COLORS */
/* ----------------------------------------------- */

/* ORANGE: #F9A624 --------------------------------- */
/* DARKORANGE: #f49807 ----------------------------- */
/* BACKGROUND COLORS #fff  #fef7ea   --------------- */

/* ----------------------------------------------- */
/* BASIC SETUP */
/* ----------------------------------------------- */

* {
    margin: 0;
}


/* ----------------------------------------------- */
/* BODY */
/* ----------------------------------------------- */

.app {
    background-color: #ccc;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    overflow-y: auto;
  
    display: grid;  
    grid-template-areas: 
        "sec1"
        "about"
        "howitworks"
        "signup"
        "footer";
    grid-template-columns: 100vw;
    grid-template-rows: repeat (5, 100vh);
}


/* ----------------------------------------------- */
/* REUSABLE */
/* ----------------------------------------------- */


/*BUTTONS ------------------------------------------ */

.btn:link, .btn:visited{
    text-decoration: none;
    font-size: 100%;
    padding: 8px 30px;
    border-bottom: 2px solid transparent;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
    border-radius: 200px;
}    

.btn-full:link, .btn-full:visited {
    font-weight: 300;
    border: 1px solid #F9A624;
    background-color: #F9A624;
    color: #fff;
    margin-right: 15px;
}

.btn-full:hover, .btn-full:active {
    border: 1px solid #f49807;
    background-color: #f49807;
    color: #fff;
}

.btn-ghost:link, .btn-ghost:visited {
    border: 1px solid #F9A624;
    color: #F9A624;
}

.btn-ghost:hover, .btn-ghost:active {
    border: 1px solid #f49807;
    background-color: #f49807;
    color: #fff;
}

/*TEXT ------------------------------------------ */

.strong{
    font-weight: 400;
}

h3 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 110%;
    margin-bottom: 15px;
}

/* ----- ICONS ----- */
.icon-big {
    font-size: 350%;
    display: block;
    color: #F9A624;
    margin-bottom: 10px;
}

.icon-small {
    display: inline-block;
    width: 30px;
    text-align: center;
    color: #F9A624;
    font-size: 120%;
    margin-right: 0;
    
    /*secrets to align text and icons*/
    line-height: 120%;
    vertical-align: middle;
    margin-top: -5px;
}


/* ----------------------------------------------- */
/* SECTION 1 */
/* ----------------------------------------------- */


.sec1{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* MAIN NAV ------------------------------------------ */

.logo-img{
    height: 90px;
    width: auto;
}

.logo-name{
    align-self: center;
}

.logo-img-sticky, .logo-name-sticky{
    display: none;
}


.logo-name h1{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    color: #fff;
    font-family: 'Cagliostro', sans-serif;
    text-decoration: none;
    font-size: 140%;
    margin: auto 0;
    margin-left: 2%;
}

.logo-name p{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 70%;
    font-weight: 500;
    margin-left: 2%;
}

.links{
    text-align: right;
    align-self: center;
}

.header-link:link, .header-link:visited{
    color: #fff;
    text-decoration: none;
    font-size: 100%;
    padding: 8px 10px;
    margin-right: 4%;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.2s;
    transition: border-bottom 0.2s;
}

.header-link:hover, .header-link:active{
    border-bottom: 2px solid #F9A624;
}

.nav-link-home{
    display: none;
}

/* STICKY NAV ------------------------------------------ */

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 5vw;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    height: auto;
    width: 90vw;
}

.sticky .logo-img, .sticky .logo-name{
    display: none;
}

.sticky .header-link:link, .sticky .header-link:visited {
    color: #555;
    padding: 8px 10px 4px 10px;
}

.logo-img-sticky{
    height: 48px;
    width: auto;
    padding: 5% 0;
}

.sticky .logo-img-sticky{
    display: block;
}

.sticky .logo-name-sticky{
    display: block;
    align-self: center;
}

.logo-name-sticky h1{
    color: #F9A624;
    font-size: 100%;
    font-family: 'Cagliostro', sans-serif;
    text-decoration: none;
    margin: 2% 0 0 1%;
}

.logo-name-sticky p{
    font-size: 60%;
    color: #F9A624;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    margin-left: 1%;
}

.sticky .links{
    align-self: center;
    margin-top: 2%;
}

.sticky .header-link{
    display: inline-block;
}

/* MOBILE NAV ------------------------------------------ */

.mobile-nav-icon {
    cursor: pointer;
    align-self: center;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
    display: none;
}

/*CENTRAL TEXT ------------------------------------------ */

.sec1-text {
    margin: 0 10vw;
}

.text {
    color: #fff;
    font-size: 200%;
    word-spacing: 4px;
    letter-spacing: 1px;
    font-weight: 380;
}

.sec1-text-title{
    letter-spacing: 5px;
}

.sec1-textindent1{
    padding-top: 3%;
    text-indent: 10%;
}

.sec1-textindent2{
    padding-top: 3%;
    text-indent: 20%;
}

.buttons{
    padding-top: 8%;
    text-align: left;
}


/* ----------------------------------------------- */
/* ABOUT */
/* ----------------------------------------------- */

.about-title h2 {
    font-size: 180%;
    font-weight: 300;
    word-spacing: 2px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 2rem auto 0 auto;
}

.about-title2{
    display: none;
}

.about h2:after {
    display: block;
    height: 2px;
    background-color: #F9A624;
    content: " ";
    width: 200px;
    margin: 0 auto;
    margin-top: 2rem;
}


.about-photo {
    float: left; 
    max-width: 250px;
    width: 50%;
    border-radius: 50%;
    border: 8px solid #fcce87;
    margin: 0 4vh 2vh 0;
    -webkit-shape-outside: circle();
    shape-outside: circle();
}

.about-photo-text{
    display: inline-block;
    font-size: 100%;
    text-align: justify;
    word-spacing: 4px;
    letter-spacing: 1px;
    font-weight: 380;
    padding: 0 5% 5vh 5%;
    line-height: 120%;
}

.about-photo-text p{
    padding: 1.5vh 0;
}


/* ----------------------------------------------- */
/* HOW IT WORKS */
/* ----------------------------------------------- */

.howitworks{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.howitworks-title h2 {
    font-size: 180%;
    font-weight: 300;
    word-spacing: 2px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 2rem auto 0 auto;
}

.simples{
    text-transform: lowercase;
}

.howitworks h2:after {
    display: block;
    height: 2px;
    background-color: #F9A624;
    content: " ";
    width: 200px;
    margin: 0 auto;
    margin-top: 2rem;
}

.howitworks-title p {
    display: none;
}

.iphone-img{
    width: 80%;
    margin:0 0 0 10%;
}

.howitworks-text{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.howitworks-text1, .howitworks-text3, .howitworks-text5{
    color: #F9A624;
    font-size: 150%;
    height: 35px;
    width: 35px;
    border: 2px solid #F9A624;
    border-radius: 50%;
    -ms-flex-item-align: center;
    align-self: center;
    text-align: center;
    padding: 5px;
    margin: 0;
}

.howitworks-text2, .howitworks-text4, .howitworks-text6{
    line-height: 145%;
    font-size: 100%;
    word-spacing: 4px;
    letter-spacing: 1px;
    font-weight: 380;
    text-align: left;  
}

.howitworks-text p:first-child{
    margin-top: 6%;
}


/* ----------------------------------------------- */
/* SIGN UP */
/* ----------------------------------------------- */

.signup-title h2 {
    font-size: 180%;
    font-weight: 300;
    word-spacing: 2px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 2rem auto 0 auto;
    width: 70vw;
}

.signup h2:after {
    display: block;
    height: 2px;
    background-color: #F9A624;
    content: " ";
    width: 200px;
    margin: 0 auto;
    margin-top: 2rem;
}

.signup-card{
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.plan-box {
    background-color: #fef7ea;
    border-radius: 15px;
    width: 90%;
    margin: 0;
    -webkit-box-shadow: 2px 2px 2px #efefef;
    box-shadow: 2px 2px 2px #efefef;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.plan-box:hover {
    background-color: #fef7ea;
	-webkit-box-shadow: 4px 4px 4px #efefef;
	box-shadow: 4px 4px 4px #efefef;
    -webkit-transform: scale(1.1);
    transform: scale(1.1); 
    border: 1px solid #F9A624;
}

.plan-box div {
    padding: 20px;
    border-bottom: 1px solid #fff;
}

.plan-box div:first-child {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.plan-box div:last-child {
    text-align: center;
    border: 0;
}

.plan-price {
    font-size: 300%;
    margin-bottom: 10px;
    font-weight: 300;
    color: #F9A624;
}

.plan-price span {
    font-size: 30%;
    font-weight: 400;
}
.plan-price-currency {
    font-size: 90%;
}

.plan-box ul {
    list-style: none;
    padding-left: 0; 

}

.plan-box ul li {
    text-align: left;
    padding: 5px 0;
    font-size: 90%;
}


/* ----------------------------------------------- */
/* FOOTER */
/* ----------------------------------------------- */

.footer {
    grid-area: footer;
    background: #F9A624;
    color: #fff;
    padding: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Cagliostro', sans-serif;
    font-size: 70%;
}

.logo-img-white{
    height: 60px;
    width: auto;
    text-align: center;
    margin: 0 auto;
}


