/*=== HEADER ===*/
#header {
    height: 50px;
}
.header-wrapper {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 120;
}
.top-bar {
    height: 50px;
    background: transparent linear-gradient(270deg, #145629 0%, #95B946 100%) 0% 0% no-repeat padding-box;
    color: #fff;
}
.top-bar > .flexbox {
    align-items: center;
    justify-content: space-between;
}
.top-bar i {
    margin-right: 8px;
}
.top-bar .flexbox > div:last-child {
    display: flex;
    height: 100%;
    align-items: center;
}
.social {
    display: inline-block;
    vertical-align: baseline;
    font-size: 30px;
}
.social a:not(:last-child) {
    margin-right: 10px;
}
.top-bar .btn {
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 60px;
    min-width: 260px;
}
/*=== MAIN NAVIGATION ===*/
.header-menu {
    height: 140px;
    padding-top: 35px;
}
.header-menu .container {
    justify-content: space-between;
}
.logo-wrapper{
    max-width: 190px;
    width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
}
.logo-wrapper .logo {
    width: 100%;
}
.logo-wrapper .logo img{
    display: block;
}
.logo-wrapper .logo img + img {
    display: none;
}
#nav-btn,
#nav-close-btn,
.logo-mobile {
    display: none;
}
.main-nav,
.main-nav nav,
.nav-menu {
    height: 100%;
}
.nav-menu {
    display: flex;
}
.nav-menu > li {
    padding: 0 40px;
}
.nav-menu > li.has-child {
    position: relative;
}
.nav-menu > li:first-child {
    padding-left: 0;
}
.nav-menu > li:last-child {
    padding-right: 0;
}
.nav-menu > li > a {
    font-size: 20px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    padding-top: 30px;
}
.nav-menu li a:hover,
.nav-menu li.active a,
.fixed .nav-menu > li > a:hover {
    color: #449334;
}
.sub-menu {
    width: 340px;
    text-align: left;
    position: absolute;
    top: 100%;
    left: -27px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    padding: 30px 30px 40px 60px;
}
li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}
.sub-menu li a{
    display: block;
    font-size: 18px;
    color: #3E3E3E;
    padding: 10px 0;
    position: relative;
}
/*=== FIXED AND INNER HEADER ===*/
.fixed .header-wrapper {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 120;
}
.fixed .header-wrapper {
    background: #fff;
    box-shadow: 2px 0px 6px rgba(0, 0, 0, 0.19);
}
.fixed .logo-wrapper {
   max-width: 295px;
   padding-top: 10px;
}
.fixed .logo-wrapper .logo img {
    display: none;
}
.fixed .logo-wrapper .logo img + img {
    display: block;
}
.fixed .header-menu{
    height:  110px;
    padding-top: 15px;
}
.fixed .nav-menu > li > a {
    color: #3E3E3E;
    padding-top: 30px;
}
.fixed .sub-menu {
    box-shadow: -1px 6px 6px rgb(0, 0, 0, 0.19);
}
/*=== TOP BANNER ===*/
.banner{
    position: relative;
    min-height: 650px;
    height: calc(100vh - 50px);
}
.banner > .container {
	max-width: none;
	padding: 0;
}
.banner .top-slider {
    height: 100%;
}
.banner .single-banner {
    height: 100%;
    background-position: top center;
    background-attachment: fixed;
    border-radius: 0;
}
.banner .single-banner:after {
    background: rgba(0, 0, 0, 0.4);
}
.banner .top-slider .container {
    height: 100%;
    padding-top: 250px;
    padding-bottom: 40px;
    z-index: 2;
    align-items: center;
}
.banner .single-banner .container:before {
    content: '';
    width: 812px;
    height: 679px;
    background: url(../images/layout/bg-leaf-banner.svg) no-repeat;
    position: absolute;
    z-index: 1;
    bottom: -20px;
    right: -55px;
}
.banner-text{
    width: 100%;
    max-width: 600px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.banner-text .large-text,
.banner-text .large-text span {
    color: #fff;
}
.banner-content{
    font-size: 18px;
    display: block;
    vertical-align: top;
    max-width: 380px;
    margin-bottom: 60px;
}
.banner-content p:last-child{
    margin-bottom: 0;
}
.banner .btn {
    min-width: 280px;
}
.banner .slick-list,
.banner .slick-track{
    height: 100%;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
}
.banner .slick-dots {
    height: auto;
    left: calc(50% - 820px);
    top: 41%;
    width: auto;
}
.banner .slick-dots li {
    display: block;
    margin: 14px 0;
}
/*=== ABOUT SECTION ===*/
.about-wrapper {
    padding: 85px 0;
    position: relative;
    background: #F5F5F5;
}
.about-wrapper .inner-box {
    max-width: 1080px;
    margin: 0 auto;
}
.about-wrapper h1 {
    margin-bottom: 40px;
}
.about-wrapper p:last-child {
    margin-bottom: 0;
}
.about-wrapper .bar-callout {
    background: #fff;
    color: #231F20;
    padding: 65px 15px 55px;
    margin-top: -120px;
    margin-bottom: 50px;
    position: relative;
    z-index: 15;
}
.about-wrapper .bar-callout h2,
.about-wrapper .bar-callout .small-title {
    color: #231F20;
}
.about-wrapper .bar-callout .small-title {
    margin-bottom: 30px;
}
.about-wrapper .bar-callout h2 {
    margin-bottom: 25px;
}
/*=== SECTION CONTENT===*/
.page-sections {
    max-width: 1660px;
    padding-top: 170px;
    padding-bottom: 110px; 
}
.info-section .section-content {
    width: 680px
}
.info-section .section-photo {
    width: 820px;
    position: relative;
    flex-shrink: 0;
}
.info-section .img-box {
    height: 640px;
}
.info-section .img-box:after {
    content: '';
    background: url(../images/layout/image-mask.png) no-repeat;
}
.info-section .inner-box {
    padding: 100px 50px 50px 75px;
}
.info-section .inner-box P:last-child {
    margin-bottom: 0;
}
.info-section .text-box {
    max-width: 540px;
}
.info-section .text-box:not(:last-child) {
    margin-bottom: 70px;
}
.info-section  + .info-section {
    margin-top: 150px;
}
/*
.page-sections:last-child .info-section:nth-child(odd), 
.info-section:nth-child(even) {
    flex-direction: row-reverse;
}
.page-sections:last-child .info-section:nth-child(even) {
    flex-direction: row;
}
*/
.page-sections:last-child {
    position: relative;
}
.page-sections:last-child:before {
    content: '';
    width: 800px;
    height: 669px;
    background: url(../images/layout/bg-leaf.svg) no-repeat;
	background-position-y: 37px;
    position: absolute;
/*     bottom: -37px; */
    bottom: 0;
    left: 28px;
}
.page-sections:last-child .img-box:after {
    background: url(../images/layout/image-mask-leaf.png) no-repeat;
}
/*=== VENDORS SECTION ===*/
.vendors-section {
   padding: 80px 0 0;
}
.vendors-section h2 {
    margin-bottom: 20px;
}
.vendors-section .align-center {
    margin-bottom: 60px;
}
.vendors-section .flexbox {
    border-top: 2px solid #707070;
    border-bottom: 2px solid #707070;
}
.vendors-menu {
    width: 415px;
    border-right: 2px solid #707070;
    padding: 70px 20px 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vendors-menu li + li {
    margin-top: 45px;
}
.vendors-menu a {
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-left: 4px solid transparent;
    padding: 3px 0 3px 15px;
}
.vendors-menu a.active {
    font-family: 'Gotham-Black';
    color: #8ABB2A;
    border-color: #8ABB2A;
}
.vendors-content {
    width: calc(100% - 415px);
    height: 1060px;
}
.vendors-content .tab-content {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow-y: auto;
    max-height: 100%;
    padding: 20px 0 20px 120px;
}
.vendors-content .tab-content::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
.vendors-content .tab-content::-webkit-scrollbar-thumb {
    background: #E6E5E5;
    border-radius: 10px;
    width: 12px;
}
.vendors-content a {
    width: calc(33.333% - 60px);
    text-align: center;
    margin-right: 60px;
    height: 340px;
    padding: 15px 30px 20px;
}
.vendors-content .vendor-logo {
    height: 245px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.vendors-content .vendor-logo img {
    max-height: 100%;
}
.vendors-content a span {
    font-family: 'Gotham-Black';
    color: #449334;
    border-bottom: 1px solid;
}
.vendors-content a:hover {
    box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
}
.vendors-content a:hover span {
    color: #145629;
}
.vendors-section + .page-sections {
    padding-top: 120px;
    padding-bottom: 110px;
}
/*=== FOOTER ===*/
.footer-wrapper{
    height: auto;
    background: #3E3E3E;
    color: #fff;
    padding: 15px 0;
}
.footer-wrapper .flexbox{
    align-items: center;
    justify-content: space-between;
}
.footer-wrapper .flexbox > div:nth-last-child(2){
    padding: 0 25px;
}
.footer-wrapper .flexbox > div:last-child {
    text-align: right;
}
.footer-wrapper span a {
    font-family: 'Gotham-Black';
    color: #8ABB2A;
}
/*=== POPUP ===*/
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 130;
    opacity: 0;
    visibility: hidden;
}
.popup.show {
    visibility: visible;
}
.popup .side-left {
    position: relative;
    left: -50%;
    background: #fff;
}
.popup .side-right {
    position: relative;
    right: -50%;
    background: #fff;
}
.popup  .side-left .img-box {
    background-position: top center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup  .side-left .img-box .vendor-logo {
    width: 100%;
    max-width: 400px;
    height: 400px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup .side-left .img-box .vendor-logo img {
    width: 100%;
    max-height: 100%;
}
.left-side-content,
.right-side-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
.right-side-content{
    padding: 200px 110px 60px 100px;
    background: #F5F5F5;
}
.right-side-content .inner-box{
    max-width: 670px;
}
.right-side-content h2 {
    margin-bottom: 35px;
}
.right-side-content .text-box {
    margin-bottom: 40px;
}
.right-side-content .text-box a {
    color: #449334;
}
.right-side-content .btn {
    min-width: 255px;
}
.close-section {
    width: 32px;
    height: 32px;
    position: fixed;
    border: 2px solid #000000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: 40px;
    right: 40px;
    z-index: 1;
}
.close-section:after,
.close-section:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 15px;
    left: 50%;
    top: 6px;
    margin-left: -1px;
    background: #000;
    transform: rotate(45deg);
}
.close-section:before {
    transform: rotate(-45deg);
}