@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/css?family=Handlee');
html,
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #474747;
    background-color: #FFFFFF;
}

* {
    font-family: 'Montserrat', sans-serif;
}

a {
    color: inherit;
    text-decoration: inherit;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px 0;
    font-size: 22px;
    line-height: normal;
    font-weight: normal;
    text-transform: uppercase;
    font-family: 'Handlee', cursive;
}

.wrapper {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.bg-gray{
    background-color: #F7F7F7;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-top: 25px;
    margin-bottom: 25px;
}

/* Topbar */

.topbar {
    height: 48px;
    background-color:#F7F7F7;
    font-size: 11px;
    box-shadow: 0 2px 0.5px -0.5px rgba(163, 158, 158, 0.12);
}

.topbar > .wrapper {
    display: flex;
    justify-content: space-between;
}

.topbar-left,
.topbar-right {
    display: inline-flex;
    height: 100%;
}

.topbar-left > li,
.topbar-right > li {
    display: flex;
    margin: 0 12px;
    justify-content: center;
    align-items: center;
}

.topbar-left > li > .fa,
.topbar-right > li > .fa {
    margin-bottom: -2px;
}

.topbar-left > li > .fa {
    margin-right: 12px;
}

@media (max-width: 768px) {
    .topbar > .wrapper {
        justify-content: center;
    }
    .topbar-right {
        display: none;
    }
}

/* Navigation */
.navigation > .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    cursor: pointer;
    box-sizing: border-box;
    width: 30%;
    min-width: 158px;
    min-height: 90px;
    padding: 24px;
}

.nav-right {
    font-size: 0;
}

.nav-right > li {
    display: inline-block;
    font-size: 16px;
    margin: 0 2px;
    cursor: pointer;
}

.nav-right > li:first-child {
    display: none;
    height: 100%;
    align-items: center;
}

.nav-right > li:not(:first-child) {
    margin-top: 32px;
}

.nav-right > li > a{
    padding: 6px;
}

.nav-right > li:last-child {
    margin-right: 12px;
}

.nav-right > li > a:hover {
    color: #B97D2D;
}

.nav-responsive {
    display: none;
    position: fixed;
    transition: width ease 0.3s;
    width: 0;
    background: rgba(0, 0, 0, 0.85);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 147699;
    box-sizing: border-box;
}

.nav-responsive li {
    text-align: center;
    padding-bottom: 10px;
    color: white;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 0;
}

.nav-responsive .nav-close {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: white;
    font-size: 32px;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.nav-active {
    width: 100%;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
}

.active {
    color: #B97D2D;
}

/* footer */

footer {
    margin-top: 75px;
    padding: 80px 0;
    text-align: center;
    background-color: #F7F7F7;
    color: #474747;
}

.footer-title {
    margin-bottom: 30px;
}

.footer-menu {
    margin-bottom: 30px;
    word-spacing: 20px;
}

.footer-menu li {
    color: #45a049;
    text-transform: uppercase;
    word-spacing: 15px;
    display: inline;
}

.footer-favicon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.footer-favicon li {
    font-size: 18px;
    display: inline;
    color: black;
    padding: 0 15px;
}

.icon-circle {
    transition: background-color ease .35s, color ease .35s;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    background: white;
    color: #777;
    border-radius: 50%;
}

.icon-circle.pdf:hover{
    background-color: #ff0000;
    color: white;
}

.icon-circle.map:hover{
    background-color: #34a853;
    color: white;
}

.icon-circle.mail:hover{
    background-color: #0072C6;
    color: white;
}


/* Breadcumb */

.breadcrumb {
    margin-bottom: 75px;
    padding: 15px 0;
    background: linear-gradient(to right, #737373, #4d6d4d);
}

.breadcrumb ul {
    padding: 0;
    list-style: none;
}

.breadcrumb ul li {
    display: inline;
    color: white;
}

.breadcrumb ul li:not(:last-child):after {
    content: "»";
    display: inline-block;
    padding-left: 10px;
    padding-right: 4px;
}

.breadcrumb .active{
    color: #ffee04;
}

/* buttons */

.large-btn{
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.3s;
    background-color: rgb(68, 155, 112);
    color: white;
    margin-top: 2px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.large-btn:hover{
    background-color: transparent;
    border: 1px solid;
}

.medium-btn{
    border-radius: 6px;
    transition: all 0.3s;
    background-color: #80c0a5;
    padding: 3px;
    color: white;
    margin-top: 2px;
    padding: 13px;
    border: 1px solid transparent;
}

.medium-btn:hover{
    border: 1px solid;
    color: black;
    background-color: transparent;
}

.small-btn{
    transition: all 0.3s;
    background-color: #80c0a5;
    padding: 5px;
    color: white;
    margin-top: 2px;
    padding: 5px;
    border: 1px solid transparent;
}

/* Mobile devices */
@media (max-width: 980px) {
    .mobile {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 769px) {
    .navigation > .wrapper {
        width: 75%;
    }
    .nav-logo {
        width: 50%;
    }
    .nav-right > li:first-child {
        display: flex;
    }
    .nav-right > li:not(:first-child) {
        display: none;
    }
    .footer-menu li {
        display: block;
        margin-bottom: 10px;
    }
}

@media (max-width: 640px) {
    .nav-logo {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        width: 70%;
    }
}

@media (max-width: 420px) {
    .nav-logo {
        width: 100%;
    }
}

@media (max-width: 363px) {
    .topbar {
        font-size: 10px;
    }
}

@media (max-width: 335px) {
    .topbar {
        font-size: 9.4px;
    }
}