

/* -------------------------------------------------------------------------- */
/*                                    Body                                    */
/* -------------------------------------------------------------------------- */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    display: block;
    max-width: 1360px;
    margin: 0 auto;
}

.body-wrapper {
    margin-right: max(36px, 5%);
    margin-left: max(36px, 5%);
}

.page {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content 1fr;
}

.navbar-container {
    position: sticky;
    top: 0;
    /* border: 1px solid blue; */
    background-color: rgb(255, 255, 255, 0.99);
    padding-top: 8px;
    padding-bottom: 8px;
}



/* -------------------------------------------------------------------------- */
/*                                Page Contents                               */
/* -------------------------------------------------------------------------- */


.page-contents > .home {
    /* height: 100%; */
    /* border: 1px solid red; */
    height: calc(100vh - 48px);
    min-height: 700px;
    /* border: 1px solid purple; */
}


#get-started {
    margin-top: 40px;
}
/* .page-contents > .section { */
    /* min-height: 100vh; */
    /* height: max-content; */
    /* border: 1px solid green; */
/* } */





/* -------------------------------------------------------------------------- */
/*                                    Home                                    */
/* -------------------------------------------------------------------------- */



.page-contents > .home {
    display: grid;
    align-items: center;
}

.page-contents > .home > .container {
    /* border: 1px solid blue; */
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 120px;
    row-gap: 96px;
    /* padding-bottom: 160px; */
}

@media (max-width: 1100px) {
    .page-contents > .home > .container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, max-content);
        justify-items: center;
        row-gap: 48px;
        margin-top: -100px;
    }
}

.page-contents > .home > .container > .copy {
    /* border: 1px solid black; */
    max-width: 500px;
    /* margin: auto; */
}

.page-contents > .home > .container > .hero {
    margin: auto;
    /* border: 1px solid green; */
}

.page-contents > .home > .container > .hero > img {
    width: 100%;
}



.page-contents > .home > .container > .copy > .heading-xlarge {
    padding-bottom: 20px;
}


a {
    text-decoration: none;
    all: unset;
    cursor: pointer;
}

.page-contents > .home > .container > .learn-more {
    grid-row: 2;
    grid-column: 1 / span 2;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-rows: repeat(2, max-content);
    grid-row-gap: 6px;
    justify-items: center;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.page-contents > .home > .container > .learn-more > .btn {
    background-color: #F4F5F6;
    height: 48px;
    width: 48px;
    border-radius: 50%;
}

.page-contents > .home > .container > .learn-more > .btn > div {
    display: block;
    height: 48px;
    width: 48px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .page-contents > .home > .container > .hero {
        grid-row: 1;
        width: max(40%, 240px);
        row-gap: 0px;
        align-self: end;
    }

    .page-contents > .home > .container > .copy {
        grid-row: 2;
        text-align: center;
    }

    .page-contents > .home > .container > .learn-more {
        grid-row: 3;
        grid-column: 1;
    }

}

/* -------------------------------------------------------------------------- */
/*                                   Product                                  */
/* -------------------------------------------------------------------------- */

.page-contents > .section {
    display: grid;
    grid-template-rows: repeat(2, max-content);
    row-gap: 36px;
    /* border: 1px solid red; */

    /* offset for href */
    padding-top: 200px;
    margin-top: -200px;
}

/* .page-contents > .section > .copy {
    padding-bottom: 32px;
} */


@media (max-width: 640px) {
    .page-contents > .section > .copy {
        padding-bottom: 0px;
    }
}

.page-contents > .section > .copy > .heading-small {
    padding-bottom: 12px;
}


.page-contents > #get-started {
    display: grid;
    grid-template-rows: repeat(2, max-content);
    row-gap: 36px;
    padding-top: 60px;
}



/* -------------------------------------------------------------------------- */
/*                                    Cards                                   */
/* -------------------------------------------------------------------------- */
.page-contents > .section > .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 12px;
    column-gap: 24px;
}

@media (max-width: 1100px) {
    .page-contents > .section > .cards {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, max-content);
    }
}

/* -------------------------------------------------------------------------- */
/*                                    About                                   */
/* -------------------------------------------------------------------------- */

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    padding-top: 80px;
}


.img-wrapper {
    background-color: #F6F6F7;
    border-radius: 12px;
}

@media (max-width: 1100px) {
    .about-wrapper {
        display: grid;
        padding-top: 44px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, max-content);
        row-gap: 20px;
        justify-items: center;
    }
    .img-wrapper {
        width: 500px;
    }
}

@media (max-width: 640px) {
    .img-wrapper {
        width: 100%;
    }

    .about-wrapper {
        padding-top: 24px;
    }

}

/* .about-wrapper > .img-wrapper {
    width: 550px;
} */

.about-wrapper > .img-wrapper > img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
}

.about-wrapper > .blurb {
    /* padding-top: 40px; */
    display: grid;
    row-gap: 20px;
    grid-template-rows: repeat(6, max-content);
}

.about-wrapper > .blurb > .title {
    font-size: 22px;
    font-weight: 800;
    padding-bottom: 20px;
}

.linkedin {
    display: inline-block;
    vertical-align: middle;
    color: red;
}


/* -------------------------------------------------------------------------- */
/*                                 Get started                                */
/* -------------------------------------------------------------------------- */


#get-started-subtitle > span {
    cursor: pointer;
    text-decoration: underline;
}



/* -------------------------------------------------------------------------- */
/*                                     Nav                                    */
/* -------------------------------------------------------------------------- */

.nav-menu {
    z-index: 2;
    position: fixed;
    top: 68px;
    left: 0;
    height:100%;
    width: 100%;
    background-color: rgb(255, 255, 255, 0.99);
    display: none;
    /* border: 1px solid red; */
}

.nav-menu > .container {
    display: block;
    max-width: 1360px;
    margin: 0 auto;
}

.nav-menu > .container >.link-container {

    margin-right: max(36px, 5%);
    margin-left: max(36px, 5%);
    /* border: 1px solid blue; */
    max-width: 1360px;

    display: grid;
    grid-template-rows: repeat(3, max-content);
    grid-template-columns: 1fr;

    grid-row-gap: 20px;
    /* padding-left: 48px; */
    padding-top: 20px;

    font-weight: 600;
	font-size: 22px;
    /* justify-content: start; */
}

.contact-email {
    font-size: 14px;
    font-weight: 300;
}

/* .nav-menu > .link-container > div {
    max-width: 800px;
} */

/* -------------------------------------------------------------------------- */
/*                                   Footer                                   */
/* -------------------------------------------------------------------------- */

.contact-email-footer {
    padding-top: 40px;
    width: 100%;
    text-align: center;
    padding-bottom: 12px;
}
