:root {
    --primary-color: #b3955a;
    --secondary-color: #584849;
    --v2-highlight-red: #d32737;
}

/*@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Black.eot');
    src: url('../fonts/Gotham-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Black.woff2') format('woff2'),
        url('../fonts/Gotham-Black.woff') format('woff'),
        url('../fonts/Gotham-Black.ttf') format('truetype'),
        url('../fonts/Gotham-Black.svg#Gotham-Black') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}*/
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light.eot');
    src: url('../fonts/Gotham-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Gotham-Light.woff2') format('woff2'), url('../fonts/Gotham-Light.woff') format('woff'), url('../fonts/Gotham-Light.ttf') format('truetype'), url('../fonts/Gotham-Light.svg#Gotham-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.eot');
    src: url('../fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Gotham-Bold.woff2') format('woff2'), url('../fonts/Gotham-Bold.woff') format('woff'), url('../fonts/Gotham-Bold.ttf') format('truetype'), url('../fonts/Gotham-Bold.svg#Gotham-Bold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.eot');
    src: url('../fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Gotham-Medium.woff2') format('woff2'), url('../fonts/Gotham-Medium.woff') format('woff'), url('../fonts/Gotham-Medium.ttf') format('truetype'), url('../fonts/Gotham-Medium.svg#Gotham-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.eot');
    src: url('../fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'), url('../fonts/Gotham-Book.woff2') format('woff2'), url('../fonts/Gotham-Book.woff') format('woff'), url('../fonts/Gotham-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Officina Sans LT';
    src: url('../fonts/OfficinaSansLT-Book.eot');
    src: url('../fonts/OfficinaSansLT-Book.eot?#iefix') format('embedded-opentype'), url('../fonts/OfficinaSansLT-Book.woff2') format('woff2'), url('../fonts/OfficinaSansLT-Book.woff') format('woff'), url('../fonts/OfficinaSansLT-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html,
body {
    font-family: 'Gotham';
    font-weight: 300;
    font-size: 14px;
    line-height: 26px;
}

.container-xl {
    max-width: 1470px;
}

.f-16 {
    font-size: 16px;
}

.f-18 {
    font-size: 18px;
}

.f-20 {
    font-size: 20px;
}

.f-22 {
    font-size: 22px !important;
}

.f-24 {
    font-size: 24px;
}

.f-30 {
    font-size: 30px;
}

.f-28 {
    font-size: 28px;
}

.f-36 {
    font-size: 36px;
}

.f-40 {
    font-size: 40px;
}

.mt-5x {
    margin-top: 150px;
}

.mb-5x {
    margin-bottom: 150px;
}

.pt-5x {
    padding-top: 150px;
}

.w-5x {
    width: 150px;
}

img {
    max-width: 100%;
}

a,
a:hover {
    text-decoration: none;
    outline: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none !important;
}

ul {
    list-style: none;
}

.text-primar {
    color: var(--primary-color);
}

.cursor-p {
    cursor: pointer;
}

.video-banner {
    position: relative;
    height: 100vh;
    min-height: 100%;
}

.video-banner:before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
}

.video-banner video {
    width: 100%;
    height: 100%;
    background: #000;
    object-fit: cover;
}

.menu li {
    display: inline-block;
    font-weight: 500;
    position: relative;
    margin: 0 20px;
}

.menu li a {
    color: #fff;
    font-size: 16px;
    padding: 10px 0;
    display: inline-block;
}

ul li .line::before,
ul li .line::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    height: 3px;
    background: #d9272d;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: background .3s, -webkit-transform .3s;
    transition: background .3s, -webkit-transform .3s;
    transition: transform .3s, background .3s;
    transition: transform .3s, background .3s, -webkit-transform .3s;
}

ul li .line::before {
    top: 0;
}

ul li .line::after {
    bottom: 0;
}

ul li a:hover+.line::before,
ul li a:hover+.line::after {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.search-container {
    position: relative;
}

.search-btn {
    background: #d9272d;
    width: 73px;
    height: 73px;
    transition: all ease-in-out .4s;
}

.search-btn:hover {
    background: #c2191f;
}

.search-box {
    display: none;
    position: absolute;
    top: calc(100% + 25px);
    right: -40px;
    width: 80vw;
    left: auto;
    box-shadow: 1px 1px 10px 1px transparent;
}

.search-box::after {
    content: "";
    position: absolute;
    bottom: 100%;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;
    right: 66px;
}

.search-box input {
    width: 100%;
    padding: 20px;
    border: none;
    outline: none;
    border-bottom: 4px inset #55494a;
}

.search-box input:focus {
    border-bottom: 4px inset #d9272d;
}

.open-search .search-box {
    display: block;
}

.search-btn .close-icon,
.open-search .search-btn .search-icon {
    display: none;
}

.open-search .search-btn .close-icon {
    display: block;
}

.banner-content p {
    font-size: 18px;
    font-weight: 400
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 30px;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}


.welcome-container {
    background-color: #f1f1f1;
    background-image: url(../img/img1_new2.jpg), url(../img/yellow-shape.png), url(../img/yellow-shape-2.png);
    background-position: center right 50vw, right top -470px, right -20px bottom -150px;
    background-repeat: no-repeat;
    min-height: 100vh;
    background-size: cover, auto, auto;
}

.heading-underline {
    position: relative;
    font-size: 48px;
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-block;
}

.heading-underline:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -20px;
    background: #D9272D;
    width: 100%;
    height: 6px;
}

.underline-red {
    background: #D9272D;
    height: 6px;
}

.content-text p,
.content-text h5 {
    color: var(--secondary-color);
    font-family: 'ITC Officina Sans LT';
}

.content-text h5 {
    font-weight: 600;
    font-size: 20px;
}

.btn-red {
    background: #da272d;
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    padding: 30px 40px;
    transition: all ease-in-out .4s;
}

.btn-red:hover {
    color: #fff;
    background: #a20b10;
}

.btn-box {
    display: inline-block;
    background: #CC0001;
    text-align: center;
    padding: 30px 50px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    transition: all ease-in-out .4s;
}

.btn-box:hover {
    color: #fff;
    background: #a20b10;
}

.card-box {
    display: inline-block;
    background: #514d4e;
    text-align: center;
    padding: 30px 5px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    display: block;
    transition: all ease-in-out .4s;
}

.card-box:hover {
    color: #fff;
    background: #333;
}

.bg-gray {
    background-color: #f1f1f1 !important;
}

.bg-mute {
    background-color: #B8B8B8 !important;
}

.bg-gray-img {
    background-image: url(../img/gray-shape.png), url(../img/yellow-shape-3.png);
    background-repeat: no-repeat;
    background-position: right top 20%, bottom left;
}

.text-dim {
    color: #4C4649;
}

.heading-1 {
    font-weight: 700;
    font-size: 69px;
    line-height: 76px;
    color: #4C4649;
}

.heading-2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 53px;
    color: #4C4649;
}

.font-ITC-officina {
    font-family: 'ITC Officina Sans LT';
}

.block-content h1 {
    font-weight: 700;
    font-size: 76px;
    line-height: 84px;
    color: #3F3F3F;
    margin-bottom: 15px;
}

.block-content h6 {
    font-weight: 400;
    font-size: 20px;
    line-height: 21px;
    letter-spacing: 0.05em;
    color: #3F3F3F;
    margin-bottom: 25px;
}

.block-content p {
    margin-bottom: 45px;
    font-size: 20px;
    line-height: 23px;
    color: #3F3F3F;
    min-height: 75px;
    font-family: 'ITC Officina Sans LT';
}

.box-container {
    -webkit-transform: perspective(1000px) skew(0, -15deg) translateZ(0px);
    transform: perspective(1000px) skew(0, -15deg) translateZ(0px);
    overflow: hidden;
    margin-top: 80px;
    border-radius: 15px;
    margin-right: 40px;
}

.box-container-inner {
    -webkit-transform: perspective(1000px) skew(0, 15deg) translateZ(0px);
    transform: perspective(1000px) skew(0, 15deg) translateZ(0px);
    height: 700px;
    margin: -110px 0;
}

.mini-container.left {
    margin-left: 150px;
}

.mini-container.right {
    margin-right: 150px;
}

.mini-container .box-container-inner {
    height: 600px;
}

.no-pseudo:before,
.no-pseudo:after {
    content: none !important;
}

.box-image {
    background-color: #f2b656;
    width: 100%;
    height: 100%;
    background-size: cover;
    padding: 230px 50px;
    position: relative;
}

.box-image:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, .3);
}

.box-image * {
    z-index: 9;
    position: relative;
}

.box-image p {
    font-size: 22px;
    line-height: 26px;
    font-family: 'ITC Officina Sans LT';
}

.box-image h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
}

.box-image h1 {
    font-size: 94px;
    line-height: 104px;
    color: #D9272D;
    font-weight: 600
}

.box-image h6 {
    color: #D9272D;
    font-size: 24px;
}

.box-image h5 {
    font-size: 36px;
    line-height: 34px;
    color: #3F3F3F;
}

.nav-link {
    -webkit-transform: perspective(1000px) skew(0, -15deg) translateZ(0px);
    transform: perspective(1000px) skew(0, -15deg) translateZ(0px);
    position: absolute;
    bottom: 66px;
    right: 22px;
    padding: 30px 35px;
    border-radius: 7px;
    background: #d9272d;
    outline: none;
    -webkit-transition: background-color .4s ease, box-shadow .4s ease;
    transition: background-color .4s ease, box-shadow .4s ease;
}

.nav-link:hover {
    box-shadow: 0 0 15px 0 #d9272d;
    background: #e61a21;
    cursor: pointer;
}

.mini-container .nav-link {
    bottom: 40px;
}

.nav-link-inner {
    -webkit-transform: perspective(1000px) skew(0, 15deg) translateZ(0px);
    transform: perspective(1000px) skew(0, 15deg) translateZ(0px);
}

.shapes {
    position: absolute;
    top: 0px;
    right: 210px;
}

.shapes li {
    display: inline-block;
    vertical-align: top;
}

.shapes li:nth-child(2) {
    margin: -60px 34px 0 35px;
}

.container-red {
    background: #DA272D;
}

.container-red h1 {
    font-weight: 600;
    font-size: 69px;
    line-height: 76px;
}

.container-red h1 span {
    font-weight: 400;
    font-size: 54px;
    line-height: 76px;
}

footer {
    background: linear-gradient(90deg, #4c464a 50%, #514d4e 50%);
    padding: 80px 0 30px;
}

.contact-address p {
    line-height: 25px;
    color: #fff;
    font-size: 18px;
}

.contact-address a {
    color: #fff;
}

.contact-address a:hover {
    color: #fff;
    text-decoration: underline;
}

.copyright-statements p,
.copyright-statements li a {
    font-size: 17px;
    color: #817e7d;
    font-weight: 400
}

.copyright-statements li {
    display: inline-block;
}

.copyright-statements {
    border-top: 1px solid #000;
    margin-top: 30px;
    padding-top: 30px;
}

.newsletter-subscription .form-control {
    display: block;
    margin: 0;
    padding: 1rem 3rem 1rem 0;
    width: 100%;
    height: 4rem;
    border: none;
    border-bottom: 1px solid #fff;
    white-space: nowrap;
    font-size: 20px;
    color: #fff;
    background: transparent;
    border-radius: 0;
    word-break: normal;
    outline: none;
}

.newsletter-subscription .form-control:focus {
    border-color: #f4be4a;
}

.newsletter-subscription .form-control::-webkit-input-placeholder {

    /* Edge */
    color: #999;
}

.newsletter-subscription .form-control:input-placeholder {

    /* Internet Explorer 10-11 */
    color: #999;
}

.newsletter-subscription .form-control::placeholder {
    color: #999;
}

.newsletter-subscription .input-group .btn:hover {
    background: none;
}

.newsletter-subscription .input-group-append {
    position: absolute;
    right: 0;
    top: 14px;
}

.footer-logo {
    margin: 100px 0;
}

.social-media-list {
    text-align: left;
    border-top: 1px solid #000;
    margin-top: 30px;
    padding-top: 30px;
}

.social-media-list li {
    vertical-align: middle;
    margin-right: 50px;
}

.social-media-list li.social a {
    width: 3rem;
    height: 3rem;
    text-align: center;
    vertical-align: middle;
    opacity: .7;
    transition: all ease-in-out .2s
}

.social-media-list li.social a:hover {
    opacity: 1;
}

.social-media-list li.empty p {
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 50px 0 0;
}

ul.made-by a {
    font-size: 16px;
    text-decoration: none;
    color: white;
    opacity: .35;
    -webkit-transition: color .4s, opacity .4s;
    -moz-transition: color .4s, opacity .4s;
    -o-transition: color .4s, opacity .4s;
    transition: color .4s, opacity .4s;
}

ul.made-by .text {
    color: inherit;
    margin-right: 0.5rem;
    text-decoration: underline;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}

ul.made-by a:hover {
    text-decoration: none;
    opacity: 1;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    display: none;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before {
    top: 20px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.open-menu .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}

.open-menu .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.open-menu .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
}

.open-menu .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg);
}

.open-menu .hamburger-inner::after {
    top: 20px;
}

.image-cards h1 {
    font-size: 48px !important;
    font-weight: 700;
    margin: auto;
}

.image-cards h2 {
    font-size: 40px;
    font-weight: 700;
}

.object-fit {
    object-fit: cover;
}

.mapcontainer {
    background: #514D4F;
    padding: 100px 0;
}

.mapael .map {
    position: relative;
}

.mapael .mapTooltip {
    position: absolute;
    background-color: #fff;
    moz-opacity: 0.70;
    opacity: 0.70;
    filter: alpha(opacity=70);
    border-radius: 10px;
    padding: 10px;
    z-index: 1000;
    max-width: 200px;
    display: none;
    color: #343434;
}

.mapael .areaLegend {
    margin-bottom: 20px;
}

.map-tab li {
    padding: 20px;
    display: inline-block;
    background: #818080;
    font-size: 20px;
    color: #514D4F;
    font-weight: 600;
    cursor: pointer;
    width: 200px;
}

.map-tab li.active,
.map-tab li:hover {
    background: #fff;
}

.grid-container {
    margin: 100px 0;
}



.grid-wrapper {
    margin: auto;
    display: grid;
    display: grid;
    width: calc(100% - 2em);
    height: calc(100vh - 2em);
    grid-auto-rows: calc((calc(100vh - 2em) / 30) - 20px);
    grid-auto-columns: calc((calc(100% - 2em) / 30) - 20px);
    justify-content: center;
    align-content: center;
    grid-gap: 20px;
    cursor: pointer;
    transform-origin: top;
    transform-style: preserve-3d;
    perspective: 100rem;
}

.grid-wrapper .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out .3s
}

.grid-wrapper .grid-item .card-img-overlay {
    transition: all ease-in-out .3s
}

.grid-wrapper .grid-item:hover .card-img-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.grid-wrapper .grid-item:hover img {
    transform: scale(1.05);
}

.grid-wrapper .grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-size: 44px;
}

.grid-wrapper .grid-item:nth-child(1) {
    font-size: 92px;
    grid-row: 1;
    grid-row-span: 21;
    grid-column: 2;
    grid-column-span: 13;
    grid-area: 1 / 2 / 22 / 15;
}

.grid-wrapper .grid-item:nth-child(2) {
    grid-row: 22;
    grid-row-span: 8;
    grid-column: 6;
    grid-column-span: 9;
    grid-area: 22 / 6 / 30 / 15;
}

.grid-wrapper .grid-item:nth-child(3) {
    grid-row: 29;
    grid-row-span: -4;
    grid-column: 15;
    grid-column-span: 3;
    grid-area: 29 / 15 / 25 / 18;
    background-color: #e87d81;
}

.grid-wrapper .grid-item:nth-child(4) {
    grid-row: 22;
    grid-row-span: 4;
    grid-column: 6;
    grid-column-span: -2;
    grid-area: 22 / 6 / 26 / 4;
    background-color: #d9d9d9;
}

.grid-wrapper .grid-item:nth-child(5) {
    grid-row: 17;
    grid-row-span: 8;
    grid-column: 15;
    grid-column-span: 5;
    grid-area: 17 / 15 / 25 / 20;
    font-size: 36px;
}

.grid-wrapper .grid-item:nth-child(6) {
    grid-row: 3;
    grid-row-span: 14;
    grid-column: 15;
    grid-column-span: 8;
    grid-area: 3 / 15 / 17 / 23;
    font-size: 92px;
}

.grid-wrapper .grid-item:nth-child(7) {
    grid-row: 17;
    grid-row-span: 8;
    grid-column: 20;
    grid-column-span: 9;
    grid-area: 17 / 20 / 25 / 29;
}

.grid-wrapper .grid-item:nth-child(8) {
    grid-row: 9;
    grid-row-span: 4;
    grid-column: 25;
    grid-column-span: -2;
    grid-area: 9 / 25 / 13 / 23;
    background-color: #f8c676;
}

/*changed  */
.boxcard {
    background: rgba(76, 70, 73, 0.1);
    padding: 20px;
    height: 100%;
    /*width: 630px;*/
    min-height: 200px;
}

.boxcard h5 {
    font-size: 20px;
    line-height: 22px;
    color: #4C4649;
    font-weight: 600;
    margin-bottom: 10px;
}

.boxcard img {
    max-width: 80px;
    max-height: 150px;
}

.boxcard p {
    font-size: 20px;
    line-height: 22px;
    color: #4C4649;
    font-weight: 400;
    margin-bottom: 0px;
}

.info-container {
    background: #F5F5F5 !important;
    padding: 70px 65px;
}

.info-container h5 {
    font-weight: 500;
    font-size: 27px;
    line-height: 37px;
    margin: 50px 0;
    color: #D9272D;
}

.info-container h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #584849;
}

.info-container p {
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    color: #4C4649;
    font-family: 'ITC Officina Sans LT';
}

.card-img-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.yellow-card {
    background: #FFC637;
    font-family: 'Georgia', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 32px;
    line-height: 36px;
}

.list-container {
    background: #F5F5F5;
    padding: 60px 20px 60px 60px;
    font-size: 22px;
    font-weight: 400;
    font-family: 'ITC Officina Sans LT';
    color: #4C4649;
}

.list-container ul {
    list-style: disc;

    margin-bottom: 15px;
}

.list-container ul li {
    list-style: disc;

    margin-bottom: 15px;
}

.mapael .areaLegend {
    position: relative;
    bottom: -103px;
    opacity: 0.9;
    text-align: center;

}

.areaLegend svg {
    display: none;
    height: 0;
    width: 0;
    overflow: hidden;
}




.mapwrap-advocacy,
.mapwrap-children,
.mapwrap-youth,
.mapwrap-emergency {
    height: 0;
    overflow: hidden;
}


.mapwrap-advocacy.active,
.mapwrap-children.active,
.mapwrap-youth.active,
.mapwrap-emergency.active {
    height: auto;
    overflow: visible;
}



.bg-container-dark {
    background: #4C4649;
    padding: 80px 0;
}

.bg-container-yellow {
    background: #FFC637;
    padding: 80px 0;
}

.image-cards {
    background: #000;
    height: auto !important;
}

.image-cards iframe {
    height: 500px;
}

.image-cards video {
    height: 500px;
}


.image-cards.card .card-img-overlay {
    display: flex;
    align-items: end !important;
}

.image-cards h3 {
    text-align: center;
}

.image-cards h4 {
    text-align: center;
}


.achievements-content h3 {
    font-size: 20px;
    margin: 0;
    font-weight: bold
}

.achievements-content h2 {
    font-size: 22px;
    margin: 0;
    font-weight: bold
}

.achievements-content h1 {
    font-size: 60px;
    margin: 0;
    line-height: 50px;
    font-weight: bold
}

.achievements-content h1 small {
    font-size: 20px;
    vertical-align: baseline;
}

.achievements-content p {
    margin: 6px 0 0 0;
    font-weight: bold;
    font-family: 'ITC Officina Sans LT';
    line-height: 15px;
}


.kpi-section {
    margin-top: 150px;
}

.filter-black {
    filter: revert(100%);
}


.grid-wrapper {
    display: block;
    height: auto;
    width: 100%;
}

.grid-wrapper .grid-item {
    display: block;
    width: 100%;
    margin-bottom: 30px
}

.mini-container.left {
    margin-left: auto;
}

.mini-container.right {
    margin-right: auto;
}



footer {
    background: #4c464a;
}

.search-btn:hover,
.search-btn {
    width: auto;
    background: transparent;
}

.hamburger-box {
    display: inline-block;
}

.menu {
    position: absolute;
    right: 50px;
    top: 100px;
    background: #d9272d;
    display: none;
}

:dir(rtl) .menu {
    background-color: red;
    left: 50px !important;
    right: auto;
}


.open-menu .menu {
    display: block;
}

.menu li {
    display: block;
    margin: 0
}

.menu li .line {
    display: none;
}

.menu li a {
    padding: 24px 45px;
    display: block;
    text-align: right;
}

.menu li a:hover {
    background: #c71c22;
}

@media screen and (max-width:1360px) {

    .image-cards h2,
    .image-cards h1 {
        font-size: 6vw;
    }

}

@media screen and (max-width:991px) {
    .kpi-section .shapes {
        position: static;
    }

    .welcome-container {
        background-image: none, url(../img/yellow-shape.png), url(../img/yellow-shape-2.png);
        padding: 100px 0;
        min-height: auto;
    }

}


@media screen and (max-width:840px) {

    .map-tab li {
        padding: 20px 0;
        font-size: 14px;
        color: #514D4F;
        margin-bottom: 10px
    }

    .areaLegend svg rect {
        width: 130px;
    }

    .areaLegend svg rect:nth-child(3) {
        transform: translateX(141px);
    }

    .areaLegend svg rect:nth-child(5) {
        transform: translateX(153px);
    }


    .areaLegend svg rect:nth-child(9) {
        transform: translateX(170px);
    }



}


@media screen and (max-width:768px) {

    .info-container {
        padding: 30px;
    }

    .block-content h1 {
        font-size: 41px;
    }



    .btn-box {
        padding: 30px 5px;
        width: 50%;
    }

    .box-container {
        margin-right: 0
    }

    .shapes {
        right: auto;
    }

    .container-red h1 span,
    .container-red h1 {
        font-size: 25px;
        line-height: 47px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 500px;
}


@media screen and (max-width:480px) {
    .kpi-section {
        margin-top: 0px;
    }

    .achievements-content h1 {
        font-size: 31px;
    }

    .heading-underline {
        font-size: 37px;
    }

    .heading-1 {
        font-size: 47px;
        line-height: 58px;
    }


    .box-image p {
        font-size: 18px;
    }

    .nav-link {
        bottom: 20px;
        right: 0;
        padding: 17px 24px;
    }

    .nav-link-inner img {
        height: 18px;
    }

    .box-image {
        padding: 184px 27px;
    }

    .btn-red {
        font-size: 18px;
        padding: 20px 40px;
    }

    .btn-red img {
        height: 30px;
    }


}

/* v2 */

.toolbar-tray-open header{
    margin-top: 40px !important;
}

header {
    position: sticky !important;
    background-color: var(--v2-highlight-red);
    height: 83px !important;
}

header .main-nav ul.nav-list {
    top: 50% !important;
    transform: translateY(-50%);
    right: 355px !important;
}

ul.nav-list .nav-element a+.focused-line:before, ul.nav-list .nav-element a+.focused-line:after {
    background: #ffffff !important;
}

.searchbox-inner-wrapper {
    top: 50% !important;
    transform: translateY(-50%);
}

.searchbox-inner-wrapper a {
    background: transparent !important;
}

.section-blog  section.main-banner .filter-header {
    display: none ;
}
.filter-header-wrapper .banner-caption {
    left: -15px !important;
}
section .filter-header-wrapper .banner-caption {
    font-size: 1.7em !important;
    line-height: 1.4em !important;
}
@media screen and (min-width:1200px) and (max-width: 91.375rem) {
    .NHH .node-page .filter-header-wrapper .banner-caption {
        left: 2.5rem !important;
    }
}
@media(max-width:600px){
    .filter-header-wrapper .banner-caption {
        left: 15px !important;
    }
    section .filter-header-wrapper .banner-caption p {
        font-size: 1.7em !important;
    }
    .section-friends-eaa section .filter-header-wrapper .banner-caption h2 {
        font-size:1.4em !important;
        line-height: 1.4em !important;
    }
}
#reflective-menu-section div[data-relation="about_eaa"] .cell.heading h2 {
    font-size: 2.4em !important;
}
#reflective-menu-section div[data-relation="about_eaa"] .cell .zone-subheading {
    font-size: 2.90em !important;
    /* line-height: 3rem !important; */
}
#reflective-menu-section div[data-relation="about_eaa"] .para {
    font-size: 1.15em !important;
    line-height: 1.4rem !important;
}
.section-about-eaa .bread-crumb-list li a {
    font-size: 1.2em !important
}
.section-our-sdg-contributions .bread-crumb-list li a {
    font-size: 1.15em !important
}
.section-friends-eaa .bread-crumb-list li a {
    font-size: 1.3em !important
}
.section-about-eaa .site-content #block-educon-content h2, .section-our-sdg-contributions .site-content #block-educon-content h2, .section-friends-eaa .site-content #block-educon-content h2 {
    font-size: 2.3em !important;
    line-height: 2.8rem !important;
}
.section-about-eaa .site-content #block-educon-content p, .section-about-eaa .site-content #block-educon-content ul li, .section-our-sdg-contributions .site-content #block-educon-content p, .section-our-sdg-contributions .site-content #block-educon-content ul li, .section-friends-eaa .site-content #block-educon-content p, .section-friends-eaa .site-content #block-educon-content ul li {
    font-size: 1.375em;
}
.section-about-eaa .site-content h3, .section-our-sdg-contributions .site-content h3, .section-friends-eaa .site-content h3 {
    font-size: 1.75em !important;
}
.section-about-eaa  #block-educon-content .addtoany_list a {
    top:30px !important;
}
.section-our-sdg-contributions #block-educon-content .addtoany_list a {
    top: 30px !important;
}
.section-friends-eaa #block-educon-content .addtoany_list a {
    top: 30px !important;
}
section .zone[data-relation="about_eaa"] .cell.grid .grid-cell p {
    line-height: 1.8rem !important;
    font-size: 1.4em !important;
}
.section-about-eaa .main-banner .block-link>ul>li img, .section-our-sdg-contributions .main-banner .block-link>ul>li img, .section-our-partners .main-banner .block-link>ul>li img, .section-friends-eaa .main-banner .block-link>ul>li img, .section-blog .main-banner .block-link>ul>li img {
    width:45px !important;
}
.section-about-eaa .main-banner .block-link>ul>li>div, .section-our-sdg-contributions .main-banner .block-link>ul>li>div, .section-friends-eaa .main-banner .block-link>ul>li>div {
    margin-left: 2rem !important;
}
.section-our-partners .main-banner .block-link>ul>li>div, .section-blog.main-banner .block-link>ul>li>div, .section-blog .main-banner .block-link>ul>li>div {
    margin-left: 1.5rem !important;
}
.section-about-eaa .main-banner .block-link-lists, .section-our-sdg-contributions .main-banner .block-link-lists, .section-our-partners .main-banner .block-link-lists, .section-friends-eaa .main-banner .block-link-lists, .section-blog .main-banner .block-link-lists {
    margin-bottom: 0px !important;
}
section .zone[data-relation="our_work"] .our_projects .grid-cell p {
    line-height: 1.8rem !important;
    font-size: 1.35em !important;
}
.section-our-partners .site-content .inside-page-menu h2 {
    font-size:1.6em !important;
}
.section-our-partners .site-content .inside-page-menu ul.menu li a {
    font-size: 1.6em !important;
}
.section-our-partners #block-buildrealpartnerships p {
    font-size: 1.4em !important;
}
.section-our-partners #block-buildrealpartnerships a {
    padding: 0.7rem 1.5rem !important;
    font-size: 1.15em !important;
}
.partner-item .partner-item-content .partner-info {
    font-size: 16px !important;
}
.section-library .main-banner  .block-link-lists {
    margin-bottom: 0px !important;
}
.section-library .site-content .body-grid-title {
    font-size: 1.15em !important;
    margin: 2.5rem 0 2rem !important;
}
.section-library .site-content .grid-search input[type="text"] {
    font-size: 1.15em !important;
}
.section-library .site-content .grid-legend-list {
    padding-left:0px !important;
}
.section-library .main-banner .block-link>ul>li>div {
    margin-left: 1.5rem !important;
}
.section-library .main-banner .block-link>ul>li img {
    width: 45px;
}
.section-library .site-content .grid-legend-list li {
    font-size: 16px !important;
}
.section-library .eaa-list-block .eaa-item-content .eaa-item-title h4 {
    font-size: 1.15em !important; 
}
@media(min-width:1200px){
    section .zone[data-relation="about_eaa"] .cell.grid .grid-cell:nth-child(odd) {
        padding-left:111px;
    }
    section .zone[data-relation="about_eaa"] .cell.grid .grid-cell:nth-child(even) {
        padding-right:111px;
    }
    .section-about-eaa section.main-banner .filter-header h1, .section-our-sdg-contributions section.main-banner .filter-header h1, .section-friends-eaa section.main-banner .filter-header h1 {
        font-size: 1.4em !important;
    }
    .section-our-sdg-contributions section.main-banner .filter-header, .section-friends-eaa section.main-banner .filter-header {
        left: -8px !important;
    }
    section .zone[data-relation="our_work"] .our_projects .grid-cell {
        width: 31% !important;
    }
    section .zone[data-relation="our_partners"] .menu-level3 .cell-inner > .grid {
        margin-top: 1rem !important;
    }
    section .zone[data-relation="our_partners"] .menu-level3 .cell-inner > .grid  .grid-cell p {
        line-height: 2.25rem !important;
        font-size: 1.75em !important;
    }
    .section-our-partners .site-content .page-menu-wrap, .section-media-centre .site-content .page-menu-wrap {
        margin-top: -70px !important;
    }
    .section-library .main-banner .block-link>ul>li>div {
        margin-left: 1.5rem !important;
    }
    .section-library .main-banner .block-link>ul>li img {
        width: 45px;
    }
    
    .section-about-eaa .bread-crumb-list, .section-our-sdg-contributions .bread-crumb-list, .section-friends-eaa .bread-crumb-list {
        padding: 20px 0 0 !important;
        margin-bottom:0px !important;
    }
    .section-blog .banner-caption h1 {
        font-size: 2.5em !important;
    }
    section .zone[data-relation="our_work"] .cell.grid .our_programs .grid-cell {
        width: 22% !important;
        background-size: cover;
        background-position: center;
    }
    section .zone[data-relation="our_work"] .cell.grid .our_programs .grid-cell:nth-child(7){
        background-position: right;
    }
    .section-our-partners #block-buildrealpartnerships h2 {
        font-size: 2.8em !important;
    }
    .section-media-centre .media-tpl-menu .inside-page-menu nav ul.menu {
        margin-top: 0px !important;
    }

}
section.reflective-menu .close-menu{
    padding: 0.25rem .8rem !important;
    font-size: 1em !important
}
#reflective-menu-section .zone[data-relation="our_work"] .custom-menu-level-2 a {
    font-size: 1.75em !important;
}
#reflective-menu-section .zone[data-relation="our_work"] .map-view .cell.sub-heading p {
    font-size: 1.6em !important;
    line-height: 2rem !important;
}
#reflective-menu-section .zone[data-relation="our_work"] .map-view .cell.sub-heading ul li {
    font-size: 1.2em !important;
}
@media(max-width:600px){
    #reflective-menu-section .zone[data-relation="our_work"] .custom-menu-level-2 {
        padding-left: 0px !important;
    }
    .section-about-eaa .main-banner .block-link>ul>li>div, .section-our-sdg-contributions .main-banner .block-link>ul>li>div, .section-friends-eaa .main-banner .block-link>ul>li>div {
        margin-left: 0.5rem !important;
    }
    .section-our-partners .main-banner .block-link>ul>li>div, .section-blog.main-banner .block-link>ul>li>div, .section-blog .main-banner .block-link>ul>li>div {
        margin-left: 0.5rem !important;
    }
    .section-about-eaa  #block-educon-content .addtoany_list a, .section-our-sdg-contributions #block-educon-content .addtoany_list a {
        top: 15px !important;
    }
    #reflective-menu-section .zone[data-relation="our_work"] .map-view .cell.sub-heading p {
        font-size: 1.5em !important;
        line-height: 2rem !important;
    }
    .section-library .main-banner .block-link>ul>li>div {
        margin-left: 0.5rem !important;
    }
    .section-library .site-content .body-grid-title {
        margin: 1rem 0 2rem !important;
    }
}
section .zone[data-relation="our_partners"] .heading h2 {
    font-size: 2.4em !important;
}
section .zone[data-relation="our_partners"] .heading ul {
    padding-left:0px !important;
}
section .zone[data-relation="our_partners"] .heading li a {
    font-size: 1.7em !important;
}
.toolbar-horizontal section.main-banner .filter-header {
    display: block !important;
}
.section-blog section.main-banner .filter-header, .section-media-centre .filter-header {
    display: none !important;
}
#stories-list .eaa-list-item h4 {
    font-size: 1.2rem !important;
    line-height: 1.6rem !important;
}
#stories-list .eaa-list-item time {
    font-size: 1.1em !important;
}
section .zone[data-relation="media_and_publication"] .custom-menu-level-2 {
    padding-left:0px !important;
}
section .zone[data-relation="media_and_publication"] .cell.heading h2 {
    font-size: 2.4em !important;
}
section .zone[data-relation="media_and_publication"] .custom-menu-level-2 li {
    font-size:1.15em !important;
}
section .zone[data-relation="media_and_publication"] .related-topics-carousel p {
    font-size: 1.95em !important;
    line-height: 2.5rem !important;
}
section .zone[data-relation="media_and_publication"] .cell-cat {
    font-size:1.2em !important;
}
section .zone[data-relation="media_and_publication"] .cell-date {
    font-size: 1.25em !important;
}
section .zone[data-relation="media_and_publication"] .cell-date img {
    margin-bottom: 4px !important;
}
@media(max-width:600px){
    .section-friends-eaa #block-educon-content .addtoany_list a {
        top: 12px !important;
    }
    .section-our-sdg-contributions .content-top-bar, .section-friends-eaa .content-top-bar {
        padding-bottom: 0px !important;
    }
    section .zone[data-relation="our_partners"] .heading li a {
        font-size: 1.5em !important;
    }
    section .zone[data-relation="media_and_publication"] .related-topics-carousel p {
        font-size: 1.7em !important;
        line-height: 2rem !important;
    }
}
@media(min-width:601px) and (max-width:1200px) {
    .filter-header-wrapper .banner-caption {
        left: 15px !important;
    }
}

/* -------Logo animation style start--------- */

#lottie {
    background-color:#d32737;
    width:100%;
    height:100%;
    display:block;
    overflow: hidden;
    transform: translate3d(0,0,0);
    text-align: center;
    opacity: 1;
    position: fixed;
    z-index: 999999;
}
.logoAfterAnimation {
    background-color:#d32737;
    width: 100%;
    height: 100%;
    position: fixed;  /* Changed from absolute */
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 1.4s ease-in-out;
    z-index: 99999999;
}
.defaultHeader {
    background-color:#d32737;
    width: 100%;
    position: fixed; 
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    transition: all 1.4s ease-in-out;
    z-index: 99999999;
}
.logoAfterAnimation.visible {
    opacity: 1;
}
.logoAfterAnimation .logoHeader{
    width:42%;
    margin-top:0%;
    position: absolute;
    left: 50%;           /* Changed: center horizontally */
    top: 50%;           /* Changed: center vertically */
    transform: translate3d(-50%, -50%, 0);  /* Changed to translate3d */
    transition: all 1.3s cubic-bezier(0.4, 0, 0.2, 1) !important;  
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    perspective: 1000;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    will-change: transform, width, left, top;
    filter: blur(0);  /* Forces GPU rendering */
}
.logoAfterAnimation.move-to-header {
    height:85px;  /* Adjust based on your header position */
    transition-delay: 0s;  
     /* Adjust scale as needed */
}
 .logoAfterAnimation.move-to-header .logoHeader{
    width:200px;
    left: 48px;
    top: 12px;
    transform: translate3d(0, 0, 0);  /* Changed to translate3d */
    margin: 0;
 }
 @media(max-width:600px){
    .logoAfterAnimation.move-to-header .logoHeader {
        width: 150px;
        left: 20px;
        top: 20px;
    }
 }
 @media(min-width:601px) and (max-width:1200px){
    .logoAfterAnimation.move-to-header .logoHeader {
        width: 190px;
        left: 30px;
        top: 14px;
    }
 }
.logoAfterAnimation header{
    background:none !important;
 }

.header-animation .header-logo img {
    display: none;
}
.logoAfterAnimation.move-to-header  > img, .header-animation .header-logo img {
    width: 198px !important;
    left: 48px !important;
}
.header-animation .searchbox-inner-wrapper  img, .header-animation .donate-cta img 
{
        width: initial !important;
        left: initial !important;
        top: initial !important;
        transform: initial !important;
}
.header-animation .donate-cta img  {
    position: static !important;
}
.header-animation .searchbox-inner-wrapper  img {
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
}
@media(max-width:600px){
    .logoAfterAnimation.move-to-header  > img, .header-animation .header-logo img {
        width: 150px !important;
        left: 20px !important;
    }
}
@media(min-width:601px) and (max-width:1200px){
    .logoAfterAnimation.move-to-header  > img, .header-animation .header-logo img {
        left: 10px !important;
        width: 150px !important;
    }
}

.header-logo-link img {
    z-index:9999999 !important; 
}

@media(min-width:800px){
    .project-tpl-menu .filter-wrap .project-filter {
        margin-top: -15px !important;
    }
}
.project-tpl-menu .filter-wrap .inside-menu-title-wrap h2 {
    margin-bottom:1px !important; 
}
@media screen and (min-width: 1281px) and (max-width: 1467px) {
    section#reflective-menu div.zone[data-relation="our_work"] .cell.grid .grid-cell {
        width: calc(35% - 40px) !important;
    }
}
.impact-stats.stat-section.stats--ready {
    z-index: 999999999;
}
.paper-wrapper, .medium-zoom-image--opened {
    z-index: 9999999999 !important;
}

.headerHidden {
    display: none !important;
}

.flex {
    display: flex !important;
}

.main-banner-slideshow .carousel-slide .background-overlay {
    top:83px !important;
}
section .zone[data-relation="media_and_publication"] .wrap-slide {
    min-height: 27rem !important;
}
@media(max-width:600px){
    section .zone[data-relation="media_and_publication"] .wrap-slide {
        min-height: 25rem !important;
    }
    section .zone[data-relation="media_and_publication"] .wrap-slide p {
       font-size:1.2rem !important;
    }
}
.section-our-partners #block-mainnavigation .menu {
    padding: 0 !important;
}
@media(min-width:1100px){
    .section-contact-us form .g-recaptcha {
        max-width:400px !important;
        margin:auto !important;
    }
}
@media screen and (min-width: 1025px) and (max-width: 1280px){
	header {
		border-bottom: 1px solid white;
	}
	
	.hamburger--slider.is-active .mob-icon,
	.hamburger--slider .hamburger-box {
		display: none;
	}
	
	.hamburger--slider .mob-icon,
	.hamburger--slider.is-active .hamburger-box {
		display: block;
		text-align: right;
	}
	
	.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
		width: 27px;
		right: 0;
		height: 3px;
	}
	
	header > .donate-cta {
		right: 120px;
	}
	
	header div.searchbox-inner-wrapper  {
		right: 60px !important;
	}
	
	header nav .hamburger.is-active {
		right: 15px;
	}
	
	header > .donate-cta span {
		display: none;
	}
	
	header > .donate-cta a {
		border: none;
		padding: 0;
	}
	
	header > .donate-cta img {
		width: 25px;
		height: 22px;
	}
	
	ul.nav-list .nav-element:last-child {
		position: absolute;
		bottom: 70px;
	}
	
	ul.nav-list .nav-element .donate-cta {
		position: static;
		transform: none;
	}
	
	ul.nav-list .nav-element .donate-cta a {
		padding: 10px 25px;
		display: flex;
		align-items: center;
		justify-content: center;
		column-gap: 10px;
	}
	
	.header-logo img {
		left: 30px;
		width: 125px;
		height: 35px;
	}
	
	header nav .hamburger {
		top: 50%;
		transform: translateY(-50%);
		right: 30px;
	}
	
	.hamburger-box {
		width: 35px;
		height: 25px;
	}
	
	.hamburger.is-active:hover,
	.hamburger:hover {
		opacity: 1;
	}
	
	.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
		width: 35px;
	}
	
	header nav .hamburger.is-active+ul.nav-list {
		right: 0 !important;
		top: 83px !important;
		transform: none;
		padding: 0;
		margin: 0;
		height: calc(100vh - 83px);
		background-color: var(--v2-highlight-red);
		width: 100%;
	}
	
	header nav .hamburger.is-active+ul.nav-list>li>a {
		text-align: left !important;
	}
	
	header nav .hamburger.is-active+ul.nav-list>li {
		padding: 20px 1rem;
	}
	
	/* .no-scroll .searchbox-wrapper , */
	.no-scroll header > .donate-cta {
		display: none;
	}
	
	ul.nav-list .nav-element:first-child {
		margin-top: 10px !important;
	}
	
	.nav-list .search-input {
		position: relative;
		border: 1px solid white;
		padding: 10px;
		color: white;
		margin: 25px 20px 15px;
		display: block !important;
	}
	
	.nav-list .search-input input {
		background: transparent;
		border: none;
		width: 100%;
		height: 100%;
		color: white;
		font-family: 'Greycliff Arabic CF';
		padding-right: 30px;
	}
	
	.nav-list .search-input input {
		outline: none !important;
	}
	
	.nav-list .search-input input::placeholder {
		color: white;
	}
	
	.nav-list .search-input .icon {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
	}
	
	.hamburger--slider .hamburger-inner {
		top: 4px !important;
	}
	
	.social-icons {
		margin-left: 120px;
	}
	
	header nav .hamburger.is-active+ul.nav-list>li:last-child:hover {
		background: none;
	}
	
	section.reflective-menu .close-menu {
		bottom: auto !important;
		top: 5rem;
	}
	
	.reflective-menu-open body {
		position: static !important;
		height: 100vh;
	}
}    