@media (max-width:1800px) {
    html {
        font-size: calc(var(--baseFtnSize) * 1.153)
    }
}
@media (max-width:1680px) {
    html {
        font-size: calc(var(--baseFtnSize) * 1.188)
    }
}
@media (max-width:1280px) {
    .card {
        width: 42.5vw
    }
}
@media (max-width:1180px) {
    html {
        font-size: calc(var(--baseFtnSize) * 1.282)
    }
}
@media (max-width:1024px) {
    html {
        font-size: calc(var(--baseFtnSize) * 1.329)
    }
    #slideStories {
        grid-template-columns: auto 80% auto
    }
}
@media (max-width:860px) {
    html {
        font-size: calc(var(--baseFtnSize) * 1.541)
    }
    :root {
        --navHeight: 50px
    }
    #homeImpactImg {
        display: none
    }
    #homeImpactImgMob {
        display: block
    }
    main, section {
        padding: 3rem
    }
    button, .infoEdition, .btnBar, .videoTitle, #btnSupport {
        letter-spacing: .5px
    }
    #cashDonate {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem
    }
    .tabGroup {
        width: 100%
    }
    .tabHeaders {
        flex-direction: column
    }
    .tabButton {
        border-bottom: 1px solid var(--clrGray40)
    }
    .tabButton.active {
        border-bottom-color: transparent
    }
    .donateValue {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center
    }
    #toHelpMain {
        display: block
    }
    #toHelpVolunteerSection>div {
        display: flex;
        flex-direction: column-reverse
    }
    #thrifStoreSection>div {
        display: block
    }
    .imgDesktop {
        display: none
    }
    .imgMobile {
        display: block
    }
    .container {
        width: calc(100% - var(--navHeight));
        margin: 0 auto
    }
    #homeImpactSectionDiv {
        background-image: url(/img/home/img02_mob.webp)
    }
    .card {
        width: 90vw;
        max-width: 500px
    }
    .gridIRPF {
        grid-template-columns: 1fr;
        gap: 1rem
    }
    .iconIRPF {
        background: lightgray !important;
        padding: 1rem
    }
    .iconIRPF img {
        margin: 0 auto
    }
    .textIRPF li {
        font-size: 1.3rem
    }
    .navBar {
        flex-wrap: wrap;
        align-items: flex-start;
        display: block;
        font-size: 1.5rem
    }
    #langBtn {
        display: inline-flex;
        align-items: center;
        gap: .25rem;
        position: absolute;
        right: calc(var(--navHeight) + .5rem);
        top: 0;
        height: var(--navHeight);
        padding: 0 .6rem;
        background: transparent;
        border: none;
        color: inherit;
        font-weight: 500;
        letter-spacing: 0;
        text-transform: none;
        transition: color .2s ease
    }
    #langBtn.is-open {
        text-decoration: none;
        font-weight: 600
    }
    .navItem {
        width: 100%;
        height: auto
    }
    .navMenu {
        display: none;
        background-color: var(--clrBlue70);
        color: white !important;
        width: 100%;
        height: auto;
        padding: 1rem 1.5rem;
        text-align: left;
        min-height: 44px;
        transition: background-color .2s ease;
        position: relative
    }
    .navBar .navMenu, .navBar.nav-scrolled .navMenu, .navBar.nav-home .navMenu {
        color: white !important
    }
    .has-submenu>.navMenu {
        padding-right: 3.5rem
    }
    .submenu-toggle {
        display: flex;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 3.5rem;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        background-color: transparent;
        transition: background-color .2s ease;
        font-size: 1.2em;
        color: white
    }
    .submenu-toggle:active {
        background-color: rgba(0, 0, 0, .2)
    }
    .submenu-toggle::after {
        content: "▼";
        transition: transform .3s ease
    }
    .has-submenu.submenu-open .submenu-toggle::after {
        transform: rotate(180deg)
    }
    .navMenu:active {
        background-color: var(--clrBlue90)
    }
    .navHamburger {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center
    }
    .navSub {
        left: auto;
        right: 0;
        border: 5px solid var(--clrBlue80);
        max-height: 80vh;
        overflow-y: auto
    }
    .navSub li a {
        padding: 1rem 1.5rem;
        min-height: 44px;
        display: flex;
        align-items: center
    }
    .navItem--language {
        position: absolute;
        top: 0;
        right: calc(var(--navHeight) + .5rem);
        display: flex;
        align-items: stretch;
        height: var(--navHeight);
        width: auto
    }
    body.menu-open .navItem--language {
        position: absolute;
        top: 0;
        right: calc(var(--navHeight) + .5rem);
        width: auto;
        margin-bottom: 0
    }
    .navItem--language>.navMenu {
        display: none
    }
    #langMenu {
        left: auto;
        right: 0;
        top: calc(var(--navHeight) - 4px)
    }
    body.menu-open .navItem--language>.navMenu {
        display: none
    }
    .has-submenu.open>.navMenu {
        border-bottom: 5px solid var(--clrBlue80)
    }
    body.menu-open::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, .5);
        z-index: 8;
        animation: fadeIn .3s ease
    }
    @keyframes fadeIn {
        from {
            opacity: 0
        }
        to {
            opacity: 1
        }
    }
    .navItem:hover .navSub {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }
}
@media (max-width:768px) {
    html {
        font-size: calc(var(--baseFtnSize) * 1.765)
    }
    #choiceValue .btnBar {
        flex-wrap: wrap
    }
    #choiceValue .infoEdition {
        flex-grow: 1;
        flex-shrink: 1;
        padding: 2rem 1rem
    }
    #choiceValue label {
        flex-grow: 1;
        padding: 1rem .5rem
    }
    #slideStories {
        grid-template-columns: 1fr auto 1fr
    }
    .faq-div {
        grid-template-columns: 1fr 1fr
    }
    .faq-title {
        grid-column: 1 / span 2
    }
    .gridCol {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        display: block
    }
    .card {
        margin: 1rem auto;
        width: 95vw
    }
    main, section {
        padding: 2rem
    }
    .storiesGrid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }
    #storiesMain {
        padding: 3rem 1rem 1.5rem
    }
    .storyTitle {
        font-size: 1.25rem
    }
}
@media (max-width:640px) {
    html {
        font-size: calc(var(--baseFtnSize) * 1.988)
    }
    .qrCode {
        grid-template-columns: 40% 55%;
        gap: 5%
    }
    #btnToTop {
        height: 3rem;
        width: 3rem
    }
    #choiceValue .btnBar {
        gap: 1rem
    }
    .container {
        width: 100%
    }
    .card {
        width: 90%;
        max-width: none;
        padding: 1.5rem 1rem
    }
    button {
        font-size: 1.5rem;
        padding: 0 1rem
    }
    .btnSlim {
        font-size: 1rem
    }
    #transparency .card {
        width: 75%;
        min-width: 220px
    }
    #btnSupport {
        font-size: 1.4rem;
        height: 4rem;
        padding-right: .35rem
    }
    #btnZap {
        width: 3rem;
        border-width: 2px
    }
    .submenu-toggle {
        width: 4rem;
        font-size: 1.5em
    }
    .has-submenu>.navMenu {
        padding-right: 4rem
    }
    footer {
        flex-direction: column;
        padding: 1.5rem
    }
    .footerDiv {
        min-width: 100%;
        margin-bottom: 1.5rem
    }
    .faqBox {
        grid-template-columns: 1fr;
        padding: 1.5rem
    }
    .faqTitle {
        grid-column: 1
    }
}
@media (max-width:480px) {
    html {
        font-size: clamp(15px, 3.6vw, 16px)
    }
    main, section {
        padding: 1rem
    }
    button {
        letter-spacing: 0;
        font-size: 1.3rem
    }
    .qrCode {
        display: flex;
        flex-direction: column;
        gap: 1rem
    }
    .qrCode img {
        max-width: 200px;
        margin: 0 auto
    }
    .qrCode p {
        text-align: center;
        margin-top: 2vw
    }
    .donateValue {
        display: none
    }
    .navBar {
        font-size: 1.1rem
    }
    #langBtn {
        font-size: .95rem;
        padding: 0 .45rem;
        right: calc(var(--navHeight) + .25rem)
    }
    .navMenu {
        padding: .7rem 1rem
    }
    footer {
        padding: 1rem
    }
    .faqBox {
        padding: 1rem;
        gap: .75rem
    }
    .footerTitle {
        font-size: 1.35rem
    }
    .footerLink, .footerP {
        font-size: .9em
    }
}
@media (max-width:400px) {
    .borderedH1 {
        font-size: clamp(3.2rem, 10vw, 4.3rem);
        word-break: break-word;
        overflow-wrap: anywhere
    }
    .borderedH1::after {
        border-bottom-width: .5rem
    }
    .txtGreatVibes {
        font-size: 4.25em !important;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;
        overflow-wrap: break-word;
        word-break: break-word
    }
}
@media (max-width:375px) {
    html {
        font-size: clamp(14px, 4.2vw, 15px)
    }
    h1 {
        font-size: 4.25rem
    }
    h2 {
        font-size: 3.75rem
    }
    button {
        font-size: 1.2rem;
        padding: 0 .75rem
    }
    .card {
        padding: .75rem .5rem
    }
    .cardTitle {
        font-size: 1.35rem
    }
}
@media (max-width:360px) {
    html {
        font-size: clamp(14px, 4.4vw, 15px)
    }
    main, section {
        padding: .75rem
    }
    .faq-div {
        padding: 2rem 0 3rem 0
    }
    .faq-question {
        font-weight: normal;
        font-size: .9rem;
        line-height: 1.1
    }
    h1 {
        font-size: 4rem
    }
    h2 {
        font-size: 3.75rem
    }
    button {
        font-size: 1.1rem;
        padding: 0 .5rem
    }
    .card {
        padding: .6rem .4rem
    }
    .cardTitle {
        font-size: 1.25rem
    }
    .txtGreatVibes {
        font-size: 3.9em !important;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;
        overflow-wrap: break-word;
        word-break: break-word
    }
    main, section {
        padding: 1vw .5vw
    }
}
@media (max-width:320px) {
    html {
        font-size: clamp(13px, 4.8vw, 14px)
    }
    h1 {
        font-size: 3.75rem
    }
    h2 {
        font-size: 3.5rem
    }
    h3 {
        font-size: 3.25rem
    }
    .txtGreatVibes {
        font-size: 3.65em !important;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;
        overflow-wrap: break-word;
        word-break: break-word
    }
}
@media (max-width:280px) {
    html {
        font-size: clamp(12px, 5.2vw, 13px)
    }
    .faq-div {
        gap: .5rem
    }
    .faq-question {
        line-height: 1
    }
    .txtGreatVibes {
        font-size: 3.5em !important;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;
        overflow-wrap: break-word;
        word-break: break-word
    }
}