html, body, div, span, applet, object, iframe,  
h1, h2, h3, h4, h5, h6, p, blockquote, pre,  
a, abbr, acronym, address, big, cite, code,  
del, dfn, em, img, ins, kbd, q, s, samp,  
small, strike, strong, sub, sup, tt, var,  
b, u, i, center,  
dl, dt, dd, ol, ul, li,  
fieldset, form, label, legend,  
table, caption, tbody, tfoot, thead, tr, th, td,  
article, aside, canvas, details, embed,  
figure, figcaption, footer, header, hgroup,  
menu, nav, output, ruby, section, summary,  
time, mark, audio, video {  
margin: 0;  
padding: 0;  
border: 0;
font-size: 100%;  
font: inherit;  
vertical-align: baseline;  
}

html{
    font-size: 62.5%;
}
/*---------------------------------------------------*/
body{
    background-color: #fff9ef;
}

.topContainer{
    display:flex;
    justify-content: space-around;
    align-items: center;
    height: 10vh;
    background-color: #757c57;
}
.topContainer .title p{
    font-family: 'Open Sans Condensed', sans-serif;
    letter-spacing: 1.5rem;
    line-height: 1.5rem;
    font-size: 2rem;
    color: #fff9ef;
}
.topContainer .title h1{
    font-family: 'Playfair Display', serif;
    color: #fff9ef;
    letter-spacing: .75rem;
    font-size: 3.5rem;
}
.topContainer nav{
    width: 55%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 1%;
}
.topContainer nav a{
    color:#fff9ef;
    padding: 1% .8% 1% 2.5%;
    text-decoration: none;
    font-size: 2rem;
    font-family: 'Open Sans Condensed', sans-serif;
    letter-spacing: .5rem; 
}
.topContainer nav a:hover{
    background-color: #fff9ef;
    color: #757c57;
    padding: 1% .8% 1% 2.5%;
    border-radius: 5%;
}

.headerContainer{
    border-top: 15px solid #fff9ef;
    display:flex;
    height: 50vh;
}
.headerContainer img{
    width:50%;
    object-fit: cover;
}
.headerContainer .text{
    width:50%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff9ef;
}
.headerContainer h2{
    font-size: 2.5rem;
    letter-spacing: .2rem;
    margin: 3%;
    font-family: 'Playfair Display', serif;
}
.headerContainer p {
    line-height: 3rem;
    letter-spacing: .2rem;
    font-size: 1.5rem;
    width: 80%;
    margin: 0% 0% 2%;
}
.headerContainer .buttonParent{
    display: flex;
    justify-content: center;
    border: 1px solid black;
    margin: 2% 40%;
    padding: 1%;
    width: 25%;
}
.headerContainer .buttonParent a{
    text-decoration: none;
    font-family: 'Open Sans Condensed', sans-serif;
    letter-spacing: .1rem;
    font-size: 1.3rem;
    color:black;
    padding: 5%;
}
.headerContainer .buttonParent:hover{
    background-color: #B1AD74;
    border: none;
}
.headerContainer .buttonParent a:hover{
    color: #fff9ef;
}

.bottom img{
    border-top: 15px solid #fff9ef;
    height: 50vh;
    object-fit: cover;
    width: 100%;
}

.quote {
    background-color: #fff9ef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    padding: 5% 3%;
}
.quote h2{
    font-family: 'Playfair Display', serif;
    letter-spacing: 1rem;
    margin: 1%;
}
.quote p{
    font-size: 1.5rem;
    letter-spacing: .3rem;
    line-height: 3rem;
}

.contactButton{
    display: flex;
    justify-content: center;
    border: 1px solid black;
    margin: 2% auto;
    padding: 1%;
    width: 20%;
}
.contactButton a{
    text-decoration: none;
    font-family: 'Open Sans Condensed', sans-serif;
    letter-spacing: .2rem;
    font-size: 1.7rem;
    color:black;
    padding: 5%;
}
.contactButton:hover{
    background-color: #B1AD74;
    border: none;
}
.contactButton a:hover{
    color: #fff9ef;
}

footer {
    background-color: #757c57;
    height: 9vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    letter-spacing: 0.8rem;
    color: #fff9ef;
  }
  footer .fa {
    padding: 20px;
    font-size: 2rem;
    width: 0.5%;
    text-decoration: none;
  }
  footer .fa-facebook {
    color: #fff9ef;
  }
  footer .fa-twitter {
    color: #fff9ef;
  }
  footer .fa-instagram {
    color: #fff9ef;
  }

  /*-------------------------- MEDIA QUERY 500PX ---------------------------*/
  @media (max-width: 500px){
    .topContainer{
        display:flex;
        justify-content: space-around;
        align-items: center;
        height: 7vh;
        width: 100%;
        background-color: #757c57;

    }
    .topContainer .title p{
        font-family: 'Open Sans Condensed', sans-serif;
        letter-spacing: 1rem;
        line-height: 1rem;
        font-size: 1.3rem;
        color: #fff9ef;
    }
    .topContainer .title h1{
        font-family: 'Playfair Display', serif;
        color: #fff9ef;
        letter-spacing: .6rem;
        font-size: 2rem;
    }
    .topContainer nav{
        width: 55%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 1%;
    }
    .topContainer nav a{
        text-align: center;
        color:#fff9ef;
        text-decoration: none;
        font-size: .8rem;
        font-family: 'Open Sans Condensed', sans-serif;
        letter-spacing: .5rem; 
    }
    .topContainer nav a:hover{
        background-color: #fff9ef;
        color: #757c57;
        border-radius: 5%;
    }

    .headerContainer{
        display:flex;
        flex-direction: column;
        height: 73vh;
        align-items: center;
        background-color: #fff9ef;
    }
    .headerContainer img{
        width:100%;
        height:40vh;
        object-fit: cover;
    }
    .headerContainer .text{
        width:95%;
        margin: 2% 0% 0%;
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: #fff9ef;
    }
    .headerContainer h2{
        font-size: 2.5rem;
        letter-spacing: .2rem;
        margin: 3%;
        font-family: 'Playfair Display', serif;
    }
    .headerContainer p {
        line-height: 3rem;
        letter-spacing: .3rem;
        font-size: 1.2rem;
        width: 80%;
        margin: 0% 0% 2%;
    }
    .headerContainer .buttonParent{
        display: flex;
        justify-content: center;
        border: 1px solid black;
        margin: 2% 40%;
        padding: 1%;
        width: 15%;
    }
    .headerContainer .buttonParent a{
        text-decoration: none;
        font-family: 'Open Sans Condensed', sans-serif;
        letter-spacing: .1rem;
        font-size: 1.3rem;
        color:black;
        padding: 5%;
    }
    .headerContainer .buttonParent:hover{
        background-color: #B1AD74;
        border: none;
    }
    .headerContainer .buttonParent a:hover{
        color: #fff9ef;
    }

    .bottom img{
        border-top: 15px solid #fff9ef;
        height: 35vh;
        object-fit: cover;
        width: 100%;
    }

    .quote {
        background-color: #fff9ef;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 2rem;
        padding: 5% 3%;
    }
    .quote h2{
        font-family: 'Playfair Display', serif;
        letter-spacing: 1rem;
        margin: 1%;
    }
    .quote p{
        font-size: 1.2rem;
        letter-spacing: .3rem;
        line-height: 3rem;
    }

    .contactButton{
        display: flex;
        justify-content: center;
        border: 1px solid black;
        margin: 2% auto;
        padding: 1%;
        width: 20%;
    }
    .contactButton a{
        text-decoration: none;
        font-family: 'Open Sans Condensed', sans-serif;
        letter-spacing: .1rem;
        font-size: 1.2rem;
        color:black;
        padding: 5%;
    }


    footer {
        background-color: #757c57;
        height: 8vh;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        color: #fff9ef;
    }
    footer .fa {
        padding: 20px;
        font-size: 1.5rem;
        width: 0.5%;
        text-decoration: none;
    }
    footer .fa-facebook {
        color: #fff9ef;
    }
    footer .fa-twitter {
        color: #fff9ef;
    }
    footer .fa-instagram {
        color: #fff9ef;
    }
}
 
/* Header: */
.topContainer{
    display:flex;
    justify-content: space-around;
    align-items: center;
    height: 90px;
    background-color: #757c57;
}
.topContainer .title p{
    font-family: 'Open Sans Condensed', sans-serif;
    letter-spacing: 1.33rem;
    line-height: 1.5rem;
    font-size: 2rem;
    color: #fff9ef;
}
.topContainer .title h1{
    font-family: 'Playfair Display', serif;
    color: #fff9ef;
    letter-spacing: .75rem;
    font-size: 3.5rem;
}
.topContainer nav{
    width: 55%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 1%;
}
.topContainer nav a{
    color:#fff9ef;
    padding: 1% .8% 1% 2.5%;
    text-decoration: none;
    font-size: 2rem;
    font-family: 'Open Sans Condensed', sans-serif;
    letter-spacing: .5rem; 
}
.topContainer nav a:hover{
    background-color: #fff9ef;
    color: #757c57;
    padding: 1% .8% 1% 2.5%;
    border-radius: 5%;
}

.toggle {
    display: none;
    width: 50px;
    height: 50px;
    font-size: 4rem;
}
#toggle {
    display: none;
}

footer {
    background-color: #757c57;
    height: 9vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    letter-spacing: 0.8rem;
    color: #fff9ef;
  }
  footer .fa {
    padding: 20px;
    font-size: 2rem;
    width: 0.5%;
    text-decoration: none;
  }
  footer .fa-facebook {
    color: #fff9ef;
  }
  footer .fa-twitter {
    color: #fff9ef;
  }
  footer .fa-instagram {
    color: #fff9ef;
  }

@media(max-width: 788px) {
    .team-member {
        width: 50%;
    }
    footer {
        font-size: 3vw;
        letter-spacing: 1px;
    }
}

@media(max-width: 830px) {
    .title {
        padding-left: 10px;
    }
    .toggle {
        display: block;
        order: 2;
    }
    .topContainer {
        justify-content: space-between;
    }
    .topContainer nav {
        display: none;
    }
    #toggle:checked + nav {
        display: flex;
        flex-direction: column;
        order: 1;
        background-color: #757c57;
        margin-top: 100px;
        line-height: 3rem;
        z-index: 1000;
    }
}

@media(max-width: 500px) {
    /* .team-member {
        width: 48%;
    }
    .step {
        width: 51%;
        padding: 2% 0;
    } */
    footer {
        background-color: #757c57;
        height: 9vh;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        letter-spacing: 0.5rem;
        color: #fff9ef;
    }
    footer .fa {
        padding: 20px;
        font-size: 2rem;
        width: 0.5%;
        text-decoration: none;
    }
    footer .fa-facebook {
        color: #fff9ef;
    }
    footer .fa-twitter {
        color: #fff9ef;
    }
    footer .fa-instagram {
        color: #fff9ef;
    }
}