* {
    box-sizing: content-box;
}

body, html {
    position: relative;
    margin: 0 auto;

    font-family: "Slabo","Roboto Condensed", helvetica, sans-serif;
    font-size: 16px;

    --color-primary: white;
    --color-primary-inv: #88b06a;
    --color-secondary: #88b06a;  /**  B0926A /  737373 */
    --color-secondary-inv: black;
    --color-tertiary: white;
    --color-tertiary-inv: black;
    --padding: 2em;

    overflow-x: hidden;

    height: 100%;
    /*Required for parallax*/
}

a {
    text-decoration: none;
    color: inherit;
}



/* COLORS */
.primary {
    background: var(--color-primary);
    color: var(--color-primary-inv);
}

.primary-inv {
    background: var(--color-primary-inv);
    color: var(--color-primary);
}

.secondary {
    background: var(--color-secondary);
    color: var(--color-secondary-inv);
}

.tertiary {
    background: var(--color-tertiary);
    color: var(--color-tertiary-inv);
}

/* PARALLAX */

.parallax {
    /* Set a specific height */
    min-height: 85%;
    opacity: 0.85;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax .caption {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translate(0%, -50%);
    text-align: center;
}


.parallax .caption > * {
    padding: 0.1em;
    width:fit-content;
}


/* TEXT */
.quote {
    padding: 3em;
    background-color: #f6f6f6;
    color:black;
    word-break: normal;
    width: 80%;
    max-width: 800px;
line-height: 1.5em;
}

/* SECTION */
section {
    display: block;
    padding: calc(2 * var(--padding)) 20px;
    overflow-x: hidden;
}

.spacing>* {
    display: block;
    margin-bottom: 0.75em;
}



/* SIZE */
.size1 {
    font-size: 1em;
    max-height: 1em;
}

.size2 {
    font-size: 2em;
    max-height: 2em;
}

.size4 {
    font-size: 4em;
    max-height: 4em;
    max-width: 100%;
}

.size5 {
    font-size: 5em;
    max-height: 5em;
    max-width: 100%;
}





/* BTN */
.btn {
    display: block;
    padding: 1em;
    border-radius: 1em;
    text-align: center;
}

.border {
    border: 1px solid;
}

/* COLUMNS */
.col2 {
    display: flex;
    align-items: flex-start;
    gap: calc(1 * var(--padding));
    justify-content: space-around;
}

.col2>* {
    width: calc(50% - var(--padding));
}


/* FLEX PLACEMENT */
.row {
    display: flex;
}

.grow {
    flex-grow: 1;
}

.wrap {
    flex-wrap: wrap;
}

.left {
    justify-content: left;
    display: flex;
}

.right {
    justify-content: flex-end;
    display: flex;
}

.toright {
    margin-left: auto;
}
.centered {
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}

.space-around {
    justify-content: space-around;
}

.round {
    border-radius: 50%;
}

.gap1 {
    gap: 1em;
}


svg:not(:root) {
    overflow: visible;
}


/* The device with borders */
.smartphone {
    display: block;
    position: relative;
    border: 12px black solid;
    border-top-width: 40px;
    border-bottom-width: 40px;
    border-radius: 28px;
    display: block;
    width: 360px;
    height: 640px;
    margin-bottom: 1em;
}

/* The horizontal line on the top of the device */
.smartphone:before {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 10px;
}

/* The circle on the bottom of the device */
.smartphone:after {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 50%;
    bottom: -45px;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 50%;
}





@media only screen and (max-width: 1000px ) {
    body,html {
        font-size: 14px;
        --padding: 1em;
    }
    .col2 {
        flex-wrap: wrap;
    }
    .col2 >* {
        width:100%;
    } 
    .smartphone {
        border: unset;
        width:100%;
    }
    .smartphone:after,
    .smartphone:before {
        display: none;
    }
}


