/* 
COLORS

Darkest Green
#2E323F

Medium Green
#3B4050

Lightest Green
#6F737F

White
#FFFFFF

Gold
#A59678 

*/

/* 
FONTS

font-family: 'Montserrat', sans-serif;

font-family: 'Oswald', sans-serif;

*/
:root{
    font-size: clamp(8px, 2.5vw, 16px);
}
*, *::before, *::after{
    box-sizing: border-box;
}
img{
    max-width: 100%;
}
header{
    margin: 0;
    background-color: #2E323F;
    padding: 1rem 0;
}
body{
    margin: 0;
}
a{
    text-decoration: none;
}
a:hover, a:focus{
    opacity: 65%;
}
h2{
    margin: 0;
    padding: 0;
}
section{
    padding: 1rem 0;
}
.hero{
    background: #3B4050;
}
.one{
    background: #dfdfdf;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
}
.two{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.313rem;
}
.three{
    background: #3B4050;
    color: #dfdfdf;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}
.sidebar{
    text-align: center;
    background: #3B4050;
}
.white__header--large{
    color: #ffffff;
    padding: 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    text-align: center;
}
.white__header--medium{
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.875rem;
}
.gold__header--large{
    color: #A59678;
    font-family: 'Oswald', sans-serif;
    font-size: 2.25rem;
}
.gold__header--medium{
    color: #A59678;
    font-family: 'Oswald', sans-serif;
    font-size: 1.875rem;
}
.gold__header--small{
    color: #A59678;
    font-family: 'Oswald', sans-serif;
    font-size: 1.313rem;
}
.color--change{
    color: #A59678;
}
.nav__link{
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
}
.hero__title{
    font-family: 'Oswald', sans-serif;
    font-size: 5.625rem;
    color: #ffffff;
    margin: 0;
    padding: 0;
}
.hero__text{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #dfdfdf;
}
.hero__link{
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #ffffff
}
.sidebar__paragraph{
    color: #dfdfdf;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
}
.container{
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
}

.logo{
    text-align: center;
}
.nav{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.nav__list{
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav__item + .nav__item{
    margin-left: .5rem;
}
.nav__button{
    background: #A59678;
    border-radius: 1rem;
    padding: 0 1rem;
    text-align: center;
}
.hero__button{
    background: #A59678;
    border-radius: 1rem;
    padding: .5rem 1rem;
    text-align: center;
    width: 15rem;
}
.nav__list--bottom{
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link--bottom{
    color: #dfdfdf;
}

@media (min-width: 700px){
    .sidebar--flex{
        display: flex;
        justify-content: space-between;
    }
    .sidebar{
        margin: 0 1rem;
    }
}

@media (min-width: 1000px){
    .sidebar--flex{
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
    }
    .sidebar{
        margin: 0;
    }
    .sidebar + .sidebar{
        margin-top: 2em;
    }
    .hero__button{
        margin: 0;
    }
    .row{
        display: flex;
        justify-content: space-between;
    }
    .col{
        width: 100%;
    }
    .col + .col{
        margin-left: 5rem;
    }
    .nav{
        justify-content: flex-end;
    }
    .nav__list--primary{
        margin: 0 auto;
    }
}