/* FONT FACE
--------------------------------------------------------------------------*/
@font-face {
  font-family: 'Circular Book';
  font-style: normal;
  font-weight: normal;
  src: local('Circular Book'),  url('webfonts/lineto-circular-pro-book.woff') format('woff');
}
@font-face {
  font-family: 'Circular Book Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Circular Book Italic'),  url('webfonts/lineto-circular-pro-bookItalic.woff') format('woff');
}
@font-face {
  font-family: 'Circular Medium';
  font-style: normal;
  font-weight: normal;
  src: local('Circular Medium'),  url('webfonts/lineto-circular-pro-medium.woff') format('woff');
}
@font-face {
  font-family: 'Circular Medium Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Circular Medium Italic'),  url('webfonts/lineto-circular-pro-mediumItalic.woff') format('woff');
}
@font-face {
  font-family: 'Circular Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Circular Bold'),  url('webfonts/lineto-circular-pro-bold.woff') format('woff');
}

/* FONT FONTELLO
--------------------------------------------------------------------------*/
@font-face {
  font-family: 'fontello';
  src: url('webfonts/fontello.eot?13.0');
  src: url('webfonts/fontello.eot?13.0#iefix') format('embedded-opentype'),
       url('webfonts/fontello.woff2?13.0') format('woff2'),
       url('webfonts/fontello.woff?13.0') format('woff'),
       url('webfonts/fontello.ttf?13.0') format('truetype'),
       url('webfonts/fontello.svg?13.0#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-right:before { content: '\e800'; } /* '' */
.icon-left:before { content: '\e801'; } /* '' */
.icon-prev-arrow:before { content: '\e802'; } /* '' */
.icon-open-a-map:before { content: '\e806'; } /* '' */
.icon-download-icon:before { content: '\e80c'; } /* '' */
.icon-next-arrow:before { content: '\e80d'; } /* '' */
.icon-mobile-left-arrow:before { content: '\e810'; } /* '' */
.icon-mobile-right-arrow:before { content: '\e811'; } /* '' */
.icon-twitter-squared:before { content: '\f304'; } /* '' */
.icon-facebook-squared:before { content: '\f308'; } /* '' */
.icon-linkedin-squared:before { content: '\f30c'; } /* '' */


/*!  * Hamburgers  * @description Tasty CSS-animated hamburgers  * @author Jonathan Suh @jonsuh  * @site https://jonsuh.com/hamburgers  * @link https://github.com/jonsuh/hamburgers  */
.hamburger {
 display: flex;
 cursor: pointer;
 transition-property: opacity, filter;
 transition-duration: 0.15s;
 transition-timing-function: linear;
 font: inherit;
 color: inherit;
 text-transform: none;
 background-color: transparent;
 border: 0;
 margin: 0;
 overflow: visible;
 position: relative;
 z-index: 999;
}
.hamburger:hover,
.hamburger.is-active:hover,
.poweruser-navigation a:hover {
  opacity: 0.7;
}
.hamburger .hamburger-inner,
.hamburger .hamburger-inner:before,
.hamburger .hamburger-inner:after {
  background-color: #fff;
}
.hamburger-box {
  width: 37px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -5px;

}
.hamburger-inner,
.hamburger-inner:before,
.hamburger-inner:after {
  width: 37px;
  height: 4px;
  background-color: #ffff;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner:before,
.hamburger-inner:after {
  content: "";
  display: block;
}
.hamburger-inner:before {
  top: -11px;
}
.hamburger-inner:after {
  bottom: -11px;
}
/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner:before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner:after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner:before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner:after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* BODY
--------------------------------------------------------------------------*/
body {
  font-size: 16px;
  font-family: 'Circular Medium';
  color: #282828;
  background-color: #f4f4f4;
}
.image-box img {
  width: 100%;
  display: block;
}
.container {
  max-width: 1556px;
}
/* HEADER
--------------------------------------------------------------------------*/
header {
  width: 100%;
  background-color: #f4f4f4;
  border-bottom: 1px solid #d9d9d9;
  z-index: 9999;
  position: fixed;
  left: 0;
  top: 0;
}
header .row {
  align-items: flex-start;
}
header .logo {
  width: 25%;
  max-width: 310px;
  padding-top: 30px;
  padding-bottom: 26px;
}
header .logo img {
  width: 100%;
  display: block;
}
.mobile-logo {
  display: none;
}
.power-user-menu {
  color: #fff;
  width: 238px;
  font-size: 20px;
  display: flex;
  align-items: center;
  padding: 32px 0 19px 26px;
  text-transform: uppercase;
  font-family: 'Circular Bold';
  background-color: #6f625a;
  position: absolute;
  right: 0;
  top: 0;
}
.power-user-menu:after {
  width: 1000px;
  position: absolute;
  height: 100%;
  content: '';
  background-color: #6f625a;
  top: 0;
  right: -1000px;
}
.power-user-menu > div > span {
  display: block;
  margin-top: -3px;
  margin-bottom: 5px;
  margin-right: 45px;
  position: relative;
  z-index: 9999;
  text-transform: uppercase;
}
@media (max-width: 1400px) {
  header .logo {
    max-width: 250px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 960px) {
  .mobile-logo {
    display: block;
  }
  header {
    border-bottom: 0;
  }
  .desktop-logo {
    display: none;
  }
  header .logo {
    padding-bottom: 8px;
  }
  header .logo {
    width: 185px;
  }
}
@media (max-width: 768px) {
  .power-user-menu {
    padding-bottom: 22px;
  }
}
@media (max-width: 380px) {
  header .logo {
    padding-top: 7px;
  }
  .hamburger-inner {
    margin-top: -3px;
  }
  .power-user-menu {
    padding-top: 24px;
  }
}
@media (max-width: 360px) {
  header .logo {
    max-width: 185px;
    width: 50%;
  }
}


/* POWER USER NAVIGATION
--------------------------------------------------------------------------*/
.poweruser-nav {
  width: 538px;
  height: 100%;
  padding-top: 128px;
  background-color: #282828;
  transition: all 0.2s ease-in;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 99;
}
.is-menu-active .poweruser-nav {
  right: 0;
}
.poweruser-nav h3 {
  color: #fff;
  width: 270px;
  font-size: 16px;
  margin: 0  auto 30px;
  text-transform: uppercase;
  font-family: 'Circular Bold';
}
.poweruser-navigation {
  width: 330px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
}
.poweruser-navigation li {
  width: 50%;
  margin-left: 30px;
  margin-right: 30px;
  max-width: 103px;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1;
  font-family: 'Circular Bold';
  text-transform: uppercase;
}
.poweruser-navigation a {
  color: #fff;
  text-decoration: none;
}
.poweruser-navigation .image-box {
  margin-bottom: 10px;
  display: block;
}
@media (max-width: 760px) {
  .power-user-menu {
    width: 122px;
    font-size: 16px;
    position: static;
    margin-left: auto;
    padding-left: 15px;
  }
  .power-user-menu > div > span {
    margin-right: 8px;
    margin-top: -5px;
    margin-bottom: 3px;
    line-height: 1;
  }
  .power-user-menu > div > span span {
    display: block;
  }
}
@media (max-width: 640px) {
  .poweruser-nav {
    width: 100%;
  }
}
@media (max-width: 380px) {
  .power-user-menu {
    padding-top: 24px;
    padding-bottom: 21px;
  }
}
/* MAIN NAVIGATION
--------------------------------------------------------------------------*/
.main-navigation {
  padding: 105px 0 0;
}
.main-navigation li {
  font-size: 14px;
  font-family: 'Circular Bold';
  text-transform: uppercase;
}
.main-navigation .nav-link:last-child .nav-link {
  padding-right: 0;
}
.main-navigation .nav-link {
  display: flex;
  color: #6f625a;
  padding: 18px 21px;
  /* padding: 60px 21px 18px 21px; */
  text-decoration: none;
  justify-content: center;
  align-items: center;
  position: relative;
}
.main-navigation .nav-link:hover,
.gruop-link a:hover {
  color: #1b1b1c;
  text-decoration: none;
}
.main-navigation .nav-link:hover::after{
  content: '';
  display: block;
  border-bottom: 4px solid #1b1b1c;
  width: calc(100% - 1rem);
  position: absolute;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  bottom: 10px;
}
.main-navigation .nav-link:first-child:hover::after{
  margin-left: 0;
}
.main-navigation .nav-link:last-child:hover::after {
  margin-right: 0;
}

header .main-navigation {
  margin-left: auto;
}
@media (max-width: 960px) {
  .main-navigation {
    display: none;
  }
}

/* BANNER
--------------------------------------------------------------------------*/
.banner {
  color: #fff;
  background-color: #6f625a;
}
.banner .container {
  padding-top: 70px;
  padding-bottom: 40px;
  position: relative;
}
.banner h1 {
  color: #fff;
  font-size: 4.9vw;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 21px;
}
.plus {
  padding: 2px 15px;
}

.plus p {
  margin: 0;
  font-size: 12px !important;
  color: #fff;
  float: right;
}
@media (min-width: 1400px) {
  .banner h1{
    font-size: 76px;
  }
}
.banner-content p{
  padding-right: 8%;
}
.banner p {
  font-size: 18px;
  line-height: 22px;
  margin-top: 0;
  margin-bottom: 21px;
}
.carousel-wrap {
  width: 100%;
  position: relative;
}
.banner .logo-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  padding-top: 10px;
}
.banner .logo-list li {
  width: 33.3333%;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 20px;
}
.banner .logo-list li:first-child {
    padding-right: 5%;
    padding-left: 0;
}
@media (max-width: 640px) {
  .banner .logo-list li:first-child {
      padding-right: 5px;
      padding-left: 40px;
  }
}
.banner .slick-dots {
  bottom: -40px;
}
.carousel-arrow {
  padding: 0;
  display: flex;
  margin-top: -30px;
  margin-bottom: 0;
  list-style: none;
  position: absolute;
  bottom: 0;
}
.banner .slick-prev,
.banner .slick-next {
  margin: 0;
  opacity: 1;
  bottom: -49px;
  top: auto;
  z-index: 999;
}
.banner .slick-prev {
  left: 25%;
}
.banner .slick-next {
  right: 25%;
}
.banner .slick-prev:before,
.banner .slick-next:before {
  font-size: 26px;
}
.banner .slick-prev:before {
  content: '\E802';
}
.banner .slick-next:before {
  content: '\E80D';
}
.banner .banner-slide {
  position: relative;
}
.banner .banner-slide .banner-caption{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  background-color: rgba(52,34,23,0.8)
}
.banner .banner-slide .banner-caption p{
  margin: 0;
  font-size: 12px;
  color: #fff;
  float: right;
}
.banner .banner-slide .banner-caption a{
  font-size: 14px;
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 1400px) {
  .banner h1 {
    font-size: 4vw;
  }
}
@media (max-width: 1050px) {
  .banner {
    border-bottom: 1px solid #dfdfdf;
  }
  .banner .container {
    padding-top: 0;
    padding-bottom: 70px;
  }
  .banner h1 {
    font-size: 40px;
  }
  .banner .slick-dots li.slick-active button:before {
    color: #fff;
  }
  .banner-content.col-6 {
    padding-top: 40px;
    padding-bottom: 45px;
  }
  .banner .logo-list {
    margin: 0 auto;
  }
  .carousel-wrap {
    padding: 0;
  }
  .banner .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 769px) {
  .start-carousel,
  .carousel-arrow {
    display: none;
  }
  .banner .container {
    display: flex;
    flex-direction: column;
  }
  .banner .container > .col-12 {
    display: block;
  }
  .banner >.col-12 {
    order: 1;
  }
  .carousel-wrap {
    display: block;
    padding-bottom: 50px;
  }
  .banner .banner-content {
    padding-right: 15px;
  }
  .banner .banner-content-wrap {
    padding-top: 0;
    padding-bottom: 0;
    position: static;
    order: 2;
  }
  .banner .banner-content-wrap .col-6 {
    padding: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .banner h1 {
    font-size: 48px;
  }
  .banner .banner-slide .banner-caption {
    padding-left: 15px;
    padding-right: 15px;
  }
  .banner .banner-slide .banner-caption p{
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .banner h1 {
    font-size: 36px;
  }
  .banner .logo-list {
    max-width: 330px;
    flex-direction: column;
    margin: 0 auto;
  }
  .banner .logo-list li {
    width: 100%;
  }
  .banner .slick-prev {
    left: 10px;
  }
  .banner .slick-next {
    right: 10px;
  }

}
/* OUR MISSION
--------------------------------------------------------------------------*/
#our_mission {
  background-color: #f4f4f4;
  border-bottom: 1px solid #d9d9d9;
}
#our_mission .container {
  padding-top: 80px;
  padding-bottom: 80px;
}
#our_mission .container .col-6:last-child,
#our_mission .container .col-6:last-child .col-11{
  padding-left: 0;
}
#our_mission .container .col-6:first-child .col-11 {
  padding-left: 0;
}
h2 {
  font-size: 70px;
  line-height: 1;
}
#our_mission p {
  margin: 0;
  font-size: 27px;
  line-height: 38px;
}
.section-name {
  font-size: 14px;
  line-height: 38px;
  padding-left: 87px;
  margin-bottom: 57px;
  text-transform: uppercase;
  position: relative;
}
.section-name:before {
  width: 73px;
  height: 3px;
  content: '';
  background-color: #282828;
  position: absolute;
  left: 0;
  top: 18px;
}

#our_mission .container .col-6:first-child,
.introduction .col-6:first-child{
  padding-left: 98px;
}
.introduction .col-6:last-child{
  padding-left: 0;
}
.introduction h2 {
  line-height: 1.1;
}
.introduction .col-11{
  padding-left: 0;
}

@media (max-width: 960px) {
  #our_mission .container {
    padding-top: 28px;
  }
  #our_mission .container h2{
    margin-bottom: 23px;
    font-size: 36px;
  }
  #our_mission p{
    font-size: 18px;
  }
  #our_mission .container {
    padding-bottom: 23px;
  }
  .introduction .col-6:first-child {
    padding-left: 0;
  }
  #our_mission .container .col-6:first-child,
  #our_mission .container .col-6:last-child {
    padding-left: 15px;
    padding-right: 15px;
  }
  .introduction {
    padding-left: 0;
  }
  #our_mission .row {
    flex-direction: column;
  }
  #our_mission .col-6,
  #our_mission .col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  #our_mission p {
    font-size: 16px;
    line-height: 20px;
  }
}


/* MAP OVERVIEW
--------------------------------------------------------------------------*/
#map_overview {
  background-color: #f4f4f4;
}
#map_overview .container {
  padding-top: 90px;
  padding-bottom: 40px;
}
#map_overview p {
  margin: 0;
  font-size: 20px;
  font-family: 'Circular Book';
  line-height: 28px;
}
@media (max-width: 960px) {
  #map_overview .container {
    padding-top: 23px;
  }
  .introduction h2 {
    font-size: 36px;
    margin-bottom: 12px;
  }
  #map_overview .row {
    flex-direction: column;
  }
  #map_overview .col-6 {
    padding-left: 15px;
  }
  #map_overview .col-6,
  #map_overview .col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  #map_overview p {
    font-size: 16px;
    line-height: 20px;
  }
}

/* FIRST TIME USER
--------------------------------------------------------------------------*/
#first_time_user {
  border-bottom: 1px solid #d9d9d9;
}
#first_time_user .container {
  padding-bottom: 78px;
}
.tab-content p{
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 22px;
}
.tab-content p.info-text {
  font-size: 20px;
  line-height: 28px;
  margin-top: 0;
  margin-bottom: 20px;
}
.tab-content p.info-text:last-child {
  margin-bottom: 0;
}
.tab-content h3 {
  font-size: 32px;
  margin-bottom: 7px;
  font-family: 'Circular Bold';
}
.tab-content h4 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 0;
  font-family: 'Circular Medium';
}
.tab-content .col-6.image-box {
  padding-left: 88px;
  padding-right: 0;
}
.tab-content .tab-deatil {
  padding: 26px 65px 95px 77px;
  background-color: #fff;
}
.bullet-list {
  padding-left: 20px;
  padding-right: 77px;
  padding-bottom: 40px;
}
.bullet-list li {
  font-family: 'Circular Medium';
}
.gruop-link {
  width: 100%;
  display: flex;
  border-top: 1px solid #222222;
}
.tab-content .gruop-link {
  width: 79%;
  position: absolute;
  left: 75px;
  bottom: 11px;
  padding-top: 3px;
}

.gruop-link a {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-family: 'Circular Bold';
  color: #6f625a;
  text-decoration: none;
  text-transform: uppercase;
}
.gruop-link a:first-child {
  margin-right: 42px;
}
.gruop-link [class^="icon-"]:before,
.gruop-link [class*=" icon-"]:before {
  width: auto;
}
.gruop-link a i {
  font-size: 46px;
}
.gruop-link a span {
  padding-left: 8px;
  display: inline-block;
  position: relative;
}

.gruop-link a:hover span::after{
  content: '';
  display: block;
  border-bottom: 4px solid #1b1b1c;
  width: calc(100% - 8px);
  position: absolute;
  bottom: -8px;
}


.nav-tabs {
  border: none;
  padding-top: 23px;
  padding-left: 62px;
}
.nav-tabs .nav-link {
  font-size: 14px;
  color: #6f625a;
  border: none;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
.nav-tabs .nav-link.active:before {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: '';
  height: 4px;
  width: 98%;
  margin-left: -49%;
  background-color: #1b1b1c;
}
.nav-tabs .nav-link:not(.active):hover::before{
  position: absolute;
  left: 50%;
  bottom: 0;
  content: '';
  height: 4px;
  width: 98%;
  margin-left: -49%;
  background-color: #1b1b1c;
}
.nav-tabs .nav-item .nav-link  {
  padding:8px 0 5px 0;
  margin: 0 20px;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #282828;
  border: none;
  background: none;
}
#first_time_user .tab-deatil .bullet-list {
  padding-bottom: 0;
}
#first_time_user .tab-deatil .bullet-list li {
  padding-left: 10px;
  line-height: 20px;
}
@media (max-width: 1400px) {
  .nav-tabs .nav-link {
    padding: 10px;
  }
}
@media (max-width: 1320px) {
  .nav-tabs {
    padding-left: 0;
  }
  .tab-row .col-6 {
    padding: 0;
  }
}
@media (max-width: 1020px) {
  .tab-container {
    display: flex;
    flex-direction: column;
  }
  .tab-container .tab-content {
    order: 2;
  }
  .tab-container .tab-row {
    order: 1;
  }
  .nav-tabs {
    padding-left: 0;
  }
  .tab-content .col-6.image-box {
    display: none;
  }
  .tab-content .col-6.tab-deatil {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 32px;
  }
  .tab-row .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tab-content .tab-row .col-6:first-child {
    display: none;
  }
  .tab-content .gruop-link {
    width: 100%;
    position: static;
  }
}
@media (max-width: 960px) {
  #map_overview p {
    font-size: 16px;
    line-height: 20px;
  }
  .tab-content p.info-text {
    font-size: 18px;
  }
  .bullet-list {
    padding-right: 0;
  }
}
@media (max-width: 640px) {
  #first_time_user {
    border-bottom: 0;
  }
  #first_time_user .container {
    padding-bottom: 0;
  }
  .gruop-link a {
    width: 50%;
    font-size: 14px;
    text-align: center;
    flex-direction: column;
  }
  .gruop-link a:first-child {
    margin-right: 20px;
  }
  .gruop-link a span {
    display: block;
  }
  .gruop-link a i {
    font-size: 30px;
  }
  #first_time_user .nav-tabs{
    padding-top: 0;
    padding-bottom: 16px;
  }
  .nav-tabs .nav-item {
    width: 100%;
    display: inline-flex;
  }
  .nav-tabs .nav-item .nav-link {
    margin-left: 0;
  }
}
/* OPEN MAP
--------------------------------------------------------------------------*/
#open_map_wrapper{
  /*margin-bottom: 56px;*/
  border-bottom: 1px solid #d9d9d9;
}
#open_map_wrapper a {
  color: inherit;
}
#open_map_wrapper a:hover{
  color: #c7bfb9;
}
#open_map_wrapper .container {
  padding-bottom: 46px;
}
#open_map_wrapper .container .col-12{
  padding-left: 0;
  padding-right: 0;
}
#open_map_wrapper .disclaimer,
.anchor{
  margin-top: 32px;
}
#open_map_wrapper .disclaimer a,
.anchor a,
#join_us a{
  text-decoration: none;
  position: relative;
  color: #282828;
}
#open_map_wrapper .disclaimer a:hover,
.anchor a:hover{
  color: #282828;
}
#open_map_wrapper .disclaimer a::after,
.anchor a::after,
#join_us a::after{
  content: '';
  display: block;
  border-bottom: 4px solid #1b1b1c;
  width: 100%;
  position: absolute;
  bottom: -8px;
  left: 0;
}
#open_map_wrapper .disclaimer a:hover::after,
.anchor a:hover::after,
#join_us a:hover::after{
  display: none;
}
#open_map_wrapper .section-name {
  margin-bottom: 0;
  padding-top: 53px;
}
#open_map_wrapper .section-name:before{
  top: 71px;
}


.map-tiles {
  padding: 0;
  list-style: none;
  justify-content: space-between;
}
.map-tiles li {
  margin-top: 73px;
  flex: 0 0 30.333333%;
  max-width: 30.333333%;
}
.map-tiles .map-tile-heading {
  padding: 23px 29px 35px 29px;
  min-height: 130px;
  background-color: #ccaf8f;
}
.map-tiles h3 {
  font-size: 20px;
  text-transform: uppercase;
}
.map-tiles .map-tile-body {
  color: #fff;
  display: flex;
  align-items: flex-start;
  padding: 27px 30px 30px 18px;
  background-color: #373431;
}
.map-tiles img {
  width: 100%;
  display: block;
}
.map-tiles .map-tile-content {
  max-width: 230px;
  padding-right: 10px;
  padding-top: 8px;
}
.map-tiles li.blueprint-map .map-tile-heading {
  background-color: #ccaf8f;
}
.map-tiles li.blueprint-map .map-tile-body {
  background-color: #373431;
}
.map-tiles li.blueprint-map .map-tile-icon {
  background-color: #ccaf8f;
}
.map-tiles li.blueprint-agricultural .map-tile-heading {
  background-color: #efad00;
}
.map-tiles li.blueprint-agricultural .map-tile-body {
  background-color: #3a3424;
}
.map-tiles li.blueprint-agricultural .map-tile-icon {
  background-color: #efad00;
}
.map-tiles li.blueprint-cummunity .map-tile-heading {
  background-color: #fde05a;
}
.map-tiles li.blueprint-cummunity .map-tile-body {
  background-color: #3b392d;
}
.map-tiles li.blueprint-cummunity .map-tile-icon {
  background-color: #fde05a;
}
.map-tiles li.blueprint-ecological .map-tile-heading {
  background-color: #76990f;
}
.map-tiles li.blueprint-ecological .map-tile-body {
  background-color: #2f3226;
}
.map-tiles li.blueprint-ecological .map-tile-icon {
  background-color: #76990f;
}
.map-tiles li.blueprint-water .map-tile-heading {
  background-color: #8ab7c8;
}
.map-tiles li.blueprint-water .map-tile-body {
  background-color: #313536;
}
.map-tiles li.blueprint-water .map-tile-icon {
  background-color: #8ab7c8;
}
.map-tiles li.blueprint-power-user .map-tile-heading {
  background-color: #927fb6;
}
.map-tiles li.blueprint-power-user .map-tile-body {
  background-color: #323035;
}
.map-tiles li.blueprint-power-user .map-tile-icon {
  background-color: #927fb6;
}
.map-tiles p {
  margin-top: 0;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  padding-left: 16px;
}
.map-tiles span {
  display: block;
  padding-left: 15px;
  position: relative;
}
.map-tiles a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-left: 12px;
}
.map-tiles a:before {
  content: '';
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
  position: absolute;
  left: 0;
  top: 5px;
}
.map-tile-content a::after{
  content: '';
  display: block;
  border-bottom: 4px solid #fff;
  width: calc(100% - 12px);
  position: absolute;
  bottom: -8px;
  left: 12px;
}
.map-tile-content a:hover::before{
  border-left-color: #c7bfb9;
}
.map-tile-content a:hover::after{
  display: none;
}
.map-tiles .map-tile-icon {
  width: 156px;
  margin-left: auto;
}
@media (max-width: 1090px) {
  .map-tiles li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 25px;
  }
 .map-tiles {
   padding: 10px 30px 0 30px;
 }
}
@media (max-width: 765px) {
  #open_map_wrapper {
    padding-top: 0;
  }
  #open_map_wrapper .col-4,
  #open_map_wrapper .col-12 {
    padding: 0;
  }
  .map-tiles li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  /*#open_map_wrapper .disclaimer {
    display: none;
  }*/
}
.animate-row {
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
  -webkit-animation: animRow .8s ease forwards;
  animation: animRow .8s ease forwards

    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
@-webkit-keyframes animRow {
to {
-webkit-transform:translateY(0);
transform:translateY(0)
}
}
@keyframes animRow {
to {
-webkit-transform:translateY(0);
transform:translateY(0)
}
}

/* ABOUT US
--------------------------------------------------------------------------*/

#about_us_wrap .section-name {
  margin-bottom: 39px;
  padding-top: 81px;
}
#about_us_wrap .section-name:before{
  top: 99px;
}
.about-section .container {
  position: relative;
  z-index: 99;
}
.about-section {
  position: relative;
  padding: 36px 33px;
  background: url('images/about-us.png') no-repeat center top;
  background-size: cover;
}
#about_us_wrap .about-info:after {
  position: absolute;
  left: -1113px;
  top: -250px;
  height: 250px;
  width: 1300px;
  content: '';
  background-color: #282828;
}
.about-section .col-9 {
  max-width: 72%;
  flex: 0 0 72%;
}
.about-section h2 {
  margin: 0;
  color: #fff;
  font-size: 70px;
  line-height: 78px;
}
.about-section .container {
  padding-top: 25%;
  padding-bottom: 30px;
  border: 14px solid rgba(255,255,255,0.4);
}

@media (max-width: 960px) {
  .about-section:after {
    display: none;
  }
  .about-section h2 {
    font-size: 45px;
    line-height: 1;
  }
  .about-section .col-9 {
    padding: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  #about_us_wrap .about-info .image-box {
    position: static;
    margin: 0 auto 32px;
  }
}
@media (max-width: 640px) {
  .section-name {
    display: none;
  }
  .about-section {
    padding: 10px;
  }
  .about-section h2 {
    font-size: 32px;
  }
}
.about-info-wrap,
.about-info-wrap .row {
  padding: 0;
}
#about_us_wrap .about-info {
  color: #fff;
  padding-top: 170px;
  padding-bottom: 70px;
  background-color: #282828;
}
#about_us_wrap .tab-container {
  height: 100%;
  padding-bottom: 10px;
  background-color: #f0f2f2;
}
.about-info-wrap .nav-tabs {
  padding-left: 51px;
}
.about-info-wrap .nav-tabs .nav-item .nav-link {
  margin: 0 20px 0 0;
}
.about-info-wrap .nav-tabs .nav-item:first-child .nav-link {
  margin-left: 0;
}
.about-info-wrap .nav-tabs .nav-item:last-child .nav-link {
  margin-right: 0;
}
.about-info-wrap  .nav-tabs .nav-link {
  font-size: 16px;
}
#about_us_wrap .about-info .image-box {
  width: 128px;
  position: absolute;
  left: 60px;
  top: 87px;
}
#about_us_wrap .about-info .col-12 {
  max-width: 485px;
  margin: 0 auto
}
#about_us_wrap .about-info p {
  font-size: 24px;
}
.social-icons {
  display: flex;
  padding-left: 0;
  list-style: none;
}
.social-icons li {
  font-size: 42px;
  margin-right: 25px;
}
.social-icons li i {
  position: relative;
}
.social-icons li [class^="icon-"]:before,
.social-icons li [class*=" icon-"]:before {
  width: auto;
  height: auto;
  margin: 0;
  z-index: 9;
}
.social-icons li [class^="icon-"]:after,
.social-icons li [class*=" icon-"]:after {
  content: '';
  border-radius: 10px;
  background-color: #fff;
  width: 30px;
  height: 35px;
  position: absolute;
  left: 2px;
  top:  10px;
  z-index: -1;
}
.social-icons a {
  color: #6f625b;
  text-decoration: none;
}
#about_us_wrap .tab-content .tab-deatil {
  min-height: 550px;
  padding-bottom: 30px;
  background-color: #f0f2f2;
}
.about-info-wrap {
  position: relative;
}
.about-info-wrap .col-6 {
  position: relative;
  z-index: 9;
}
.about-info-wrap:before {
  width: 50%;
  height: 100%;
  content: '';
  background-color: #282828;
  position: absolute;
  left: 0;
  top: 0;
}
.about-info-wrap:after {
  width: 50%;
  height: 100%;
  content: '';
  background-color: #f0f2f2;
  position: absolute;
  right: 0;
  top: 0;
}
.about-info-wrap .nav-tabs {
  position: absolute;
  bottom: 0;
}
.about-info-wrap .tab-content .tab-deatil {
  padding-top: 42px;
  padding-left: 51px;
}
@media (max-width: 1250px) {
  #about_us_wrap .tab-content p.info-text {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .about-section .container {
    padding-top: 0;
    min-height: 334px;
  }
  .about-section h2 {
    font-size: 36px;
    line-height: 1;
  }
  .about-info-wrap .col-6 {
    padding: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  #about_us_wrap .about-info:after{
    display: none;
  }
  .about-info-wrap:before,
  .about-info-wrap:after {
    display: none;
  }
  #about_us_wrap .about-info  {
    padding: 25px 15px;
  }
  #about_us_wrap .about-info .image-box {
    position: static;
    margin: 0 auto 32px;
  }
  #about_us_wrap .nav-tabs {
    padding-left: 15px;
  }
  .about-info-wrap .nav-tabs {
    position: static;
  }
  .about-info-wrap .nav-tabs .nav-item:first-child .nav-link {
    margin-left: 17px;
  }
  .about-info-wrap .nav-tabs .nav-item:last-child .nav-link {
    margin-right: 17px;
  }
  #about_us_wrap .tab-content .tab-deatil {
    padding-left: 15px;
    padding-right: 15px;
    background-color: #f4f4f4;
    border-bottom: 1px solid #d9d9d9;
  }
  .about-info-wrap .tab-content .tab-deatil {
    padding-bottom: 22px;
  }
  .social-icons li {
    font-size: 55px;
  }
  .social-icons li [class^="icon-"]:after,
  .social-icons li [class*=" icon-"]:after {
    width: 40px;
    height: 47px;
    top: 12px;
  }

}
@media (max-width: 640px) {
  #about_us_wrap .nav-tabs .nav-item {
    width: 50%;
    display: inline-flex;
  }
  .about-info-wrap .nav-tabs .nav-item:first-child .nav-link {
    margin-left: 0;
  }
  .about-info-wrap .nav-tabs .nav-item .nav-link {
    margin-left: 0;
    margin-right: 0;
  }
  .about-info-wrap .nav-tabs .nav-link {
    font-size: 15px;
    text-transform: unset;
  }
}

/* LAND AND LAGACY
--------------------------------------------------------------------------*/
#land_and_legacy {
  border-bottom: 1px solid #d9d9d9;
}
#land_and_legacy .container {
  padding-top: 75px;
  padding-bottom: 74px;
}
#land_and_legacy .row {
  padding-left: 80px;
}
#land_and_legacy .container-fluid {
  padding-left: 0;
  padding-bottom: 33px;
}
#land_and_legacy h2 {
  line-height: 78px;
}
#land_and_legacy p {
  margin: 0;
  font-size: 20px;
}
p.highlighted {
  color: #76990f;
}
.hashtagged {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #868f57;
  margin: 0;
  height: 100%;
}
#land_and_legacy .hashtagged p{
  font-size: 34px;
}
#land_and_legacy .hashtagged p span{
  padding: 0 10px;
}
#land_and_legacy .col-7 {
  max-width: 53.5%;
  flex: 0 0 53.5%;
}
@media (max-width: 1020px) {
  #land_and_legacy .container-fluid .col-8 {
    padding: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 960px) {
  #land_and_legacy {
    border-bottom: 0;
  }
  #land_and_legacy .container {
    padding-top: 10px;
    padding-bottom: 30px;
  }
  #land_and_legacy .container-fluid .col-9,
  #land_and_legacy .col-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #land_and_legacy h2 {
    font-size: 36px;
    line-height: 40px
  }
  #land_and_legacy .row {
    flex-direction: column;
    padding-left: 0;
  }
  #land_and_legacy .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  #land_and_legacy p {
    font-size: 16px;
  }
  #land_and_legacy .hashtagged {
    padding: 106px 0;
    margin-top: 25px;
  }
  #land_and_legacy .hashtagged p {
    font-size: 34px;
  }
  .hashtagged p span {
    display: block;
    text-align: center;
  }
  .hashtagged p span:first-child {
    margin-bottom: 70px;
  }
  #land_and_legacy .col-7 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
@media (max-width: 420px) {
  #land_and_legacy .hashtagged p {
    font-size: 26px;
  }
}
/* VIDEO
--------------------------------------------------------------------------*/
#video {
  border-bottom: 1px solid #d9d9d9;
}
#video .container {
  padding-top: 47px;
  padding-bottom: 48px;
}
#video .container  .section-name {
  margin-bottom: 63px;
}
/* JOIN US
--------------------------------------------------------------------------*/
#join_us {
  border-bottom: 1px solid #d9d9d9;
}
#join_us .container {
  padding: 0 15px 75px 15px;
}
#join_us .section-name {
  margin-bottom: 73px;
  padding-top: 81px;
}
#join_us .section-name:before {
  top: 99px;
}
#join_us .col-6:first-child {
  padding-left: 85px;
}
#join_us a,
#join_us p {
  font-size: 24px;
}
@media (max-width: 965px) {
  #join_us h2 {
    font-size: 36px;
  }
  #join_us .col-6:first-child {
    padding-left: 0;
  }
  #join_us .row {
    flex-direction: column;
  }
  #join_us .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  #join_us p {
    font-size: 16px;
  }
}
@media (max-width: 965px) {
  #join_us .col-6 {
    padding-left: 0;
  }
}
/*STEERING COMMITTEE
--------------------------------------------------------------------------*/
#steering_committee {
  padding: 75px 0 50px;
}
#steering_committee .section-name {
  margin-bottom: 47px;
}
#steering_committee > .container > .col-12 {
  padding-left: 69px;
}
#steering_committee h2 {
  margin-bottom: 15px;
  line-height: 78px;
}
#steering_committee p {
  font-size: 24px;
}
.steering-committee-list-wrap {
  margin-top: 56px;
  background: url('images/steering-committee-bg.png') no-repeat center top;
  background-size: cover;
}
.steering-committee-list-wrap .col-12 {
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 40px;
  background-color: rgba(255,255,255,0.82);
}
.steering-committee-list-wrap .container{
  max-width: 1317px;
}
#steering_committee h4 {
  margin: 0;
  font-size: 13px;
  line-height: 19px;
  font-family: 'Circular Bold';
}
.njcb-list {
  padding: 0;
  list-style: none;
}
.njcb-list li {
  font-size: 13px;
  line-height: 19px;
  font-family: 'Circular Book';
}
@media (max-width: 960px) {
  #steering_committee {
    padding: 30px 0;
  }
  #steering_committee h2 {
    font-size: 36px;
  }
  #steering_committee .col-12 > .col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  #steering_committee .col-12 > .col-4,
  #steering_committee .col-12 > .col-12,
  #steering_committee > .container > .col-12 {
    padding: 0;
  }
  #steering_committee p {
    font-size: 18px;
  }
}
@media (max-width: 765px) {
  .steering-committee-list-wrap .col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 645px) {
  .steering-committee-list-wrap .col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.support-team {
  padding: 0 5%;
  flex-wrap: wrap;
  display: flex;
  list-style: none;
  max-width: 64.6%;
  margin: 0 auto;
}
.support-team li {
  width: 33%;
  margin-bottom: 15px;
  padding: 0 15px;
}
@media (max-width: 800px) {
  .support-team li {
    width: 33%;
  }
}
@media (max-width: 640px) {
  .support-team {
    max-width: 100%;
  }
  .support-team li {
    width: 50%;
    padding-left: 5px;
    padding-right: 5px;
  }
  #steering_committee h2 {
    line-height: 1.25;
  }
}

/*STEERING COMMITTEE
--------------------------------------------------------------------------*/
#contact_us .container {
  padding-top: 70px;
  padding-bottom: 70px;
}
#contact_us h2{
  padding-left: 70px;
}
#contact_us p {
  padding-left: 72px;
  font-size: 24px;
}
@media (max-width: 930px) {
  #contact_us h2 {
    font-size: 36px;
  }
  #contact_us .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  #contact_us h2,
  #contact_us p {
    padding-left: 0;
  }
}
/* FOOTER
--------------------------------------------------------------------------*/
footer {
  color: #fff;
  background: #282828 url('images/footer-bg.png') no-repeat left 25%;
}
footer .footer-logo {
  width: 100%;
  max-width: 165px;
  margin-bottom: 42px;
}
footer p {
  font-size: 18px;
}
footer .container {
  min-height: 590px;
  padding-top: 100px;
  padding-bottom: 30px;
}
footer .col-7 {
  margin-left: auto;
}
footer h5 {
  color: #fff;
  font-size: 18px;
  line-height: 38px;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: 'Circular Bold';
}
footer .footer-nav {
  padding: 0;
  list-style: none;
}
footer .footer-nav li {
  color: #ff;
  font-size: 18px;
  line-height: 28px;
}
footer .footer-nav:last-child li {
  padding-bottom: 10px;
}
footer .footer-nav a {
  color: #fff;
  text-decoration: none;
  position: relative;
}
footer .footer-nav a::after{
  content: '';
  display: block;
  border-bottom: 3px solid #fff;
  width: 100%;
  position: absolute;
}
footer .footer-nav a:hover::after{
  opacity: 0;
}
@media (max-width: 1170px) {
  footer .footer-nav li {
    font-size: 14px;
  }
}
@media (max-width: 870px) {
  footer .col-12 > .row {
    flex-direction: column;
  }
  footer .col-5,
  footer .col-7 {
    margin-left: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer .footer-nav li {
    font-size: 18px;
  }
}
@media (max-width: 870px) {
  footer .col-7 > .row {
    flex-direction: column;
  }
  footer .col-7 .row * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer h5 {
    margin-bottom: 0;
  }
}
@media (max-width: 360px) {
  footer .footer-nav li {
    font-size: 16px;
  }
}

/* DISCLAIMER
--------------------------------------------------------------------------*/
#disclaimer .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
#disclaimer h2 {
  margin-bottom: 40px;
}
#disclaimer p {
  font-family: 'Circular Book';
  margin-top: 0;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 15px;
}
#disclaimer p a {
  color: inherit;
  text-decoration: underline;
}
#disclaimer p a:hover {
  text-decoration: none;
}
@media (max-width: 960px) {
  #disclaimer h2 {
    font-size: 36px;
  }
}
@media (max-width: 960px) {
  #disclaimer p {
    font-size: 16px;
  }
}




@media (max-width: 960px) {
  .anchor{
    margin-bottom: 50px;
  }
  #open_map_wrapper .section-name,
  #about_us_wrap .section-name,
  #join_us .section-name {
    padding-top: 23px;
  }
  #open_map_wrapper .section-name:before,
  #about_us_wrap .section-name:before,
  #join_us .section-name:before {
    top: 41px;
  }
}