@font-face {
    font-family:lato-bold;
    src: url(../fonts/lato-bold.ttf);
}
@font-face {
    font-family:lato-light;
    src: url(../fonts/lato-light.ttf);
}
* {
  outline: none !important;
}
body {
	outline: none;
	overflow-x: hidden ;
	font-family: arial;
	transition: all 0.3s ease-in-out 0s;
	padding:0 15px;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
img{
	max-width:100%;
}

.header {
	background:#fff;
	float:left;
	width:100%;
}

.site-logo img{
	padding:5px 0px;
}
.side-logo img{
	padding-top:1px;
}
.nav {
    float: left;
    width: 100%;
	
}
.navbar-fixed-top {
	background:#fff;
	padding-bottom: 0px;
}
.active{
	background:#f7f7f7;
}
.nav ul {
    display: inline-block;
    float: right;
}
.nav li {
    float: left;	
}
.open {
  position: absolute;
  top: 12px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: block;
  cursor: pointer;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  z-index:999;
}
.open:hover {
  opacity: 0.9;
}
.open span {
  display: block;
  float: left;
  clear: both;
  height: 4px;
  width: 32px;
  border-radius: 40px;
  background-color:#027c91;
  position: absolute;
  right: 3px;
  top: 3px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.open span:nth-child(1) {
  margin-top: 10px;
  z-index: 9;
}
.open span:nth-child(2) {
  margin-top: 21px;
}
.open span:nth-child(3) {
  margin-top: 31px;
}

.sub-menu {
  -webkit-transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 0;
  width: 0;
  right: 0;
  top: 0;
  position: absolute;
  background-color: rgba(2, 124, 145, 0.9);
  border-radius: 50%;
  z-index: 18;
  overflow: hidden;
}
.sub-menu li {
  display: block;
  float: right;
  clear: both;
  height: auto;
  margin-right: -160px;
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.sub-menu li:first-child {
  margin-top: 180px;
}
.sub-menu li:nth-child(1) {
  -webkit-transition-delay: 0.05s;
}
.sub-menu li:nth-child(2) {
  -webkit-transition-delay: 0.10s;
}
.sub-menu li:nth-child(3) {
  -webkit-transition-delay: 0.15s;
}
.sub-menu li:nth-child(4) {
  -webkit-transition-delay: 0.20s;
}
.sub-menu li:nth-child(5) {
  -webkit-transition-delay: 0.25s;
}
.sub-menu li a {
  color:#fff;
  font-family:lato-light;
  font-size: 16px;
  width: 100%;
  display: block;
  float: left;
  line-height: 35px;
  transition: all 0.3s ease-in-out 0s;
}
.sub-menu li a:hover {
	padding-right:10px;
}

.oppenned .sub-menu {
  opacity: 1;
  height: 410px;
  width: 400px;
}
.oppenned span:nth-child(2) {
  overflow: visible;
}
.oppenned span:nth-child(1), .oppenned span:nth-child(3) {
  z-index: 100;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
		  background:#fff;
}
.oppenned span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(5px) translateX(5px);
          transform: rotate(45deg) translateY(5px) translateX(5px);
		  background:#fff;
}
.oppenned span:nth-child(2) {
  height: 410px;
  width: 400px;
  right: -160px;
  top: -160px;
  border-radius: 50%;
  background-color: rgba(2, 124, 145, 0.40);
}
.oppenned span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(-10px) translateX(11px);
          transform: rotate(-45deg) translateY(-10px) translateX(11px);
		  background:#fff;
}
.oppenned li {
  margin-right: 168px;
  text-transform: uppercase;
}

.header-wrapper .button {
  display: block;
  float: left;
  clear: both;
  padding: 20px 40px;
  background: #fff;
  border-radius: 3px;
  border: 2px solid #10a1ea;
  overflow: hidden;
  position: relative;
}
.header-wrapper .button:after {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  content: "";
  position: absolute;
  height: 200px;
  width: 400px;
  -webkit-transform: rotate(45deg) translateX(-540px) translateY(-100px);
          transform: rotate(45deg) translateX(-540px) translateY(-100px);
  background: #10a1ea;
  z-index: 1;
}
.header-wrapper .button:before {
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  z-index: 2;
  text-align: center;
  padding: 20px 40px;
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
}
.header-wrapper .button:hover {
  text-decoration: none;
}
.header-wrapper .button:hover:after {
  -webkit-transform: translateX(-300px) translateY(-100px);
          transform: translateX(-300px) translateY(-100px);
}
.header-wrapper .button:hover:before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header-wrapper .navbar-toggle{
	background:#027c91;
	margin-top: 15px;
}	
.header-wrapper .icon-bar{
	background:#fff;
}
.nav li a {
    color: #027c91;
    transition:all 0.1s;
    text-transform: uppercase;
	padding: 25px 20px;
	display: inline-block;
	font-family:lato-light;
	letter-spacing:2px;
}
.nav li a:hover {
    background:#000;
	color:#fff;
	
}
.slider-position{
	position:relative;
}
.slider{
	float:left;
	width:100%;
}
.banner {   
    max-width: 100%;
    position: absolute;
	text-align:center;
	float:left;
	width:100%;
	display:block;
	margin-top:300px;
}

.abt-banner{
	background: rgba(0, 0, 0, 0) url("../images/abt-bg.jpg") repeat scroll 0 0 / cover ;
    float: left;
    width: 100%;
	height:500px;
}
.banner h1 {
    color: #ffffff;
    font-size: 70px;
	padding-bottom:20px;
	font-family:lato-light;
}
.banner h1 b{
	font-family:lato-bold;
}
.banner a {
    background:#027c91;
    color: #fff;
	border:2px solid #027c91;
    font-size: 14px;
    padding: 15px 40px;
    text-transform: uppercase;
	font-weight:bold;
	letter-spacing:2px;
	transition: all 0.3s ease-in-out 0s;
	font-family:lato-light;
}
.banner a:hover {
    background:#fff;
    color: #027c91;
	border:2px solid #027c91;
}
.lex-abt{
	padding:70px 0;
	float:left;
	width:100%;
	text-align:center;
	font-family:lato-light;
}
.lex-abt p{
	color:#1f303c;
	font-size:16px;
	line-height:1.9;
}
.our-work{
	float:left;
	width:100%;
	padding:50px 0;
	text-align:center;
}
.gal{
	padding:0;
	display:block;
}
.hvr-effect{
	position:relative;
	z-index:initial;
	   -webkit-filter: brightness(.6);
   filter: brightness(.6);
	transition: transform .6s cubic-bezier(.165, .84, .44, 1);
}
.hvr-effect:hover{
	-webkit-transform: scale(1.10);
	transform: scale(1.10);
	   -webkit-filter: brightness(1);
   filter: brightness(1);
   z-index:999;
}
.gal img{
	padding-bottom:5px;
}
.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
   -webkit-filter: brightness(1);
   filter: brightness(1);
   transition: all 0.3s ease-in-out 0s;
}
.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
   -webkit-filter: brightness(.6);
   filter: brightness(.6);
}

.gal i{
	display:block;
	color: #fff;
    left: 50%;
    position: absolute;
    z-index: 999;
    text-align: center;
    top: 50%;
}
.insta{
	float:left;
	width:100%;
	padding:50px 0;
}
.testi{
	text-align:center;
	padding:10px 0;
	
}
.testi h2{
	text-align:center;
	color:#027c91;
	font-size:40px;
	text-transform:uppercase;
	font-family:lato-bold;
}

.testi p{
	text-align:center;
	color:#333;
	font-size:16px;
	font-family:lato-light;
}

.testimonial{
	
}
.our-work h2{
	text-align:center;
	color:#027c91;
	font-size:40px;
	text-transform:uppercase;
	font-family:lato-bold;
}
.nf-abt {
 background:#F7F7F7;
 padding:50px 0;
}
.nf-abt h2{
 color:#d74004;
 font-size:36px;
	font-family:lato-bold;
}
.nf-abt p{
 color:#666;
 line-height:1.8;
 font-size:16px;
 font-family:lato-light;
}
.nf-work{
 padding:50px 0;
 text-align:center;
}
.nf-work h2{
 color:#084262;
 font-size:36px;
 text-align:center;
 border-bottom:#d74004 1px solid;
 text-transform:uppercase;
 letter-spacing:1px;
 padding-bottom:10px;
 margin-bottom:30px;
 font-family:lato-bold;
}

.nf-footer{
 background:#084262;
 float:left;
 width:100%;
 padding:50px 0 10px 0;
 text-align:center;
}
.nf-banner img{
 width:100%;
}
.nf-gal{
 padding:5px;
 
}

.nf-gal img{
 width:100%;
}

.nf-gal h3 {
    background: rgba(0,0,0,0.7);
    margin: 0;
    position: absolute;
    width: 97.6%;
    border: ;
    bottom: 4px;
    padding: 12px 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
	transition: all 0.3s ease-in-out 0s;
	font-family:lato-light;
}
.nf-gal:hover h3 {
    padding: 134px 0;
}
.our-work p{
	text-align:center;
	color:#333;
	font-size:16px;
	padding-bottom:30px;
	font-family:lato-light;
}
.bx-wrapper .bx-prev {
    left: 10px;
    background: url(../images/Prev.png);
}
.bx-wrapper .bx-next {
    right: 10px;
    background: url(../images/Next.png);
}

.bx-wrapper .bx-prev:hover {
    background-position: initial;
}

.bx-wrapper .bx-next:hover {
    background-position: initial;
}

.footer{
	background:#027c91;
	float:left;
	width:100%;
	padding:15px 0 0 0;
	text-align:center;
}
.footer h4{
	color:#fff;
	font-size:14px;
	letter-spacing:2px;	
	padding:0px;
	
	font-family:lato-bold;
}
.footer-bar {
	border-top:#53a6b4 1px solid;
	padding:10px 0;
}
.footer-bar p{
	float:left;
	color:#fff;
	font-family:lato-light;
}
.footer-bar .social{
	float:right;
	
}
.footer-bar a{
	color:#fff;
}

.social i{
	color:#fff;
	font-size:20px;
	padding:5px;
	
}
.bx-viewport{
	left:0 !important;
}
.lex-slide{
	float:left;
	width:100%;
}
.lex-slide h6{
    background: #027c91;
    width: 100%;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    padding: 10px 0;
    font-weight: bold;
    letter-spacing: 2px;
	text-align:center;
	margin:0;
	font-family:lato-light;
}
.testimonial {  
    background: #f7f7f7;
    padding: 34px 32px;
    border-radius: 25px;
}

.testimonial i {
    text-align:left;
	color:#697177;
	float:left;
	line-height:1.5;
}

.testimonial b{
   text-align:right;
   color:#027c91;
   float:right
}
.inner-banner img{
 width:100%;
}
.buttons{
 float:right;
 margin-top:30px;
}
.invest .buttons a {
    border: #027c91 2px solid;
    padding: 4px 25px;
    color: #027c91;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.search-bar {
	float: right;
    margin: 30px 0;
}
.search-bar .form-control {
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
	border-bottom: 2px solid #057e92;
	font-family:lato-light;
}
.invest .btn-group {
	float:right;
	margin:30px 0;
}
.invest .btn-group .btn-custom1 {
	font-size:18px;
	border-radius:0px;
	color:#027c91;
	border:2px solid #027c91;
	background:transparent;
	transition: all 0.3s ease-in-out 0s;
	  font-family:lato-light;
}
.invest .btn-group .btn-custom1:hover {
	color:#fff;
	border:2px solid #027c91;
	background:#027c91;
}
.cont-data h3 {
	font-family:lato-bold;
	text-transform:uppercase;
}
.cont-data h5 {
	font-family:lato-light;
}
.invest .btn-group .btn-custom2 {
	font-size:18px;
	border-radius:0px;
	color:#fff;
	border:2px solid #027c91;
	background:#027c91;
	transition: all 0.3s ease-in-out 0s;
	font-family:lato-light;
}
.invest .btn-group .btn-custom2:hover {
	color:#027c91;
	border:2px solid #027c91;
	background:transparent;
}
.search-bar form ::placeholder{
	text-transform:uppercase;
	color:rgba(2, 124, 145, 0.8);
}
.invest button{
  border: #027c91 2px solid;
  background:#027c91;
    padding: 4px 25px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.invest-hdng{
 float:left;
 color:#027c91;
 font-weight:bold;
 margin:30px 0;
 letter-spacing:2px;
 font-size:36px;
   font-family:lato-bold;
}
.invest-data{
 width:100%;
 float:left;
 background:#F7F7F7;
 padding:10px 0 30px 0;
 border-top:#027c91 3px solid;
 margin-bottom:30px;
}
.news{
 width:100%;
 float:left;
 background:#F7F7F7;
 padding:0px 0 30px 0;
 
 margin-bottom:30px;
}
.invest-data h3 {
    color: #1f303c;
    text-transform: uppercase;
    font-size: 24px;
	 padding:20px 30px;
	 font-family:lato-light;
}

.invest-data p{
 color: #62737F;
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 1.8;
 padding:0 30px;
 font-family:lato-light;
}
.news p{
 color: #62737F;
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 1.8;
 padding:10px 30px;
 font-family:lato-light;
}

.invest-data h6 {
    color: #fff;
    background: #027c91;
    padding: 35px 20px;
    font-size: 17px;
    line-height: 1.9;
    margin: 25px 0;
    display: inline-block;
	font-family:lato-light;
}
.news h4 {
    color: #fff;
    background: #027c91;
    padding: 15px 20px;
    font-size: 30px;
    display: inline-block;
 width:100%;
 margin-bottom:20px;
 font-family:lato-light;
}
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.invest .active, .accordion:hover {
    background-color: #88898d;
	border:2px solid #88898d;
}

.accordion:after {
    content: '\002B';
    color:#fff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.invest .active:after {
    content: "\2212";
}
.invest button {
	font-size:30px;
	font-family:lato-bold;
}	
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.invest iframe{
 width:100%;
}
.cont-page-fm {
 padding:25px 0;
}
.cont-page-fm input {
    width: 100%;
    height: 40px;
    border: #b8b8b9 1px solid;
 margin:30px 0;
 padding:5px;
}
.cont-page-fm textarea {
    width: 100%;
    height: 100px;
    border: #b8b8b9 1px solid;
 padding:5px;
 margin-bottom:30px;
}
.cont-page-fm a {
    background:#027c91;
 padding:10px 30px;
 text-transform:uppercase;
 font-size:15px;
 font-weight:bold;
 letter-spacing:1px;
 color:#fff;
 margin:20px auto;
 display:table;
font-family:lato-light;
border:2px solid #027c91;
	transition: all 0.3s ease-in-out 0s;
}
.cont-page-fm a:hover {
    background:transparent;
	color:#027c91;
	border:2px solid #027c91;
}

.contact-hdng {
    text-align: center;
    text-transform: uppercase;
    color: #027c91;
    margin: 40px 0;
    font-size: 42px;
    letter-spacing: 2px;
	font-family:lato-bold;
}

.cont-data{
 width:100%;
 float:left;
 background:url(../images/cont-info-bg.jpg) no-repeat;
 padding:50px 0;
 border-top:#027c91 3px solid;
 background-size:cover;
 text-align:center;
}
.cont-data h5{
 line-height:1.8;
}
.project{
 width:100%;
 float:left;
 background:url(../images/product-bg-pattren.jpg) no-repeat;
 padding:50px 0;
 border-top:#027c91 3px solid;
 background-size:cover;
 text-align:center;
}

.pro-hdng {
    color: #fff;
    background: #027c91;
    padding: 15px 20px;
    font-size: 30px;
    display: inline-block;
	 width:100%;
	 margin-bottom:20px;
	 text-transform:uppercase;
	 letter-spacing:2px;
   font-family:lato-light;
}
.nf-footer h4 {
	color:#fff;
	font-size:14px;
}
.invest .modal-title {
	text-align:center;
	margin-left:60px;
	color:#fff;
	font-size: 28px;
	text-transform: uppercase;
	font-family:lato-light;
}
.invest .modal-body {
	text-align:center;
	padding: 35px;
}
.invest .modal-body .form-control {
	border:0;
	border-radius: 0;
	height:35px;
}
.invest .modal {
	background:rgba(0,0,0,0.8);
}
.invest .modal-content {
	background:transparent;
	box-shadow: none;
	border:1px solid rgba(255,255,255,0.6);
}
.invest .modal-header .close {
    background: none;
    border: none;
    color: #fff;
}
 .invest .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
}
.invest .modal-header {
	border-bottom:1px solid rgba(255,255,255,0.6);
}
.invest .btn-custom3{
	border-radius:none;
	font-size:20px;
	border:2px solid #027c91;
	transition: all 0.3s ease-in-out 0s;
	font-family:lato-light;
}
.invest .btn-custom3:hover{
	color:#fff;
	border:2px solid #027c91;
	background:transparent;
}
.invest .modal-body h6 {
	color:#fff;
	transition: all 0.3s ease-in-out 0s;
	font-family:lato-light;
}
.invest .modal-body h6:hover {
	color:#027c91;
}
.footer h3 {
	color:#fff;
	margin:0;
}
.nf-footer h3 {
	color:#fff;
	margin:0;
}
.invest .gali {
	padding:3px;
	display:block;
	height:230px;
	overflow:hidden;
}
.mrgn {
	margin-top:3px;
}
.sites-logo{
	padding:10px 0px;
}
.sites-logo a{
	color:#027c91;
	font-family:lato-bold;
	font-size:28px;
}
.banner h3{
	color: #fff;
    margin: 0 0 25px 0;
	font-family:lato-light;
}
@media only screen and (min-width: 0px) and (max-width: 575px){
.banner {
	margin-top:0px;
}
.navbar-fixed-top {
	padding-bottom: 5px;
}
.slider-position {
    top: 65px;
}
.banner h1 {
    font-size: 20px;
	padding-bottom:0px;
	padding-top: 20px;
}	
.banner a {
    font-size: 12px;
    padding: 5px 10px;
}
.nav li a {
    padding:5px 15px;
}
.nav li {
    float: none;
}
.lex-abt p {
    font-size: 16px;
    line-height: 1.5;
}
.our-work h2 {
    font-size: 28px;
}
.testi h2 {
    font-size: 28px;
}
.footer-bar .social {
    float: none;
}
.inner-banner img {
	padding-top:70px;
}
.contact-hdng {
    margin: 40px 0 5px;
    font-size: 28px;
}
.pro-hdng {
    font-size: 22px;
}
.project {
    padding: 15px 0;
}
.project img {
    margin: 15px 0;
}
.invest-hdng {
    float: none;
    margin: 30px 0 0;
    font-size: 28px;
    text-align: center;
}
.invest .btn-group {
    float: none;
    margin: 20px 0;
}
.invest-data p {
    font-size: 16px;
	line-height: 1.5;
}
.invest-data h6 {
    font-size: 16px;
	 line-height: 1.5;
}
.invest button {
    font-size: 28px;
}
.news p {
    font-size: 16px;
    line-height: 1.5;
}
.cont-page-fm input {
    margin: 10px 0;
}
.nf-abt h2 {
    font-size: 27px;
}
.nf-abt p {
    line-height: 1.5;
    font-size: 16px;
}
.nf-work h2 {
    font-size: 28px;
}
.nf-work {
    padding: 20px 0;
}
.nf-gal:hover h3 {
    padding:12px 0;
}
.nf-gal h3 {
    font-size: 11px;
}	
.invest .modal-title {
    margin-left: 55px;
    font-size: 15px;
}
.invest .modal-body .form-control {
    padding: 0px 10px;
	width: 250px;
}
.invest .btn-custom3 {
    font-size: 18px;
}
.insta iframe {
	float:left;
	width:100%;
}
.banner h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
}
}

@media only screen and (min-width: 576px) and (max-width: 767px){
.banner {
	margin-top: 60px;
}
.navbar-fixed-top {
	padding-bottom: 5px;
}
.slider-position {
    top: 65px;
}
.banner h1 {
    font-size: 28px;
	padding-bottom:5px;
	padding-top: 20px;
}	
.banner a {
    font-size: 14px;
    padding: 5px 10px;
}
.nav li a {
    padding:5px 15px;
}
.nav li {
    float: none;
}
.lex-abt p {
    font-size: 16px;
    line-height: 1.5;
}
.our-work h2 {
    font-size: 28px;
}
.testi h2 {
    font-size: 28px;
}
.footer-bar .social {
    float: none;
}
.inner-banner img {
	padding-top:68px;
}
.contact-hdng {
    margin: 40px 0;
    font-size: 28px;
}
.pro-hdng {
    font-size: 22px;
}
.project {
    padding: 15px 0;
}
.project img {
    margin: 15px 0;
}
.invest-hdng {
    float: left;
    margin: 30px 0;
    font-size: 28px;
    text-align: center;
}
.invest .btn-group {
	float: right;
	margin: 30px 0;
}
.invest-data p {
    font-size: 16px;
	line-height: 1.5;
}
.invest-data h6 {
    font-size: 16px;
	 line-height: 1.5;
}
.invest button {
    font-size: 28px;
}
.news p {
    font-size: 16px;
    line-height: 1.5;
}
.cont-page-fm input {
    margin: 10px 0;
}
.nf-abt h2 {
    font-size: 27px;
}
.nf-abt p {
    line-height: 1.5;
    font-size: 16px;
}
.nf-work h2 {
    font-size: 28px;
}
.nf-work {
    padding: 20px 0;
}
.nf-gal:hover h3 {
    padding:12px 0;
}
.nf-gal h3 {
    font-size: 11px;
}
.invest .modal-title {
    margin-left: 55px;
    font-size: 15px;
}
.invest .modal-body .form-control {
    padding: 0px 10px;
	width: 250px;
}
.invest .btn-custom3 {
    font-size: 18px;
}
.invest .gali {
	height:initial;
	overflow:initial;
}
.banner h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
}	
}


@media only screen and (min-width: 768px) and (max-width: 991px){
.nav li a {
    padding: 25px 11px;
    letter-spacing: 0px;
    font-size: 14px;
}
.banner h1 {
    font-size: 32px;
    padding-bottom: 0px;
    padding-top: 0px;
    margin: 5px 0;
}
.banner h3 {
    margin: 0 0 12px 0;
}	
.banner a {
    font-size: 14px;
    padding: 5px 10px;
}
.banner {
    margin-top: 100px;
}
.inner-banner img {
    padding-top: 70px;
}
.pro-hdng {
    font-size: 24px;
}
.project img {
    margin: 20px 0;
}
.invest-hdng {
    font-size: 32px;
}
.news h4 {
    font-size: 28px;
}
.news p {
    font-size: 16px;
    line-height: 1.5;
}
.invest button {
    font-size: 28px;
}
.contact-hdng {
    font-size: 32px;
}
.nf-gal:hover h3 {
    padding:12px 0;
}
.site-logo img {
    padding: 10px 0px;
}
}

@media only screen and (min-width:992px){
.nav li a {
    padding: 25px 15px;
    letter-spacing: 2px;
    font-size: 14px;
}
.banner h1 {
    font-size: 32px;
	padding-bottom:0px;
	padding-top:0px;
}	
.banner a {
    font-size: 14px;
    padding: 5px 10px;
}
.banner {
    margin-top: 150px;
}
.nf-gal:hover h3 {
    padding: 108px 0;
}
.nf-gal h3 {
    font-size:16px;
}
.project img {
    margin: 0;
}
.banner h3 {
    margin: 0px 0 12px 0;
}
}


@media only screen and (min-width:1280px){
.banner {
    margin-top: 225px;
}	
}

	
@media only screen and (min-width:1366px){
.nav li a {
    padding: 25px 20px;
    letter-spacing: 2px;
}
.banner h1 {
    font-size: 70px;
    padding-bottom: 0px;
}
.banner a {
    font-size: 14px;
    padding: 15px 40px;
}
.banner {
    margin-top: 200px;
}
.banner h3 {
    margin: 0px 0 25px 0;
}
.nf-gal:hover h3 {
    padding: 134px 0;
}
.nf-gal h3 {
    font-size:18px;
}
.project img {
    margin:0px;
}
}


@media only screen and (min-width:1680px){
.banner {
    margin-top: 300px;
}
}