/* ======== Fonts ======== */

@font-face {
    src: url(../fonts/Montserrat/Montserrat-Hairline.otf);
    font-family: "Montserrat Hairline";
}

@font-face {
    src: url(../fonts/Montserrat/Montserrat-Light.otf);
    font-family: "Monserrat Light";
}

@font-face {
    src: url(../fonts/Montserrat/Montserrat-Regular.otf);
    font-family: "Montserrat Regular";
}

@font-face {
    src: url(../fonts/Montserrat/Montserrat-Bold.otf);
    font-family: "Montserrat Bold";
}

@font-face {
    src: url(../fonts/Montserrat/Montserrat-Bold.otf);
    font-family: "Montserrat Bold";
}

@font-face {
    src: url(../fonts/Poppins/Poppins-Regular.ttf);
    font-family: "Poppins Regular";
}

body {
    position: relative;
    font-size: 14px;
    font-family: 'Poppins Regular', sans-serif;
}

a {
    transition: all .2s linear;
    -o-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
}


/* ======== Header Section ======== */
.navbar-default {
	background-color: #FFFFFF;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
}

.logo-brand img {
	padding-left: 15px;
	height: auto;
}

.navbar-toggle {
	margin-top: 18px;
}
.navbar-default .navbar-nav {
	margin-top: 7px;
}
.navbar-default .navbar-nav li a {
    font-family: "Montserrat Regular";
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

.navbar-default .navbar-nav li a::before {
    position: absolute;
    top: 50%;
    content: "";
    height: 2px;
    width: 0;
    background-color: #F6F381;
    margin-top: 10px;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.navbar-default .navbar-nav li.active > a::before, 
.navbar-default .navbar-nav li:hover > a::before {
    width: 30px;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    color: #006743;
    background-color: transparent;
}
.section-title {
	margin-bottom: 60px;
	font-family: "Montserrat Bold";
	text-align: center;
	text-transform: uppercase;
}

/* ======== About Section ======== */
#about {
	padding-top: 150px;
	height: 650px;
	color: #FFFFFF;
	background-color: #006743;
	background-image: url(../img/bg.png);
	background-repeat: repeat;
	text-align: left;
}

#about h1 {
	margin-top: 75px;
	font-size: 60px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: "Montserrat Bold";
}

#about .btn-default {
	padding: 14px 35px 12px 35px;
    margin: 40px 20px 0 0;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: transparent;
    border: 2px solid #FFFFFF;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

#about .btn-default:before, 
#about .btn-default:after {
    content: '';
    position: absolute;
    width: 97%;
    height: 200%;
    background-color: #FFFFFF;
    z-index: -1;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

#about .btn-default:before {
    top: -170%;
    left: -75%;
}

#about .btn-default:after {
    top: -2%;
    right: -102%;
}

#about .btn-default:hover {
    color: #006743;
    background-color: transparent;
    border-color: #FFFFFF;
}

#about .btn-default:hover:before {
    top: -95%;
    left: -20%;
}
#about .btn-default:hover:after {
    right: -18%;
}

#about img {
	margin-top: 85px;
}

/* ======== Feature Section ======== */
#feature {
	padding: 40px 0;
}
#feature .box-feature {
	margin-bottom: 30px;
	padding: 8px;
	min-height: 260px;
	border: 1px solid #f0f0f0;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#feature .box-feature:hover {
	box-shadow: 1px 0px 14px 1px #ebebeb;
}

#feature .box-feature-inner {
	padding: 15px;
	min-height: 241px;
	border: 1px solid transparent;
	text-align: center;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#feature .box-feature:hover .box-feature-inner {
	border: 1px solid #f0f0f0;
}

#feature .box-feature:hover .box-feature-inner .fa {
	webkit-transform: scale(1.08, 1.08);
    transform: scale(1.08, 1.08);
}

#feature .box-feature:hover .box-feature-inner h4 {
	color: #006743;
}

#feature .box-feature-inner .fa {
	font-size: 40px;
	color: #006743;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#feature .box-feature-inner h4 {
	margin-top: 25px;
	margin-bottom: 15px;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#feature .box-feature-inner p {
	color: #696969;
}


#contact {
    height: 100%;
    padding: 40px 0;
    text-align: center;
    background: #eee;
}

#contact ul.contact-info {
	display: inline-block;
	padding-left: 0;
	list-style: none;
}

#contact ul.contact-info li {
	font-size: 20px;
	margin-bottom: 10px;
}

#contact ul.social-link {
	display: inline-block;
	margin-top: 30px;
	padding-left: 0;
	list-style: none;
}

#contact ul.social-link li {
	float: left;
	font-size: 30px;
	margin-bottom: 10px;
	margin-right: 30px;
}

#contact ul.social-link li:last-child {
	margin-right: 0;
}

#contact ul.social-link li a {
	cursor: pointer;
	color: #606060;
}

#contact ul.social-link li a:hover {
	color: #53AC8E;
}

#footer {
	padding: 20px 0 10px 0;
	text-align: center;
}

.scrollToTop {
    width: 30px;
    height: 30px;
    text-align: center;
    background-color: rgba(0, 103, 67, 0.4);
    color: #FFFFFF;
    position: fixed;
    bottom: 40px;
    right: 40px;
    line-height: 30px;
    border-radius: 2px;
    display: none;
    cursor: pointer;
}

.scrollToTop:hover {
    color: #FFFFFF;
    background-color: #006743;
}

.scrollToTop:hover i {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

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

@media (max-width: 360px) {
	.logo-brand img {
    	padding-left: 15px;
    	height: 60px;
    }

    #about {
    	padding-top: 100px;
    	height: 410px;
    }

    #about h1 {
    	margin-top: 0;
		font-size: 25px;
    }

    #contact ul.contact-info li {
		font-size: 18px;
	}
}
@media (min-width: 767px) {
	.navbar {
        padding: 20px 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }
    .top-nav-collapse {
        padding: 10px 0;
    }
}