:root {
    --greys0: #222222;
    --greys1: #3B3B3B;
    --greys2: #515151;
    --greys3: #626262;
    --greys4: #7E7E7E;
    --greys5: #9E9E9E;
    --greys6: #B1B1B1;
    --greys7: #CFCFCF;
    --greys8: #E1E1E1;
    --greys9: #F7F7F7;
    --main9vc: #4D8CFC;
    --main: hsl(348, 100%, 71%);
    --main-semi: hsl(348, 100%, 71%, 25%);
    --main-75: hsl(348, 100%, 71%, 75%);
    --main-50: hsl(348, 100%, 71%, 50%);
    --pink: rgba(255, 106, 136, 1);
    --accent: hsl(348, 100%, 22%);
    --total0: black;
    --total10: white;
    --accent1: #D6F49D;
    --accent2: #EAD637;
    --accent3: #CBA328;
    --accent4: #637069;
    --accent5: #82A296;
    --accent6: #93BBAC;
    --accent7: #A2D3C2;
    --accent8: #230C0F;
    --nav-height: 170px;
    --nav-height-mobile: 60px;
    --body-bg: rgba(255, 106, 136, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0px;
    color: black;
    background-color: var(--body-bg);
    min-height: 100vh;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 18px;
    cursor: default;
    width: 100vw;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: var(--nav-height) 1fr;
    grid-template-areas:
        "nav"
        "sections";
    overflow: hidden;
}

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

ul {
    padding-inline-start: 20px;
    margin-top: 0px;
}

blockquote::before {
    content: open-quote;
}

blockquote::after {
    content: close-quote;
}

blockquote {
    quotes: "“" "”" "‘" "’";
    margin: 0px;
}

.text-24,
.b-box,
.home-input,
.setup-table,
.quote,
.quote-sub,
.narrow,
.grid-2,
.grid-3,
.grid-4,
.grid-5 {
    font-size: 24px;
}

.grid-2,
.grid-3,
.grid-4,
.grid-5 {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
    align-items: start;
}

.why-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}

.home-input {
    width: 100%;
    background-color: black;
    border-radius: 10px;
    padding: 10px;
    border: solid 1px var(--greys3);
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
}

.nav-container {
    padding: 40px;
    display: grid;
    grid-template-columns: 170px 1fr;
    grid-area: nav;
}

.nav-menu-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    height: 50px;
    width: 100%;
}

.nav-logo-image {
    width: 200px;
}

.text-24 {
    font-size: 24px;
}

.text-72 {
    font-size: 72px;
}

.text-56 {
    font-size: 56px;
}

.text-36 {
    font-size: 36px;
    font-weight: 500;
}

.text-30 {
    font-size: 30px;
}

.text-20 {
    font-size: 20px;
}

.text-18 {
    font-size: 18px;
}

.text-16 {
    font-size: 16px;
}

.text-14 {
    font-size: 14px;
}

.text-10 {
    font-size: 10px;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.white {
    color: white;
}

.centered {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.center-top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.top-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.left {
    display: flex;
    align-items: center;
    justify-content: left;
}

.margin-top {
    margin-top: 10px;
}

.margin-bottom {
    margin-bottom: 10px;
}

.bold {
    font-weight: 500;
}

.link {
    cursor: pointer;
}

.link:hover {
    color: var(--total10);
}

.span-2 {
    grid-column: span 2;
}

.span-3 {
    grid-column: span 3;
}

.padding {
    padding: 10px;
}

.padding-40 {
    padding: 40px;
}

.padding-top {
    padding-top: 10px;
}

.padding-bottom {
    padding-bottom: 10px;
}

.space-left {
    padding-left: 5px;
}

.dim {
    color: var(--greys2);
}

.bullet {
    font-size: 24px;
    display: grid;
    grid-template-columns: 20px auto;
}

.reincarnation-text {
    grid-area: reincarnation_text;
}

.reincarnation-image {
    grid-area: reincarnation_image;
}

.newlife-text {
    grid-area: newlife_text;
}

.newlife-image {
    grid-area: newlife_image;
}

.goodfortune-text {
    grid-area: goodfortune_text;
}

.goodfortune-image {
    grid-area: goodfortune_image;
}

.aiminghigh-text {
    grid-area: aiminghigh_text;
}

.aiminghigh-image {
    grid-area: aiminghigh_image;
}

.nine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    width: 300px;
    height: 300px;
    margin-top: 20px;
}

/*=== C O O K I E ===============================================================================*/

.cookie-banner-container {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--main-75);
    padding: 20px;
    color: white;
    z-index: 1000000;
    display: none;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
        "text essential"
        "text all";
    gap: 5px;
}

.cookie-text {
    grid-area: text;
}

.cookie-essential {
    grid-area: essential;
}

.cookie-all {
    grid-area: all;
}

.button-150-grey-on-transparent,
.button-150-white-on-transparent,
.button-150-white-on-main,
.button-150-white-on-9xc,
.button-150-white-on-black {
    height: 41px;
    width: 150px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 30px;
    margin: 5px;
    color: var(--total10);
    background-color: black;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-150-grey-on-transparent {
    background-color: transparent;
    border: 1px solid var(--greys3);
    color: var(--greys7);
}

.button-150-white-on-transparent {
    background-color: transparent;
    border: 1px solid var(--total10);
}

.button-150-white-on-main {
    color: white;
    background-color: black;
}

.button-150-white-on-9xc {
    color: white;
    background-color: var(--main9vc);
}

.button-150-grey-on-transparent:hover,
.button-150-white-on-transparent:hover,
.button-150-white-on-9xc:hover,
.button-150-white-on-main:hover,
.button-150-white-on-black:hover {
    background-color: white;
    color: black;
    cursor: pointer;
}

/*=== N E W =====================================================================================*/

.sections {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: calc(100vh - var(--nav-height));
    grid-area: sections;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sections-pdf {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    grid-area: sections;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sections::-webkit-scrollbar {
    display: none
}

.container-1200 {
    max-width: 1200px;
    min-height: calc(100vh - var(--nav-height));
}

.container-900 {
    max-width: 900px;
    min-height: calc(100vh - var(--nav-height));
}

.container-700 {
    max-width: 700px;
    min-height: calc(100vh - var(--nav-height));
}

.narrow {
    padding: 10px;
    max-width: 500px;
}

.spacer-50-constant,
.spacer-50 {
    height: 50px
}

.spacer-10 {
    height: 10px
}

.spacer-100 {
    height: 50px;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.quote {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 36px;
    text-align: center;
}

.quote-sub {
    display: grid;
    grid-template-columns: auto auto;
}

.team-member {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
    background-color: white;
    border-radius: 5px;
    padding: 10px;
    font-size: 18px;
    border: solid 1px var(--greys1);
}

.frog-background {
    background-image: url("/images/kissing-frog.png");
    height: 165px;
    background-position: center;
    background-size: cover;
}

.phoenix-background {
    background-image: url("/images/phoenix.png");
    background-position: center;
    background-size: cover;
    height: 100%;
}

.cat-background {
    background-image: url("/images/cat.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 100%;
}

.pregnant-background {
    background-image: url("/images/pregnant2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

.ninecats-background {
    background-image: url("/images/ninecats.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 360px;
    display: flex;
    align-items: flex-end;/
}

.ninecats2-background {
    background-image: url("/images/ninecats2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 360px;
    display: flex;
    align-items: flex-end;/
}

.infinity-background {
    background-image: url("/images/universe.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

.why-background {
    background-image: url("/images/cheetah-background.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 500px;
    width: 1200px;
    font-size: 30px;
    padding: 40px
}

.cheetah-background {
    background-image: url("/images/cheetah3.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 100%;
    min-height: 500px;
    width: 100%
}

.three-squared-background {
    background-image: url("/images/cathuman.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

.office-background {
    background-image: url("/images/office.png");
    height: 320px;
    border-radius: 5px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 10px;
}

.athira-background {
    background-image: url("/images/athira.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 100%;
    padding: 40px;
}

.icon-background {
    background-image: url("/images/icon-image.png");
    border-radius: 50%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}

.icon-background:hover {
    background-image: url("/images/icon-image-white-background.png");
}

.head-shot-container {
    display: grid;
    padding: 10px;
    grid-template-rows: auto auto;
    row-gap: 10px;
}

.head-shot-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    filter: grayscale(100%);
    padding: 5px;
}

.head-shot-image-big {
    width: 100%;
    border-radius: 50%;
    filter: grayscale(100%);
    display: block;
}

.team-role {
    font-size: 14px;
    margin-bottom: 5px;
}

.team-background {
    font-size: 14px;
}

.team-9xc {
    color: white;
    font-size: 11px;
    font-weight: 500;
    width: 100%;
}

.team-9xc-circle {
    background-color: var(--main);
    border-radius: 50%;
    width: 15px;
    height: 15px;
}

.logo-images {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.setup-table {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
}

.b-box {
    background-color: black;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    border-radius: 5px;
    color: white;
}

.b-box-9vc {
    background-color: var(--main9vc);
    border-radius: 90px;
}

.b-text {
    padding: 40px;
    max-width: 500px;
}

.b-caps {
    font-size: 18px;
    font-weight: 500;
    color: var(--main);
}

.b-image {
    width: 100%;
    object-fit: contain;
    object-position: left;
}

.b-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 10px;
}

.phasev-background {
    background-color: #EFF7EF;
}

.footer {
    font-size: 16px
}

.heigth-400 {
    height: 400px;
}

@media only screen and (max-width: 431px) {

    body {
        grid-template-rows: var(--nav-height-mobile) 1fr;
    }

    .bullet {
        font-size: 18px;
    }

    .b-contact {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 1fr 1fr;
    }

    .nav-logo-image {
        width: 80px;
    }

    .nav-container {
        padding: 10px;
        grid-template-columns: 80px 1fr;
    }

    .nav-menu-container {
        gap: 10px;
        font-size: 12px;
        height: 40px;
    }

    .button-150-grey-on-transparent,
    .button-150-white-on-transparent,
    .button-150-white-on-main,
    .button-150-white-on-9xc,
    .button-150-white-on-black {
        width: 100px;
        height: 25px;
        font-size: 14px;
    }

    .text-56 {
        font-size: 28px;
    }

    .container-700,
    .container-900,
    .container-1200 {
        max-width: 320px;
        min-height: calc(100vh - var(--nav-height-mobile));
    }

    .home-input,
    .b-box,
    .setup-table,
    .narrow,
    .quote,
    .quote-sub,
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        font-size: 18px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        gap: 0px;
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .grid-2 {
        grid-template-rows: auto auto;
    }

    .grid-3 {
        grid-template-rows: auto auto auto;
    }

    .grid-4 {
        grid-template-rows: auto auto auto auto;
    }

    .grid-5 {
        grid-template-rows: auto auto auto auto auto;
    }

    .spacer-50 {
        height: 10px
    }

    .frog-background {
        background-image: url("/images/kissing-frog.png");
        height: 80px;
    }

    .office-background {
        height: 160px;
    }

    .padding-40 {
        padding: 0px;
    }

    .quote-sub {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
    }

    .b-box-9vc,
    .b-box {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
    }

    .b-box-9vc {
        border-radius: 30px;
    }

    .footer {
        font-size: 10px
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-background {
        font-size: 18px;
        padding: 20px;
        width: 100%;
    }

}