@import url(fonts.css);

* {
    font-family: Lato, sans-serif;
}

.bold-text {
    font-weight: bold;
}

h1 {
    font-size: 25pt;
    margin: 0px;
}

h3 {
    font-size: 18pt;
    font-weight: 400;
    margin: 0px;
}

.bold-text {
    font-weight: bold;
}

hr {
    width: 100%;
    color: #D0D0D0;
    background-color: #D0D0D0;
    border-width: 2px;
    border-style: solid;
}

body {
    background-color: white;
    margin: 0px;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-image: linear-gradient(to bottom right, #799345, #252D15);
    padding: 10px 8px;
}

header aside {
    flex-basis: 20%;
}

header content {
    display: flex;
    flex-basis: 60%;
    justify-content: center;
}

#app-icon {
    vertical-align: middle;
    height: 60px;
    width: 60px;
}

#logo {
    vertical-align: middle;
    height: 60px;
    width: 219px;
}

.scale-on-hover {
    transition: transform 330ms ease-in-out;
}

.scale-on-hover:hover {
    transform: scale(1.1);
}

.full-body-container {
    display: flex;
    padding: 40px 20px 20px 20px;
    justify-content: center;
}

.full-body-container content {
    display: flex;
    flex-direction: column;
    width: 960px;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 50px;
    column-gap: 50px;
}

.wanna-try-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 40px;
    color: #6E863F;
}

.wanna-try-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 50px;
    column-gap: 200px;
}

.thirty-seconds-included-row {
    text-align: center;
    font-size: 15pt;
}

.justify-content-center {
    justify-content: center;
}

.top-bottom-padding-40px {
    padding: 40px 0px
}

.bottom-padding-40px {
    padding: 0px 0px 40px 0px;
}

.card {
    display: flex;
    flex-direction: column;
    height: 266px;
    width: 407px;

    border-radius: 15pt;
    background-color: #F5F5F5;

    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

div[class*="card"] .card-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #D0D0D0;
    color: #6E863F;
    border-top-left-radius: 15pt;
    border-top-right-radius: 15pt;

    height: 25%;
    padding: 5px 0px 0px 5px;
}

div[class*="card"] .card-title h1 {
    flex-grow: 2;
    text-align: center;
}

div[class*="card"] .card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #364221;
    font-size: 18pt;
    line-height: 1.35;
    padding: 20px 30px;

    text-align: center;
    height: 75%;
}

/* Wide card  */
.wide-card {
    display: flex;
    flex-direction: column;
    /* min-height: 266px; */
    max-width: 814px;

    border-radius: 15pt;
    background-color: #F5F5F5;

    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.wide-card>.wide-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #D0D0D0;
    color: #6E863F;
    border-top-left-radius: 15pt;
    border-top-right-radius: 15pt;

    height: 50px;
    padding: 5px 0px;
}

.wide-card>.features-container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;

    color: #364221;

    font-size: 15pt;
    padding: 20px 30px;

    text-align: justify;
    height: auto;
}

.wide-card>.features-container>.feature-row {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: start;
    justify-content: start;
}

.section-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    height: 100px;
    min-width: 250px;
}

.section-header-title {
    color: #6E863F;
}

.side-note {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 5px;
    height: 100px;
    width: 380px;
}

.side-note-title {
    color: #6E863F;
}

footer {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    padding: 25px 0px;

    background-color: #F5F5F5;
}

footer .footer-icons-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 39px;
}

footer .footer-copyright-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

    font-size: 14pt;
    color: #6E863F;
}

.footer-item {
    align-self: center;
}

.footer-item a {
    color: inherit;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .row {
        justify-content: center;
        flex-direction: column;
        row-gap: 50px;
        padding: 30px 0px;
    }

    .wanna-try-row {
        display: flex;
        flex-direction: column;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}

@media only screen and (min-width: 601px) and (max-width: 900px) {
    .full-body-container content {
        row-gap: 50px;
    }

    .row {
        justify-content: center;
        flex-direction: column;
        row-gap: 30px;
    }

    .top-bottom-padding-40px {
        padding: 0px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}



/* ----------- Latest iPhones ----------- */

/* Portrait */
@media only screen and (min-device-width: 375px) and (max-device-width: 956px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {

    h1 {
        font-size: 40pt;
    }

    h3 {
        font-size: 30pt;
    }

    .full-body-container content {
        row-gap: 100px;
    }

    .row {
        justify-content: center;
        flex-direction: column;
        row-gap: 100px;
    }

    .card {
        height: 430px;
        width: 600px;
    }

    div[class*="card"] .card-content {
        font-size: 30pt;
    }

    .wide-card>.wide-title {
        height: 90px;
    }

    .wide-card>.features-container {
        font-size: 28pt;
    }

    .thirty-seconds-included-row {
        font-size: 28pt;
    }

    #app-icon {
        height: 100px;
        width: 100px;
    }

    #logo {
        height: 100px;
        width: 350px;
    }

    .wanna-try-row {
        display: flex;
        flex-direction: column;
    }

    .side-note {
        width: 70%;
    }

    footer .footer-copyright-row {
        font-size: 22pt;
    }
}

/* Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 956px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {

    .full-body-container content {
        width: 840px;
    }

    footer {
        font-size: 16pt;
    }
}


/* ----------- Latest iPads ----------- */

/* Portrait */
@media only screen and (min-device-width: 810px) and (max-device-width: 1024px) and (-webkit-device-pixel-ratio: 2) {

    .full-body-container content {
        width: 90%;
    }
}

/* Landscape */
@media only screen and (min-device-width: 810px) and (max-device-width: 1366px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape) {}

/* Portrait orientation for smaller iPads */
@media only screen and (max-device-width: 1200px) and (-webkit-device-pixel-ratio: 2) {
    .full-body-container content {
        width: 90%;
    }
}

/* Landscape orientation for smaller iPads */
@media only screen and (max-device-width: 1200px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape) {}

/* ----------- Retina Screens ----------- */
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {}