
.spacer
{
margin : 1em;
}
.spacer-sm
{
margin : 0.5em;
}
.spacer-lg
{
margin : 1.5em;
}
.spacer-xl
{
margin : 2em;
}

.spacer-left
{
margin-left : 1em;
}
.spacer-right
{
margin-right : 1em;
}
.spacer-top
{
margin-top : 1em;
}
.spacer-bottom
{
margin-bottom : 1em;
}
.spacer-top-lg
{
margin-top : 1.5em;
}
.spacer-bottom-lg
{
margin-bottom : 1.5em;
}
.spacer-top-xl
{
margin-top : 2em;
}
.spacer-bottom-xl
{
margin-bottom : 2em;
}

.spacer-left-lg
{
margin-left : 1.5em;
}
.spacer-right-lg
{
margin-right : 1.5em;
}
.spacer-left-xl
{
margin-left : 2em;
}
.spacer-right-xl
{
margin-right : 2em;
}

.spacer-xs
{
margin : 0.5em;
}
.spacer-top-xs
{
margin-top : 0.5em;
}
.spacer-bottom-xs
{
margin-bottom : 0.5em;
}
.spacer-left-xs
{
margin-left : 0.5em;
}
.spacer-right-xs
{
margin-right : 0.5em;
}

.h-flex
{
    width : 100%;
    display : flex;
    flex-direction: row;
}
.v-flex
{
    height : 100%;
    display : flex;
    flex-direction: column;
}
.v-flex-center
{
    height : 100%;
    display : flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.h-flex-center
{
    width : 100%;
    display : flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.space-lr
{
    padding-left : 3em;
    padding-right : 3em;
}
.flex1
{
    flex-grow: 1;
}
.rtl
{
    text-align: right;
}


.footer
{
    border-top : 6px solid #b18f39;
    background-color: #f7f7f7;
    padding-top : 2rem;
    padding-bottom : 2rem;
    color : #333538;
}

.footer-title
{
    color : #b18f39;
    font-size: 1.25rem;
}

.footer-link
{
    color : #333538;
    text-decoration: none;
    display : block;
    padding-top : 0.7rem;
    padding-bottom : 0.7rem;
}

.footer2
{
     background-color: #f7f7f7;
     padding-top : 3rem;
     padding-bottom : 3rem;
     color : #232528;
     border-top : 1px solid #cbcad1;

}

.footer-branding
{
    width : 100%;
}

.footer-branding img
{
    width : 65%;
    height : auto;
    margin-left: 17.5%;
}

.footer-phone-number
{
    padding-top : 0.8rem;
    padding-bottom : 0.8rem;
    border-top : 1px solid #f5f5f5;
    text-align: center;
}


.footer-phone-number i
{
    color : #b18f39;
    margin-right : 0.5rem;
}

.footer-phone-number a
{
    color : #b18f39;
    margin-right : 0.5rem;
    text-decoration: none;
}
.footer-social-icons
{
    margin-top : 1rem;
    text-align: center;
    text-decoration: none;
    color : #232528;
    font-size: 1.5rem;
    margin-left : 2rem;
}
.center-text
{
    text-align: center;
}


.fixed-top-nav
{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    background-color: #2b2617;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding-bottom: 10px;
    transition : 0.6s ease all;
}