
/* ==========================================================================
   General
/* ========================================================================== */

html, body {
	height: 100%;
}

a {
	color: #555;
	text-decoration: none;
    transition: .4s;
}

a:hover {
	color: #37514a;
    text-decoration: none;
}

p {
	margin: 0 0 20px;
}

h1 {
    margin-bottom: 40px;
}

/* ==========================================================================
   Layout
/* ========================================================================== */

body {
	margin: 0;
	color: #555;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
}

#fixed-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0 50px;
    text-align: left;
    z-index: 999;
    background: #fff;
}

#fixed-header.scrolled {
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

#fixed-header.scrolled #logo {
    height: 40px;
    margin: 10px 0;
}

#logo {
    max-width: 100%;
	height: 80px;
	margin: 20px 0;
    transition: .5s ease;
}

#social {
	margin-left: 20px;
	font-size: 18px;
	padding-top: 4px;
}

/* ==========================================================================
   Nav
/* ========================================================================== */

#nav {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

#nav li {
    display: inline-block;
    margin-top: 3px;
}

#nav li a {
    display: block;
    padding: 8px 20px 5px 20px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: .4s ease;
}

#nav li a:hover {
    background: rgba(55,81,74,0.2);
}

#fixed-header.scrolled #nav li a {
    font-size: 13px;
}

#nav-icon {
    display: none;
    font-size: 26px;
    float: right;
    padding-top: 10px;
    cursor: pointer;
}



/* ==========================================================================
   Main
/* ========================================================================== */


.bg-green {
    background: #37514a;
}

.section {
    position: relative;
    background-size: cover;
    background-position: center;
}

.section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../img/grid.png");
}

.panel-inner {
    width: 100%;
    padding-top: 60px;
}

#fp-nav {
    padding-top: 60px;
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
    background: #ccc;
}


#main .panel-inner {
    padding-top: 120px;
}

#main {
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
}

#main h1 {
    margin: 0 0 20px;
}

#main p {
    font-size: 14px;
}

a.btn-more {
    display: inline-block;
    background: #37514a;
    padding: 12px 30px 10px 30px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    text-shadow: none;
    text-decoration: none;
}

a.btn-more:hover {
    background: rgba(55,81,74,0.8);
}

.arr-down {
    position: absolute;
    z-index: 100;
    left: 50%;
    bottom: 20px;
    margin-left: -15px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.6);;
    color: #555;
    text-align: center;
    line-height: 36px;
    text-shadow: none;
    border-radius: 50%;
    cursor: pointer;
}


#about-us {
    background: url("../img/about.jpg") center/cover;
}

#services {
    background: url("../img/services.jpg") center/cover;
}


.photo-holder {
    border: 5px solid #ccc;
}

.photo {
    cursor: pointer;
    padding-top: 80%;
    background-size: cover;
    background-position: center;
}

.photo img {
    display: none;
}

#contact {
    background: url("../img/contact.jpg") center/cover;
}

#contact a {
    color: #fff;
}

#contact a:hover {
    color: rgba(255,255,255,0.6);
}

.social i {
	font-size: 20px;
}

/* ==========================================================================
   Footer
/* ========================================================================== */

#footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 15px 0;
    text-align: center;
    color: #aaa;
    font-size: 10px;
}

#footer a {
    color: #aaa;
}

#footer a:hover {
    color: #888;
}

/* ==========================================================================
   Responsive
/* ========================================================================== */

@media (max-width: 992px) {
    #logo { height: 60px; }
    #nav li a { font-size: 12px; padding: 8px 10px 5px; }
}

@media (max-width: 840px) {
	#social { display: none; }
}

@media (max-width: 767px) {
    #nav-container { width: 100%; }
    #nav-icon { display: inline-block; }
    #nav { display: none; position: absolute; width: 100%; padding: 10px 0; right: 0; top: 100%; background: #fff; z-index: 999; border-top: 1px solid #ccc; }
    #nav li { display: block; }
    #nav li a { padding: 5px 20px; text-align: left; line-height: 20px; }
}

@media (max-width: 567px) {
    #fixed-header { padding: 0 30px 0 0; }
    #logo { height: auto; }
	#main h1 { font-size: 30px; }
    #footer span { display: block; }
    span#footer-sep { display: none; }
}