/* Button-grid Styling */
/* ------------------------------------------------------------------------------------------------------------------------------- */
.button-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 20vh;
    place-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 5vh 0 0 0;
    padding: 0 30px 0 30px;
}

.button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    height: 100%;
    width: 100%;
}

.button1 {
    background-color: hsl(184.11, 37.06%, 61.38%);
}

.button2 {
    background-color: hsl(7.32, 29.54%, 72.72%);
}

.button3 {
    background-color: hsl(120, 7.02%, 63.72%);
}

.button4 {
    background-color: hsl(1.58, 17.43%, 57.26%);
}

.button5 {
    background-color: hsl(90.43, 32.41%, 58.22%);
}

.button6 {
    background-color: hsl(313.04, 30.27%, 70.2%);
}

.button-text {
    display: inline-flex;
    align-items: center;
    color: white;
    font-family: sans-serif;
    font-size: 2em;
    margin-bottom: 0.5em;
}

.button-image {
    max-height: 60%;
    margin-bottom: 0.5em;
}

@media (max-width: 768px) {
    .button-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        grid-auto-rows: 15vh;
    }

    .button {
        padding: 10% 10%;
    }

    .button-text {
        font-size: 1.5em;
    }
}

@media (max-height: 599px) {
    .button-image {
        display: none;
    }

    .button-text {
        font-size: 6vh;
        margin-bottom: 0;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------- */

/* Try it now styling */
/* ------------------------------------------------------------------------------------------------------------------------------- */
.try-now {
    width: 100vw;
    height: 450px;
    background-image: url(/images/shared/banners/curved-banner-1900-1.svg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    object-fit: scale-down;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    margin-top: 7vh;
}

.woman-image {
    max-height: 30vh;
    margin-right: 7vw;
    margin-top: 4%;
    margin-bottom: 4%;
}

.try-now-button-and-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80%;
}

.try-it-text {
    color: hsl(313.33, 17.47%, 40.39%);
    font-family: sans-serif;
    font-size: 1.75em;
    margin-top: 1.5vw;
}

.try-it-text.top {
    margin-top: 0;
}

.try-it-button {
    color: white;
    background-color: hsl(313.33, 17.47%, 40.39%);
    border-radius: 20px;
    width: 70%;
    margin-top: 10%;
    font-size: 1.75em;
    border: none;
    padding: 3%;
    cursor: pointer;
}

.qr-code {
    max-height: 20vh;
    margin-left: 6vw;
}

@media (max-width: 768px) {
    .try-now {
        margin-top: 5vh;
        height: 150px;

        background-image: url(/images/shared/banners/curved-banner-mobile.svg);
    }

    .woman-image {
        max-width: 20vw;
    }

    .try-it-text {
        font-size: 2.5vw;
    }

    .try-it-button {
        font-size: 4vw;
    }

    .qr-code {
        max-width: 20vw;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------- */

/* How it works styling */
/* ------------------------------------------------------------------------------------------------------------------------------- */
.how-it-works {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: top;
    margin-top: 7vh;
    margin-right: 50px;
    margin-left: 20px;
}

.blue-compass-div {
    margin: 0 5%;
    display: flex;
}

.blue-compass {
    height: 5vw;
    min-height: 5vh;
}

.how-it-works-text {
    display: flex;
    flex-direction: column;
    color: white;
    font-family: sans-serif;
}

.how-it-works-text h1 {
    font-weight: 100;
    font-size: 2.5em;
    margin-bottom: 5%;
}

.how-it-works-text span {
    font-size: 1.5em;
    font-weight: lighter;
    margin-bottom: 3%;
}

.how-it-works-text span:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .how-it-works {
        margin-top: 5vh;
    }

    .how-it-works-text h1 {
        font-size: 1.5em;
    }

    .how-it-works-text span {
        font-size: 1em;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------- */

/* Copilot Description Styling */
/* ------------------------------------------------------------------------------------------------------------------------------- */
.copilot-description {
    width: 100vw;
    height: 450px;
    background-image: url(/images/shared/banners/curved-banner-1900-2.svg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    object-fit: scale-down;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    margin-top: 7vh;
    margin-bottom: 7vh;
}

.description-image {
    /* max-width: 20vw;
  margin-right: 20%;
  margin-top: 15%;
  margin-bottom: 15%;
  margin-left: 1%; */

    max-height: 30vh;
    margin-left: 7vw;
}

.description-text {
    max-width: 40vw;
    display: flex;
    flex-direction: column;
    margin-top: 10vh;
    margin-bottom: 10vh;
}

.description-and-logo {
    display: flex;
    flex-direction: row;
    margin-bottom: 2vh;
}

.compass-dark-blue {
    height: 5vw;
    min-height: 5vh;
    margin-right: 5%;
    margin-top: 2%;
}

.description {
    display: flex;
    flex-direction: column;
}

.description-span {
    color: hsl(207.6, 76.32%, 26.15%);
    font-family: sans-serif;
    font-size: 2em;
}

.description-quote {
    color: hsl(207.6, 76.32%, 26.15%);
    font-family: sans-serif;
    font-size: 1.5em;
    margin-top: 1em;

    font-weight: bold;
}

.description-quote-attribution {
    color: hsl(207.6, 76.32%, 26.15%);
    font-family: sans-serif;
    font-size: 1.5em;
}

@media (max-width: 768px) {
    .copilot-description {
        margin-top: 5vh;
        margin-bottom: 5vh;
        height: 150px;
        background-image: url(/images/shared/banners/curved-banner-mobile-2.svg);
    }

    .description-image {
        max-width: 20vw;
    }

    .description-text {
        max-width: 40vw;
    }

    .description-span {
        font-size: 2.5vw;
    }

    .description-quote {
        font-size: 2.0vw;
    }

    .description-quote-attribution {
        font-size: 2.0vw
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------- */