body {
    background-color: black;
    color: white;
    font-family: 'open sans';
    font-weight: 200;
}

.content {
    display: grid;
    height: 100vh;
    grid-template-rows: auto 1fr auto;
}

h1 {
    font-size: 2rem;
}

h3 {
    font-size: 1.3rem;
}

p {
    font-size: 1rem;
}

a {
    color: white;
}

ul {
    list-style: none;
}

nav ul {
    list-style: none;
}

a {
    text-decoration: none;
}

nav {
    width: 100%;
    display: flex;
    flex-direction: column;
}

nav ul {
    display: flex;
    justify-content: space-around;
    padding: 0;
}

nav ul li {
    padding: 0 1em;
    align-content: center;
}

.fcbLogo {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.directionsLogo {
    display: flex;
    justify-content: space-around;
}

.main {
    text-align: center;
    margin-bottom: 7em;
}

.introText {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.textGradient {
    background: linear-gradient(to right, purple,  #09B0EC);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradientBtn {
    /* width: 1em */
    position: relative;
    display: inline-block;
    padding: 0.8em 1.5em;
    text-decoration: none;
    color: inherit;
    min-width: 100px;
    text-align: center;
}

.gradientBtn::before,
.gradientBtn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 25px; /* Adjust the border radius as needed */
}

.gradientBtn::before {
    /* background: linear-gradient(to right, #ff5f6d, #ffc371); */
    background: linear-gradient(to right, purple,  #09B0EC);

}

.gradientBtn::after {
    background: black;
    margin: 2px; /* Adjust the margin to match the border width */
}

.map {
    width: 100%;
    height: 60vh;
}

.hidden {
    display: none;
}

button {
    width: 100%;
    height: 3em; 
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
    color: white;
    background-color: black;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

form label {
    margin-bottom: .5rem;
}

form input, form textarea  {
    margin-bottom: 1rem;
    padding: .6rem;
    border-radius: 20px;
    border-style: none;
}

form textarea {
    resize: vertical;
    height: 50px
}

.terms {
    font-size: 14px;
}

.contactUs h3 {
    margin-bottom: 0;
}

.contactUs p {
    margin-top: 0;
}

footer {
    width: 100%;
    /* position: absolute; */
    bottom: 0;
}

.footer {
    padding-top: .2rem;
    display: flex;
    width: 100%;
    justify-content: space-around;
}

.footer p {
    font-size: 10px;
}

.desktopDirections {
    display: none;
}

.directionsAddress {
    text-align: center;
}



@media (min-width: 800px) {
    body {
        width: 100%;
        margin: 0 auto;
        height: 100vh;
    }

    body::before {
        display: inline-block;
        content: '';
        height: 100vh;
        width: 100vw;
        position:sticky;
        background: linear-gradient(30deg, rgba(170,22,215,1) 5%, black 20%) no-repeat;
        z-index: -2;
    }

    body.cookiePage:before {
        display: none;
    }

    .content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        min-height: 100vh;
        width: 80%;
        max-width: 1400px;
        margin: 0 auto;
    }

    nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .fcbLogo {
         width: 30%;
         margin-left: 0;
    }

    .quotes {
        width: 70%;
        display: flex;
        justify-content: space-between;
        margin: auto;
        text-align: center;

    }

    .main {
        margin-bottom: 0;
    }
    
    .map {
        width: 80vw;
        height: 60vh;
    }

    .gridContainer {
        display: grid;
        grid-template-columns: repeat(20, 1fr);
    }

    .grid1 {
        grid-column: 4 / 8;
    }

    .grid2{
        grid-column: 12 / 18;
        margin-left: auto;
    }

    .desktopDirections {
        display: inline;
        position: relative;
        bottom: -50%;
    }

    .mobileDirections {
        display: none;
    }

    .directionsAddress {
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: space-around;
        width: 60%;
    }
}


