@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap');


body {
    font-family: 'Open Sans', sans-serif;
    background: #7FAE38;
    font-size: 16px;
    font-weight: 300;
}

p {
    margin: 15px 0;
}


.wrapper {
    background: #DED575;
}

.section-padding {
    padding: 60px 0;
}
img {
    max-width: 100%;
}
.main-area ul li {
    margin-bottom: 4px;
}

/* Preloader Style */
.spinner{
    width: 50px;
    height: 50px;
    
    border: 2px solid #fff;
    border-top:3px solid #7FAE38;
    border-left:3px solid #7FAE38;
    border-radius: 100%;
    
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right: 0;
    margin: auto;
    
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from{
        transform: rotate(0deg);
    }to{
        transform: rotate(360deg);
    }
}

#overlay{
    height:100%;
    width:100%;
    background:#fff;
    position:fixed;
    left:0;
    top:0;
    z-index:99999;
}

header {
    margin-top: 60px;
}
nav {
    position: absolute;
    width: 100%;
    left: -10px;
}
nav, nav ul {
    margin: 0;
    padding: 0;
}
nav ul {
    list-style: none;
}
nav ul li {
    background: url(../images/menu-bg.png) no-repeat;
    line-height: 48px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 22px;
    display: inline-block;
    margin-top: 22px;
    text-indent: 30px;
    font-weight: normal;
}
nav ul li a span {
    font-weight: bold;
    color: #7FAE38;
    text-shadow: 0px 0px 3px #523e3e;
}

nav ul li a:hover, nav ul li a:active, nav ul li a:visited, nav ul li a:focus {
    text-decoration: none;
    color: #000;    
}
footer {
    padding: 20px 10px;
}
footer p {
    margin: 0;
    font-weight: normal;
}
footer a {
    color: #000;
    text-decoration: none;
    font-weight: normal;
}
.headcon {
    box-shadow: 6px 6px 8px rgba(0,0,0,0.5);
    border-style: solid;
    border-width: 9px;
    margin-top: 50px;
    border-color: #8AB740;
}

.sec-title {
    background: url(../images/title-bg.png) no-repeat;
    height: 85px;
    position: absolute;
    width: 100%;
    left: -17px;
}

.sec-title h2 {
    margin-top: 35px;
    text-indent: 30px;
}
.title-guard {
    display: block;
    height: 90px;
}
.contact-area {
    margin-top: 50px;
}
.contact-block h3 {
    font-weight: bold;
    color: #7FAE38;
}
.top-50 {
    margin-top: 24%;
}
/*      Tablet Layout: 768px  */

@media only screen and (min-width: 768px) and (max-width: 995px) {

}


/*      Mobile Layout: 320px       */

@media only screen and (max-width: 479px) {
nav {
    position: inherit;
    width: 100%;
    left: 0;
}
nav ul li {
    line-height: 28px;
    background-size: contain;
}
nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
    text-indent: 13px;
    font-weight: normal;
}
footer .col-sm-4 {
    text-align: center !important;
    margin-bottom: 15px;
}
.top-50 {
    margin-top: 5%;
}
}


/*      Wide Mobile Layout: 480px   */

@media only screen and (min-width: 480px) and (max-width: 767px) {
nav {
    position: inherit;
    width: 100%;
    left: 0;
}
nav ul li {
    line-height: 35px;
    background-size: contain;
}
.top-50 {
    margin-top: 5%;
}
nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    display: inline-block;
    margin-top: 16px;
    text-indent: 20px;
    font-weight: normal;
}
footer .col-sm-4 {
    text-align: center !important;
    margin-bottom: 15px;
}
}