/*** 

====================================================================
	News Section
====================================================================

***/

.contact-info-section {
    position: relative;
    padding: 110px 0px 190px;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
}

.contact-info-section .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.contact-info-section .image-layer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(241, 241, 241, 0.93);
}

.contact-info-section .sec-title {
    margin-bottom: 50px;
}

.contact-info-section .info-outer {
    position: relative;
}

.contact-info-section .info-box {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 170px;
    margin: 0px 14px 30px;
    font-family: 'Manjari', sans-serif;
}

.contact-info-section .info-box .inner {
    position: relative;
    display: block;
    padding: 40px 20px 35px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
}

.contact-info-section .info-box .inner:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 2px solid #00aa55;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.contact-info-section .info-box:hover .inner:before {
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.contact-info-section .info-box .icon {
    position: relative;
    display: block;
    line-height: 1em;
    font-size: 42px;
    color: #00aa55;
    margin: 0 0 20px;
}

.contact-info-section .info-box strong {
    position: relative;
    display: block;
    line-height: 1.4em;
    font-size: 18px;
    color: #222222;
    margin: 0 0 7px;
}

.contact-info-section .info-box .info,
.contact-info-section .info-box .info a {
    color: #757575;
    font-size: 15px;
    line-height: 24px;
}

.contact-info-section .info-box .info a:hover {
    color: #00aa55;
    text-decoration: underline;
}
/*** 

====================================================================
	Facts Section
====================================================================

***/

.facts-section {
    position: relative;
    padding: 110px 0px 55px;
}

.facts-section .row {
    margin: 0px -20px;
}

.facts-section .fact-column {
    position: relative;
    padding: 0px 20px;
    margin-bottom: 50px;
}

.facts-section .fact-column .inner {
    position: relative;
    display: block;
    min-height: 50px;
}

.facts-section .fact-column .fact-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 110px;
    line-height: 30px;
    padding: 8px 10px;
    min-height: 50px;
    font-size: 30px;
    font-weight: 700;
    color: #00aa55;
    font-family: 'Manjari', sans-serif;
    text-align: center;
    border: 2px solid #00aa55;
}

.facts-section .fact-column .fact-box span {
    position: relative;
    top: 5px;
}

.facts-section .fact-column .fact-box:before {
    content: '';
    position: absolute;
    left: 100%;
    margin-left: -10px;
    width: 40px;
    top: 24px;
    border-bottom: 1px solid #00aa55;
}

.facts-section .fact-title {
    position: relative;
    color: #222222;
    font-weight: 700;
    line-height: 25px;
    padding-left: 160px;
    margin-bottom: 30px;
}