* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --orange: #DB4E3A;
    --dark-cyan: #00AFAA;
    --purple: #8C1E58;
    --red: #D03338;
    --yellow: #EB9F20;
    --nav-text: #252527;
    --dark-gray: #888888;
    --dark-grayish-red: #8B8282;
    --very-light-gray: #EFEFEF;
    --transition: all 0.5s ease-out;
}

body {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    background: var(--white);
    font-family: 'Rubik', sans-serif;
}

header {
    position: fixed;
    z-index: 99999;
    width: 100%;
    top: 0;
}

main {
    /* margin-top: 118px; */
    margin-top: 150px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
ol,
li,
span,
label {
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

/* GLOBAL STYLE START */
h1 {
    font-size: 70px;
    font-weight: 700;
}

h2 {
    font-size: 60px;
    font-weight: 700;
}

h3 {
    font-size: 50px;
    font-weight: 600;
}

h4 {
    font-size: 30px;
    font-weight: 600;
}

h5 {
    font-size: 20px;
    font-weight: 500;
}

h6 {
    font-size: 18px;
    font-weight: 400;
}

p,
a,
span {
    font-size: 16px;
    font-weight: 400;
}

a {
    text-decoration: none;
    transition: all 0.5s ease-out;
}

li {
    list-style: none;
}

/* GLOBAL STYLE END */
/* HEADER START */
.header-top-lft-item a,
.footer-btm-rht-item a {
    font-size: 24px;
    color: var(--white);
}

.header.fix-nav {
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.header-top {
    background: var(--dark-cyan);
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-lft {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-top-lft-item a img {
    width: 24px;
    height: 20px;
    object-fit: contain;
    object-position: center;
}

.header-top-rht {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header-top-rht-item-wrap,
.header-top-rht-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* .header-top-rht-item:first-child{
    display: none;
} */
.header-top-rht-item p,
.header-top-rht-item a {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}

.header-top-rht-item a span img,
.header-top-rht-item span img,
.header-top-rht-item p a img {
    width: 24px;
    height: 20px;
    object-fit: contain;
    object-position: center;
}

.nav-btn a {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    height: 50px;
    padding: 0 13px 0 10px;
    position: relative;
    overflow: hidden;
}

.nav-btn-orange a {
    background: var(--orange);
}

.nav-btn-cyan a {
    background: var(--dark-cyan);
}

/* .nav-btn a:hover {
    opacity: 0.8;
} */
.nav-btn a::before,
.nav-btn a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 70px;
    background-color: var(--black);
    transform: rotate(45deg);
    transition: all 0.5s ease-in-out;
}

.nav-btn a::before {
    left: 140px;
    top: -15px;
}

.nav-btn a::after {
    right: 140px;
    top: 0;
}

.nav-btn a:hover:before {
    left: 42px;
    transition: all 0.5s ease-in-out;
}

.nav-btn a:hover:after {
    right: 40px;
    transition: all 0.5s ease-in-out;
}

.nav-btn a span img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    object-position: center;
}

.nav-btn a span {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    position: relative;
    z-index: 20;
}

.header-btm {
    background: var(--white);
}

.header-btm .navbar {
    padding: 10px 0;
}

.navbar-brand img {
    width: 190px;
    height: 70px;
    object-fit: contain;
    object-position: center;
}

.header-btm .navbar-expand-lg .navbar-nav .nav-item .nav-link {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    /*     padding: 0 25px; */
    padding: 0 50px;
    color: var(--nav-text);
    transition: var(--transition);
}

.header-btm .navbar-expand-lg .navbar-nav .nav-item.current-menu-item .nav-link,
.header-btm .navbar-expand-lg ul .nav-item.current-menu-item .nav-link,
.header-btm .navbar-expand-lg .navbar-nav .nav-item .nav-link:hover,
.header-btm .navbar-expand-lg .navbar-nav .nav-item.current-menu-parent>ul .nav-item.current-menu-item .nav-link {
    color: var(--orange);
}

.header-btm .navbar-expand-lg ul.slimmenu .nav-item.current-menu-parent>ul .nav-item.current-menu-item {
    background-color: #db4e3a;
    color: #fff;
}

.header-btm .navbar-expand-lg ul.slimmenu .nav-item.current-menu-parent>ul .nav-item.current-menu-item .nav-link {
    color: #fff;
}

.header-btm .navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
}

.sub-menu-toggle {
    display: none;
}

.header-btm .navbar-expand-lg .navbar-nav .menu-item-has-children,
.header-btm .navbar-expand-lg .navbar-nav .menu-item-has-children ul .menu-item-has-children {
    position: relative;
}

.header-btm .navbar-expand-lg .navbar-nav .menu-item-has-children::before {
    content: "";
    position: absolute;
    top: 10px;
    /*     right: 6px; */
    right: 30px;
    width: 10px;
    height: 10px;
    background: url('../assets/images/down-arrow.png') no-repeat;
    background-size: contain;
}

.header-btm .navbar-expand-lg .navbar-nav .nav-item ul {
    display: none;
}

.header-btm .navbar-expand-lg .navbar-nav .nav-item:hover>ul {
    display: block;
    border-radius: 6px;
    min-width: 236px;
    left: 45px;
    position: absolute;
    background-color: var(--white);
}

.header-btm .navbar-expand-lg .navbar-nav .nav-item:hover>ul .nav-item .nav-link {
    color: var(--nav-text);
    padding: 5px 20px;
}

.header-btm .navbar-expand-lg .navbar-nav .nav-item:hover>ul .nav-item .nav-link:hover {
    color: var(--white);
    background-color: var(--dark-cyan);
}

.header-btm .navbar-expand-lg .navbar-nav .nav-item:hover>ul li ul {
    top: 0;
    left: 100%;
    position: absolute;
}

.header-btm .navbar-expand-lg .navbar-nav .menu-item-has-children ul .menu-item-has-children::before {
    content: '';
    top: 13px;
    right: 15px;
    transform: rotate(-90deg);
    background: url('../assets/images/down-arrow.png') no-repeat;
    background-size: contain;
}

.mobile-header {
    display: none;
}

/* HEADER END */
/* BANNER START */
/* .banner {
    padding-top: 150px;
} */

.banner-image {
    position: relative;
}

.sec-banner {
    height: 1000px;
}

.banner .owl-item .banner-inner .banner-image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 10;
    /*background: linear-gradient(92deg, rgba(3, 33, 33, 0.89) -0.35%, rgba(3, 33, 33, 0.68) 54.56%, rgba(3, 33, 33, 0.30) 107.99%, rgba(0, 175, 170, 0.89) 107.99%);*/
    background: linear-gradient(92deg, rgba(3, 33, 33, 0.89) -0.35%, rgba(3, 33, 33, 0) 54.56%, rgba(3, 33, 33, 0) 107.99%, rgba(0, 175, 170, 0) 107.99%);
}

.banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 300px;
    z-index: 20;
    display: flex;
    align-items: center;
}

.banner-item {
    width: 100%;
    height: 1000px;
    /* height: 600px;*/
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-item-inner {
    max-width: 900px;
}

.banner-item-inner h1 {
    font-size: 40px;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.banner-item-inner p {
    font-size: 30px;
    font-weight: 600;
    line-height: 50px;
    color: var(--white);
    margin-bottom: 30px;
}

.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
}

.banner .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 12.5px;
    border-radius: 50%;
    background: var(--white) !important;
}

.banner .owl-dots .owl-dot.active {
    background: var(--dark-cyan);
    position: relative;
    transition: var(--transition);
}

.banner .owl-dots .owl-dot.active::after {
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    border: 1px solid var(--white);
    top: -50%;
    left: -50%;
    border-radius: 50%;
}

/* BANNER END */
/* ABOUT START */
.about {
    padding: 90px 0;
}

.about-wrap {
    display: grid;
    grid-gap: 70px;
    grid-template-columns: repeat(3, 1fr);
}

.about-item h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 30px;
    color: var(--purple);
    margin-bottom: 35px;
}

.about-item:nth-child(2) h3 {
    color: var(--red);
}

.about-item:nth-child(3) h3 {
    color: var(--yellow);
}

.about-item-btm {
    min-height: 450px;
    background: var(--purple);
    border-radius: 89px;
    position: relative;
}

.about-item:nth-child(2) .about-item-btm {
    background: var(--red);
}

.about-item:nth-child(3) .about-item-btm {
    background: var(--yellow);
}

.about-item-btm-img {
    position: absolute;
    right: 0;
    top: -13px;
}

.about-item-btm-img img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.about-item-btm p {
    padding: 210px 33px 79px 33px;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
}

/* ABOUT END */
/* DESCRIPTION START */
.description {
    padding: 93px 0;
    background: var(--dark-cyan);
}

.description-wrap {
    background-image: url('../assets/images/map.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.description-top {
    text-align: center;
    padding: 20px 30px;
    border-radius: 50px;
    border: 1px solid var(--black);
}

.description-top h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
}



.description-item-wrap {
    display: flex;
    gap: 5% 5%;
    justify-content: center;
    flex-wrap: wrap;
}

.description-item {
    width: 30%;
    padding-top: 60px;
}

.description-item-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 370px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.description-link-wrap {
    max-width: 290px;
}

.description-item-inner h3 {
    line-height: 40px;
}

.description-item-inner h3 a {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    line-height: 40px;
}

/* DESCRIPTION END */
/* NEWSLETTER START */
.newsletter {
    padding: 90px 0;
}

h2 {
    font-size: 44px;
    font-weight: 600;
    color: var(--nav-text);
}

.newsletter h2,
.newsletter p {
    text-align: center;
    margin-bottom: 30px;
}

.newsletter p {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-gray);
    max-width: 520px;
    margin: 0 auto 32px auto;
}

.newsletter-input-inner,
.es-form-field-container {
    display: flex;
    /*     gap: 25px; */
    align-items: center;
    width: 800px;
    margin: 0 auto;
}

.newsletter-input-inner input,
.es-form-field-container input {
    width: 555px;
    height: 80px;
    background: var(--very-light-gray);
    border-radius: 0;
    border: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-grayish-red);
    border: 1px solid transparent;
    padding-left: 23px;
}

.newsletter-input-inner input:focus,
.es-form-field-container input:focus,
.es-form-field-container input:focus-visible {
    background: var(--very-light-gray);
    box-shadow: none;
    border: 1px solid var(--dark-grayish-red);
    outline: none;
}

.newsletter-input-inner button,
.es-form-field-container [type=submit] {
    width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin-left: 25px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    background: var(--dark-cyan);
    border-radius: 10px;
    border: 1px solid var(--dark-cyan);
    transition: var(--transition);
    padding-left: 0;
}

.newsletter-input-inner button:hover,
.es-form-field-container [type=submit]:hover {
    background: transparent;
    color: var(--dark-cyan);
}

.emaillist {
    text-align: center;
}

.es_subscription_message.success {
    color: #fff !important;
    font-size: 20px !important;
    display: inline-flex;
    height: 75px;
    padding: 0 25px;
    background-color: #db4e3a;
    align-items: center;
    justify-content: center;
}

/* NEWSLETTER END */
/* FOOTER START */
.footer {
    background: #a5292c;
}

.footer-top {
    display: flex;
    padding: 55px 0 55px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}

.footer-top-lft {
    width: 75%;
}

.footer-top-rht {
    width: 25%;
}

.footer-item-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.footer-item {
    /* width: 29%; */
    width: 25%;
}

.footer-logo a {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo a img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    object-position: top;
}

.footer-desc p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}

.footer-item h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
}

.footer-item ul li {
    margin-bottom: 20px;
}

/* .menu-footer-menu-container ul li.current-menu-item a{
    color: var(--dark-cyan);
} */
.footer-item ul li p,
.footer-item ul li a {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    display: inline-flex;

}

.footer-item ul li a:last-child {
    margin-bottom: 0;
}

/* .footer-item-third a {
    gap: 10px;
} */

.footer-item-third ul li {
    gap: 10px;
    display: flex;
    align-items: center;
}

.footer-item-third ul li:first-child {
    align-items: flex-start;
}

.footer-item-third ul li a span,
.footer-item-third ul li span {
    width: 24px;
}

.footer-item-third ul li a span img,
.footer-item-third ul li span img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;
}

.footer-item-third ul li a span:last-child,
.footer-item-third ul li span:last-child {
    /*     width: calc(100% - 34px); */
    width: calc(100% - 15px);
}

.footer-item-second {
    padding-left: 50px;
}

.f-btn {
    text-align: right;
}

.f-btn a {
    display: inline-flex;
    align-items: center;
    height: 60px;
    padding: 0 60px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    background: var(--dark-cyan);
    border-radius: 10px;
    border: 1px solid var(--dark-cyan);
}

.f-btn a:hover {
    background: transparent;
    border: 1px solid var(--white);
}

.footer-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.footer-btm-lft,
.footer-btm-rht {
    width: 50%;
}

.footer-btm-lft p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}

.footer-btm-rht-item-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.footer-btm-rht-item a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
}

/* FOOTER END */
/* //////////////////// OUR IMPACT PAGE START //////////////////// */
/* BANNER START */
/* .sec-banner-outer{
    padding-top: 150px;
} */
.sec-banner {
    /* padding: 230px 0 150px 0; */
    text-align: center;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 75px 0 150px;
    background-position: center;
}

.sec-banner::after {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.10);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.sec-banner-wrap {
    position: relative;
    z-index: 99;
}

.sec-banner .breadcrumbs .tsh_breadcrumbs {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
    color: var(--orange);
    gap: 7px;
    flex-wrap: wrap;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}

.sec-banner .breadcrumbs a {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}

.sec-banner .breadcrumbs .separator {
    color: var(--white);
}

/* .sec-banner .breadcrumb{
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
} */
.sec-banner h1 {
    font-size: 44px;
    font-weight: 600;
    color: var(--dark-cyan);
}

.single .sec-banner h1 {
    position: absolute;
    bottom: 10%;
}

/* BANNER END */
/* IMPACT ABOUT START */
.imp-about,
.our-work-sec {
    /* padding-bottom: 90px; */
    position: relative;
}

.imp-about-top,
.work-top,
.innerpg-para,
.ourWork-innerpg-top {
    width: 100%;
    max-width: 1030px;
    padding: 34px;
    text-align: center;
    margin: -70px auto 85px auto;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    position: relative;
    z-index: 99;
    background: var(--white);

    color: var(--nav-text);
    border: 1px solid #C2C2C2;
}

.imp-about-top p,
.innerpg-para p,
.work-top p,
.ourWork-innerpg-top p {
    font-size: 18px;
    font-weight: 500;
}

.imp-about-btm,
.ourWork-innerpg-btm {
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.imp-about-btm-lft,
.ourWork-innerpg-btm-lft {
    width: 60%;
    padding-right: 35px;
}

.imp-about-btm-rht,
.ourWork-innerpg-btm-rht {
    width: 40%;
}

.imp-about-btm-lft-text p,
.ourWork-innerpg-btm-lft-text p {
    font-size: 18px;
    font-weight: 400;
    color: #797986;
    margin-bottom: 18px;
}

.imp-about-btm-lft-text p:last-child,
.ourWork-innerpg-btm-lft-text p:last-child {
    margin-bottom: 0;
}

.imp-about-btm-lft-text p span,
.ourWork-innerpg-btm-lft-text p span {
    font-weight: 700;
}

.imp-about-btm-rht-img-wrap,
.imp-stories-item-lft-wrap,
.our-work-btm-img-wrap,
.ourWork-innerpg-btm-rht-img-wrap {
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    overflow: hidden;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
}


.imp-about-btm-rht-img-wrap h5,
.imp-stories-item-lft-wrap h4,
.ourWork-innerpg-btm-rht-img-wrap h5 {
    font-size: 24px;
    font-weight: 500;
    color: var(--nav-text);
    text-align: center;
    padding: 35px 65px;
    background-color: var(--white);
}

/* IMPACT ABOUT END */
/* IMPACT SLIDER START */
.imp-slider {
    /* background-repeat: no-repeat;
    background-size: 70% 100%;
    padding-bottom: 60px; */
    position: relative;
    padding: 30px;
}

.imp-slider::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 100%;
    left: 0;
    border-radius: 0 90px 90px 0;
    z-index: -10;
    background-color: var(--dark-cyan);
}

.imp-slider-top-img {
    width: 120px;
    height: 100px;
    padding: 5px 25px 40px 25px;
    margin: 0 0 30px 0;
    background: var(--white);
}

.imp-slider-top h2 {
    color: var(--white);
}

.impact-slider-item {
    padding: 60px 30px 65px 30px;
    border-radius: 50px;
    background: #FFF;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.20);
    margin-top: 50px;
    position: relative;
}

.impact-slider .owl-item {
    margin: 50px 0 20px 0;
}

.impact-slider-item-img {
    border: 5px solid var(--white);
    background: var(--orange);
    width: 60px;
    height: 60px;
    padding: 12px;
    border-radius: 20px;
    margin-top: -50px;
    position: absolute;
    top: 20px;
}

.impact-slider-item-text p {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: #797986;
    margin-bottom: 40px;
}

.impact-slider-item-text h4 {
    font-size: 21px;
    font-weight: 700;
    color: var(--nav-text);
    margin-bottom: 30px;
}

.impact-slider-item-text h5 {
    font-size: 15px;
    font-weight: 500;
    color: #797986;
    line-height: 21px;
    font-style: italic;
    max-width: 360px;
}

.impact-slider .owl-nav {
    padding-top: 50px;
}

.impact-slider .owl-nav .owl-prev,
.impact-slider .owl-nav .owl-next {
    width: 35px;
    height: 35px;
    background: #AECECE !important;
    margin-right: 2px;
    transition: var(--transition);
    position: relative;
}

.impact-slider .owl-nav .owl-prev {
    background: var(--orange) !important;
}

.impact-slider .owl-nav .owl-prev:hover,
.impact-slider .owl-nav .owl-next:hover {
    opacity: 0.8;
}

.impact-slider .owl-nav .owl-prev img,
.impact-slider .owl-nav .owl-next img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    object-position: center;
}

.impact-slider .owl-nav .owl-prev span {
    width: 20px;
    height: 20px;
    font-size: 0;
    display: inline-block;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-image: url('../assets/images/is-img-lft.png');
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.impact-slider .owl-nav .owl-next span {
    width: 20px;
    height: 20px;
    font-size: 0;
    display: inline-block;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-image: url('../assets/images/is-img-rht.png');
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

/* IMPACT SLIDER END */
/* IMPACT STORIES START */
.imp-stories {
    padding: 95px 0 85px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #DFE7FC 200%);
}

.imp-stories-top h2 {
    text-align: center;
    margin-bottom: 65px;
}

.imp-stories-item {
    display: flex;
    align-items: center;
    margin-bottom: 85px;
}

.imp-stories-item:last-child {
    margin-bottom: 0;
}

.imp-stories-item-lft {
    width: 45%;
}

.imp-stories-item-rht {
    width: 55%;
}

.imp-stories-item:nth-child(even) .imp-stories-item-lft {
    order: 1;
}

.imp-stories-item:nth-child(odd) .imp-stories-item-rht {
    padding-left: 40px;
}

.imp-stories-item:nth-child(even) .imp-stories-item-rht {
    padding-right: 40px;
}

.imp-stories-item-lft-text {
    padding: 20px 75px;
    text-align: center;
    border-radius: 0px 0px 50px 50px;
    background: #FFF;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
}

.imp-stories-item-lft-text h4 {
    font-size: 24px;
    font-weight: 500;
    color: var(--nav-text);
}

.imp-stories-item-rht p {
    font-size: 18px;
    font-weight: 400;
    color: #797986;
}

/* IMPACT STORIES END */
/* //////////////////// OUR IMPACT PAGE END //////////////////// */
/* //////////////////// OUR WORK PAGE START //////////////////// */
.our-work-btm {
    max-width: 1080px;
    margin: 80px auto;
    /* margin: 80px 0; */
}

.our-work-btm-inner {
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: flex-start;
}

/* .our-work-btm-img {
    width: 100%;
    height: 288px;
    border-radius: 50px 50px 0 0;
    overflow: hidden;
} */
.our-work-btm-desc {
    text-align: center;
    padding: 30px 47px 47px 35px;
    border-radius: 0 0 50px 50px;
    box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.15);
}

.our-work-btm-desc p {
    font-size: 18px;
    font-weight: 400;
    color: #797986;
    margin: 30px 0 18px;
}

/* OUR WORK END */
/* PODCASTS START */
.podscasts-Sec-inner {
    margin: 85px 0;
}

.podscasts-Sec-inner:first-child {
    margin-top: 0;
}

/* .podscasts-Sec-inner:last-child{
    margin-bottom: 0;
} */
.podscasts-Sec-inner:nth-child(odd),
.podscasts-Sec-inner:nth-child(even) {
    position: relative;
}

.podscasts-Sec-inner:nth-child(odd)::before {
    content: '';
    position: absolute;
    width: 65%;
    height: 100%;
    right: 0;
    padding: 60px 0;
    border-radius: 90px 0 0 90px;
    z-index: -10;
    background-color: var(--dark-cyan);
}

.podscasts-Sec-inner:nth-child(even)::before {
    padding: 60px 0;
    content: '';
    position: absolute;
    width: 65%;
    height: 100%;
    left: 0;
    border-radius: 0 90px 90px 0;
    z-index: -10;
    background-color: var(--dark-cyan);
}

.podscasts-Sec-inner:nth-child(even) .podscasts-img-wrap {
    order: 1;
    justify-content: flex-end;
}

.podscasts-Sec-content-outer {
    display: flex;
    gap: 25px;
    /* align-items: center; */
    padding: 100px 0;
}

.podscasts-content-wrap {
    color: var(--white);
    width: 60%;
}

.mobileScreen {
    display: none !important;
}

.podscasts-img-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 40%;
}

.podscasts-img {
    overflow: hidden;
}

.podscasts-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.podscasts-img:first-child {
    max-width: 300px;
    height: 348px;
}

.podscasts-img:nth-child(2) {
    max-width: 255px;
    height: 236px;
    border: 6px solid var(--white);
}

.podscasts-img:nth-child(3) {
    max-width: 225px;
    height: 225px;
}

.podscasts-img:nth-child(4) {
    max-width: 220px;
    height: 220px;
    border: 6px solid var(--white);
    margin-top: -200px;
}

.podscasts-Sec-inner:nth-child(even) .podscasts-img:first-child {
    order: 1;
}

.podscasts-Sec-inner:nth-child(even) .podscasts-img:nth-child(3) {
    order: 3;
}

.podscasts-Sec-inner:nth-child(even) .podscasts-img:nth-child(4) {
    order: 2;
}

.podscasts-content-wrap h1,
.podscasts-content-wrap h2,
.podscasts-content-wrap h3,
.podscasts-content-wrap h4,
.podscasts-content-wrap h5,
.podscasts-content-wrap h6 {
    font-size: 44px;
    line-height: 57.2px;
    margin-bottom: 25px;
    font-weight: 600;
}

.podscasts-content-wrap a {
    display: inline-flex;
    /* max-width: 383px; */
    height: 50px;
    padding: 0px 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--nav-text);
    font-weight: 600;
    text-decoration-line: underline;
    background-color: var(--white);
    margin-top: 25px;
}

/* PODCASTS END */
/* DISTRIBUTION START */
.distributionSec {
    padding-bottom: 85px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #DFE7FC 200%);
}

.distributionSec-item {
    display: flex;
    align-items: center;
    margin-bottom: 85px;
}

.distributionSec-item:last-child {
    margin-bottom: 0;
}

.distributionSec-item-lft {
    width: 45%;
}

.distributionSec-item-lft-img {
    overflow: hidden;
    border-radius: 50px 50px 0px 0px;
}

.distributionSec-item-lft-text {
    padding: 30px;
    text-align: center;
    border-radius: 0px 0px 50px 50px;
    background: #FFF;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
}

.distributionSec-item-lft-text h4 {
    font-size: 24px;
    font-weight: 500;
    color: var(--nav-text);
}

.distributionSec-item-rht {
    width: 55%;
}

.distributionSec-item:nth-child(even) .distributionSec-item-lft {
    order: 1;
}

.distributionSec-item:nth-child(odd) .distributionSec-item-rht {
    padding-left: 40px;
}

.distributionSec-item:nth-child(even) .distributionSec-item-rht {
    padding-right: 40px;
}

.distributionSec-item-rht p {
    font-size: 18px;
    font-weight: 400;
    color: #797986;
}

/* DISTRIBUTION END */
/* //////////////////// OUR WORK PAGE END //////////////////// */
.innerpgsec {
    width: 100%;
    background-color: #F6F6F6;
}

.innerpgfirstsec {
    width: 100%;
}

.currentprojsec {
    width: 100%;
    margin: 85px 0 0 0;
}

.currentprojsec h2,
.currentprojyearsec h2 {
    color: #252527;
    font-weight: 600;
    text-align: center;
    font-size: 44px;
    line-height: normal;
    padding: 0 0 50px 0;
}

.currentprojectfullsec {
    width: 100%;
    position: relative;
    overflow: hidden;
    /*display:none;*/
}

.currentprojectfullsec:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: #16A4A2;
    -webkit-border-top-left-radius: 50px;
    -webkit-border-bottom-left-radius: 50px;
    -moz-border-radius-topleft: 50px;
    -moz-border-radius-bottomleft: 50px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.currentprojectfullsec .container {
    position: relative;
    z-index: 1;
}

.currentprojrow {
    display: flex;
    flex-wrap: wrap;
    padding: 90px 0;
}

.currentprojectfullsec .currentprojrow {
    padding-top: 35px;
}

.currentprojectfullsec h3 {
    text-transform: capitalize;
    color: #F8F8F8;
    font-size: 44px;
    line-height: normal;
    font-weight: 600;
    text-align: right;
    padding-top: 75px;
}

.mappart {
    width: 80%;
}

.imgpart {
    width: 20%;
    height: 600px;
}

.imgpart img {
    width: 100%;
    height: 100%;
}

.leftpanel {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
}

.singleimagesec {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 360px;
    /* width:360px; */
    height: 270px;
    overflow: hidden;
}

.singleimagesec:nth-child(2) {
    right: 0;
    bottom: 0;
    top: auto;
    left: auto;
}

.singleimagesec img {
    border: 6px solid #fff;
}

.rightpanel {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 0 0 0 25px;
}

.currentprojrow h1,
.currentprojrow h2,
.currentprojrow h3,
.currentprojrow h4,
.currentprojrow h5,
.currentprojrow h6 {
    color: #fff;
    font-weight: 600;
    font-size: 44px;
    line-height: normal;
    padding: 0 0 40px 0;
    text-align: left;
}

.currentprojrow p {
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    font-weight: 500;
}

.currentprojloopsec {
    width: 100%;
    overflow: hidden;
    padding: 85px 0;
}

.sglecurrentprojsec {
    margin-top: 85px;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    align-items: center;
}

.sglecurrentprojsec:first-child {
    margin-top: 0;
}

.sglecurrentprojsec:nth-child(odd) .projleftpanel {
    order: 1;
}

.sglecurrentprojsec:nth-child(odd) .projrightpanel {
    order: 2;
}

.sglecurrentprojsec:nth-child(even) .projleftpanel {
    order: 2;
}

.sglecurrentprojsec:nth-child(even) .projrightpanel {
    order: 1;
}

.projleftpanel {
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 50%;
    max-width: 50%;
}

.projrightpanel {
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 50%;
    max-width: 50%;
}

.sglecurrentprojsec p {
    color: #797986;
    font-size: 18px;
    line-height: 27px;
    font-weight: normal;
    font-style: normal;
}

.currentprojectsec {
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    overflow: hidden;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
}

.sglecurrentprojsec h3 {
    color: #252527;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    padding: 40px 20px;
}

/* sglecurrentprojyear css Start*/
.currentprojyearsec {
    padding-bottom: 85px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #DFE7FC 200%);
}

.sglecurrentprojyear:first-child {
    margin-top: 0px;
}

.sglecurrentprojyear {
    margin-top: -12px;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    align-items: center;
}

.projyearlft {
    width: 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.projyearlft .yearBox {
    width: 140px;
    height: 140px;
    /* border: 15px solid #EC8E50; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
}

.projyearlft .yearBox::before {
    content: '';
    width: 85px;
    position: absolute;
    /* border: 3px solid #B87642; */
    left: 167px;
    top: 50%;

    z-index: 20;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.projyearlft .stripBox {
    width: 85px;
    height: 310px;
    /* background-color: #EC8E50; */
    clip-path: polygon(100% 12%, 100% 100%, 50% 88%, 0 100%, 0 12%, 50% 0);
    position: relative;
}

.projyearlft .stripBox::before {
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    background-color: #fff;
    /* border: 5px solid #B87642; */
    border-radius: 50%;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.projyearlft .stripBox::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    /* background-color: #B87642; */
    border-radius: 50%;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* orangecontsec color */
.orangecontsec .projyearlft .yearBox {
    border: 15px solid #EC8E50;
}

.orangecontsec .projyearlft .yearBox::before {
    border: 3px solid #B87642;
}

.orangecontsec .stripBox {
    background-color: #EC8E50;
}

.orangecontsec .stripBox::before {
    border: 5px solid #B87642;
}

.orangecontsec .stripBox::after {
    background-color: #B87642;
}

/* lightredcontsec color */
.lightredcontsec .projyearlft .yearBox {
    border: 15px solid #E16C63;
}

.lightredcontsec .projyearlft .yearBox::before {
    border: 3px solid #A8565A;
}

.lightredcontsec .stripBox {
    background-color: #E16C63;
}

.lightredcontsec .stripBox::before {
    border: 5px solid #A8565A;
}

.lightredcontsec .stripBox::after {
    background-color: #A8565A;
}

/* darkcynecontsec color */
.darkcynecontsec .projyearlft .yearBox {
    border: 15px solid #16A4A2;
}

.darkcynecontsec .projyearlft .yearBox::before {
    border: 3px solid #055554;
}

.darkcynecontsec .stripBox {
    background-color: #16A4A2;
}

.darkcynecontsec .stripBox::before {
    border: 5px solid #055554;
}

.darkcynecontsec .stripBox::after {
    background-color: #055554;
}

/* lightnavbluecontsec color */
.lightnavbluecontsec .projyearlft .yearBox {
    border: 15px solid #3E5F7E;
}

.lightnavbluecontsec .projyearlft .yearBox::before {
    border: 3px solid #394754;
}

.lightnavbluecontsec .stripBox {
    background-color: #3E5F7E;
}

.lightnavbluecontsec .stripBox::before {
    border: 5px solid #394754;
}

.lightnavbluecontsec .stripBox::after {
    background-color: #394754;
}


.projyearlft .yearBox h3 {
    font-size: 30px;
    line-height: 27px;
    text-align: center;
}

.projyearrht {
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
    /* flex: 0 0 50%; */
    /* max-width:60%; */
    width: 80%;
}

.projyearrht h1,
.projyearrht h2,
.projyearrht h3,
.projyearrht h4,
.projyearrht h5,
.projyearrht h6,
.projyearrht h3 a {
    color: #252527;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: left;
}

.projyearrht p {
    color: #797986;
    font-size: 18px;
    line-height: 27px;
    font-weight: normal;
    font-style: normal;
}

.projyearrht h3 a {
    text-decoration: underline;
}

/* sglecurrentprojyear css End*/
.sglewhereweworksec {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 85px;
}

.sglewhereweworksec:first-child {
    margin-top: 0;
}

.sglewhereweworksec:before {
    content: "";
    position: absolute;
    top: 0;
    width: 60%;
    height: 100%;
    background: #16A4A2;
}

.sglewhereweworksec .container {
    position: relative;
    z-index: 1;
}

.currentprojectrow {
    display: flex;
    flex-wrap: wrap;
    padding: 90px 0;
    align-items: center;
}

.leftpart {
    flex: 0 0 55%;
    max-width: 55%;
    position: relative;
}

.rightpart {
    flex: 0 0 45%;
    max-width: 45%;
}

.sglewhereweworksec .rightpart img {
    border: 6px solid #fff;
}

.sglewhereweworksec p {
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    font-weight: 500;
}

.sglewhereweworksec:nth-child(odd) .leftpart {
    order: 1;
    padding: 0 15px 0 0;
}

.sglewhereweworksec:nth-child(odd) .rightpart {
    order: 2;
    padding: 0 0 0 15px;
}

.sglewhereweworksec:nth-child(odd):before {
    left: 0;
    -webkit-border-top-right-radius: 50px;
    -webkit-border-bottom-right-radius: 50px;
    -moz-border-radius-topright: 50px;
    -moz-border-radius-bottomright: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.sglewhereweworksec:nth-child(even) .leftpart {
    order: 2;
    padding: 0 0 0 15px;
}

.sglewhereweworksec:nth-child(even) .rightpart {
    order: 1;
    padding: 0 15px 0 0;
}

.sglewhereweworksec:nth-child(even):before {
    right: 0;
    -webkit-border-top-left-radius: 50px;
    -webkit-border-bottom-left-radius: 50px;
    -moz-border-radius-topleft: 50px;
    -moz-border-radius-bottomleft: 50px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.innerpgsec-accrdion .accordion-item .leadershipteamsec:first-child {
    background: #00AFAA;
}

.leadershipteamsec {
    width: 100%;
    overflow: hidden;
    padding: 85px 0;
}

.leadershipteamsec:first-child h2 {
    color: var(--white);
}

.leadershipteamsec h2 {
    text-align: center;
    text-transform: capitalize;
    font-size: 44px;
    line-height: normal;
    font-weight: 600;
    color: var(--black);
}

.teamwidthsec {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.sgleteammembersec {
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
    margin-top: 30px;
}

.teamwhitebg {
    width: 100%;
    height: auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);

}

.teamwhteshadowbg {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    padding: 10px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
}

.teamwhitebg h4 {
    font-size: 24px;
    text-align: center;
    margin-top: 20px;
}

.sgleteammembersec h3 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: normal;
    color: #040000;
    text-align: center;
}

/*============ who-we-are page start ============*/

.teamcontsec {
    padding-bottom: 85px;
}

.teamcontsec h2 {
    text-align: center;
}

.team-slider-item {
    padding: 40px 30px 65px 30px;
    border-radius: 50px;
    background: #FDFFFF;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.20);
    margin-top: 150px;
    margin-bottom: 80px;
    transition: all 0.7s ease;
}

.teamcontsec .team-slider-item:hover {
    background-color: var(--dark-cyan);
    transition: all 0.7s ease;
}

.team-slider-item:hover hr,
.team-slider-item:hover h4,
.team-slider-item:hover p {
    color: var(--white);
}

.team-slider-img {
    width: 180px;
    height: 180px;
    border: 12px solid var(--white);
    border-radius: 50%;
    margin-top: -150px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.20);

}

.team-slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-slider-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #797986;
    margin-bottom: 40px;
}

.team-slider-text .team-info h4 {
    font-size: 25px;
    margin-top: 20px;
    text-transform: uppercase;
}

.team-slider-text .team-info p {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 10px;
}

.team-slider-btm .owl-nav {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.20);
    width: 100px;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden !important;
    background-color: var(--white) !important;
}

.team-slider-btm .owl-nav button {
    width: 50px;
    height: 50px;
    font-size: 20px !important;
    color: var(--black) !important;
    transition: all 0.7s ease;
}

.team-slider-btm .owl-nav button:hover {
    transition: all 0.7s ease;
    background-color: var(--black);
}

.team-slider-btm .owl-nav button:hover i {
    color: var(--white);
}

.team-slider-btm .owl-nav button.owl-prev {
    border-radius: 6px 0 0 6px;
    background: transparent !important;
}

.team-slider-btm .owl-nav button.owl-next {
    border-radius: 0 6px 6px 0;
    background: transparent !important;
}

.boardcontSec {
    padding: 85px 0;
    text-align: center;
    background-color: var(--dark-cyan);
}

.boardcontSec h2 {
    color: var(--white);
}

.boardcontSec .team-slider-item,
.internationcontSec .team-slider-item {
    margin-top: 70px;
}

.boardcontSec .board-slider .board-slider-item:hover {
    background-color: var(--white) !important;
}

.boardcontSec .board-slider .team-slider-item:hover h4 {
    color: var(--black);
}

.boardcontSec .team-slider-text .team-info h4,
.internationcontSec .team-slider-text .team-info h4,
.boardcontSec .team-slider-text .team-info p,
.internationcontSec .team-slider-text .team-info p {
    margin-top: 0;
    margin-bottom: 25px;
}

.boardcontSec .team-slider-text .team-slider-text p,
.boardcontSec .board-slider .team-slider-item:hover p {
    color: #797986;
}

.boardcontSec .team-slider-text .team-info p,
.boardcontSec .board-slider .team-slider-item:hover .team-info p,
.internationcontSec .team-slider-text .team-info p {
    font-size: 22px;
    color: var(--dark-cyan);
    font-weight: 500;
}

.internationcontSec {
    text-align: center;
    padding: 85px 0;
    background-color: #F6F6F6;
    margin-bottom: 85px;
}

.internationcontSec .board-slider .team-slider-item:hover .team-info p {
    color: var(--white);
}

/*============ who-we-are page End ============*/
/*============ Leadership team page Start ============*/
.innerpgsec-accrdion {
    padding-bottom: 85px;
}

.innerpgsec-accrdion .accordion-item .accordion-header {
    border-top: 2px solid #D9D9D9;
}

.innerpgsec-accrdion .accordion-item:first-child .accordion-header {
    border-top: 0;
}

.innerpgsec-accrdion .accordion-item:last-child .accordion-header {
    border-bottom: 2px solid #D9D9D9;
}

.innerpgsec-accrdion .accordion-button h2 {
    color: var(--orange);
}

.innerpgsec-accrdion .accordion-body {
    padding: 0;
}

.accordion-button,
.accordion-item {
    background-color: transparent;
    border: 0;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
}

.innerpgsec-accrdion .accordion-button::after {
    background-image: url('../assets/images/plus-icon.png');
}

.accordion-button:not(.collapsed)::after {
    background-image: url('../assets/images/minus-icon.png');
}

.accordion-item:first-of-type .accordion-button {
    outline: none;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

/*============ Leadership team page End ============*/

.fstpartnerdonorsec {
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
}

.fstpartnerdonorsec .row {
    justify-content: center;
}

.fstpartnerdonorsec h2 {
    text-transform: uppercase;
    color: #252527;
    font-size: 44px;
    line-height: normal;
    font-weight: 600;
    text-align: center;
    padding: 0 0 30px 0;
}

.sglepartnersec {
    flex: 0 0 33.3333333%;
    max-width: 33.3333333%;
    margin-top: 30px;
}

.partnerthumb {
    width: 100%;
    height: 217px;
    overflow: hidden;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.sglepartnersec .partnerthumb img {
    width: auto;
    margin: 0 auto;
    display: block;
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sglepartnersec p {
    text-align: center;
    font-size: 18px;
    line-height: normal;
    color: #252527;
    font-weight: normal;
    padding: 15px 0 0 0;
}

.sglepartnersec p a {
    font-size: 18px;
    color: #252527;
    font-weight: normal;
    text-decoration: underline;
}

.page-template-template-partners-donors .innerpgsec .innerpg-para {
    margin-bottom: 0;
}

.sndpartnerdonorsec {
    background: #00AFAA;
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
}

.sndpartnerdonorsec h2 {
    text-transform: uppercase;
    color: #fff;
    font-size: 44px;
    line-height: normal;
    font-weight: 600;
    text-align: center;
    padding: 0 0 50px 0;
}

.grouppartnerimg {
    text-align: center;
}

.grouppartnerimg img {
    width: auto;
    border: 30px solid #fff;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}

.sndpartnerdonorsec .row {
    justify-content: center;
}

.sglelocalpartnersec {
    flex: 0 0 33.3333333%;
    max-width: 33.3333333%;
    margin-top: 30px;
}

.localpartnerbgcolor {
    background: #fff;
    padding: 25px 20px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sglelocalpartnersec p {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    line-height: normal;
    color: #000;
}

.sglelocalpartnersec p a {
    color: #000;
    font-size: 18px;
    text-decoration: underline;
    font-weight: bold;
}

.sglelocalpartnersec p a:hover {
    text-decoration: none;
}

.thrdpartnerdonorsec {
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
}

.thrdpartnerdonorsec .row {
    justify-content: center;
}

.thrdpartnerdonorsec h2 {
    text-transform: capitalize;
    color: #252527;
    font-size: 44px;
    line-height: normal;
    font-weight: 600;
    text-align: center;
    padding: 0 0 30px 0;
}

.recentnewssec {
    width: 100%;
    overflow: hidden;
    padding: 0 0 70px 0;
}

.sglerecentnewssec {
    flex: 0 0 33.3333333%;
    max-width: 33.3333333%;
    margin-top: 30px;
}

.recentnewsthumb {
    width: 100%;
    height: 296px;
    overflow: hidden;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}

.recentnewsthumb img {
    width: 100%;
    height: 100% !important;
    ;
    object-fit: cover;
    max-width: 100% !important;
}

.sglerecentnewssec .newsdatesec {
    color: #DB4E3A;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    padding: 20px 0;
}

.sglerecentnewssec h2 {
    color: #252527;
    font-weight: 600;
    font-size: 28px;
    line-height: normal;
    padding: 0 0 20px 0;
}

.sglerecentnewssec h3 {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    padding: 0 0 18px 0;
}

.sglerecentnewssec p {
    color: #9A9090;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

a.readmorebut {
    background: #00AFAA;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    display: inline-block;
    padding: 0 20px;
    line-height: 50px;
    text-transform: capitalize;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-top: 22px;
}

/* pagination css */
nav.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

nav.pagination .page-numbers {
    border: 1px solid var(--dark-cyan);
    margin: 0 11px;
    color: var(--black);
    height: 40px;
    width: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav.pagination .page-numbers.current {
    color: #fff;
    background-color: var(--dark-cyan);
}

nav.pagination .prev.page-numbers {
    margin-left: 0;
    font-size: 0;
    background: url('../assets/images/arrow-left.png') no-repeat center center;
}

nav.pagination .next.page-numbers {
    margin-right: 0;
    font-size: 0;
    background: url('../assets/images/arrow-right.png') no-repeat center center;
}

/* single page css start */
.innerpgcontarea {
    padding: 85px 0;
}

.plaincontarea h1,
.plaincontarea h2,
.plaincontarea h3 {
    font-size: 28px;
    margin: 25px 0;
}

.plaincontarea h4,
.plaincontarea h5,
.plaincontarea h6 {
    font-size: 20px;
    margin: 25px 0;
}

.plaincontarea p,
.wp-caption-text {
    font-size: 16px;
    font-weight: 400;
    color: #797986;
    margin: 10px 0;
}

.wp-caption-text {
    font-style: italic;
}

figure {
    width: 100% !important;
}

.plaincontarea img {
    margin-bottom: 20px;
    width: auto;
    height: inherit;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.widget h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 25px;
}

.rpwwt-widget ul li {
    margin-bottom: 10px !important;
}

.rpwwt-post-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--nav-text);
}

.rpwwt-post-date {
    font-size: 17px;
    font-weight: 500;
    color: var(--orange);
}

.recent-posts-widget-with-thumbnails .rpwwt-widget nav ul li img {
    height: 100px !important;
    object-fit: cover;
}

/* single page css end */
.contactalignpad {
    width: 100%;
    overflow: hidden;
    padding: 68px 0;
}

.contactlftrytsec {
    display: flex;
    flex-wrap: wrap;
}

.lftcontactpart {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 40px;
    background: #110101;
}

.toppart {
    width: 100%;
    overflow: hidden;
}

.emailfieldsec {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
}

.emailfieldsec img {
    float: left;
    margin: 0 25px 0 0;
    width: auto;
    max-width: 100%;
}

.emailfieldsec a {
    color: #fff;
    text-decoration: underline;
}

.emailfieldsec a:hover {
    text-decoration: none;
}

.socialiconsec {
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
}

.socialiconsec ul li {
    float: left;
    margin: 0 0 0 40px;
}

.socialiconsec ul li:first-child {
    margin: 0;
}

.botpart {
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
}

.contactinfosec {
    margin-top: 15px;
    width: 100%;
    overflow: hidden;
}

.contactinfosec h3 {
    font-size: 22px;
    font-weight: bold;
    line-height: normal;
    color: #fff;
    padding: 0 0 20px 0;
}

.contactinfosec ul li {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin-top: 15px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contactinfosec ul li img {
    float: left;
    margin: 0 20px 0 0;
    width: auto;
}

.contactinfosec ul li a {
    color: #fff;
}

.contactinfosec ul li:first-child {
    margin: 0;
}

.rytcontactpart {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 40px;
    background: #00AFAA;
}

.rytcontactpart h2 {
    text-align: center;
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
}

.contactformsec {
    width: 100%;
    overflow: hidden;
}

.contactformwidth {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.inputfield {
    border-radius: 12px;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    width: 100%;
    height: 60px;
    background: #fff;
    border: 0;
    outline: 0;
    color: #9A9999;
    font-size: 16px;
    font-weight: normal;
    font-family: 'Rubik', sans-serif;
    padding: 0 15px;
}

.textareafield {
    border-radius: 12px;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    width: 100%;
    height: 120px;
    background: #fff;
    border: 0;
    outline: 0;
    color: #9A9999;
    font-size: 16px;
    font-weight: normal;
    line-height: normal;
    font-family: 'Rubik', sans-serif;
    padding: 10px 15px;
}

.submitbut {
    width: 100%;
    height: 54px;
    background: #DB4E3A;
    border-radius: 12px;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border: 0;
    outline: 0;
    text-transform: capitalize;
}

.donateleftpart p {
    color: #797986;
    font-size: 18px;
    font-weight: normal;
    line-height: 27px;
    padding: 0 0 20px 0;
}

.donateleftpart a.donatebut {
    background: #DB4E3A;
    display: inline-block;
    padding: 0 50px;
    border-radius: 10px;
    color: #fff;
    font-size: 21px;
    font-weight: bold;
    line-height: 64px;
    text-transform: capitalize;
    margin-top: 20px;
}

.donateleftpart h2 {
    font-size: 50px;
    line-height: normal;
    color: #00AFAA;
    font-weight: 600;
    margin-top: 35px;
}

.asp_product_buy_btn {
    background: #00AFAA !important;
    display: inline-block !important;
    padding: 0 50px !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 21px !important;
    font-weight: bold !important;
    line-height: 64px !important;
    text-transform: capitalize !important;
    margin-top: 20px !important;
    height: 64px !important;
    text-shadow: none !important;
    border: 1px solid var(--dark-cyan) !important;

}

.asp_product_buy_btn_container .asp_product_buy_btn.blue:hover {
    background: transparent !important;
    transition: all 0.5s ease-in-out;
    box-shadow: none !important;
}

.asp_product_buy_btn_container .asp_product_buy_btn.blue span {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.asp_product_buy_btn_container .asp_product_buy_btn.blue:hover span {
    color: var(--dark-cyan) !important;
}

.custompager {
    width: 100%;
    overflow: hidden;
    margin: 50px 0 0 0;
    text-align: center;
}

.custompager a {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #D03338;
    margin: 0 4px;
    line-height: normal;
    color: #000;
}

.custompager a:hover {
    background: #D03338;
    color: #fff;
}

.custompager span.current {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #D03338;
    margin: 0 4px;
    line-height: normal;
    color: #fff;
    background: #D03338;
}

.searchbararea {
    width: 100%;
    overflow: hidden;
}

.searchbarsec {
    max-width: 50%;
    margin: 0 auto;
    /*overflow:hidden;*/
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.searchbarsec input.search-submit {
    padding: 0;
}

.searchfieldsec {
    float: left;
    height: 55px;
    width: 80%;
}

.search-field {
    width: 100%;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    line-height: 55px;
    color: #000;
    font-size: 15px;
    font-weight: normal;
    border: 0;
    outline: 0;
}

.searchbutsec {
    float: right;
    width: 20%;
}

.search-submit {
    width: 100%;
    height: 51px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    background: #DB4E3A;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    outline: 0;
}

.search-results .recentnewssec {
    padding-top: 70px;
}