
/**** default Style Reset ****/
/* @font-face {
	font-family: GeosansLight;
	src: url("fonts/Helvetica-Condensed-Light-Li.ttf");
} */
@font-face {
	font-family: GeosansLight;
	src: url("fonts/GeosansLight.ttf");
}
* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: GeosansLight;
}
p {
	font-family: GeosansLight;
}
body {
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}
a, a:hover, a:focus {
	text-decoration: none;
	outline: none;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
/* -----------------------
		font-colors
   -----------------------  */

.font-grey{
	color: #575757;
}

.font-white{
	color: #ffffff;
}

.font-black{
	color: #000000;
}

/* -----------------------
		font size & weight
  -----------------------  */

.font-light{
	font-weight: 100;
}

.font-bold{
	font-weight: 600;
}

.upper{
	text-transform: uppercase;
}

/* -----------------------
		padding classes
  -----------------------  */
.section-padding{
	padding: 100px 0px;
}
.pt-150{
	padding-top: 150px;
}
.pt-180 {
    padding-top: 180px;
}
.pt-25 {
    padding-top: 25px;
}
.pt-60 {
    padding-top: 60px;
}

/* --------------------------------
		landing section starts
   --------------------------------  */

.home-section{
	background-image: url("../images/home.jpg");
}
.about-section {
	background-image: url("../images/lh_about-us.jpg");
	height: 450px;
}
.contact-section{
	background-image: url("../images/contact_us.jpg");
	height: 410px;
}
.story-section{
	height: 450px;
}
.full-screen-height{
	height: 100vh;
}
.about-section.background-property{
	background-position:top;
}
.contact-section.background-property{
	background-position:center;
}
.background-property{
	background-position:bottom;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
}

/* --------------------------------
		landing section ends
   --------------------------------  */

/* -----------------------
		menu starts
   -----------------------  */
#menu a
{
	text-decoration: none;
  	color: #fff;
	font-weight: bold;
  	transition: color 0.3s ease;
}

#menu a:hover
{
  color: #0275d8;
}

#menuToggle
{
  	display: block;
  	position: fixed;
  	top: 50px;
  	right: 50px;
  	z-index: 1;
  	-webkit-user-select: none;
  	user-select: none;
}

#menuToggle input
{
  	display: block;
  	width: 40px;
  	height: 32px;
  	position: absolute;
  	top: -7px;
  	left: -5px;
  	cursor: pointer;
	opacity: 0; /* hide this */
  	z-index: 2; /* and place it over the hamburger */
  	-webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  	display: block;
  	width: 33px;
  	height: 4px;
  	margin-bottom: 5px;
  	position: relative;
	background: #000;
    box-shadow: 1px 1px 0 0 #fff;
  	border-radius: 3px;
  	z-index: 1;
  	transform-origin: 4px 0px;
  	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  	transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  	transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  	opacity: 1;
  	transform: rotate(45deg) translate(-2px, -1px);
  	background: #fff;
}

#menuToggle input:checked ~ span:nth-last-child(3)
{
  	opacity: 0;
  	transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  	opacity: 1;
  	transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  	position: absolute;
  	width: 300px;
  	height: 110vh;
  	margin: -100px 0 0 0;
  	text-align: center;
  	padding: 50px;
  	padding-top: 108px;
  	right: -100px;
	overflow: auto;
  	background: rgba(0,0,0,.8);
  	list-style-type: none;
  	-webkit-font-smoothing: antialiased;
  	/* to stop flickering of text in safari */

  	transform-origin: 0% 0%;
  	transform: translate(100%, 0);
  	transition: transform 1s cubic-bezier(0.77,0.2,0.05,1.0);
}

.instagram{
	height: 350px;
}
iframe {
    width: 100%;
    height: 100%;
}
.fa-map-marker{
	margin-right: 10px;
}
#menu li
{
  	padding: 4px 0;
  	font-size: 16px;
}

#menuToggle input:checked ~ ul
{
  	transform: scale(1.0, 1.0);
  	opacity: 1;
}

.menu-logo img{
	width: 80px;
	padding: 0;
}

#menu li ul {
 display: none;
}
.show-menu
{
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
 }

.hide-menu
{
    background-color:#336ca6;
    position: absolute;
    top:0;
    right:0;
    z-index: 1;
    width: 300px;
    height: 100%;
    -webkit-transform: translate3d(300px,0,0);
    -moz-transform: translate3d(300px,0,0);
    -o-transform: translate3d(300px,0,0);
    -ms-transform: translate3d(300px,0,0);
    transform: translate3d(300px,0,0);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}


/* -----------------------
		menu ends
   -----------------------  */


/* -----------------------
		about starts
  -----------------------  */

.outline-bordered-right {
   position: relative;
   /*z-index: 999;*/
}

.outline-bordered-right:after {
    content: "";
    position: absolute;
    right: 40px;
    bottom: 35px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    display: block;
    width: 100%;
    height: 100%;
    transition: all 300ms linear 0s;
    z-index: -1;
}
.outline-bordered-right img{
	width: 100%;
}
.content p{
	color: #575757;
	height: auto;
}
.read-more-btn{
	font-size: 16px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    padding: 15px 30px;
}

.btn-block{
	display: inline-block;
	position: relative;
}
.read-more-btn:after {
	display: block;
	position: absolute;
	top: 50%;
	left: 140px;
	width: 25%;
	height: 3px;
	background-color: rgba(0, 0, 0, 0.3);
	content: '';
	line-height: 0;
	font-size: 0;
}

/* -----------------------
		about ends
 -----------------------  */


.center-heading h3{
	font-style: normal;
    color: #444444;
    font-size: 24px;
    text-transform: capitalize;
}

#footer, #lancer-footer, .wed-logo {
 	width: 100%;
 	overflow: hidden;
 	position: relative;
}

#footer.style3 .footer-top {
    padding-top: 20px;
    padding-bottom: 12px;
}

.bg-dark-jungle {
    background: #222222;
}


#footer.style3 .footer-top .holder {
    max-width: inherit;
    padding: 0 2px 0 0;
}

#footer.style3 .footer-top .logo {
    margin: 0;
    float: left;
}

#footer .logo {
    float: none;
    vertical-align: top;
    display: inline-block;
}
.footer-top .logo img, .footer-top .logo {
    width: 50px !important;
}
#footer a {
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.logo a {
    display: block;
}
.center-logo img{
	width:100%;
	background-color: rgba(0,0,0,.55);
}


#footer.style3 .footer-social {
    float: right;
    margin: 2px 0 0;
}
#footer.style3 .footer-social li {
    padding: 0 0 10px 6px;
}
#footer.style3 .footer-cent {
    padding: 50px 0px;
}

.footer-social a {
    color: #fff;
    display: block;
    font-size: 18px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background: #3f3f3f;
    width: 44px;
    height: 44px;
}

#footer.style3 .footer-bottom {
    padding-top: 27px;
}
.bg-dark-jungle-bottom {
    background: #222222;
}
.bg-shark {
    background: #2a2a2a;
}

.footer-bottom {
    color: #727272;
    font-size: 12px;
    line-height: 20px;
    padding-top: 27px;
    padding-bottom: 26px;
}

.footer-bottom .footer-nav {
    max-width: 100%;
}

.footer-bottom .footer-nav li {
    padding: 0 24px 0 0;
}
.footer-bottom .copyright {
    text-align: right;
    max-width: 500px;
    text-transform: uppercase;
}
.textwidget >:last-child {
    margin-bottom: 0;
}
#footer.style3 .footer-social .fa-facebook {
    margin: 3px 0 0;
    font-size: 21px;
}

.footer-social a .fa {
    display: inline-block;
    vertical-align: middle;
}

.footer-cent h5 {
    color: #fff;
	font-size: 20px;
    margin: 0 0 15px;
    letter-spacing: 2px;
    font: 600 14px/18px, "geosanslight";
}
.menu-footer-container{
	font-style: italic;
	color: #fff;
}
.footer-bottom a {
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.map-section aside{
	padding: 100px;
	margin:auto;
	text-align: center;
}
.footer-cent p{
	color: #fff;
}

.list-inline>li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

#sb_instagram #sbi_load {
    float: left;
    clear: both;
    width: 100%;
    text-align: center;
}

.contact_form input, .contact_form textarea{
	width: 100%;
	font-size: 14px;
	border: 1px solid #fff;
	border-radius: 2px;
	margin-bottom: 20px;
	font-family: "geosanslight";
	padding:5px 10px;
}
.contact_form input::placeholder, .contact_form textarea::placeholder{
	color: #686565;
	font-weight: bold;

}
.submit-btn{
	width: 100%;
	padding: 6px 0px;
	border: 1px solid #fff;
	border-radius: 2px;
	margin-bottom: 20px;
	font-size: 14px;
	background-color: #fff;
	color: #2d2d2d;
	font-family: "geosanslight";
	font-weight: bold;
}
.submit-btn:hover{
	width: 100%;
	padding: 6px 0px;
	border: 1px solid #fff;
	border-radius: 2px;
	margin-bottom: 20px;
	font-size: 14px;
	background-color: #0275d8;
	color: #fffccf;
	font-family: "geosanslight";
}

.content-box{

}
.img-holder img{
	width: 100%;
}
.bg-brown{
	background-color: #cab38d;
}
.approach-list-block h3,
.approach-list-block p {
	color: #cab38d;
 	font-weight: bold;
}
.approach-block{
    border: 4px solid #eee;
	text-align: center;
	margin: 10px;
}
.approach-block p span a{
	color:#907b58;
}

#our-approach h1{
	position: relative;
}
#our-approach h1:after{
	content: "";
	width: 110px;
	background-color: #fff;
	height: 2px;
	position: absolute;
	left: calc(50% - 50px);
	right: 0;
	bottom: 10px;
}

.center-title{
	background-color: rgba(255,255,255,.7);
	padding:25px 0px;
    text-transform: uppercase;
}
.message p{
	color: #cab38d;
}
.mt-minus-220{
	margin-top: -220px;
}
.mt-minus-190{
	margin-top: -190px;
}
.faq-block input {
  display: none;
}


.faq-block h3 {
  margin: auto;
  font-size: 20px;
  color: #000;
  float: left;
  margin-right: 0.3em;
}


.faq-block p {
  clear: both;
}

.faq-block label > i {
  float: right;
  margin: 0.3em;
  font-size: large;
  transition: all 0.3s linear;
}

.faq-block input:checked + label > i {
  transform: rotate(-180deg);
}

.faq-block label + p {
  line-height: 0%;
  color: #000;
  transform: rotateX(90deg);
  transition: all 0.3s linear;
}

.faq-block input:checked + label + p {
  transform: rotateX(0);
  line-height: 150%;
  line-height: auto;
}
.about-img{
	width: 250px;
	margin: auto;
}
.about-img img{
	width: 100%;
}
.grid-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background: #f5f4f4;
  font-size: 13px;
  font-family: 'Arvo', monospace;
}
@supports (display: grid) {
  .grid-section {
    display: block;
  }
}


.section {
  display: none;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 4rem;
  }
}
@supports (display: grid) {
  .section {
    display: block;
  }
}

.grid {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 150px;
  grid-auto-flow: row dense;
}

.item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  background: #0c9a9a;
  color: #fff;
  grid-column-start: auto;
  grid-row-start: auto;
  color: #fff;
  background: url("../images/photo.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4);
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  cursor: pointer;
  counter-increment: item-counter;
}
.item:nth-of-type(3n) {
  background-image: url("../images/photo.jpg");
}
.item:nth-of-type(4n) {
  background-image: url("../images/photo.jpg");
}
.item:nth-of-type(5n) {
  background-image: url("../images/photo.jpg");
}
.item:nth-of-type(6n) {
  background-image: url("../images/photo.jpg");
}
.item:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.3;
  transition: opacity 0.3s ease-in-out;
}
.item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.item:hover:after {
  opacity: 0;
}
.item--medium {
  grid-row-end: span 2;
}
.item--large {
  grid-row-end: span 3;
}
.item--xtralarge {
  grid-row-end: span 3;
  width: 800px;
}
.item--full {
  grid-column-end: auto;
}
@media screen and (min-width: 768px) {
  .item--full {
    grid-column: 1/-1;
    grid-row-end: span 2;
  }
}
.item__details {
  position: relative;
  z-index: 1;
  padding: 15px;
  color: #444;
  background: #fff;
  text-transform: lowercase;
  letter-spacing: 1px;
  color: #828282;
}
.item__details:before {
  content: counter(item-counter);
  font-weight: bold;
  font-size: 1.1rem;
  padding-right: 0.5em;
  color: #444;
}



.grid-block-content {
	margin: 0 auto;
  color: #fff;
	font-weight: 400;
	font-size: 1em;
	max-width: 1000px;
}

.grid-block-content > h2 {
	clear: both;
	margin: 0;
	padding: 4em 1% 0;
	color: #484B54;
	font-weight: 800;
	font-size: 1.5em;
}

.grid-block-content > h2:first-child {
	padding-top: 0em;
}

/*
.grid-block-content {
	padding-top: 5em;
} */
.beach{
	min-width: 300px;
	max-width: 670px;
	max-height: 100%;
}


/* Common style */
.grid figure {
    position: relative;
    float: left;
    overflow: visible;
    margin: 10px 1%;
    width: 100%;
    height: auto;
    text-align: center;
    cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.grid figure h2 span {
	font-weight: 800;
}

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}




.img-holder .figure {
	position: relative;
	float: left;
	overflow: hidden;
	/*margin: 10px 1%;*/
	/*min-width: 320px;*/
	/*max-width: 480px;*/
	/*max-height: 360px;*/
	/*width: 48%;*/
	height: auto;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}
.img-holder .figure.effect-ming {
    background: #030c17;
}
.figure.effect-ming img {
    opacity: 0.9;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}
.figure.effect-ming:hover img {
    opacity: 0.5;
}
.figure.effect-ming:hover figcaption {
    background-color: rgba(58,52,42,0);
}
.figure.effect-ming figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 30px rgba(255,255,255,0.2);
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale3d(1.4,1.4,1);
    transform: scale3d(1.4,1.4,1);
}
.figure.effect-ming:hover figcaption::before,
.figure.effect-ming:hover p {
    opacity: 1;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
}
.figure.effect-ming h2 {
    margin: 15% 0 15% 0;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
	font-family: geosanslight;
	color: #e7e7e8;
}
.figure.effect-ming:hover h2 {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.figure.effect-ming p {
    padding: 1em;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
	font-family: geosanslight;
}
.figure.effect-ming:hover figcaption::before,
.figure.effect-ming:hover p {
    opacity: 1;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
}
 .figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
 .figure figcaption,
 .figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/*---------------*/
/***** Ming *****/
/*---------------*/

/*.figure.effect-ming img {*/
	/*opacity: 0.9;*/
	/*-webkit-transition: opacity 0.35s;*/
	/*transition: opacity 0.35s;*/
/*}*/

/*.figure.effect-ming figcaption::before {*/
	/*position: absolute;*/
	/*top: 30px;*/
	/*right: 30px;*/
	/*bottom: 30px;*/
	/*left: 30px;*/
	/*border: 2px solid #fff;*/
	/*box-shadow: 0 0 0 30px rgba(255,255,255,0.2);*/
	/*content: '';*/
	/*opacity: 0;*/
	/*-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;*/
	/*transition: opacity 0.35s, transform 0.35s;*/
	/*-webkit-transform: scale3d(1.4,1.4,1);*/
	/*transform: scale3d(1.4,1.4,1);*/
/*}*/

/*.figure.effect-ming h2 {*/
	/*margin: 20% 0 10px 0;*/
	/*-webkit-transition: -webkit-transform 0.35s;*/
	/*transition: transform 0.35s;*/
/*}*/

/*.figure.effect-ming p,*/
/*.figure.effect-ming h2 {*/
	/*padding: 1em;*/
	/*opacity: 0;*/
	/*-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;*/
	/*transition: opacity 0.35s, transform 0.35s;*/
	/*-webkit-transform: scale(1.5);*/
	/*transform: scale(1.5);*/
/*}*/

/*.figure.effect-ming:hover h2 {*/
	/*-webkit-transform: scale(0.9);*/
	/*transform: scale(0.9);*/
/*}*/

/*.figure.effect-ming:hover figcaption::before,*/
/*.figure.effect-ming:hover p {*/
	/*opacity: 1;*/
	/*-webkit-transform: scale3d(1,1,1);*/
	/*transform: scale3d(1,1,1);*/
/*}*/

/*.figure.effect-ming:hover figcaption {*/
	/*background-color: rgba(58,52,42,0);*/
/*}*/

/*.figure.effect-ming:hover img {*/
	/*opacity: 0.4;*/
/*}*/

/*Homepage Image CSS*/

/*.figure.effect-ming {*/
	/*background: #030c17;*/
/*}*/

/*.figure.effect-ming img {*/
	/*opacity: 0.9;*/
	/*-webkit-transition: opacity 0.35s;*/
	/*transition: opacity 0.35s;*/
/*}*/

/*.figure.effect-ming figcaption::before {*/
	/*position: relative;*/
    /*padding: 200px;*/
    /*top: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
    /*left: 0;*/
	/*border: 2px solid #fff;*/
	/*box-shadow: 0 0 0 30px rgba(255,255,255,0.2);*/
	/*content: '';*/
	/*opacity: 0;*/
	/*-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;*/
	/*transition: opacity 0.35s, transform 0.35s;*/
	/*-webkit-transform: scale3d(1.4,1.4,1);*/
	/*transform: scale3d(1.4,1.4,1);*/
/*}*/

/*.figure.effect-ming h2 {*/
	/*margin: 20% 0 10px 0;*/
	/*-webkit-transition: -webkit-transform 0.35s;*/
	/*transition: transform 0.35s;*/
	/*color: #fff;*/
/*}*/

/*.figure.effect-ming p {*/
	/*padding: 1em;*/
	/*color: #fff;*/
	/*opacity: 0;*/
	/*-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;*/
	/*transition: opacity 0.35s, transform 0.35s;*/
	/*-webkit-transform: scale(1.5);*/
	/*transform: scale(1.5);*/
/*}*/

/*.figure.effect-ming:hover h2 {*/
	/*-webkit-transform: scale(0.9);*/
	/*transform: scale(0.9);*/
/*}*/

/*.figure.effect-ming:hover figcaption::before,*/
/*.figure.effect-ming:hover p {*/
	/*opacity: 1;*/
	/*-webkit-transform: scale3d(1,1,1);*/
	/*transform: scale3d(1,1,1);*/
/*}*/

/*.figure.effect-ming:hover figcaption {*/
	/*background-color: rgba(58,52,42,0);*/
/*}*/

/*.figure.effect-ming:hover img {*/
	/*opacity: 0.4;*/
/*}*/

.mb-175{
	margin-bottom: 175px;
}
.mt-minus-215 {
    margin-top: -215px;
}
button:hover {
    background-color: darkcyan;
}
.pt-227 {
    padding-top: 227px;
}
.pl-227 {
    padding-left: 227px;
}
.pl-440 {
    padding-left: 440px;
}
.pt-200 {
    padding-top: 200px;
}
.mt-minus-211 {
    margin-top: -211px;
}
.mbt-32{
	margin-top: 2px;
	margin-bottom: 3px;
}
.mb-minus-211 {
	margin-bottom: -211px;
}
.font-geo li{
	font-family: GeosansLight;
}
