/* =========================
   GLOBAL / SHARED STYLES
========================= */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@700&family=Nunito+Sans:wght@400;600&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;

    background: #FFF8ED;
    color: #4b3b38;

    font-family: "Nunito Sans", sans-serif;

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

.container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    margin: 0 0 20px 0;

    font-family: "Baloo 2", cursive;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.1;
}

p {
    margin: 0 0 20px 0;

    font-size: 18px;
    line-height: 1.6;
}

.bold {
    font-weight: 600;
}

button {
    border: none;
    border-radius: 34px;

    padding: 16px 32px;
    margin-top: 18px;

    background: #F7E7C6;
    color: #4b3b38;

    font-family: "Baloo 2", cursive;
    font-weight: 700;
    font-size: 22px;

    cursor: pointer;
}

.hidden {
    display: none !important;
}


/* =========================
   PILLOW TALK
========================= */

.logo {
    width: 300px;
    max-width: 80vw;
    height: auto;

    display: block;

    margin: 0 auto 28px;
}

#question {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
}

.question-card {
    background: white;

    padding: 45px 30px;
    margin: 25px 0;

    border-radius: 25px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

#progress {
    font-size: 15px;
}

.finish-logo {
    width: 300px;
    max-width: 80vw;
    height: auto;

    display: block;

    margin: 0 auto 28px;
}

.instructions-image {
    width: 100%;
    max-width: 650px;
    max-height: 75vh;

    height: auto;
    object-fit: contain;

    display: block;

    margin: 0 auto 15px;
}


/* =========================
   VANILLA LAND
========================= */


/* VANILLA LAND BACKGROUND */

.vanilla-page {
    margin: 0;
    min-height: 100vh;

    position: relative;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 20% 18%,
            rgba(255, 236, 190, 0.42),
            transparent 16%
        ),

        radial-gradient(
            circle at 82% 20%,
            rgba(255, 213, 170, 0.34),
            transparent 18%
        ),

        radial-gradient(
            circle at 18% 78%,
            rgba(255, 223, 196, 0.30),
            transparent 20%
        ),

        radial-gradient(
            circle at 85% 80%,
            rgba(255, 205, 175, 0.24),
            transparent 22%
        ),

        linear-gradient(
            180deg,
            #f7d79a 0%,
            #f8dfab 18%,
            #fae7bb 36%,
            #fdecc8 56%,
            #fff1d5 78%,
            #fff7e6 100%
        );
}


/* VANILLA CLOUD / GLOW LAYER */

.vanilla-page::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(circle at 7% 28%, rgba(255, 241, 214, 0.72) 0 6%, transparent 7%),
        radial-gradient(circle at 14% 31%, rgba(255, 235, 205, 0.62) 0 7%, transparent 8%),

        radial-gradient(circle at 88% 28%, rgba(255, 241, 214, 0.72) 0 6%, transparent 7%),
        radial-gradient(circle at 95% 31%, rgba(255, 235, 205, 0.62) 0 7%, transparent 8%),

        radial-gradient(circle at 10% 88%, rgba(255, 228, 196, 0.76) 0 9%, transparent 10%),
        radial-gradient(circle at 22% 90%, rgba(255, 239, 220, 0.68) 0 10%, transparent 11%),

        radial-gradient(circle at 80% 88%, rgba(255, 228, 196, 0.76) 0 9%, transparent 10%),
        radial-gradient(circle at 94% 90%, rgba(255, 239, 220, 0.68) 0 10%, transparent 11%);

    z-index: 0;
}


/* VANILLA SPARKLES */

.vanilla-page::after {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(circle at 22% 24%, rgba(255,255,255,0.95) 0 2px, transparent 3px),
        radial-gradient(circle at 31% 16%, rgba(255,255,255,0.92) 0 2px, transparent 3px),
        radial-gradient(circle at 52% 22%, rgba(255,255,255,0.95) 0 2px, transparent 3px),
        radial-gradient(circle at 68% 17%, rgba(255,255,255,0.92) 0 2px, transparent 3px),
        radial-gradient(circle at 79% 26%, rgba(255,255,255,0.95) 0 2px, transparent 3px),
        radial-gradient(circle at 16% 52%, rgba(255,255,255,0.86) 0 2px, transparent 3px),
        radial-gradient(circle at 86% 54%, rgba(255,255,255,0.86) 0 2px, transparent 3px);

    opacity: 0.65;

    z-index: 0;
}


/* VANILLA LAND CONTENT */

.vanilla-container {
    position: relative;
    z-index: 1;

    width: 90%;
    max-width: 600px;
    min-height: 100vh;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    padding: 30px 20px 60px;
    box-sizing: border-box;

    background: transparent;
}


/* VANILLA LAND TOP LOGO */

img.vanilla-land-icon {
    width: 350px !important;
    max-width: 80vw !important;
    height: auto !important;

    display: block !important;

    margin: 0 auto 24px !important;
}


/* GAME ICONS */

img.game-icon {
    width: 160px !important;
    max-width: 70vw !important;
    height: auto !important;

    display: block !important;
}


/* CLICKABLE GAME ICON */

.game-link {
    display: inline-block;

    width: 220px;
    max-width: 70vw;

    text-decoration: none;

    transition: transform 0.2s ease;
}

.game-link:hover {
    transform: scale(1.03);
}
/* =========================
   DATE PLANNER
========================= */

img.date-planner-logo {
    width: 160px !important;
    max-width: 70vw !important;
    height: auto !important;

    display: block !important;

    margin: 0 auto 24px !important;
}

button.game-icon-button {
    background: transparent !important;

    border: none !important;
    border-radius: 0 !important;

    padding: 0 !important;
    margin: 0 !important;

    box-shadow: none !important;

    width: auto;
    height: auto;

    display: inline-block;
}

button.game-icon-button:hover {
    background: transparent !important;
    transform: scale(1.03);
}

/* COMING SOON ICON */

.coming-soon-item {
    width: 220px;
    max-width: 70vw;

    margin: 0 auto;
}

img.coming-soon-icon {
    width: 160px !important;
    max-width: 70vw !important;
    height: auto !important;

    display: block !important;

    margin: 0 auto !important;
}

/* =========================
   HOME PAGE
========================= */

.home-page {
    margin: 0;
    min-height: 100vh;

    background-image: url("images/home-background.PNG");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    font-family: Arial, sans-serif;
}


/* MAIN CONTENT */

.home-container {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;

    padding: 10px 20px 35px;
    box-sizing: border-box;
}


/* LOGO */

.home-logo {
    width: min(520px, 82%);
    height: auto;

    display: block;

    margin: 0 auto 10px;
}


/* TEXT */

.home-tagline {
    margin: 0 0 8px;

    font-size: 1.35rem;
    line-height: 1.35;

    color: #4b3b38;
}

.home-description {
    max-width: 620px;

    margin: 0 auto 22px;

    font-size: 1.05rem;
    line-height: 1.5;

    color: #4b3b38;
}


/* BUTTON AREA */

.home-buttons {
    width: min(300px, 85%);

    display: flex;
    flex-direction: column;

    gap: 12px;
}


/* BUTTONS */

.home-button {
    display: block;

    padding: 16px 24px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 1.1rem;
    font-weight: bold;

    color: #6b2f6f;
    background: #f8d8e5;

    border: 2px solid #ffffff;

    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.home-button:hover {
    transform: translateY(-3px);

    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.16);
}


/* HOME MOBILE */

@media (max-width: 600px) {

    .home-page {
        background-image: url("images/home-background-mobile.PNG");
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .home-container {
        padding-top: 25px;
    }

    .home-logo {
        width: 92%;
    }

    .home-tagline {
        font-size: 1.25rem;
    }

    .home-description {
        font-size: 1rem;
    }
}
/* =========================
   OUR FLAVOURS PAGE
========================= */
.flavours-page {

    margin: 0;

    min-height: 100vh;

    position: relative;

    overflow-x: hidden;

    background-image: url("images/flavours-background.PNG");

    background-size: cover;

    background-position: center top;

    background-repeat: no-repeat;

    background-attachment: scroll;

    font-family: Arial, sans-serif;
}


/* MAIN CONTAINER */

.flavours-container {
    position: relative;
    z-index: 1;

    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    padding: 30px 20px 60px;
    box-sizing: border-box;

    background: transparent;
}


/* OUR FLAVOURS LOGO */

.flavours-logo {
    width: min(500px, 90%);
    height: auto;

    display: block;

    margin: 0 auto 18px;

    filter: drop-shadow(
        0 8px 16px rgba(86, 48, 67, 0.12)
    );
}


/* INTRO TEXT */

.flavours-intro {
    width: 100%;

    margin: 0 auto 32px;

    text-align: center;

    font-size: 1.35rem;
    line-height: 1.4;

    color: #4b3b38;
}


/* BUTTON AREA */

.flavour-buttons {
    width: min(420px, 92%);

    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 0 auto;

    gap: 24px;
}


/* INDIVIDUAL BUTTON */

.flavour-button {
    display: block;

    width: 100%;

    margin: 0 auto;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}


/* BUTTON IMAGE */

.flavour-button img {
    display: block;

    width: 100%;
    height: auto;

    margin: 0 auto;

    filter: drop-shadow(
        0 10px 15px rgba(75, 50, 65, 0.12)
    );
}


/* HOVER */

.flavour-button:hover {
    transform: translateY(-4px) scale(1.01);
    filter: brightness(1.03);
}

.flavour-button:active {
    transform: translateY(1px);
}


/* QUESTIONNAIRE */

.questionnaire-button {
    margin-top: 12px;
}


/* FLAVOURS MOBILE */

@media (max-width: 600px) {

    .flavours-page {
        background-image: url("images/flavours-background-mobile.PNG");
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .flavours-container {
        padding: 20px 15px 50px;
    }

    .flavours-logo {
        width: 92%;
    }

    .flavours-intro {
        font-size: 1.15rem;
        margin-bottom: 26px;
    }

    .flavour-buttons {
        width: 94%;
        gap: 20px;
    }
}
/* =========================
   PEACH LAND BACKGROUND
========================= */

.peach-page {
    margin: 0;
    min-height: 100vh;

    position: relative;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 20% 18%,
            rgba(255, 210, 220, 0.45),
            transparent 16%
        ),

        radial-gradient(
            circle at 82% 20%,
            rgba(255, 220, 190, 0.35),
            transparent 18%
        ),

        radial-gradient(
            circle at 18% 78%,
            rgba(255, 185, 205, 0.28),
            transparent 20%
        ),

        radial-gradient(
            circle at 85% 80%,
            rgba(255, 205, 160, 0.26),
            transparent 22%
        ),

        linear-gradient(
            180deg,
            #f98ea1 0%,
            #f9a08f 18%,
            #fbb193 38%,
            #fdc39f 58%,
            #ffd6b0 78%,
            #ffe6c8 100%
        );

    isolation: isolate;
}


/* CLOUD / GLOW LAYER */

.peach-page::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(circle at 7% 28%, rgba(255, 215, 220, 0.60) 0 6%, transparent 7%),
        radial-gradient(circle at 14% 31%, rgba(255, 220, 225, 0.50) 0 7%, transparent 8%),

        radial-gradient(circle at 88% 28%, rgba(255, 215, 220, 0.60) 0 6%, transparent 7%),
        radial-gradient(circle at 95% 31%, rgba(255, 220, 225, 0.50) 0 7%, transparent 8%),

        radial-gradient(circle at 10% 88%, rgba(255, 205, 215, 0.62) 0 9%, transparent 10%),
        radial-gradient(circle at 22% 90%, rgba(255, 220, 225, 0.55) 0 10%, transparent 11%),

        radial-gradient(circle at 80% 88%, rgba(255, 205, 215, 0.62) 0 9%, transparent 10%),
        radial-gradient(circle at 94% 90%, rgba(255, 220, 225, 0.55) 0 10%, transparent 11%);

    z-index: -2;
}


/* SPARKLES */

.peach-page::after {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(circle at 22% 24%, white 0 2px, transparent 3px),
        radial-gradient(circle at 31% 16%, white 0 2px, transparent 3px),
        radial-gradient(circle at 52% 22%, white 0 2px, transparent 3px),
        radial-gradient(circle at 68% 17%, white 0 2px, transparent 3px),
        radial-gradient(circle at 79% 26%, white 0 2px, transparent 3px),
        radial-gradient(circle at 16% 52%, white 0 2px, transparent 3px),
        radial-gradient(circle at 86% 54%, white 0 2px, transparent 3px);

    opacity: 0.55;

    z-index: -1;
}


/* PEACH CONTENT */

.peach-container {
    position: relative;
    z-index: 1;

    width: 90%;
    max-width: 600px;
    min-height: 100vh;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    padding: 30px 20px 60px;
    box-sizing: border-box;

    background: transparent;
}


/* PEACH LAND LOGO */

img.peach-land-icon {
    width: 360px !important;
    max-width: 88vw !important;
    height: auto !important;

    display: block !important;

    margin: 0 auto 24px !important;
}


/* PEACH INTRO */

.peach-intro {
    max-width: 520px;

    margin: 0 auto 30px;

    color: #4b3b38;
}


/* PEACH GAMES */

.peach-games {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 24px;
}
/* =========================
   CUTE FEEDBACK CARD
========================= */

.feedback-card {
    width: min(92%, 700px);
    margin: 50px auto 70px auto;
    padding: 34px 28px;

    background: rgba(255, 250, 240, 0.82);

    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 34px;

    box-shadow:
        0 12px 30px rgba(120, 80, 60, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);

    text-align: center;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* TITLE */

.feedback-card h2 {
    margin: 0 0 12px 0;

    font-size: 30px;
    line-height: 1.2;

    color: #4b3b38;
}


/* INTRO TEXT */

.feedback-card > p {
    max-width: 520px;
    margin: 0 auto 28px auto;

    font-size: 17px;
    line-height: 1.5;

    color: #6a5752;
}


/* QUESTION LABELS */

.feedback-label {
    display: block;

    margin: 28px 0 14px 0;

    font-size: 18px;
    font-weight: 700;

    color: #4b3b38;
}


/* OPTION GROUPS */

.feedback-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 10px;
}


/* EACH PILL */

.feedback-options label {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 11px 15px;

    background: #fff8ed;

    border: 1px solid rgba(160, 120, 100, 0.12);
    border-radius: 999px;

    color: #574642;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.feedback-options label:hover {
    transform: translateY(-2px);

    background: #fff2df;

    box-shadow: 0 5px 12px rgba(120, 80, 60, 0.08);
}


/* HIDE DEFAULT RADIO + CHECKBOX LOOK */

.feedback-options input {
    margin-right: 7px;

    accent-color: #d49c8f;
}


/* TEXT AREA */

.feedback-card textarea {
    width: 100%;
    min-height: 95px;

    box-sizing: border-box;

    margin-top: 6px;
    padding: 15px 16px;

    background: rgba(255, 255, 255, 0.78);

    border: 1px solid rgba(140, 105, 90, 0.18);
    border-radius: 20px;

    font-family: inherit;
    font-size: 16px;

    color: #4b3b38;

    resize: vertical;

    outline: none;
}


.feedback-card textarea:focus {
    border-color: #e0b2a5;

    box-shadow: 0 0 0 4px rgba(224, 178, 165, 0.15);
}


/* SEND BUTTON */

.feedback-button {
    margin-top: 22px;

    padding: 14px 28px;

    border: none;
    border-radius: 999px;

    background: #F7E7C6;

    color: #4b3b38;

    font-family: inherit;
    font-size: 18px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 6px 14px rgba(120, 80, 60, 0.08);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.feedback-button:hover {
    background: #EFD9AE;

    transform: translateY(-2px);
}


/* SUCCESS / ERROR TEXT */

.feedback-message {
    min-height: 24px;

    margin-top: 16px;

    color: #6a5752;

    font-weight: 600;
}
/* ==============================
   ABOUT PAGE BACKGROUND
============================== */

.about-container {
    width: 100%;
    max-width: none;

    margin: 0;
    padding: 30px 30px 70px;

    box-sizing: border-box;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(255, 174, 200, 0.45) 0px,
            rgba(255, 174, 200, 0.20) 160px,
            transparent 280px
        ),

        radial-gradient(
            circle at 92% 25%,
            rgba(255, 211, 157, 0.38) 0px,
            rgba(255, 211, 157, 0.18) 170px,
            transparent 290px
        ),

        radial-gradient(
            circle at 15% 70%,
            rgba(255, 204, 220, 0.35) 0px,
            rgba(255, 204, 220, 0.15) 180px,
            transparent 300px
        ),

        radial-gradient(
            circle at 90% 85%,
            rgba(246, 187, 203, 0.30) 0px,
            rgba(246, 187, 203, 0.12) 160px,
            transparent 280px
        ),

        linear-gradient(
            180deg,
            #fff8ef 0%,
            #fff0f4 48%,
            #fff8ef 100%
        ) !important;

    min-height: 100vh;
}
/* ==============================
   ABOUT PAGE LOGO
============================== */

.about-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 20px auto 40px;
    padding: 0;
}

.about-header .about-logo {
    width: 320px !important;
    max-width: 80vw !important;

    height: auto !important;
    max-height: 320px;

    object-fit: contain;

    display: block;

    margin: 0 auto;
}


/* ABOUT LOGO MOBILE */

@media (max-width: 700px) {

    .about-header .about-logo {
        width: 250px !important;
        max-width: 75vw !important;
        max-height: 250px;
    }

}
/* ==============================
   STORY BOOK
============================== */

.story-book {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 30px 20px 60px;

    box-sizing: border-box;

    text-align: center;
}


/* BOOK PAGE */

.book-page {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-bottom: 25px;
}

.book-page img {
    width: 100%;
    max-width: 700px;

    height: auto;

    display: block;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);
}


/* CONTROLS */

.book-controls {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 20px;

    margin-top: 20px;
}

.book-controls button {
    padding: 12px 20px;

    border: none;
    border-radius: 30px;

    font-size: 1rem;

    cursor: pointer;

    background: #F7E7C6;
    color: #4b3b38;
}

.book-controls button:hover {
    transform: translateY(-1px);
}

.book-controls button:disabled {
    opacity: 0.4;

    cursor: default;

    transform: none;
}

#pageNumber {
    font-size: 0.95rem;

    opacity: 0.75;
}


/* BACK BUTTON */

.back-to-about {
    display: inline-block;

    margin-top: 35px;

    text-decoration: none;

    color: #4b3b38;

    font-weight: bold;
}


/* MOBILE */

@media (max-width: 600px) {

    .story-book {
        padding: 20px 10px 50px;
    }

    .book-page img {
        width: 96%;

        border-radius: 12px;
    }

    .book-controls {
        gap: 10px;
    }

    .book-controls button {
        padding: 10px 14px;

        font-size: 0.9rem;
    }

    #pageNumber {
        font-size: 0.85rem;
    }

/* ==============================
   STORY BOOK
============================== */

.story-book {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 30px 20px 60px;

    box-sizing: border-box;

    text-align: center;
}


/* BOOK PAGE */

.book-page {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-bottom: 25px;
}

.book-page img {
    width: 100%;
    max-width: 700px;

    height: auto;

    display: block;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);
}


/* CONTROLS */

.book-controls {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 20px;

    margin-top: 20px;
}

.book-controls button {
    padding: 12px 20px;

    border: none;
    border-radius: 30px;

    font-size: 1rem;

    cursor: pointer;

    background: #F7E7C6;
    color: #4b3b38;
}

.book-controls button:hover {
    transform: translateY(-1px);
}

.book-controls button:disabled {
    opacity: 0.4;

    cursor: default;

    transform: none;
}

#pageNumber {
    font-size: 0.95rem;

    opacity: 0.75;
}


/* BACK BUTTON */

.back-to-about {
    display: inline-block;

    margin-top: 35px;

    text-decoration: none;

    color: #4b3b38;

    font-weight: bold;
}


/* MOBILE */

@media (max-width: 600px) {

    .story-book {
        padding: 20px 10px 50px;
    }

    .book-page img {
        width: 96%;

        border-radius: 12px;
    }

    .book-controls {
        gap: 10px;
    }

    .book-controls button {
        padding: 10px 14px;

        font-size: 0.9rem;
    }

    #pageNumber {
        font-size: 0.85rem;
    }

   
   /* ==============================
   FOUNDER STORY IMAGES
============================== */

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

    gap: 40px;

    max-width: 900px;
    margin: 60px auto;
}


/* IMAGE CONTAINER */

.founder-image {
    flex: 0 0 240px !important;

    width: 240px !important;
    max-width: 240px !important;

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


/* CLICKABLE IMAGE */

.founder-image-link {
    display: block;

    width: 220px !important;
    max-width: 220px !important;

    margin: 0 auto;
}


/* ACTUAL STRAWBERRY + HUNTER IMAGE */

/* ==============================
   FOUNDER STORY IMAGES
============================== */

.founder-image {
    flex: 0 0 240px;
    width: 240px;
    max-width: 240px;

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


/* MOBILE */

@media (max-width: 700px) {

    .founder-image {
        flex: none;
        width: 190px;
        max-width: 190px;
    }

    .founder-image a {
        width: 180px !important;
        max-width: 180px !important;
    }

    .founder-image img {
        width: 180px !important;
        max-width: 180px !important;
        height: auto !important;
        max-height: 250px !important;
    }

}
