*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    min-height: 100%;
    font-size: 10px;
}
ul {
    list-style: none;
}
img {
    display: block;
}
button {
    outline: none;
    cursor: pointer;
}
body {
    font-size: 1.6rem;
    line-height: 1.6;
    font-family: "dmsans-regular";
    color: #000;
    overflow-x: hidden;
}
body.open {
    height: 100vh;
    overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "dmsans-bold";
}
h1 {
    font-size: clamp(3.5rem, 3.5rem + 1vw, 5rem);
    line-height: 1.1;
}
h2 {
    font-size: clamp(3rem, 6vw, 4.8rem);
    line-height: 1.3;
}
h3 {
    font-size: clamp(1.8rem, 1.6rem + 1vw, 2.4rem);
    line-height: 1.5;
}
h4 {
    font-size: clamp(1.4rem, 1.6rem + 1vw, 1.8rem);
    line-height: 1.5;
}
a {
    text-decoration: none;
    color: inherit;
}
p {
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.8);
}
input,
textarea {
    font-family: inherit;
}
.btn {
    padding: 1.4rem 1.8rem;
    background: #fff;
    border-radius: 3rem;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0);
    display: inline-flex;
    gap: 1.5rem;
    transition: all ease 0.5s;
    cursor: pointer;
    font-size: 1.6rem;
    min-width: 18rem;
    justify-content: center;
}
.btn--green {
    background-color: #37876d;
    color: #fff;
}
.btn--green:hover {
    background-color: hsl(160.5, 42.1052631579%, 27.2549019608%);
}
.input__wrap {
    margin-bottom: 2rem;
    position: relative;
}
.input__wrap label {
    font-size: 1.4rem;
    display: block;
    position: absolute;
    top: -1.2rem;
    left: 1.5rem;
    background: #fff;
    padding: 0 0.4rem;
    z-index: 1;
}
.input__wrap input,
.input__wrap textarea {
    width: 100%;
    padding: 1.4rem 1.8rem;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
}
.input__wrap input:focus,
.input__wrap textarea:focus {
    border: 1px solid #37876d;
}
.input__wrap textarea {
    height: 36rem;
    resize: none;
    overflow: auto;
}
@media screen and (max-width: 45rem) {
    .input__wrap textarea {
        height: 20rem;
    }
}
.section__header small {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8dcb8c;
    letter-spacing: 1px;
}
.section__header h2 {
    margin-bottom: 3rem;
    font-weight: 400;
    font-family: "dmsans-regular";
}
.footer {
    padding: 15rem 0 0rem;
    background: #43a98b;
}
@media screen and (max-width: 45rem) {
    .footer {
        padding: 5rem 0 2rem;
    }
}
.footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 45rem) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}
.footer__links {
    justify-self: flex-end;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}
@media screen and (max-width: 80rem) {
    .footer__links {
        gap: 0rem;
    }
}
@media screen and (max-width: 45rem) {
    .footer__links {
        grid-template-columns: 1fr;
        justify-self: flex-start;
    }
}
@media screen and (max-width: 45rem) {
    .footer__links .links {
        margin-bottom: 5rem;
    }
}
.footer__links .links h4 {
    margin-bottom: 5rem;
    font-family: "dmsans-bold";
    font-weight: 400;
    font-size: 2.2rem;
}
@media screen and (max-width: 45rem) {
    .footer__links .links h4 {
        margin-bottom: 2rem;
    }
}
.footer__links .links li:not(:last-child) {
    margin-bottom: 1.5rem;
}
.footer__about img {
    height: auto;
    width: 45rem;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 4rem;
}
.footer__about p {
    max-width: 45rem;
}
@media screen and (max-width: 80rem) {
    .footer__about p {
        margin-bottom: 5rem;
    }
}
@media screen and (max-width: 80rem) {
    .footer img {
        height: auto;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.copyright__wrapper {
    padding: 2rem 0 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    font-size: 1.4rem;
}
@media screen and (max-width: 45rem) {
    .copyright__wrapper {
        flex-direction: column;
    }
}
@media screen and (max-width: 45rem) {
    .copyright__wrapper p {
        margin-bottom: 0.5rem;
    }
}
.header {
    position: fixed;
    width: 100%;
    padding: 2rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 50;
    isolation: isolate;
    transition: 0.5s ease;
}
@media screen and (max-width: 1025px) {
    .header {
        padding: 2rem 0;
    }
}
.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__branding img {
    width: 18rem;
    height: auto;
    transition: all 0.5s ease;
}
.header__nav ul {
    display: flex;
    gap: 3rem;
}
.header__nav ul li a {
    font-size: 1.6rem;
    color: #8dcb8c;
}
.header__nav ul li a:hover {
    text-decoration: underline;
    color: #37876d;
}
@media screen and (max-width: 1025px) {
    .header .btn {
        display: none;
    }
	
	.header__branding img {
		width:12rem;
	}

}


.header.scrolled .header__branding img {
    width: 14rem;
}
.header.scrolled {
    padding: 0.5rem 0;
}
.header.scrolled .btn {
    padding: 0.8rem;
}
.header.scrolled .toggle-menu {
    top: 2.5rem;
}
.header.scrolled .header__nav.open {
    top: 6.3rem;
}
.toggle-menu {
    display: none;
}
@media screen and (max-width:1025px) {
    .toggle-menu {
        display: block;
        position: absolute;
        top: 3.2rem;
        right: 3rem;
        transition: 0.5s ease;
    }
    .toggle-menu span {
        width: 3.2rem;
        height: 0.2rem;
        background: #fff;
        display: block;
        margin-bottom: 0.9rem;
        transition: 0.5s ease;
    }
}
.toggle-menu.open span:nth-child(1) {
    transform: translate(3px, 11px) rotate(45deg);
}
.toggle-menu.open span:nth-child(2) {
    opacity: 0;
}
.toggle-menu.open span:nth-child(3) {
    transform: translate(3px, -11px) rotate(-45deg);
}
.header__nav.open {
    height: 100dvh;
}
@media screen and (max-width: 1025px) {
    .header__nav {
        position: fixed;
        top: 7.6rem;
        left: 0;
        width: 100%;
        height: 0;
        background: #fff;
        z-index: -1;
        overflow: hidden;
        transition: 0.5s ease;
    }
    .header__nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 6rem;
		gap: 2.5rem
    }
    .header__nav ul li a {
        font-size: 2rem;
    }
	
	
}
.mobile-only {
    display: none;
}
@media screen and (max-width: 1025px) {
    .mobile-only {
        display: block;
        text-align: center;
        font-size: 2rem;
        color: #37876d;
        background: #37876d;
        margin: 2rem auto;
        width: 20rem;
        padding: 1.2rem 1.5rem;
        border-radius: 4rem;
        color: #fff;
		margin-left:20px;
		margin-right: auto
    }
}
.header-action span {
    transition: 0.5s ease;
    transform: translatex(15px);
}
.header-action svg {
    transform: translatex(-10px);
    opacity: 0;
    transition: 0.5s ease;
    display: inline-block;
}
.header-action:hover svg {
    opacity: 1;
    transform: translatex(0px);
}
.header-action:hover span {
    transform: translatex(0px);
}
.support {
    padding: 10rem 0;
    background: #8dcb8c;
}
@media screen and (max-width: 45rem) {
    .support {
        padding: 5rem 0;
    }
}
.support h2 {
    font-family: "dmsans-regular";
    font-weight: 400;
    max-width: 110rem;
    margin-bottom: 1rem;
    text-align: center;
    margin-inline: auto;
}
@media screen and (max-width: 45rem) {
    .support h2 {
        margin-bottom: 2rem;
    }
}
.support .flex {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    text-align: center;
}
@media screen and (max-width: 45rem) {
    .support .flex {
        flex-direction: column;
        gap: 2rem;
    }
}
.support .flex p {
    max-width: 60rem;
    margin-bottom: 0;
    margin-top: 2rem;
}
.page__banner {
    position: relative;
    isolation: isolate;
    min-height: 50vh;
}
@media screen and (max-width: 45rem) {
    .page__banner {
        min-height: 30vh;
    }
}
.page__banner img {
    height: 50vh;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
}
@media screen and (max-width: 80rem) {
    .page__banner img {
        position: static;
    }
}
@media screen and (max-width: 45rem) {
    .page__banner img {
        height: 30vh;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.page__banner__content {
    position: absolute;
    left: 50%;
    bottom: 18%;
    transform: translate(-50%, -50%);
    z-index: 50;
}
@media screen and (max-width: 45rem) {
    .page__banner__content {
        width: 90%;
        bottom: 2%;
    }
}
.page__banner p {
    margin-bottom: 0;
    text-transform: uppercase;
    text-align: right;
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    color: #fff;
    line-height: 0;
}
@media screen and (max-width: 80rem) {
    .page__banner p {
        line-height: 1;
    }
}
@media screen and (max-width: 45rem) {
    .page__banner p {
        text-align: left;
    }
}
.page__banner h1 {
    font-size: clamp(4rem, 6vw, 12rem);
    text-transform: uppercase;
    color: #8dcb8c;
    line-height: 1;
}
.page__banner h1 span {
    color: #47b1c9;
}
.banner {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
}
@media screen and (max-width: 45rem) {
    .banner {
        flex-direction: column;
        min-height: 20dvh;
    }
}
.banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    background: linear-gradient(to top, black, rgba(0, 0, 0, 0));
    z-index: -1;
}
@media screen and (max-width: 45rem) {
    .banner::after {
        display: none;
    }
}
@media screen and (max-width: 45rem) {
    .banner > picture {
        width: 100%;
    }
}
.banner > picture img {
    height: 100dvh;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
@media screen and (max-width: 45rem) {
    .banner > picture img {
        position: relative;
        height: auto;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.banner__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 144rem;
    gap: 4rem;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 80rem) {
    .banner__content {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 45rem) {
    .banner__content {
        gap: 0;
    }
}
@media screen and (max-width: 80rem) {
    .banner__header {
        padding: 1rem;
        margin-top: 5rem;
    }
}
.banner__header h1 {
    font-size: clamp(6rem, 6vw, 12rem);
    text-transform: uppercase;
    line-height: 1;
    color: #8dcb8c;
}
@media screen and (max-width: 45rem) {
    .banner__header h1 {
        margin-bottom: 1rem;
    }
}
.banner__header p {
    font-size: clamp(3rem, 6vw, 4.8rem);
    color: #47b1c9;
    margin-bottom: 0;
    line-height: 1;
}
.banner__body {
    justify-self: flex-end;
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 30rem;
}
@media screen and (max-width: 80rem) {
    .banner__body {
        padding: 1rem;
    }
}
.banner__body p {
    font-size: 1.8rem;
    color: #fff;
}
@media screen and (max-width: 45rem) {
    .banner__body p {
        color: #000;
        margin-bottom: 5rem;
    }
}
.banner__links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}
@media screen and (max-width: 80rem) {
    .banner__links {
        justify-content: flex-start;
    }
}
@media screen and (max-width: 45rem) {
    .banner__links {
        flex-direction: column;
        margin: 1.5rem 3rem;
    }
}
.banner__links a {
    padding: 2rem 1rem;
    background: #19523f;
    border-radius: 2rem;
    transition: 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-basis: 50%;
    gap: 2rem;
    box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.2);
}
.banner__links a:hover {
    background: hsl(160, 53.2710280374%, 10.9803921569%);
}
@media screen and (max-width: 45rem) {
    .banner__links a {
        width: 100%;
        justify-content: space-between;
    }
}
.banner__links a p {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 2.7rem);
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 0;
    padding-left: 2rem;
}
@media screen and (max-width: 45rem) {
    .banner__links a p {
        margin-bottom: 0;
    }
}
.banner__links a div {
    overflow: hidden;
    border-radius: 1rem;
}
.banner__links a img {
    height: 80px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.5s ease;
}
.banner__links a:hover {
    border-color: #47b1c9;
}
.banner__links a:hover p {
    color: #47b1c9;
}
.banner__links a:hover img {
    transform: scale(1.2);
}
.opportunity {
    padding: 15rem 0;
    background: #37876d;
}
@media screen and (max-width: 45rem) {
    .opportunity {
        padding: 5rem 0;
    }
}
.opportunity__header {
    max-width: 60rem;
    width: 100%;
}
.opportunity__header h2,
.opportunity__header p {
    color: #fff;
}
.opportunity__list {
    margin-top: 10rem;
    gap: 2rem;
    width: 144rem;
    display: flex;
    justify-content: space-between;
    overflow-x: hidden;
}
@media screen and (max-width: 80rem) {
    .opportunity__list {
        flex-wrap: wrap;
        flex-direction: column;
        width: 100%;
    }
}
.opportunity__listitem {
    flex: 0 0 32rem;
    height: 32rem;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 3rem;
    color: #fff;
    transition: 0.5s ease;
}
.opportunity__listitem .inner {
    position: absolute;
    z-index: 20;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.opportunity__listitem h4 {
    max-width: 27rem;
    width: 100%;
    font-size: 2rem;
}
.opportunity__listitem img {
    position: absolute;
    width: 100%;
    height: 32rem;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    transition: all 0.5s ease;
}
.opportunity__listitem p {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
    width: 72rem;
    color: #fff;
    transform: translateX(-10px);
}
@media screen and (max-width: 80rem) {
    .opportunity__listitem p {
        margin-top: 3rem;
    }
}
.opportunity__listitem a {
    text-transform: uppercase;
    padding: 1rem 3.6rem;
    background: #0399e5;
    border-radius: 50rem;
}
.opportunity__listitem:first-child {
    flex: 0 0 32rem;
    overflow: hidden;
}
.opportunity__listitem.collapse:first-child {
    flex: 0 0 0rem;
}
.opportunity__listitem {
    flex: 0 0 32rem;
    isolation: isolate;
}
.opportunity__listitem.expand {
    flex: 0 0 74rem;
    background: #000;
}
@media screen and (max-width: 80rem) {
    .opportunity__listitem.expand {
        flex: 0 0 42rem;
    }
}
@media screen and (max-width: 80rem) {
    .opportunity__listitem.expand {
        flex: 0 0 48rem;
    }
}
.opportunity__listitem.expand img {
    flex: 0 0 74rem;
    width: 74rem;
    transition: 0.5s ease;
}
@media screen and (max-width: 80rem) {
    .opportunity__listitem.expand img {
        flex: 0 0 48rem;
        width: 100%;
        height: 48rem;
    }
}
.opportunity__listitem.expand p {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}
@media screen and (max-width: 80rem) {
    .opportunity__listitem.expand p {
        width: 100%;
    }
}
.hambassador {
    padding: 15rem 0;
}
@media screen and (max-width: 45rem) {
    .hambassador {
        padding: 5rem 0;
    }
}
.hambassador__wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 4rem;
}
@media screen and (max-width: 45rem) {
    .hambassador__wrapper {
        grid-template-columns: 1fr;
    }
}
.hambassador__wrapper img {
    height: 41rem;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2rem;
}
.hambassador__body h4 {
    color: #37876d;
    font-family: "dmsans-regular";
    font-weight: 400;
    font-size: clamp(18px, 6vw, 24px);
    margin-bottom: 5rem;
    text-wrap: balance;
}
.hambassador__body p {
    margin-bottom: 3rem;
}
.hambassador__header {
    max-width: 110rem;
    width: 100%;
}
@media screen and (max-width: 45rem) {
    .hambassador__header {
        margin-top: 4rem;
    }
}
.hambassador__header .flex {
    margin-bottom: 5rem;
}
.hambassador__header .flex p {
    max-width: 60rem;
    margin-bottom: 0;
    margin-top: 2rem;
}
@media screen and (max-width: 45rem) {
    .hambassador__header .flex p {
        margin-top: 0;
    }
}
.about {
    background: #37876d;
    padding: 10rem 0;
}
@media screen and (max-width: 45rem) {
    .about {
        padding: 5rem 0;
    }
}
.about__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    max-width: 130rem;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 45rem) {
    .about__wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.about__wrapper img {
    height: 350px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2rem;
}
.about__wrapper .body {
    max-width: 70rem;
    width: 100%;
    align-self: center;
}
.about__wrapper .body p {
    color: #fff;
    margin-bottom: 3rem;
}
.history {
    padding: 10rem 0;
}
@media screen and (max-width: 45rem) {
    .history {
        padding: 5rem 0;
    }
}
.history h2 {
    text-align: center;
    font-family: "dmsans-regular";
    font-weight: 400;
    margin-bottom: 5rem;
}
.history__wrapper {
    max-width: 130rem;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
}
@media screen and (max-width: 45rem) {
    .history__wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5rem;
    }
}
.history__wrapper .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    gap: 2rem;
}
@media screen and (max-width: 45rem) {
    .history__wrapper .grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
.history__wrapper .grid img {
    height: 20rem;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 45rem) {
    .history__wrapper .grid img {
        height: 25rem;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.history__wrapper .grid img:nth-child(1) {
    grid-column: 1/-1;
}
.history .body {
    align-self: center;
    max-width: 70rem;
    width: 100%;
}
.history .body p {
    margin-bottom: 3rem;
}
.history .body h4 {
    margin-bottom: 5rem;
}
@media screen and (max-width: 45rem) {
    .history .body h4 {
        margin-bottom: 2rem;
    }
}
.contact {
    position: relative;
    background: #37876d;
}
.contact__wrapper {
    padding: 2.5rem 0 4rem;
    overflow: clip;
}
@media screen and (max-width: 45rem) {
    .contact__wrapper {
        padding: 2.5rem 0 10rem;
    }
}
.contact__body {
    max-width: 60rem;
    width: 100%;
    margin-top: 5rem;
    color: #fff;
}
.contact__body h2 {
    margin-bottom: 2rem;
    line-height: 1.2;
}
.contact__body p {
    color: #fff;
    margin-bottom: 4rem;
}
.contact__form {
    position: absolute;
    right: calc((100% - 144rem) / 2);
    top: -4rem;
    padding: 4rem 3rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    max-width: 65rem;
    width: 100%;
    border-radius: 2rem;
    box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.03);
}
.contact__form > * {
    flex-shrink: 0;
}
.contact__form h3 {
    margin-bottom: 3rem;
}
@media screen and (max-width: 1450px) {
    .contact__form {
        max-width: 50rem;
        right: 0;
    }
}
@media screen and (max-width: 1120px) {
    .contact__form {
        max-width: 45rem;
    }
}
@media screen and (max-width: 1000px) {
    .contact__form {
        position: static;
        padding: 2rem 1.5rem;
    }
}
@media screen and (max-width: 45rem) {
    .contact__form {
        transform: translateY(-7rem);
    }
}
.contact__info {
    margin-bottom: 3rem;
}
.contact > picture img {
    height: 55rem;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 45rem) {
    .contact > picture img {
        -o-object-position: -26rem center;
        object-position: -26rem center;
    }
}
.ministries {
    padding-top: 10rem;
    position: relative;
}
.ministries h2 {
    text-align: center;
    font-family: "dmsans-regular";
    font-weight: 400;
    max-width: 120rem;
    margin: 0 auto;
    color: #37876d;
}
.ministries__slider__image {
    position: relative;
}
@media screen and (max-width: 45rem) {
    .ministries__slider__image {
        height: 36rem;
    }
}
.ministries__slider__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60%;
    min-height: 55rem;
    z-index: 50;
    display: block;
    background-image: linear-gradient(to right, #fff 20%, rgba(255, 255, 255, 0.03));
}
@media screen and (max-width: 45rem) {
    .ministries__slider__image::after {
        display: none;
    }
}
.ministries__slider {
    margin-top: 10rem;
}
.ministries__slider__item .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 45rem) {
    .ministries__slider__item .grid {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 45rem) {
    .ministries__slider__item picture {
        display: block;
        height: 39rem;
    }
}
.ministries__slider__item img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
}
@media screen and (max-width: 45rem) {
    .ministries__slider__item img {
        height: 126%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.ministries__slider__body {
    align-self: center;
    justify-self: flex-end;
    max-width: 70rem;
    padding-right: 10rem;
}
@media screen and (max-width: 45rem) {
    .ministries__slider__body {
        padding-right: 0;
        padding: 1rem;
    }
}
.ministries__slider__body h3 {
    margin-bottom: 4rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: "dmsans-regular";
    font-weight: 400;
    line-height: 1.2;
}
.page__ambassador {
    padding: 10rem 0;
}
@media screen and (max-width: 45rem) {
    .page__ambassador {
        padding: 5rem 0;
    }
}
.page__ambassador h2 {
    font-family: "dmsans-regular";
    font-weight: 400;
    margin-bottom: 5rem;
    color: #37876d;
}
.page__ambassador__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    gap: 10rem;
}
@media screen and (max-width: 45rem) {
    .page__ambassador__wrapper {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}
.page__ambassador__body h3,
.page__ambassador__link h3 {
    color: #37876d;
    font-family: "dmsans-regular";
    font-weight: 400;
    margin-bottom: 6rem;
}
@media screen and (max-width: 45rem) {
    .page__ambassador__body h3,
    .page__ambassador__link h3 {
        margin-bottom: 3rem;
    }
}
.page__ambassador__body {
    max-width: 55rem;
}
.page__ambassador__link .grid {
    display: grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
}
@media screen and (max-width: 45rem) {
    .page__ambassador__link .grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}
.page__ambassador__link .grid a {
    position: relative;
    display: flex;
    align-items: flex-end;
}
@media screen and (max-width: 45rem) {
    .page__ambassador__link .grid a {
        margin-bottom: 3rem;
    }
}
.page__ambassador__link .grid a span {
    position: absolute;
    bottom: -1rem;
    left: 2rem;
}
.error {
    padding-bottom: 5rem;
}
.error__wrapper {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.error__wrapper h1 {
    font-size: clamp(6rem, 4rem + 7vw, 15rem);
    margin-bottom: 3rem;
}
.error__wrapper p {
    font-size: 2rem;
    margin-bottom: 2rem;
}
.container {
    max-width: 144rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.6rem;
}
.container.wider {
    max-width: 160rem;
}
.mb-1 {
    margin-bottom: 1rem;
}
.mt-1 {
    margin-top: 1rem;
}
.pb-1 {
    padding-bottom: 1rem;
}
.mb-2 {
    margin-bottom: 2rem;
}
.mt-2 {
    margin-top: 2rem;
}
.pb-2 {
    padding-bottom: 2rem;
}
.mb-3 {
    margin-bottom: 3rem;
}
.mt-3 {
    margin-top: 3rem;
}
.pb-3 {
    padding-bottom: 3rem;
}
.mb-4 {
    margin-bottom: 4rem;
}
.mt-4 {
    margin-top: 4rem;
}
.pb-4 {
    padding-bottom: 4rem;
}
.mb-5 {
    margin-bottom: 5rem;
}
.mt-5 {
    margin-top: 5rem;
}
.pb-5 {
    padding-bottom: 5rem;
}
.mb-6 {
    margin-bottom: 6rem;
}
.mt-6 {
    margin-top: 6rem;
}
.pb-6 {
    padding-bottom: 6rem;
}
.mb-7 {
    margin-bottom: 7rem;
}
.mt-7 {
    margin-top: 7rem;
}
.pb-7 {
    padding-bottom: 7rem;
}
.mb-8 {
    margin-bottom: 8rem;
}
.mt-8 {
    margin-top: 8rem;
}
.pb-8 {
    padding-bottom: 8rem;
}
.mb-9 {
    margin-bottom: 9rem;
}
.mt-9 {
    margin-top: 9rem;
}
.pb-9 {
    padding-bottom: 9rem;
}
.mb-10 {
    margin-bottom: 10rem;
}
.mt-10 {
    margin-top: 10rem;
}
.pb-10 {
    padding-bottom: 10rem;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.text-justify {
    text-align: justify;
}
.bg-accent {
    background-color: hsl(353, 77%, 37%);
}
.text-accent {
    color: hsl(353, 77%, 37%);
}
.border-accent {
    border-color: hsl(353, 77%, 37%);
}
.bg-light {
    background-color: #fff;
}
.text-light {
    color: #fff;
}
.border-light {
    border-color: #fff;
}
.bg-gray {
    background-color: #f7f8fa;
}
.text-gray {
    color: #f7f8fa;
}
.border-gray {
    border-color: #f7f8fa;
}
.bg-dark {
    background-color: #000;
}
.text-dark {
    color: #000;
}
.border-dark {
    border-color: #000;
}
.error {
    padding-bottom: 5rem;
}
.error__wrapper {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.error__wrapper h1 {
    font-size: clamp(6rem, 4rem + 7vw, 15rem);
    margin-bottom: 3rem;
}
.error__wrapper p {
    font-size: 2rem;
    margin-bottom: 2rem;
}
.stories {
    padding: 15rem 0;
}
@media screen and (max-width: 80rem) {
    .stories {
        padding: 8rem 0;
    }
}
@media screen and (max-width: 45rem) {
    .stories {
        padding: 5rem 0;
    }
}
.stories__header h2 {
    font-family: "dmsans-regular";
    font-weight: 400;
    color: #37876d;
    max-width: 110rem;
    margin-bottom: 2rem;
}
.stories__header p {
    max-width: 70rem;
}
.stories__grid {
    margin-top: 10rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
}
@media screen and (max-width: 80rem) {
    .stories__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }
}
@media screen and (max-width: 45rem) {
    .stories__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
}
.stories__card {
    border: 1px solid rgba(0, 0, 0, 0);
    transition: 0.5s ease;
    border-radius: 1rem;
    box-shadow: -3px 3px 5px rgba(0, 0, 0, 0);
    padding-bottom: 2rem;
    overflow: hidden;
}
.stories__card__image {
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 1rem;
}
.stories__card__image img {
    height: auto;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.5s ease;
}
.stories__card__body {
    padding: 1rem;
}
.stories__card__body h4 {
    margin-bottom: 1rem;
}
.stories__card__body p {
    margin-bottom: 2rem;
}
.stories__card:hover {
    border: 1px solid #e9e9e9;
    box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.06);
}
.stories__card:hover img {
    transform: scale(1.2);
}
.modal__video.show {
    display: block;
}
.modal__video {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100%;
    z-index: 99999;
    display: none;
}
.modal__video .backdrop {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.modal__video .modal__main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 65rem;
    width: 100%;
    height: 40rem;
    aspect-ratio: 16/9;
}
.modal__video .modal__main button {
    position: absolute;
    top: -1rem;
    right: -1rem;
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}
@media screen and (max-width: 45rem) {
    .modal__video .modal__main button {
        right: 0rem;
    }
}
.btn--outline {
    background-color: rgba(0, 0, 0, 0);
    color: #37876d;
    border-color: #37876d;
}
.btn--outline:hover {
    background-color: #37876d;
    color: #fff;
}
.tns-outer {
    padding: 0 !important;
}
.tns-outer [hidden] {
    display: none !important;
}
.tns-outer [aria-controls],
.tns-outer [data-action] {
    cursor: pointer;
}
.tns-slider {
    transition: all 0s;
}
.tns-slider > .tns-item {
    box-sizing: border-box;
}
.tns-horizontal.tns-subpixel {
    white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
    display: inline-block;
    vertical-align: top;
    white-space: normal;
}
.tns-horizontal.tns-no-subpixel:after {
    content: "";
    display: table;
    clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
    float: left;
}
.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
    margin-right: -100%;
}
.tns-no-calc {
    position: relative;
    left: 0;
}
.tns-gallery {
    position: relative;
    left: 0;
    min-height: 1px;
}
.tns-gallery > .tns-item {
    position: absolute;
    left: -100%;
    transition:
        transform 0s,
        opacity 0s;
}
.tns-gallery > .tns-slide-active {
    position: relative;
    left: auto !important;
}
.tns-gallery > .tns-moving {
    transition: all 0.25s;
}
.tns-autowidth {
    display: inline-block;
}
.tns-lazy-img {
    transition: opacity 0.6s;
    opacity: 0.6;
}
.tns-lazy-img.tns-complete {
    opacity: 1;
}
.tns-ah {
    transition: height 0s;
}
.tns-ovh {
    overflow: hidden;
}
.tns-visually-hidden {
    position: absolute;
    left: -10000em;
}
.tns-transparent {
    opacity: 0;
    visibility: hidden;
}
.tns-fadeIn {
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 0;
}
.tns-normal,
.tns-fadeOut {
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: -1;
}
.tns-vpfix {
    white-space: nowrap;
}
.tns-vpfix > div,
.tns-vpfix > li {
    display: inline-block;
}
.tns-t-subp2 {
    margin: 0 auto;
    width: 310px;
    position: relative;
    height: 10px;
    overflow: hidden;
}
.tns-t-ct {
    width: 2333.3333333%;
    width: -moz-calc(100% * 70 / 3);
    width: 2333.3333333333%;
    position: absolute;
    right: 0;
}
.tns-t-ct:after {
    content: "";
    display: table;
    clear: both;
}
.tns-t-ct > div {
    width: 1.4285714%;
    width: -moz-calc(100% / 70);
    width: 1.4285714286%;
    height: 10px;
    float: left;
}
.tns-nav {
    position: absolute;
    bottom: 4rem;
    left: calc((102% - 144rem) / 2);
    z-index: 40;
}
@media screen and (max-width: 45rem) {
    .tns-nav {
        left: 50%;
        transform: translateX(-50%);
        bottom: 1.5rem;
        width: 22rem;
    }
}
.tns-nav button {
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    border: none;
    margin-right: 1rem;
}
.tns-nav .tns-nav-active {
    background: #37876d;
}
.tns-controls {
    display: none;
} 

@media screen and (max-width:1025px) {
	#menu-header {
		align-items:flex-start;
			padding: 0 20px;
	}
	
	
	.menu-item-has-children ul.sub-menu {
		display:none;	
		position: static;
		background: unset;
		width: 100%;
		margin-top: 0;
		padding-top:5px;
	}
	
	.menu-item-has-children:hover  ul.sub-menu{
		display:none
	}
	
	.menu-item-has-children ul.sub-menu a {
		color: #000;
	}
	
	.sub-menu.show {
		display: block!important;
	}	
}

@media screen and (max-width: 60rem) {
    .menu-item-has-children ul.sub-menu {
		display:block;	
		position: static;
		background: unset;
		width: 100%;
		margin-top: 0;
		padding-top:5px;
	}
	.menu-item-has-children:hover  ul.sub-menu{
		display:block
	}
	.menu-item-has-children svg{
		display:none;
	}
}


/*# sourceMappingURL=main.min.css.map */
