header {
    border-bottom: 1px solid #f2f2f2;
    background: #fff;
}

.blank-div {
    height: 117px;
}

nav ul li,
nav ul li a {
    color: #424242;
}

span.menu-line,
.sticky span.menu-line {
    background: #424242 !important;
}


/* contact page starts */

.contact-toop-image {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contact-toop-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 43, 82, 0.6);
}

.contact-toop-image h2 {
    color: #fff;
    font-size:
}

.contact-title {
    margin: 0;
}

.contact-title h2::before {
    display: none;
}

.map-section iframe {
    width: 100%;
    height: 400px;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-address-wrap {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 30px;
}

.contact-address-wrap ul li {
    text-align: center;
    display: block;
    margin: 30px 0;
}

.contact-address-wrap ul li i {
    border: 1px solid rgb(69, 178, 157);
    height: 65px;
    width: 65px;
    line-height: 65px;
    text-align: center;
    font-size: 30px;
    border-radius: 50%;
    color: #45b29d;
    margin-bottom: 15px;
}

.contact-address-wrap ul li h3 {
    font-size: 25px;
    font-weight: 600;
    color: #424242;
    margin-bottom: 15px;
}

.contact-address-wrap ul li a {
    color: #424242;
    transition: 500ms ease all;
}

.contact-address-wrap ul li a:hover {
    color: rgba(232, 76, 61, 1);
}

.contact-form-wrapper {
    padding: 15px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.contact-form-wrapper h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-form-wrapper p {
    margin-bottom: 30px;
}

.contact-form-wrapper label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
}

.contact-form-wrapper textarea,
.contact-form-wrapper input {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #f2f2f2;
    outline: none;
    margin-bottom: 20px;
}

.contact-form-wrapper textarea {
    height: 150px;
}

.contact-form-wrapper button {
    outline: none;
    border: none;
    padding: 10px 25px;
    max-width: 200px;
    color: #fff;
    background: #45b29d;
    transition: 500ms ease all;
    border-radius: 0 !important;
}

.contact-form-wrapper button:hover {
    background: #ffce44;
}

.map-wrapper {
    width: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
}


/* contact page ends */


/* gallery listing page starts */

.gallery-listing-page {
    padding: 40px 0;
    background: #f1f1f1;
}

.gallery-title {
    margin-bottom: 40px;
    text-align: center;
}

.gallery-title h2 {
    font-size: 36px;
    color: #424242;
}

.gallery-listing-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    display: block;
}

.gallery-listing-image:hover .gallery-content {
    bottom: 0;
}

.gallery-listing-image:hover .link-icon i {
    transform: scale(1);
}

.gallery-listing-image:hover figure {
    filter: grayscale(100%);
}

.gallery-listing-image figure {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 500ms ease all;
}

.gallery-listing-image .link-icon i:hover {
    background: #fff;
    color: rgba(79, 191, 112, 1);
}

.link-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.link-icon i {
    color: #fff;
    background: rgba(79, 191, 112, 1);
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 16px;
    border-radius: 50%;
    transform: scale(0);
    transition: 500ms ease all;
    z-index: 2;
    position: relative;
}

.gallery-content {
    padding: 15px 10px;
    background: rgba(79, 191, 112, 0.89);
    position: absolute;
    bottom: -100%;
    left: 0;
    display: block;
    width: 100%;
    transition: 500ms ease all;
}

.gallery-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    max-height: 36px;
    overflow: hidden;
}


/* gallery listing page ends */


/* gallery detail page starts */

.gallery-detail-page {
    padding: 10px;
}

.column {
    -ms-flex: 25%;
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.column a img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

.row1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 4px;
}


/* gallery-detail page ends */


/* blog detail page starts */

.blog-same-height {
    
    margin-bottom:30px;
}

.blog-listing-page {
    background: #f1f1f1;
}

.blog-detail-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.blog-detail-content {
    border: 1px solid #f2f2f2;
}

.blog-detail-content h2 {
    font-size: 30px;
    padding: 15px;
}

.blog-detail-content p {
    padding: 15px;
}

.inner-date-wrapper p {
    padding: 0 !important;
}

.sidebar-post li {
    list-style: none;
    display: block;
}

.sidebar-post li a {
    color: #424242;
    padding: 5px 10px;
    display: block;
    border-bottom: 1px solid #f2f2f2;
    font-size: 14px;
    font-weight: 600;
    transition: 500ms ease all;
}

.sidebar-post li a:hover {
    color: #45b29d;
}

.upcoming-event h2,
.blog-sidebar h2 {
    font-size: 25px;
    margin-bottom: 15px;
}

.blog-sidebar {
    border: 1px solid #f2f2f2;
    padding: 15px;
    margin-bottom: 30px;
}

.upcoming-event a {
    display: block;
}

.upcoming-event a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.upcoming-event a h3 {
    font-size: 18px;
    padding: 15px;
    border: 1px solid #f2f2f2;
}

.upcoming-event {
    margin-bottom: 30px;
}

.shre-this-wrapp {
    padding: 15px;
    border: 1px solid #f2f2f2;
    text-align: center;
}

.shre-this-wrapp i {
    font-size: 35px;
    border: 1px solid #ffce44;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    margin-bottom: 15px;
    color: #ffce44;
    border-radius: 50%;
}

.shre-this-wrapp h2 {
    font-size: 20px;
    margin-bottom: 15px;
}


/* blog detail page ends */


/* team section starts */

.modal,
.modal-box {
    z-index: 900;
}

.modal-sandbox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
}

.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, .8);
    overflow: auto;
}

.modal-box {
    position: relative;
    width: 80%;
    max-width: 920px;
    margin: 100px auto;
    animation-name: modalbox;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(0, 0, .3, 1.6);
}

.modal-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    margin-right: 20px;
}

.modal-image {
    display: flex;
    align-items: flex-start;
}

.modal-title-wrapp h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal-title-wrapp span {
    font-size: 16px;
    color: #45b29d;
    margin-bottom: 10px;
    display: block;
}

.modal-header {
    padding: 20px 40px;
    background: #45b29d;
    color: #ffffff;
}

.modal-header h3 {
    color: #fff;
}

.modal-body {
    background: #ECEFF1;
    padding: 60px 40px;
}


/* Close Button */

.close-modal {
    text-align: right;
    cursor: pointer;
}


/* Animation */

@-webkit-keyframes modalbox {
    0% {
        top: -250px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes modalbox {
    0% {
        top: -250px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}


/* .team-content-container {
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    background: #ffce44;
    z-index: 6;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 300ms ease all;
    transform: scaleX(0);
    transform-origin: left;
} */


/* 
.team-wrapper:hover .team-content-container {
    transform: scaleX(1);
    z-index: 3;
} */

.single-page,
.team-page {
    background: #f1f1f1;
}

.team-wrapper {
    padding: 30px 15px;
    border: 1px solid #f2f2f2;
    text-align: center;
    transition: 500ms ease all;
    background: #fff;
    height: 100%;
    /* position: relative; */
    /* z-index: 2; */
}

.team-margin {
    margin-bottom: 30px;
}

.team-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.team-image-wrapper {
    height: 100px;
    width: 100px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.team-content p {
    margin-bottom: 20px
}

.team-content span {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.team-content ul li {
    list-style: none;
    display: inline-block;
}

.team-content ul li a {
    display: block;
    color: #424242;
    width: 50px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #f2f2f2;
    text-align: center;
    transition: 500ms ease all;
}

.team-content ul li a:hover {
    color: #fff;
    background: #45b29d;
    border-color: #45b29d;
}


/* team page ends */


/* about company page starts */

.company-top-image {
    height: 350px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.company-title {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    color: #fff;
}

.company-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.company-title p {
    color: #fff;
}

.company-top-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 43, 82, 0.6);
}

.company-profile-content {
    padding: 40px 0;
    text-align: center;
    background: #fff;
    position: relative;
}

.company-profile-content::before {
    content: "\f103";
    position: absolute;
    top: -23px;
    left: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: #fff;
    font-family: fontawesome;
    font-size: 25px;
    font-weight: 300;
    color: #424242;
}

.who-we-are-wrapper {
    padding: 40px 0;
    background: #f1f1f1;
}

.who-wr-are-image figure {
    height: 300px;
}

.who-we-are-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.who-we-are-content p {
    margin-bottom: 5px;
}

.who-we-are-wrapper .row {
    align-items: center;
}


/* who we are page ends */


/* activities page starts */

.activiti-top-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 400px;
    justify-content: center;
    align-items: center;
    position: relative;
    background-attachment: fixed;
}

.activiti-top-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 43, 82, 0.6);
}

.activiti-title {
    position: relative;
    text-align: center;
    margin: 0;
}

.activiti-wrapper {
    background: #f1f1f1;
    padding: 30px 0;
}

.activiti-title h2 {
    color: #fff;
}

.activiti-image img {
    width: 100%;
    height: auto;
}

.activiti-content {
    background: #fff;
    padding: 20px;
    height: 100%;
}

.activiti-content h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.activiti-content p {
    margin-bottom: 10px;
}

.activiti-row-wrapper:nth-child(even) {
    flex-direction: row-reverse;
}

.activiti-row-wrapper {
    background: #fff;
    margin: 0 15px;
}

.activiti-row-wrapper:nth-child(even) .activiti-content {
    margin-left: 15px;
}


/* activiti page ends */


/* events page starts */

.event-page {
    background: #f1f1f1;
}

.event-content-wrapp {
    background: #fff;
}

.whole-event-wrapper {
    margin-bottom: 30px;
}


/* testimonial page starts */

.testimonial-content-wrapper {
    padding: 20px;
    border: 1px solid #f2f2f2;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.testimonial-content-wrapper h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial-content-wrapper span {
    margin-bottom: 10px;
    display: block;
    color: #4e4e4e;
}

.testi-image-info {
    margin-top: 30px;
    display: flex;
}

.test-page-image-wrapper {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-right: 15px;
}

.test-page-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-image-info-wrapper h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.test-image-info-wrapper ul li {
    list-style: none;
    display: inline-block;
}

.test-image-info-wrapper ul li:nth-child(3) a:hover,
.test-image-info-wrapper ul li:nth-child(4) a:hover,
.test-image-info-wrapper ul li:nth-child(2) a:hover,
.test-image-info-wrapper ul li a:hover {
    background: #fff;
    color: #00bdff;
    border: 1px solid #00bdff;
}

.test-image-info-wrapper ul li a {
    display: block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    background: #3b5998;
    color: #fff;
    margin: 0 5px;
    transition: 500ms ease all;
    border: 1px solid transparent;
}

.test-image-info-wrapper ul li:nth-child(2) a {
    background: #55acee;
}

.test-image-info-wrapper ul li:nth-child(3) a {
    background: #517fa4;
}

.test-image-info-wrapper ul li:nth-child(4) a {
    background: #35465c;
}

.about-top-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-top-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 43, 82, 0.6);
}

.testimonial-page-title {
    position: relative;
    margin: 0;
}

.testimonial-page-title h2 {
    color: #fff;
}


/* testimonial page ends */


/* value page starts */

.value-page {
    background: #f1f1f1;
}

.core-wrapper {
    padding: 30px;
    background: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.core-wrapper:hover i {
    color: #fff;
    background: #45b29d;
}

.core-wrapper i {
    font-size: 20px;
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
    color: #45b29d;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    transition: 500ms ease all;
    border: 1px solid #45b29d;
}

.core-wrapper h3 {
    font-size: 25px;
    margin-bottom: 15px;
}


/* values page ends */


/* single page starts */

.volunteer-content {
    background: #fff;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.volunteer-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
}

.volunteer-top-image {
    margin-bottom: 40px;
}

.single-page {
    padding-bottom: 40px;
}

.volunteer-content a:hover {
    background: transparent;
    color: #45b29d;
    border: 1px solid #45b29d;
}


/* project inner page */

.project-inner-title {
    background: #fff;
    padding: 20px;
}

.project-inner-title h2 {
    margin-bottom: 20px;
    font-size: 30px;
}


/* about tabs designs */

.about-tab-wrapper {
    padding-bottom: 40px;
    margin-top: 50px;
}

.about-nav {
    z-index: 6;
    border: inherit;
    position: sticky;
    top: 100px;
}

.about-nav .nav-item .nav-link {
    color: #45b29d;
    background: #fff;
    border: none;
    outline: none;
    border-radius: inherit;
    font-size: 18px;
}

.about-tab-wrapper .tab-content {
    padding: 20px;
    border: 1px solid #eee;
    padding-top: 40px;
}

.about-nav .nav-item.show .nav-link,
.about-nav .nav-link.active {
    background: #ffce44;
    border: 1px solid #ffce44;
    border-bottom: none;
    color: #fff;
}