 @import url(fontawesome.css);
@import url("<link href="https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900" rel="stylesheet">");
body {
    font-family: 'Montserrat', sans-serif;
}

a {
    color: #00a435;
    text-decoration: none;
}

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

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

p {
    font-size: 13px;
}


/* Buttons */

.main-button {
    padding: 20px 20px;
    font-size: 14px;
}

.main-button a {
    border-radius: 10px;
    padding: 5px 0;
    background:#00a435;
    color:#fff;
    text-decoration: none;
    position:relative;
}

.main-button a span
{
    position:relative;
    z-index:999;
    padding: 5px 30px;
    width:100%;
}
.main-button a span:hover
{
    color:#00a435;
    background: #fff;
    border-radius: 10px;
}

a.menu-link { display: none; }

@media screen and (max-width: 1100px) {
    a.menu-link {
        float: right;
        display: block;
        font-size: 36px;
        color: #fff;
        padding-right: 30px;
        padding-top: 15px;
    }
    nav[role="navigation"] {
        clear: both;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }
    .js nav[role="navigation"] {
        overflow: hidden;
        max-height: 0;
    }
    nav[role="navigation"].active {
        max-height: 20em;
        height: 20em;
        overflow-y: scroll;
    }
    nav[role="navigation"] ul {
        top: 0;
        width: 100%;
        position: relative;
        margin: 0;
        padding: 0;
        border-top: 1px solid rgba(250,250,250,0.25);
        background-color: rgba(22,34,57,0.99);
    }
    nav[role="navigation"] li a {
        display: block;
        padding: 15px 0px;
        border-bottom: 1px solid rgba(250,250,250,0.25);
        text-align: center;
        color: #fff;
        font-size: 13px;
        text-transform: uppercase;
        font-weight: 700;
        line-height: 1.5;
    }
    nav[role="navigation"] li:hover a,
    nav[role="navigation"] li.active a {
        color: #fff;
    }
}

@media screen and (min-width: 1101px) {
    .js nav[role="navigation"] {
        max-height: none;
    }

    nav[role="navigation"] li {
        display: inline-block;
        margin: 0 0.25em;
    }
    nav[role="navigation"] li a {
        border: 0;
    }
}

/* Header */

@media screen and (max-width: 1050px) {
    .main-header .logo {
        padding-left: 30px!important;
    }

    .main-menu {
        padding-right: 30px!important;
    }

    .main-menu li {
        margin-left: 5px!important;
    }
}

.main-header {
    background-color: rgba(195,231,178,0.95);
    height: 80px;
    position: fixed;
    z-index: 12;
    width: 100%;
    top: 0;
}

.main-header .logo {
    float: left;
    padding-left: 60px;
    padding-top: 10px;
    height: 50px;
}

.main-header .logo img {
    height: 65px;
    transition: all 0.35s ease 0s; 
    -webkit-transition: all 0.35s ease 0s;
    -moz-transition: all 0.35s ease 0s;
    -o-transition: all 0.35s ease 0s;
}

.main-menu {
    float: right;
    padding-right: 60px;
}

.main-menu li {
    display: inline-block;
    line-height: 79px;
    margin-left: 15px;
    position: relative;
}

.main-menu li:first-child {
    margin-left: 0px;
}

.main-menu li a {
    padding: 10px 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: #000;
    border: 2px solid transparent;
    transition: all 0.5s;
}

.main-menu li.has-submenu a:after {
    content: '\f107';
    font-family: "FontAwesome";
    margin-left: 5px;
}

.main-menu li.has-submenu ul li a:after {
    display: none;
}

.main-menu li .sub-menu {
    position: absolute;
    width: 220px;
    background-color: #129033;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.main-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.main-menu li .sub-menu li {
    display: block;
    line-height: 20px;
    margin-left: 0px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #915514;
}

.main-menu li .sub-menu li:first-child {
    padding-top: 15px;
}

.main-menu li .sub-menu li:last-child {
    margin-bottom: 0px;
    border-bottom: none;
}

.main-menu li .sub-menu li a {
    font-size: 12px;
    font-weight: 500;
    padding: 0px 5px;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.5s;
}

.main-menu li .sub-menu li a:hover {
    background-color: #fff;   
    color: #129033;
    border: none;
}

.main-nav li:hover a,
.main-nav li.active a {
    background-color: #129033;   
    color: #fff;
}

@media (max-width: 1100px) {
    .main-nav li:hover a,
    .main-nav li.active a {
        border: 2px solid transparent;
        border-bottom: 1px solid rgba(250,250,250,0.25);
    }
}

@media screen and (max-width: 1100px) {
    .main-menu { 
        padding-right: 0!important;
    }
    .main-header .logo {
        line-height: 73px;
    }
    .main-menu li {
        display: block;
        line-height: 1;
        margin-left: 0 !important;
    }

    .main-menu li .sub-menu {
        opacity: 1;
        visibility: visible;
        position: static;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    .main-menu li .sub-menu li:last-child {
        border-bottom: 1px solid rgba(250,250,250,0.25);
    }
}


/* Home */

.main-banner {
    position: relative;
    max-height: 100%;
    overflow: hidden;
    margin-bottom: -7px;
}

#bg-photo {
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    /*object-fit: cover;*/
    z-index: -1;
}

#bg-photo::-webkit-media-controls {
    display: none !important;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 7px;
    width: 100%;
}

.main-banner .caption {
    position: absolute;
    width: 45%;
    left: 30%;
    top: 30%;
    transform: translate(-50%,-50%);
}

.main-banner .caption h6 {
    margin-top: 0px;
    font-size: 30px;
    font-weight: 600;
    color: #00a435;
	font-family: "Oswald";
	background: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1180px) {
    .main-banner .caption h6 {
        font-weight: 500;
    }
}

/* About Us */
section.about-us {
    background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(195, 231, 178, 1));
    position:relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
}

section.about-us .main-button {
    text-align: end;
}

section.about-us .right-content {
    color: #333;
}

section.about-us .right-content h1 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.5px;
	color:#00a435;
}

section.about-us .right-content #underline {
    width:90px;
    margin-left: 40px;
    border-bottom: 2px solid #00a435;
}

section.about-us .right-content h4 {
    margin-top: 20px;
    font-size: 15px;
    color: #000;
}

.photo-item {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0px auto 0;
}

@media screen and (max-width: 767px) {
    section.about-us .right-content {
        margin-bottom: 45px;
    }
}

.photo-item figure {
    position: relative;
    width: 100%;
    font-size: 0;
}

.photo-item figure img {
    width: 100%;
}

.baba {
    margin: auto auto 0;
}

.gitna {
    margin: auto auto;
}

section.about-us2 {
    padding: 100px 0px;
}

section.about-us2 h1 {
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-left:20px;
	color:#00a435;
	font-family: "Sofia";
	font-style: italic;
}

section.about-us2 p:first-letter{
    text-transform: capitalize;
    font-size: 40px;
	font-family: "Sofia";
	font-style: italic;
	line-height: 1;
}

section.about-us3 {
    padding: 100px 0px;
	text-align:center;
}

section.about-us3 h1 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
	color:#00a435;
	margin-top: 20px;
}

section.about-us3 .img1 {
    width:100%;
    margin-bottom: 10px;
    margin-top: 20px;
}

section.about-us3 .col-md-12 .img1 {
    width:50%;
}

section.about-us3 .img2 {
    width:250px;
    margin-bottom: 10px;
    margin-top: 20px;
}

@media screen and (max-width: 1050px) {
    section.about-us3 .img2 {
        width:200px;
    }
}

section.about-us3 .center {
    margin-left: 25%;
    margin-right: 25%;
}

section.about-us3 p1 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

section.about-us3 p2 {
    font-size: 14px;
    font-weight: 700;
    color:#00a435;
    margin-bottom: 10px;
}

section.about-us3 p3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

section.about-us3 p4 {
    font-size: 16px;
    font-weight: 700;
    display: list-item;
    text-align:left;
}

section.about-us3 p3 span {
    font-weight: 800;
}

section.about-us3 #line1 {
    width:80%;
    margin: 20px 10%;
    border-bottom: 4px solid #00a435;
}

section.about-us3 #line2 {
    width:40%;
    margin: 20px 30%;
    border-bottom: 4px solid #00a435;
}

section.about-us4 {
    padding: 100px 0px;
}

section.about-us4 h1 {
    margin-top:50px;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-align:center;
	color:#00a435;
}

section.about-us4 h1 span {
	color:#000;
}

section.about-us4 .bg-logo {
    padding: 70px 50px;
    background-color: #f1f1f1;
    background-image: url(../img/logo_white.png);
    background-repeat: no-repeat;
    background-size: 450px 450px;
    background-position: center;
    color: #333;
}

section.about-us4 .bg-green {
    padding: 70px 50px;
    background-color: #00a435;
    color: #fff;
}

section.about-us4 p{
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
	color:#fff;
}

section.about-us4 p2{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
	color:#fff;
}

section.about-us4 .baba {
    margin-top:80px;
}

section.about-us4 p3{
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
	color:#333;
	text-align:center;
}

section.about-us4 p4{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
	color:#333;
}

section.about-us4 h2{
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
	color:#fff;
	text-align:center;
}

section.about-us4 p5{
    font-size: 20px;
    display:block;
    font-weight: 600;
    margin-left:20px;
	color:#fff;
    display: list-item;
}

section.about-us4 p6{
    font-size: 20px;
    display:block;
    font-weight: 600;
    margin-left:20px;
    display: list-item;
	color:#333;
}

section.about-us4 .bg-brown {
    padding: 70px 50px;
    background:linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/lab7.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

section.about-us4 .spacing1{
    margin-bottom:50px;
}

/* Products & Services */
section.products {
    padding: 50px 0px;
    background-image: url(../img/logo_white.png);
    background-repeat: no-repeat;
    background-size: 500px 500px;
    background-position: center;
}

section.products h1 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.5px;
	color:#00a435;
}

section.products #underline {
    width:160px;
    margin-left: 125px;
    border-bottom: 2px solid #00a435;
}

section.products .row {
    color: #333;
}

.product-wrapper {
    background: #c3e7b2;
    -webkit-box-shadow: -5px 0 2px #888888;
    -moz-box-shadow: -5px 0 2px #888888;
    box-shadow: -5px 0 2px #888888;
    margin: 25px 0;
}
.product-wrapper .product-title {
    font-weight: 800;
    margin: 0;
    padding: 1.3em 1em;
    font-family: "Oswald";
    font-size: 20px;
}
.product-wrapper .product .content-box {
    padding: 15px 15px;
    font-size: 12px;
}
.product-wrapper .product .content-box ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.product-wrapper .product .content-box ul li {
    border-bottom: 1px solid #ededed;
    color: #2b2f34;
    line-height: 1em;
    padding: 10px 0;
    font-weight: 600;
}

.product-wrapper .product .main-button {
    padding: 10px 10px 25px;
    text-align: end;
    -webkit-box-shadow: 0 5px 2px #888888;
    -moz-box-shadow: 0 5px 2px #888888;
    box-shadow: 0 5px 2px #888888;
}

section.loan {
    padding: 100px 0px;
    background-image: url(../img/smmmpc_building.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
}

section.loan h1 {
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 0.5px;
	color:#efe3b8;
    padding-right:20px;
}

section.loan h2 {
    font-size: 22px;
    margin-left:20px;
    font-weight: 300;
    padding-right:20px;
	color:#fff;
}

section.loan .caption {
    width: 70%;
    background: #00a435;
    -webkit-box-shadow: -10px 10px 2px #fff;
    -moz-box-shadow: -10px 10px 2px #fff;
    box-shadow: -10px 10px 2px #fff;
    padding: 20px 50px;
}

section.loan .col-md-10 {
    margin: auto;
    background:#fff;
    margin-top:20px;
}

section.loan .borders {
    border-style: solid;
    border-color: #fff;
    border-width: 5px;
}

section.loan .collapsible {
    background-color: #efe3b8;
    color: #00a435;
    cursor: pointer;
    padding: 10px 50px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 20px;
    font-weight: 700;
    margin:2px;
}

section.loan .active, section.loan .collapsible:hover {
    background-color: #cfbc7a;
}

section.loan .collapsible:after {
    content: '\002B';
    color: #00a435;
    font-weight: 800;
    float: left;
    margin-right: 10px;
}

section.loan .active:after {
    content: "\2212";
}

section.loan .content {
    padding: 0 50px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
    background-image: url(../img/logo_white.png);
    background-repeat: no-repeat;
    background-size: 450px 450px;
    background-position: center;
    color: #333;
}

section.loan .content h3 {
    margin-top: 20px;
    font-size: 18px;
    color: #008037;
    font-weight: 600;
}

section.loan .content p2{
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
}

section.loan .content p3{
    font-size: 18px;
    display:block;
    font-weight: 500;
    margin-left:10px;
}

section.loan .content p4{
    font-size: 18px;
    display:block;
    font-weight: 500;
    margin-left:40px;
    display: list-item;
}

section.loan .content p3 span{
    font-weight: 600;
}

section.loan .spacing1{
    margin-bottom:10px;
}

section.loan .spacing2{
    margin-bottom:50px;
}

section.loan .col-md-9 {
    background-color: #f1f1f1;
    margin: auto;
    margin-top:20px;
    color: #333;
}

section.loan .col-md-9 h3 {
    margin-top: 24px;
    font-size: 20px;
    color: #008037;
    font-weight: 800;
    text-align:center;
}

section.loan table, th, td {
    border: 2px solid black;
    border-collapse: collapse;
}

section.loan table{
    margin-top:20px;
    width:100%;
    margin-bottom:50px;
}

section.loan th, section.loan td {
    font-size: 18px;
    font-weight: 700;
    padding:10px;
}

section.loan td {
    color:#000;
    text-align:center;
}

section.loan .table-head {
    text-align:center;
}

section.loan .savings {
    background-image: url(../img/icon-hands.png);
    background-repeat: no-repeat;
    background-size: 100px 100px;
    background-position: bottom 10px right 30px;
}

section.loan .time {
    background-image: url(../img/icon-time.png);
    background-repeat: no-repeat;
    background-size: 100px 100px;
    background-position: bottom 10px right 30px;
}

section.loan .time img {
    width: 90%;
    height: auto;
}

section.loan .special {
    background-image: url(../img/icon-special.png);
    background-repeat: no-repeat;
    background-size: 100px 100px;
    background-position: bottom 10px right 30px;
}

section.loan .kid {
    background-image: url(../img/icon-kid.png);
    background-repeat: no-repeat;
    background-size: 100px 100px;
    background-position: bottom 10px right 30px;
}

section.loan .share {
    background-image: none;
}

section.other {
    padding: 100px 0px;
	text-align:center;
}

section.other h1 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.5px;
	color:#00a435;
}

section.other h2 {
    font-size: 20px;
    letter-spacing: 0.5px;
	background:#00a435;
	margin-top:40px;
    font-weight: 500;
	color:#fff;
	text-align:left;
	margin-left:-10vw;
	margin-right:-10vw;
	padding-left:11%;
	padding-top:20px;
	padding-bottom:20px;
}

section.other h3 {
    font-size: 25px;
    letter-spacing: 0.5px;
    font-weight: 600;
	color:#00a435;
	margin-left:5%;
	padding-top:20px;
	padding-bottom:20px;
	text-align:left;
}

section.other h4 {
    font-size: 28px;
    letter-spacing: 0.5px;
	background:#00a435;
	color:#fff;
    font-weight: 700;
	margin-left:-10vw;
	margin-right:-10vw;
	padding-top:50px;
	padding-bottom:200px;
	margin-bottom:-180px;
	text-decoration: underline;
	text-underline-offset: 10px;
	text-decoration-thickness: 5px;
}

section.other h5 {
    font-size: 28px;
    letter-spacing: 0.5px;
	color:#00a435;
    font-weight: 700;
	margin-top:50px;
	margin-bottom:20px;
	text-decoration: underline;
	text-underline-offset: 10px;
	text-decoration-thickness: 5px;
}

section.other .bg {
	background:#00a435;
	margin-left:-10vw;
	margin-right:-10vw;
	padding-left:10vw;
	padding-right:10vw;
}

section.other .bg2 {
	background:#00a435;
	margin-left:-10vw;
	margin-right:-10vw;
	padding-left:10vw;
	padding-right:10vw;
	background: linear-gradient(0, #00a435 50%, #fff 50%);
}

section.other .bg3 {
	margin-left:-10vw;
	margin-right:-10vw;
	padding-left:10vw;
	padding-right:10vw;
}

section.other p1{
    font-size: 20px;
    font-weight: 600;
    margin-left: 40px;
    display: list-item;
    text-align:left;
}

section.other p2{
    font-size: 20px;
    font-weight: 600;
    margin-left: 40px;
    display: list-item;
    text-align:left;
    padding-bottom:20px;
}

section.other p3{
    font-size: 20px;
    font-weight: 600;
    margin-left: 40px;
    display: list-item;
	background:#00a435;
    text-align:left;
	margin-right:-30vw;
	color:#fff;
}

section.other p4{
    font-size: 20px;
    font-weight: 600;
    margin-left: 40px;
    display: list-item;
	background:#00a435;
    text-align:left;
	margin-right:-30vw;
	color:#fff;
    padding-bottom:20px;
}

section.other p{
    margin-left:20px;
    font-size: 24px;
    font-weight: 600;
	background:#00a435;
    text-align:left;
	color:#fff;
	padding:20px;
	display: table;
}

section.other .spacing2{
    margin-bottom:100px;
}

section.services {
    padding: 100px 0px;
	text-align:center;
}

section.services h1 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.5px;
	color:#00a435;
}

section.services .bg {
    text-align:left;
    background: #1e973a none repeat scroll 0 0;
    padding:50px 20px;
}

section.services p{
    font-size: 24px;
    display:block;
    font-weight: 600;
    margin-left:40px;
    color:#fff;
    display: list-item;
}

@media screen and (max-width: 1180px) {
    section.loan .col-md-9 h3 {
        font-weight: 700;
    }
    
    section.loan h1, section.services h1, section.other h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    section.loan h2 {
        font-size: 18px;
        margin-left:15px;
        padding-right:10px;
    }
}


/* Events */
section.event {
    background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(195, 231, 178, 1));
    position:relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
	text-align:center;
}

section.event h1 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.5px;
	color:#00a435;
}

section.event #underline {
    width:60px;
    margin-left: 47%;
    border-bottom: 2px solid #00a435;
}

section.event .col-md-4 {
    margin-top: 25px;
}

section.events {
    padding: 120px 0px;
	text-align:center;
}

section.events .events-banner img {
    width:700px;
}

section.events h1 {
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
	color:#fff;
	z-index: 100;
	margin-top:-100px;
	margin-bottom:100px;
}

section.events h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
	color:#00a435;
	margin-top:10px;
}

section.events h3 {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 0.5px;
	color:#fff;
	z-index: 100;
	margin-top:-90px;
	margin-bottom:100px;
}

section.events p {
    font-size: 18px;
    font-weight: 500;
	margin-top:10px;
	padding:0 50px;
}

section.events .col-md-6, section.events .col-md-7, section.events .col-md-5 {
    margin-top:25px;
}

section.events h4 {
    font-size: 20px;
    letter-spacing: 0.5px;
	background:#00a435;
	margin-top:40px;
    font-weight: 500;
	color:#fff;
	padding:20px 20px;
	margin-left:-10vw;
	margin-right:-10vw;
}

section.events #line1 {
    width:80%;
    margin: 50px 10%;
    border-bottom: 4px solid #00a435;
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
    }

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}


/* Contact Us */
section.contact-us {
    background: #1e973a none repeat scroll 0 0;
    color: #fff;
    padding: 20px 0px;
}

section.contact-us img {
    width:80px;
    height:80px;
    margin-bottom: 10px;
}

section.contact-us .col-md-4 {
    margin-top: 30px;
}

section.contact-us p2 {
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

section.contact-us a {
    font-size: 12px;
    color: #fff;
    font-weight: 700;
}

section.contact-us p1 {
    font-size: 12px;
    color: #fff;
    letter-spacing: -0.5px;
}

/* Footer */

footer {
    background-color: #1e973a;
    text-align: center;
}

footer p {
    margin-bottom: 50px;
    padding: 25px 0px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 1100px) and (max-height: 400px) {
  nav[role="navigation"].active {
    max-height: calc(80px + 100vh);
    overflow-y: auto;
  }
}

@media screen and (max-width: 767px) {
  footer p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25px;
  }
}