/*
@font-face {
    font-family: 'HelveticaNeue-CondensedBold';
	src: url('../assets/fonts/HelveticaNeue-CondensedBold.eot');
	src: local('☺'), url('../assets/fonts/HelveticaNeue-CondensedBold.woff') format('woff'), url('../assets/fonts/HelveticaNeue-CondensedBold.ttf') format('truetype'), url('../assets/fonts/HelveticaNeue-CondensedBold.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
*/
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');


:root {
    --size-body: 0.9vw;
    --line-body: 1.2em;
}

html{
    overflow: auto;
}

body {
    font-family: "Quicksand", sans-serif;
    font-size: var(--size-body);
    line-height: var(--line-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


body, select, input, textarea {
    color: #000;
}

a {color: #000; text-decoration: none;}
a:hover {color: #000;}

/* Custom text-selection colors (remove any text shadows: http://twitter.com/miketaylr/status/12228805301) */
::-moz-selection{background: #000; color: #fff; text-shadow: none;}
::selection {background: #000; color: #fff; text-shadow: none;}

/*	j.mp/webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #000; color: #000;}

ins {background-color: #fff; color: #000; text-decoration: none;}
mark {background-color: #fff; color: #000; font-style: italic; font-weight: bold;}

/* Mozilla dosen't style place holders by default */
input:-moz-placeholder { color:#a9a9a9; }
textarea:-moz-placeholder { color:#a9a9a9; }


/*
-------------------------------------------------------------------------------*/


body.home {
    height: 100svh;
    display: flex;
    flex-direction: row;
}
.home .inner-left {
    background-color: #d8ded4;
    width: 60%;
    height: 100%;
}
.home .inner-right {
    background-color: #666863;
    width: 40%;
    height: 100%;
}

.inner-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 6000;
    padding: 0 22%;
}
.inner-content img.main-logo {
    width: 30%;
    display: block;
    margin-top: 2vw;
}
.inner-content .wrapper-text {
    text-align: center;
    margin-top: 2em;
}
.inner-content h3 {
    font-size: 1.4em;
    line-height: 2em;
}
.inner-content b {
    font-weight: bold;
}
.cta {
    background-color: #fefbf4;
    border-radius: 10vw;
    padding: 0.5em 3em;
    padding-bottom: 0.6em;
    text-transform: uppercase;
}
.iphone {
    position: fixed;
    left: -2vw;
    top: 5vw;
    width: 15vw;
    display: block;
}
.polaroid {
    position: fixed;
    right: 10vw;
    top: 20vw;
    width: 20vw;
    display: block;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}





@media screen and (min-width: 960px) {
    .mobile {
        display: none;
    }
}

@media screen and (max-width: 960px) {
    
  
    :root {
        --size-body: 3.5vw;
        --line-body: 1.2em;
    }

    .inner-content {
        padding: 0 20px;
    }
    
    .inner-content img.main-logo {
        width: 40%;
        margin-top: 20px;
    }
    .inner-content .wrapper-text {
        margin-top: 20px;
    }
    
    .iphone {
        left: -10vw;
        top: 20vw;
        width: 40vw;
        opacity: 0.3;
    }
    .polaroid {
        right: 10vw;
        top: initial;
        bottom: 26vw;
        width: 40vw;
    }
    .inner-content h3 {
        font-size: 1.5em;
        line-height: 1.2em;
        padding: 0 11%;
        margin-bottom: 0.5em;
    }


} 



@media screen and (max-width: 960px) and (orientation:landscape) {
    

    
    
}


