html {
    font-family: Georgia, 'Times New Roman', Times, serif;
    width: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
    margin: 0px;
    padding: 0px;
    color: var(--text);
    background-color: white;
    width: 100%;
}

a {
    color: var(--text);
}


/* Styles for the hero image display */

.hero-container {
    width: 100%;
    height: 110vh;
    position: relative;
    display: flex;
    background-color: var(--text);
    z-index: -1;
}

.hero-gradient{
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width:40%;
    height:100%;
    margin:0;
    padding:0;
    background-image: linear-gradient(to right,rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}

.hero-image {
    width: 40%;
    height: 100%;
    z-index: -1;
}

.hero-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: relative;
    max-width: 60%;
    margin-top: 8vh;
    margin-left: 3vw;
    padding-right: 1rem;
    min-width: 10px;
    overflow-y: auto;
}

.hero-text h1 {
    position: relative;
    width: 100%;
    color: white;
    font-size: 3rem;
}

.hero-text p {
    position: relative;
    width: 100%;
    font-size: 1.25rem;
    text-indent: 2rem;
    color: white;
    overflow-x: wrap;
}

.hero-container > svg {
    position: absolute;
    height: 10vh;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 2;
}

/* End hero content */

/* Begin main content */

main {
    max-width: 100vw;    
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.5em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 20vh;
    padding: 20vh 0 20vh 0;
}

main > * {
    padding: 0 10%;
    display: flex;
    height: 100vh;
    width: 100%;
}

h2 {
    width: 100%;
    color: var(--dark_primary);
    height: fit-content;
    font-size: 2.5rem;
    margin: 0;
    text-align: center;
}

h3 {
    text-align:center;
    font-size: 1rem;
    font-style: italic;
    font-weight: normal;
}


.mission {
    flex-direction: column;
    /* background: linear-gradient(to bottom, white, var(--background_clear), var(--background_clear), white); */
    /* background-color: var(--background_clear); */
    /* padding: 5%; */
    /* height: calc(100vh + 10%); */
}

.mission p {
    flex-grow: 0;
    flex-shrink: 1;
}

.mission > picture {
    flex-grow: 1;
    flex-shrink: 1;
}



.find-us {
    display: block;
    height: fit-content;
    width: 100vw;
    margin: 0 10%;
}

.find-us-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1rem;
}

.find-us > .find-us-container > .map-container {
    display: inline-block;
    flex-grow: 1;
    flex-shrink: .5;
    padding: 0 32px;
    max-height: 200px;
    max-width: 100%;
    margin-bottom: 32px;
}

.map-container > iframe {
    width: 100%;
    height: 100%;
}

.find-us-container .find-us-content {
    flex-basis: 50%;
    flex-grow: 1;
    flex-shrink: 1;
    height: fit-content;
    min-width: 200px;
    text-overflow: wrap;
    margin-top: 32px;
}

.find-us-content :first-child{
    margin-top: 0px;
}

.find-us-content {
    display: block;
    margin-bottom: 2rem;
    text-indent: 8px;
    width:100%;
    height: max-content;
}

.find-us-content:last-child {
    padding-left: 40px;
    text-indent: 0;
}

.icon {
    width: 32px;
    height: 32px;
    margin: auto 0;
    float: left;
}

.rainbow-font {
    background: linear-gradient(45deg, red, orange, gold, green, blue, indigo, violet);
    background-clip: text;
    color: transparent;
    font-weight: bold;
}



.values {
    display: block;
    position: relative;
    height: fit-content;
    background-color: var(--text);
    color: white;
    height: 120vh;
    padding: 10vh 10%;
    margin: 0 0;   
}

.values > svg {
    width: 100%;
    height: 5vh;
    position: absolute;
    top: -4.9vh;
    left: 0;
}

.values h2 {
    color: white;
}

.values .full-width-flex {
    display: flex;
    width: 100%;
    flex-wrap:wrap;
    flex-direction: row;
}

.flex-row {
    display: flex;
    width: 100%;
    flex-wrap:wrap;
    flex-direction: row;
    height: auto;
    min-height: fit-content;
    height: 50%;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}

.image-container {
    width: 25%;
    height: 50%;
    justify-content: center;
}

.image-container > svg {
    width: 90%;
    height: 90%;
}

.text-container {
    width: 50%;
    height: 100%;
    padding: 1em;
    align-content: center;
}

/* End main content  */
