/* ====== FONTS ====== */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --clr--orange: 255, 85, 21; /* #FF5515 */
    --clr--gray: 17, 18, 34; /* #111222 */
    --clr--light--gray: 244, 245, 247; /* #F4F5F7 */
    --clr--rich--black: 1, 17, 34; /* #011122 */
    --clr--black: 0, 0, 0; /* #000000 */
    --clr--white: 255, 255, 255; /* #ffffff */

    --fnt--inter: "Inter", sans-serif;
}

/* ====== SCROLL ====== */
::-webkit-scrollbar {
    width: 0.5em;
    height: 0.5em;
}

::-webkit-scrollbar-track {
    background: rgb(var(--clr--white));
    box-shadow: inset 2px 2px 3px rgba(rgb(var(--clr--gray)), 0.4);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    background: rgb(var(--clr--orange));
    box-shadow: inset 0px 0px 8px rgba(var(--clr--gray), 0.4);
}

html,
body {
    color: rgb(var(--clr--black));
    font-size: clamp(16px, 1vw, 22px);
    font-weight: 400;
    font-family: var(--fnt--inter);
    line-height: 1.2;
    background: rgb(var(--clr--white));
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 5px 0;
    line-height: 1;
    font-weight: 600;
}

h1 {
    font-size: clamp(32px, 2.5vw, 60px);
}

h2 {
    font-size: clamp(24px, 2.1vw, 48px);
}

h3 {
    font-size: clamp(21px, 1.2vw, 36px);
}

h4 {
    font-size: clamp(18px, 1.1vw, 27px);
}

h5 {
    font-size: clamp(17px, 0.9vw, 23px);
}

h6 {
    line-height: 1.3;
}

p,
ul,
ol {
    font-size: clamp(16px, 1vw, 22px);
    line-height: 1.3;
}

p:nth-last-of-type(1) {
    margin-bottom: 0;
}

p:has(+ ul),
p:has(+ ol) {
    margin-bottom: 1rem !important;
}

/* ul,
ol {
    padding-left: 20px;
} */

.small,
small {
    display: inline-block;
    font-weight: 400;
    line-height: 1.2;
    font-size: 14px !important;
}

a {
    color: currentColor;
}

section.copy-section p a,
.accordion-body p a {
    color: rgb(var(--clr--orange));
}

.desktop {
    display: block !important;
}

.mobile {
    display: none !important;
}

img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
}

section {
    position: relative;
}

.section-row {
    padding-block: clamp(40px, 4.5vw, 92px);
    padding-inline: 0;
    position: relative;
}

.titles {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.titles>h1,
.titles>h2 {
    font-size: clamp(24px, 2.7vw, 60px);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    text-wrap: balance;
}

.titles__highlighter {
    color: rgb(var(--clr--orange));
}

.titles__highlighter_white {
    color: rgb(var(--clr--white));
}

.titles__sub-heading {
    font-size: clamp(16px, 1.3vw, 36px);
    text-align: center;
    text-transform: unset;
    text-wrap: balance;
    max-width: 700px;
}

.fw100 {
    font-weight: 100;
}

.fw300 {
    font-weight: 300;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700,
strong {
    font-weight: 700;
}

.fw900 {
    font-weight: 900;
}

.ls {
    letter-spacing: 1.5px;
}

.italic {
    font-style: italic;
}

.fnt--inter {
    font-family: var(--fnt--inter);
}

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ====== COLORS ====== */
.clr--orange {
    color: rgb(var(--clr--orange)) !important;
}

.clr--gray {
    color: rgb(var(--clr--gray)) !important;
}

.clr--light--gray {
    color: rgb(var(--clr--light--gray)) !important;
}

.clr--rich--black {
    color: rgb(var(--clr--rich--black)) !important;
}

.clr--black {
    color: rgb(var(--clr--black)) !important;
}

.clr--white {
    color: rgb(var(--clr--white)) !important;
}

.bgclr--orange {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--orange));
}

.bgclr--gray {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--gray));
}

.bgclr--light--gray {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--light--gray));
}

.bgclr--rich--black {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--rich--black));
}

.bgclr--black {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--black));
}

.bgclr--white {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--white));
}

/* Input Fields */
.form-control {
    color: rgb(var(--clr--black));
    font-size: clamp(15px, 1.2vw, 19px);
    font-weight: 400;
    line-height: 1.3;
    min-height: 30px;
    padding: 15px;
    background-color: rgb(var(--clr--white));
    border: 2px solid rgb(var(--clr--white));
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

textarea.form-control {
    min-height: 300px;
}

.form-control:disabled {
    background-color: rgb(var(--clr--white), .2);
    opacity: .6;
}

.form-control:focus {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--white));
    border: 2px solid rgb(var(--clr--orange));
    outline: 0;
    box-shadow: none;
    transition: ease-in .3s;
    -webkit-transition: ease-in .3s;
    -moz-transition: ease-in .3s;
    -ms-transition: ease-in .3s;
    -o-transition: ease-in .3s;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 2px solid rgb(var(--clr--orange));
    -webkit-text-fill-color: var(--clr--black);
    box-shadow: 0 0 0px 1000px rgba(var(--clr--black), 0.1) inset;
    -webkit-box-shadow: 0 0 0px 1000px rgba(var(--clr--black), 0.1) inset;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    -moz-transition: background-color 5000s ease-in-out 0s;
    -ms-transition: background-color 5000s ease-in-out 0s;
    -o-transition: background-color 5000s ease-in-out 0s;
}

.invalid-feedback {
    color: rgb(var(--clr--white));
    font-size: 13px;
    text-align: center;
    background-color: rgb(220, 53, 69);
    padding: 5px 10px;
}

/* ====== BUTTONS ====== */
.btn {
    font-size: 19px;
    font-weight: 700 !important;
    color: rgb(var(--clr--white));
    line-height: 1.1;
    transition: ease-in .4s;
    -webkit-transition: ease-in .4s;
    -moz-transition: ease-in .4s;
    -ms-transition: ease-in .4s;
    -o-transition: ease-in .4s;
    width: fit-content;
    padding: 8px 30px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn:hover,
a:hover {
    text-decoration: none;
}

.btn-large {
    font-size: clamp(19px, 1.5vw, 41px) !important;
    padding: 18px 60px;
    position: relative;
    z-index: 9;
}

.primary--btn {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--orange));
    border: 2px solid rgb(var(--clr--orange));
}

.primary--btn:hover,
.primary--btn:active,
.primary--btn:focus-visible {
    color: rgb(var(--clr--orange)) !important;
    background-color: rgb(var(--clr--white)) !important;
    border: 2px solid rgb(var(--clr--orange)) !important;
}

.primary--btn.disabled {
    background-color: rgba(var(--clr--orange), 0.6);
    border-color: rgba(var(--clr--orange), 0.6);
    cursor: not-allowed;
    color: rgb(var(--clr--white));
}

/* Grid laout */
.grid-two,
.grid-three,
.grid-four,
.grid-five {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.grid-two>* {
    width: calc((100% / 2) - 13px);
}

.grid-three>* {
    width: calc((100% / 3) - 17px);
}

.grid-four>* {
    width: calc((100% / 4) - 19px);
}

.grid-five>* {
    width: calc((100% / 5) - 20px);
}

/* OWL CAROUSEL */
.owl-loaded {
    width: 100%;
    position: relative;
}

.owl-stage-outer {
  overflow: hidden;
}

.owl-stage {
    display: flex;
}

.owl-item {
    padding: 20px 5px;
    vertical-align: top;
    display: flex;
    justify-content: center;
}

.owl-item > * > * {
    opacity: .2;
}

.owl-item.active > * > * {
    opacity: 1;
}

.owl-nav {
    width: 100%;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next{
    font-size: 21px;
    color: rgb(var(--clr--orange));
    font-weight: 700;
    background-color: transparent;
    border: 0;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.owl-nav button.owl-prev {
    left: 0;
}

.owl-nav button.owl-next{
    right: 0;
}

.owl-dots {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    background: rgba(var(--clr--orange), .3);
    border: 0;
    border-radius: 50%;
}

.owl-dots button.owl-dot.active {
    background: rgb(var(--clr--orange));
}

.owl-loaded .disabled {
    display: none;
}

/* CAROUSEL STYLES */
.barrier-section__barriers,
.sponsorship-section__work {
    position: relative;
    display: flex;
    gap: 50px;
    overflow: hidden;
}

.barrier-section__barriers.owl-loaded,
.sponsorship-section__work.owl-loaded {
    display: block;
    overflow: visible;
}

.barrier-section__barriers .barrier-section__barriers_card,
.sponsorship-section__work .sponsorship-section__work_item-single {
    position: relative;
    overflow: hidden;
    /* cursor: pointer; */
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.barrier-section__barriers > .barrier-section__barriers_card,
.sponsorship-section__work > .sponsorship-section__work_item-single {
    position: relative;
    overflow: hidden;
}

.barrier-section__barriers .barrier-section__barriers_card,
.sponsorship-section__work .sponsorship-section__work_item-single {
    min-width: calc((100% / 3) - 40px);
}

.barrier-section__barriers > .barrier-section__barriers_card:before,
.sponsorship-section__work > .sponsorship-section__work_item-single:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(237, 237, 237);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.barrier-section__barriers-cta {
    margin: 50px auto 0;
}

/* ====== HEADER ====== */
.header {
    width: 100%;
    background-color: rgb(var(--clr--white));
    padding: 10px 0;
    /* position: relative;
    z-index: 9; */
    box-shadow: 0 2px 10px rgba(var(--clr--black), 0.1);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.header__fixed-header {
    background-color: rgb(var(--clr--white));
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(var(--clr--black), 0.1);
    transform: translateY(0);
}

.header__logo {
    max-width: 250px;
    padding: 10px 0;
    line-height: 1;
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.header__fixed-header .header__logo {
    max-width: 180px;
    padding: 0;
}

.header__logo img {
    height: auto;
    position: relative;
}

header[class="header"] ~ .gutter-top {
    margin: 0;
}

/* ====== NAVIGATION ====== */
.header__navbar_collapse {
    justify-content: flex-end;
}

.header__navbar {
    justify-content: space-between;
}

ul#header__navbar--menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__navbar_collapse.collapsing {
    height: unset !important;
}

.menu-item a {
    color: rgb(var(--clr--gray));
    font-size: 19px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.menu-item.current-menu-item a,
.menu-item:hover a {
    color: rgb(var(--clr--orange));
}

ul#menu-menu li.menu-item ul.sub-menu {
    min-width: 250px;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: rgb(226, 226, 226);
    border: none;
    border-radius: 10px;
    position: absolute;
    z-index: 9;
    display: none;
}

ul#menu-menu li.menu-item:hover ul.sub-menu {
    display: block;
}

ul#menu-menu li.menu-item ul.sub-menu li a {
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}

ul#menu-menu li.menu-item ul.sub-menu li a:hover {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--orange));
}

.nav-btn a {
    color: rgb(var(--clr--white)) !important;
    font-weight: 700;
    background-color: rgb(var(--clr--orange));
    padding: 6px 20px !important;
    margin-left: 15px;
    border: 2px solid rgb(var(--clr--orange));
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: ease-in .4s;
    -webkit-transition: ease-in .4s;
    -moz-transition: ease-in .4s;
    -ms-transition: ease-in .4s;
    -o-transition: ease-in .4s;
}

.nav-btn a:hover {
    color: rgb(var(--clr--orange)) !important;
    background-color: rgb(var(--clr--white));
}

.nav-btn iframe {
    margin-left: 15px;
}

.header__navbar_toggler {
    border: 0;
}

.header__navbar_toggler:focus {
    box-shadow: unset;
}

.header__navbar_icon {
    background-color: rgb(var(--clr--orange));
    width: 32px;
    height: 3px;
    margin: 6px 0;
    display: block;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(1),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(2),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(2) {
    opacity: 0;
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(3),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.header__navbar .header__navbar_toggler.collapsed .header__navbar_icon {
    opacity: 1 !important;
    transform: rotate(0deg) translate(0px, 0px) !important;
    -webkit-transform: rotate(0deg) translate(0px, 0px) !important;
    -moz-transform: rotate(0deg) translate(0px, 0px) !important;
    -ms-transform: rotate(0deg) translate(0px, 0px) !important;
    -o-transform: rotate(0deg) translate(0px, 0px) !important;
}

a.scrolly-button {
    padding: 10px 60px;
    position: fixed;
    left: 50%;
    bottom: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    -webkit-transform: translate(-50%, 8px);
    -moz-transform: translate(-50%, 8px);
    -ms-transform: translate(-50%, 8px);
    -o-transform: translate(-50%, 8px);
    transition: opacity .25s ease, transform .25s ease;
    -webkit-transition: opacity .25s ease, transform .25s ease;
    -moz-transition: opacity .25s ease, transform .25s ease;
    -ms-transition: opacity .25s ease, transform .25s ease;
    -o-transition: opacity .25s ease, transform .25s ease;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

a.scrolly-button.scrolly-button__visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
}

/* ====== Hero Section ====== */
.gutter-top {
    margin-top: 88px;
}

.hero-banner__container {
    width: 100%;
    aspect-ratio: 19 / 8;
    position: relative;
}

.hero-banner__container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgb(var(--clr--black));
    background: -webkit-linear-gradient(90deg, rgba(var(--clr--black), 0.2) 0%, rgba(var(--clr--black), 0) 100%);
    background: -moz-linear-gradient(90deg, rgba(var(--clr--black), 0.2) 0%, rgba(var(--clr--black), 0) 100%);
    background: linear-gradient(90deg, rgba(var(--clr--black), 0.2) 0%, rgba(var(--clr--black), 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.hero-banner__container img,
.hero-banner__container video {
    width: 100%;
    min-height: 550px;
    aspect-ratio: 19 / 8;
    object-fit: cover;
}

.hero-banner__video_desktop {
    display: block !important;
}

.hero-banner__video_mobile {
    display: none !important;
}

.hero-banner__content-area {
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 9;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.hero-banner__content-wrapper {
    margin-top: 10vw;
}

.hero-banner__content {
    width: 35%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-banner__content .hero-banner__hero-title {
    color: rgb(var(--clr--white));
    font-size: clamp(24px, 2.7vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero-banner__content .hero-banner__hero-copy p {
    color: rgb(var(--clr--white));
    font-size: clamp(16px, 1.4vw, 28px);
    margin-block: 30px;
}

.video-controls {
    background-color: rgb(238, 238, 238);
    padding: 5px 20px;
    position: absolute;
    right: 35px;
    bottom: 25px;
    z-index: 999;
    display: flex;
    gap: 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.video-controls__toggle-btn {
    color: rgb(var(--clr--black));
    background: rgba(var(--clr--black), 0);
    padding: 0;
    border: 0;
}

/* ====== BARRIER ====== */
.barrier-section__barriers_card {
    text-align: center;
    background-color: rgb(var(--clr--white));
    overflow: hidden;
    box-shadow: 0px 10px 15px rgba(var(--clr--black), 0.15);
    border-radius: 13px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -ms-border-radius: 13px;
    -o-border-radius: 13px;
}

.barrier-section__barriers_item-copy {
    padding: 20px;
}

.barrier-section__barriers_item-title {
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1em;
}

.barrier-section__barriers_item-copy p {
    font-size: clamp(16px, .9vw, 22px);
}

/* ====== WORLD MAP ====== */
.donation-map__world-map {
    position: relative;
}

.donation-map__world-map_wrapper {
    overflow: hidden;
}

.donation-map__world-map_custom {
    min-height: 400px;
}

.donation-map__world-map_custom path {
    cursor: pointer;
    transition: fill 0.3s ease;
    -webkit-transition: fill 0.3s ease;
    -moz-transition: fill 0.3s ease;
    -ms-transition: fill 0.3s ease;
    -o-transition: fill 0.3s ease;
}

.donation-map__world-map_custom .donation-map__world-map_custom__country path,
.donation-map__world-map_custom .donation-map__world-map_custom__country polygon {
    fill: rgb(236, 150, 117);
}

.donation-map__world-map_custom .donation-map__world-map_custom__country_highlight path,
.donation-map__world-map_custom .donation-map__world-map_custom__country_highlight polygon {
    fill: rgb(var(--clr--orange)) !important;
}

.donation-map__world-map_custom__country_popup {
    display: none;
    background: rgb(var(--clr--white));
    z-index: 9999;
    width: calc(100% - 30px);
    max-width: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.donation-map__world-map_custom__country_popup img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.donation-map__world-map_custom__country_popup-copy {
    padding: 15px 35px;
}

.donation-map__world-map_custom__country_popup-copy .donation-map__world-map_custom__country_popup-title {
    font-size: clamp(18px, 1.5vw, 31px);
    font-weight: 900;
    text-align: center;
    color: rgb(var(--clr--orange));
    text-transform: uppercase;
}

.donation-map__world-map_custom__country_popup-copy p {
    color: rgb(var(--clr--black));
    font-size: 15px;
}

.donation-map__world-map_custom__country_popup-copy em {
    font-weight: 500;
}

.donation-map__world-map_custom__country_popup_close {
    position: absolute;
    top: 3px;
    right: 4px;
    background: rgba(var(--clr--white), 0.9);
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: rgb(var(--clr--black));
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

#country-popup-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9998;
}

.donation-map__statistics {
    max-width: 650px;
    margin: 30px auto 0;
}

.donation-map__statistics_single-item_value {
    color: rgb(var(--clr--orange));
    font-size: clamp(24px, 1.8vw, 48px);
    font-weight: 900;
}

.donation-map__statistics_single-item p {
    font-size: 15px;
}

.donation-map__world-map_custom__country_icon {
    pointer-events: none;
    transition: transform 0.3s ease, x 0.3s ease, y 0.3s ease, width 0.3s ease, height 0.3s ease;
    -webkit-transition: transform 0.3s ease, x 0.3s ease, y 0.3s ease, width 0.3s ease, height 0.3s ease;
    -moz-transition: transform 0.3s ease, x 0.3s ease, y 0.3s ease, width 0.3s ease, height 0.3s ease;
    -ms-transition: transform 0.3s ease, x 0.3s ease, y 0.3s ease, width 0.3s ease, height 0.3s ease;
    -o-transition: transform 0.3s ease, x 0.3s ease, y 0.3s ease, width 0.3s ease, height 0.3s ease;
    opacity: 1;
}

.donation-map__world-map_custom__country_ripple {
    fill: rgb(var(--clr--light--gray));
    stroke: rgb(var(--clr--light--gray));
    stroke-width: 2;
    opacity: 0;
}

.donation-map__world-map_custom__country:hover .donation-map__world-map_custom__country_ripple {
    animation: circle-ripple .9s ease-out infinite;
    -webkit-animation: circle-ripple .9s ease-out infinite;
}

.donation-map__world-map_custom__country_ripple.donation-map__world-map_custom__country_ripple-1 {
    animation-delay: 0s;
}

.donation-map__world-map_custom__country_ripple.donation-map__world-map_custom__country_ripple-2 {
    animation-delay: 0.2s;
}

.donation-map__world-map_custom__country_ripple.donation-map__world-map_custom__country_ripple-3 {
    animation-delay: 0.4s;
}

@keyframes circle-ripple {
    0% {
        r: 20;
        opacity: 0.6;
        stroke-width: 2;
    }

    70% {
        r: 35;
        opacity: 0.2;
        stroke-width: 1;
    }

    100% {
        r: 50;
        opacity: 0;
        stroke-width: 0.5;
    }
}

/* ====== BENIFITS ====== */
.benifits-section {
    background: rgb(var(--clr--white)) var(--benefits--bg--image) no-repeat 0% 0% / cover;
}

.benifits-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgb(var(--clr--rich--black));
    background: linear-gradient(90deg, rgba(var(--clr--rich--black), 1) 0%, rgba(var(--clr--rich--black), 0) 100%);
    z-index: 0;
}

.benifits-section__container {
    position: relative;
}

.benifits-section__row {
    align-items: center;
}

.benifits-section__benifits-list_single-items {
    margin-bottom: 25px;
}

.benifits-section__benifits-list_single-items_wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.benifits-section__benifits-list_single-items_wrapper img {
    width: 85px;
}

.benifits-section__benifits-list_single-items_title {
    font-size: clamp(18px, 1.8vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
}

.benifits-section__benifits-list_single-items_wrapper p {
    font-size: 16px;
    /* font-weight: 700; */
}

.benifits-section__section-image {
    width: auto;
    height: auto;
    min-height: 350px;
    max-height: 700px;
    display: block;
    margin-inline: auto;
}

/* ====== SPONSORSHIP ====== */
.sponsorship-section__work_item-single {
    text-align: center;
    background-color: rgb(var(--clr--white));
    overflow: hidden;
    box-shadow: 0px 10px 15px rgba(var(--clr--black), 0.15);
    border-radius: 13px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -ms-border-radius: 13px;
    -o-border-radius: 13px;
}

.sponsorship-section__work_item-copy {
    padding: 20px;
}

.sponsorship-section__work_item-title {
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1em;
}

.sponsorship-section__work_item-copy p {
    font-size: clamp(15px, .9vw, 22px);
}

/* ====== VIDEO PLAYER ====== */
.video-section__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 45px auto;
}

.video-section__player video {
    width: 100%;
    display: block;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}

.video-section__player .video-section__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.video-section__player .video-section__play-icon.hidden {
    display: none;
}

.video-toggle-btn {
    color: rgb(var(--clr--white));
    background: rgba(var(--clr--black), 0);
    padding: 0;
    border: 0;
    position: absolute;
    right: 35px;
    bottom: 25px;
    z-index: 999;
}

/* ====== CONTACT FOOTER ====== */
.contact-section__row {
    align-items: center;
}

.contact-section__contact-cta {
    text-align: center;
}

.contact-section__contact-cta_title {
    font-size: clamp(21px, 1.4vw, 36px);
}

.contact-section__contact-cta_button {
    margin: 20px auto 0;
}

/* ====== 404 ====== */
.error-message {
    min-height: calc(100vh - 260px);
    display: flex;
    align-items: center;
}

.error-message__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.error-message__title {
    color: rgb(var(--clr--orange));
    font-size: clamp(48px, 7.5vw, 120px);
    font-weight: 900;
}

/* ====== FOOTER ====== */
.footer {
    padding: 40px 0;
}

.footer__logo {
    display: block;
    max-width: 300px;
}

.footer__logo img {
    height: auto;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer__content .footer__social-grid {
    text-align: center;
    width: 100%;
    max-width: 290px;
    justify-content: flex-end;
}

.footer__content .footer__social-grid a i {
    font-size: clamp(21px, 1.8vw, 36px);
    color: rgb(var(--clr--gray));
}

.footer__content .footer__social-grid a:hover i {
    color: rgb(var(--clr--orange));
}

.footer__copyright {
    font-size: 15px;
    font-weight: 300;
    color: rgb(119, 119, 119);
}

.footer__statement {
    color: rgb(119, 119, 119);
    text-align: center;
    margin-top: 1.5rem;
}

.footer__statement a {
    display: inline-block;
}