@media screen and (min-width: 1921px) {
    body.compensate-for-scrollbar {
        margin-right: auto !important;
    }
}

/**
 * RWD PANEL
 */

@media screen and (min-width: 1140px) {
    .rwdPanel {
        display: none;
    }

    .rwdPanel-action-open,
    .rwdPanel-action-toggle {
        display: none !important;
    }
}

@media screen and (max-width: 1139px) {
    .rwdPanel {
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        transition-property: transform, -webkit-transform, -ms-transform;
        /* Closed: */
        pointer-events: none;
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
    }

    header.stickable .rwdPanel {
        z-index: -1;
    }

    .rwdPanel.active {
        pointer-events: all;
        transform: none;
        -webkit-transform: none;
        -ms-transform: none;
    }

    .rwdPanel-scrollLock body {
        position: fixed;
        width: 100%;
        overflow-y: scroll;
    }
}

/**
 * RWD MENU
 */

.rwdMenu {
    font-size: 1rem;
}

.rwdMenu ul {
    display: block;
    width: 100%;
    padding: 0;
}

.rwdMenu:not(:first-child) > ul {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu + .rwdMenu > ul {
    border-top: none;
}

.rwdMenu ul ul {
    display: none;
    box-shadow: inset 0 3px 5px -1px rgba(0, 0, 0, 0.12);
    background-color: rgba(0, 0, 0, 0.1);
}

.rwdMenu li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rwdMenu li.slided {
    border-bottom: none;
}

.rwdMenu a {
    color: inherit;
}

.rwdMenu li > *:first-child {
    flex: 1 0 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 46px;
    padding: 5px var(--container-padding);
    text-align: left;
    word-break: break-word;
    color: #000;
    border: none;
}

.rwdMenu li > *:first-child:hover {
    text-decoration: none;
}

.rwdMenu li.active > *:first-child {
    font-weight: 700;
    color: var(--color-secondary);
}

.rwdMenu > ul > li > *:first-child {
    text-transform: uppercase;
}

.rwdMenu > ul > li > ul {
    font-size: 0.875rem;
}

.rwdMenu > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 15px);
}

.rwdMenu > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 30px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 45px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 60px);
}

.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 75px);
}

.rwdMenu li > *:first-child > .fa,
.rwdMenu li > *:first-child > .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    flex-shrink: 0;
    margin: -9px 6px -9px -9px;
}

.rwdMenu li > *:first-child > .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.rwdMenu li > *:first-child > .caption {
    flex: 1 0 0;
}

.rwdMenu li > *:first-child > .caption * {
    display: inline-block;
}

.rwdMenu li > *:first-child > .caption ~ * {
    margin-left: 10px;
}

.rwdMenu .rwdMenu-count {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    text-align: center;
    font-size: 14px;
    color: #000;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.rwdMenu .user-nav li + li:before {
    display: none;
}

.cloneMenu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.06);
}

.cloneMenu-toggle::before {
    content: "\f107";
    display: block;
    font-family: 'FontAwesome', sans-serif;
    transition: all 0.3s;
}

.cloneMenu-toggle.active::before {
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

.rwdPanel .social-list {
    margin: 15px 0;
    text-align: center;
}

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 15px 15px 15px 0;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.4s;
    border-radius: 6px;
}

.rwdButton .animIcon {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    width: auto;
}

.rwdButton > * {
    transition: all 0.5s;
}

.rwdButton.rwdPanel-action-toggle.active {
    color: #fff;
    background-color: var(--color-secondary);
}

.rwdButton .animIcon--close span {
    background-color: #fff;
}

.rwdButton:not(.active) > .animIcon--close {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
}

.rwdButton.active > .animIcon--close {
    opacity: 1;
}

.rwdButton.active > .animIcon--close ~ * {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
}

/* --------------- BREAKPOINTS --------------- */

@media screen and (max-width: 1800px) {
    .footer-image {
        margin-right: 0;
        margin-left: 0;
    }
}

@media screen and (max-width: 1560px) {
    .projectsSlider{
        width: 100%;
        overflow: hidden;
    }
    .projectsSlider-section .slider-wrapper{
        margin-right: 0;
        width: calc(100% + 40px);
    }

    #main-menu > ul > li + li {
        margin-left: 5px;
    }

    .shareholder-top-section .aboutUs-img-secondary {
        right: -3%;
    }

    .shareholder-form-bird {
        right: 0;
    }
}

@media screen and (max-width: 1440px) {
    #main-menu li a {
        font-size: 15px;
    }
    .statute-section-content .section-right {
        width: 45%;
    }
    .statute-section-content .section-left{
        width: 55%;
    }
    .mainSlider-slide {
        min-height: unset;
    }

    .donate-price-buttons {
        flex-grow: 1;
    }

    .donate-price-button {
        min-width: unset;
        flex-grow: 1;
    }

    .shareholder-form-bird {
        right: -10%;
    }

    .btn-md {
        height: 46px;
        min-width: unset;
        padding: 5px var(--space-40);
    }

    .menu-box ul li a {
        min-height: 46px;
    }

    section .btn-lg {
        min-height: 46px;
    }

    .header-right {
        gap: 30px;
    }

    .btn-lg {
        min-height: 46px;
        min-width: unset;
        padding: 5px 15px;
    }

    .header-right > .btn + .langs-menu:before {
        left: -15px;
    }

    header .logo {
        max-width: 70px;
    }

    .subpage #content {
        padding-top: 85px;
    }

    header .btn-lg {
        font-size: 14px;
    }

    .menu-box-wrapper {
        top: 95px;
    }
}

@media screen and (max-width: 1280px) {
    .header-right .btn .icon {
        display: none;
    }
    .project-info-item {
        padding-right: 15px;
    }
    .numbers-section .bird {
        z-index: 3;
        right: 35%;
        top: -12%;
        max-width: 15.6%;
    }
    .numbers-section-content{
        margin: calc(var(--space-25) * -1);
    }
    .number-box{
        padding: var(--space-25);
    }

    .board-item {
        gap: var(--space-40);
    }

    .footer-right {
        gap: 10px;
    }

    .projects-list .project-item {
        padding: 15px 5px;
    }

    .shareholder-box-inner {
        padding: 5% var(--space-40);
    }

    #main-menu li a {
        font-size: 14px;
    }

    .projects-list {
        margin: -15px -5px;
    }

    .lang {
        width: 40px;
        height: 40px;
    }

    .lang span {
        font-size: 13px;
    }

    header .logo {
        max-width: 60px;
    }

    .subpage #content {
        padding-top: 75px;
    }

    .menu-box-wrapper {
        top: 75px;
    }

    .lang::before, .lang::after {
        width: 40px;
        height: 40px;
    }
}

@media screen and (min-width: 1140px) {
    .mainsearch {
        top: 0 !important;
    }

    .menu-box-menu {
        display: block !important;
    }

    .menu-box {
        height: unset !important;
    }

    .footer-content {
        display: block !important;
    }
}

@media screen and (max-width: 1139px) {
    .mainSlider-text {
        font-size: 18px;
    }
    .menu-box ul li a{
        padding: 5px 15px;
    }
    .menu-box ul li:before{
        width: 1px;
        height: 10px;
        position: absolute;
        content: "";
        left: -1px;
        top: 50%;
        transform: translateY(-50%);
        background: #000 !important;
    }
    .menu-box ul li:after{
        background-color: #000;
    }
    .menu-box-wrapper{
        top: 95px;
    }
    header .logo {
        max-width: 80px;
    }
    .subpage #content{
        padding-top: 95px;
    }
    .statute-section-content .section-right,
    .statute-section-content .section-left{
        width: 100%;
    }
    .statute-section-content .section-right{
        max-width: 520px;
        margin: var(--space-60) auto;
        pointer-events: none;
    }

    .statute-section-content .section-left{
        padding-right: 0;
    }
    .statute-section-content{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }
    .projectsSlider-section .slider-wrapper{
        margin-right: 0;
        width: calc(100% + 10px);
    }
    .project-item{
        padding: 5px;
    }
    .projectsSlider{
        margin: -5px;
    }
    .bananer-left {
        width: 40%;
    }

    .bananer-left .img-wrapper {
        max-width: 100%;
        margin-right: 0;
    }

    .bananer-right {
        width: 60%;
    }

    .btn-scroll {
        display: none;
    }

    .rwdPanel {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .footer-logo {
        max-width: 200px;
        margin: 0 auto var(--space-50);
    }

    .footer-right .contact-wrapper li .caption-big {
        font-size: 18px;
    }

    .footer-right .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .footer-socials ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .donate-price-buttons {
        width: 100%;
    }

    .donate-price-button {
        width: 16.6666%;
    }

    .paypal-logo {
        margin-top: 20px;
    }

    .donate-price-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .donation-goal-box {
        padding: 20px 5px;
    }

    .donate-goals-list {
        margin: -20px -5px;
    }

    .contact-person {
        gap: var(--space-25);
    }

    .commitment-text {
        font-size: 20px;
        padding: 10px var(--space-40);
    }

    .background-text-section {
        min-height: unset;
    }

    .subpage .aboutUs-img-secondary {
        position: absolute;
        right: 14%;
        max-width: 32%;
        top: 18px;
    }

    .shareholder-bananer-content {
        margin: -10px;
    }

    .shareholder-box {
        padding: 10px;
    }

    .shareholder-row {
        gap: var(--space-60);
    }

    .aboutUs-section .section-left {
        padding-right: 8%;
    }

    .project-info-item {
        line-height: 1.5;
    }

    .floating-title, .big-text {
        display: none !important;
    }

    .project-row-item {
        padding: 5px;
    }

    .project-row-bottom {
        margin: -5px;
    }

    .project-row-item-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    header {
        background-color: #fff;
    }

    .langs-menu-short-hover {
        display: none;
    }

    .lang:before, .lang:after {
        content: unset;
    }

    header .btn-lg {
        min-height: unset;
        height: 40px;
    }

    .rwdButton {
        font-size: 15px;
        border-radius: 50%;
    }

    .mainpage .logo-black {
        opacity: 1 !important;
    }

    .mainpage .logo-white {
        opacity: 0 !important;
    }

    .header-right {
        gap: 10px;
    }

    .menu-box-menu {
        display: none;
        background-color: #f1eddb;
        z-index: 2;
        padding: 0 var(--container-padding);
    }

    .menu-box-toggle .toggle-more {
        display: flex;
        background: transparent;
        border: none;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 15px;
        gap: 15px;
    }

    .menu-box ul li {
        flex-grow: unset;
        width: unset;
        max-width: unset;
    }

    .menu-box {
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        z-index: 3;
        background: #f1eddb;
    }

    .menu-box-toggle .icon {
        margin-top: 3px;
        width: 10px;
        height: 10px;
    }


    .menu-box-toggle {
        cursor: pointer;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        position: relative;
        font-size: 14px;
    }

    .gallery-list-item {
        padding: 5px;
    }

    .gallery-list {
        margin: -5px;
    }

    .main-menu-button, .rwdButton {
        margin: 0;
    }

    .project-thumbnail .project-category {
        font-size: 13px;
        padding: 10px;
    }

    .project-item .project-title {
        font-size: 16px;
    }

    .text table tr td {
        padding: 6px 10px;
    }

    #main-menu {
        display: none;
    }

    .langs-menu {
        display: none !important;
    }

    .rwd-hide {
        display: none;
    }

    .text img {
        max-width: 100%;
        max-width: 100% !important;
    }

    .container {
        width: 100%;
    }

    .article-image {
        margin-right: 25px;
        margin-bottom: 15px;
    }

    .lang .langs-menu-short {
        display: none;
    }

    .lang .langs-menu-long {
        display: block;
    }

    .mainsearch.rwdPanel .mainsearch-search {
        background-color: #f0f;
    }

    .mainsearch.rwdPanel .dropdown-menu {
        position: static !important;
        width: 100%;
        box-shadow: none;
    }

    .mainsearch.rwdPanel .mainsearch-search,
    .mainsearch.rwdPanel .dropdown-menu {
        padding: 15px;
    }

    .mainsearch.rwdPanel .dropdown-menu .dropdown-search-li.all-search-results {
        margin-top: 15px;
    }

    .mainsearch.rwdPanel .form-element-container {
        width: calc(100% - 46px);
        flex-grow: 0;
    }

    .mainsearch.rwdPanel .mainsearch-submit {
        height: 46px;
    }

    .mainsearch.rwdPanel input,
    .mainsearch.rwdPanel .mainsearch-submit {
        border: none;
    }
}

@media screen and (max-width: 1000px) {
    .aboutUs-section .section-header {
        margin-bottom: var(--space-60);
    }
    .aboutUs-title-line:first-child{
        margin-left: 0;
    }
    .aboutUs-section .section-header{
        justify-content: center;
    }
    .aboutUs-section .section-left {
        padding-right: 0;
    }

    .aboutUs-section .section-left, .aboutUs-section .section-right {
        width: 100%;
    }

    .aboutUs-img-secondary {
        top: 0;
        right: 0;
    }

    .aboutUs-section .section-right {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
    }
    .aboutUs-title{
        min-height: unset;
    }
    .aboutUs-section .section-right{
        aspect-ratio: unset;
    }
    .contact-section-content {
        flex-direction: column-reverse;
        display: flex;
    }

    .aboutUs-section .section-header .section-title {
        margin-bottom: 0;
    }

    .footer-image {
        display: none;
    }

    .project-support-section-main .project-support-img {
        max-width: unset;
    }

    .project-support-section-main .project-support-content .project-support-right {
        max-width: 250px;
        margin: 0 auto;
        width: 100%;
    }

    .project-support-section-main .project-support-content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-person a, .contact-person-name, .contact-person-title {
        font-size: 18px;
    }

    .project-row-item {
        width: 100%;
    }

    .contact-section-content .contact-left {
        max-width: 500px;
        margin: var(--space-50) auto 0;
        width: 100%;
    }
    .contact-socials{
        position: static;
    }

    .contact-bird{
        top: 0;
        left: unset;
        right: 0;
        max-width: 28%;
        transform: none;
    }
    .contact-section-content .contact-right {
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }

    .goals-list {
        width: 100%;
    }

    .goals-list-section .aboutUs-title {
        display: none;
    }

    .certificates-list-item {
        width: 33.333%;
    }

    .shareholder-box-inner {
        aspect-ratio: unset;
    }

    .shareholder-box:nth-child(n + 3) {
        margin: 0 auto;
    }

    .shareholder-box {
        width: 50%;
    }

    .aboutUs-section-content {
        display: flex;
        flex-direction: column-reverse;
    }
    .subpage .aboutUs-section .section-header{
        margin-bottom: var(--space-50);
    }

    .subpage .aboutUs-section .section-right {
        margin-bottom: var(--space-50);
        max-width: unset;
        aspect-ratio: unset;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        width: 100%;
    }
    .shareholder-top-section .aboutUs-title-line:first-child {
        margin-left: 0;
    }
    .subpage .aboutUs-img-secondary {
        position: absolute;
        right: 10%;
        max-width: 32%;
        top: 0px;
    }

    .aboutUs-img-main{
        position: static;
    }
    .subpage .aboutUs-section .section-left {
        width: 100%;
        padding-right: 0;
    }

    .project-support-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .project-support-title {
        text-align: center;
    }

    .project-support-bird {
        margin-right: auto;
        margin-top: 0;
        max-width: 16%;
        margin-left: 72%;
    }


    .project-support-big-text, .project-support-right-title {
        max-width: 800px;
        text-align: center;
        margin: 0 auto;
    }

    .project-support-right-title {
        margin-bottom: calc(var(--space-25) + 10px);
    }

    .project-support-left {
        width: 100%;
    }

    .project-support-right {
        margin-left: unset;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 900px) {
    .contact-person-title {
        margin-bottom: 10px;
    }

    .footer-bar-links:after {
        display: none;
    }

    .contact-person a + a {
        margin-top: 5px;
    }

    .contact-collection-texts-wrapper * {
        font-size: 16px !important;
    }

    .board-item-left {
        width: 100%;
        max-width: 400px;
    }

    .commitment-text {
        line-height: 1.2;
    }

    .footer-bar {
        text-align: center;
        padding: 13px 0;
        line-height: normal;
    }

    .board-item + .board-item {
        margin-top: var(--space-40);
    }

    .board-item {
        display: flex;
        flex-direction: column !important;
    }

    .board-item:nth-child(2n) .board-arrow {
        transform: none;
    }

    .board-item .board-arrow .icon {
        transform: rotate(90deg);
    }

    .board-item-right {
        max-width: 600px;
        margin: 0 auto;
    }

    .project-thumbnail .project-category {
        font-size: 12px;
    }

    .footer-bar-content > * {
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    .footer-bar-content.footer-bar-content > * {
        margin-left: 15px;
        margin-right: 15px;
    }

    .footer-bar .footer-bar-links {
        display: block;
        margin: -3px -8px;
    }

    .footer-bar .footer-bar-links:not(:last-child) {
        margin-bottom: 3px;
    }

    .footer-bar-links > li {
        margin: 3px 8px;
        line-height: 20px;
    }

    .copyright,
    .copyright-undicom {
        margin-top: 4px;
        margin-bottom: 4px;
        line-height: 20px;
    }

    .btn-md {
        font-size: 15px;
    }

    .commitment-row .commitment-text + .commitment-img {
        display: none;
    }

    .commitment-row {
        justify-content: flex-start;
    }

    .commitment-row:nth-child(2n) {
        flex-direction: row-reverse;
    }

    .commitment-text {
        width: 75%;
    }
}


@media screen and (max-width: 767px) {
    .section-header-left {
        width: 100%;
    }
    .contact-section-content .contact-right{
        flex-direction: column;
    }
    .contact-bird{
        max-width: 35%;
    }
    .shareholder-title{
        padding-right: 0;
    }
    .statute-secondary-img{
        display: none;
    }
    .statute-section .btn-with-icon{
        margin:  0 auto;
    }
    .section-teaser{
        width: 100%;
    }
    .number-box{
        width: 50%;
    }
    .number-box:nth-child(2n) .number-box-inner{
        margin-top: 0 !important;
    }
    .numbers-section .bird{
        display: none;
    }
    .mainSlider-title .line2 {
        padding-left: 0;
    }

    .mainSlider-title .line1 {
        padding-right: 0;
    }

    .mainSlider-title {
        padding: var(--space-40) 0 0;
        text-align: left;
        width: 100%;
    }

    .donation-goal-box {
        width: 50%;
    }

    .contact-person {
        padding: 10px;
    }

    .contact-people-list {
        margin: -10px;
    }

    .contact-socials {
        position: static;
        margin: var(--space-50) auto;
        aspect-ratio: unset;
        width: 100%;
        justify-content: center;

    }

    .contact-bird {
        transform: unset;
        top: 0;
        left: unset;
        right: 0;
    }

    .shareholder-form-bird {
        display: none;
    }

    .section-header-left {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .shareholder-row {
        flex-direction: column !important;
    }

    .shareholder-row-left {
        width: 100%;
        max-width: 400px;
    }

    .shareholder-row:nth-child(2n) .shareholder-arrow .icon {
        transform: none !important;
    }

    .shareholder-row-left .shareholder-arrow {
        top: unset !important;
        bottom: 0 !important;
        right: unset !important;
        left: 50% !important;
        transform: translate(-50%, 50%) rotate(90deg) !important;
    }

    .gallery-list-item {
        width: 33.3333%;
    }

    .section-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-25);
    }

    .project-bananer-title {
        font-size: 16px;
    }

    .project-info-top {
        gap: 15px;
    }

    .project-info-item {
        padding-right: 0;
        width: 100%;
    }

    .text .table-responsive-wrapper {
        position: relative;
        padding-bottom: 40px;
        margin: 20px 0;
    }

    .projects-list .project-item {
        width: 50%;
    }

    .project-support-content {
        gap: var(--space-50);
    }

    .text .table-responsive-wrapper::after {
        pointer-events: none;
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 45px;
        background-size: contain;
        background-position: right 15px center;
        background-repeat: no-repeat;
        background-image: url(../images/rwd-table-hand.png);
        -webkit-animation-name: rwd-hand-move;
        animation-name: rwd-hand-move;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-direction: alternate;
        animation-direction: alternate;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    .text .table-responsive {
        margin: 0;
        border: none;
    }

    .text table {
        margin: 0;
        min-width: 780px;
    }

    @keyframes rwd-hand-move {
        0% {
            transform: translateX(-30px);
        }
        100% {
            transform: translateX(0);
        }
    }
    @-webkit-keyframes rwd-hand-move {
        0% {
            transform: translateX(-20px);
        }
        100% {
            transform: translateX(0);
        }
    }
    .form .form-element-captcha .captcha-image-wrapper {
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 706px) {
    footer .show-hide {
        display: block !important;
    }
}

@media screen and (max-width: 639px) {
    .logo-emblem {
        width: 80px;
    }
    .aboutUs-section .section-right{
        aspect-ratio: 860 / 820;

    }
    .aboutUs-title{
        min-height: 100%;
    }
    .subpage .aboutUs-section .section-right{
        aspect-ratio: 860 / 820;
    }
    .aboutUs-img-main {
        position: absolute;
    }
    .footer-logo {
        max-width: 150px;
    }

    .footer-top-content {
        padding: var(--space-60) 0;
    }

    .footer-right .contact-wrapper li .caption-big {
        font-size: 17px;
    }

    .footer-top-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-right, .footer-left {
        width: 100%;
        justify-content: center;
    }

    .project-support-title {
        margin-top: 0;
    }

    .contact-person {
        width: 100%;
    }

    .contact-collection-texts-wrapper * {
        font-size: 18px !important;
    }

    .contact-list-wrapper .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .contact-list-wrapper .icon-wrapper .icon {
        width: 15px;
        height: 15px;
    }

    .contact-text {
        padding-left: calc(vaR(--space-40) + 50px);
    }

    .contact-socials .social-icon {
        width: 50px;
        height: 50px;
    }

    .subpage .aboutUs-section .section-right {
        min-width: unset;
        width: 100%;
    }

    .goal {
        padding-left: 0;
    }

    .goal-text {
        font-size: 14px;
    }

    .subpage .aboutUs-img-secondary {
        top: 0;
        right: 0;
    }

    .aboutUs-title {

        padding-left: var(--space-25);
    }

    .aboutUs-title-line:first-child {
        margin-left: 0;
    }

    .aboutUs-title-line:nth-child(2) {
        margin-left: 15%;
    }

    .subpage .aboutUs-section-content .aboutUs-title {
        font-size: clamp(50px, 15vw, 165px);
    }

    .certificates-list-item {
        width: 50%;
    }

    .shareholder-box {
        width: 100%;
    }

    .project-info-item {
        gap: 10px;
    }

    .shareholder-top-section .aboutUs-title-line:first-child {
        margin-left: -1%;
    }

    .project-support-bird {
        display: none !important;
    }

    .project-bananer-title {
        font-size: 14px;
        padding: 5px;
    }

    .text img {
        max-width: 100%;
        max-width: 100% !important;
        width: inherit;
        width: inherit !important;
        height: auto;
        height: auto !important;
    }

    .project-info-item {
        display: flex;
        flex-direction: column;
    }

    .project-info-item .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .project-info-caption {
        text-align: center;
    }

    .text table,
    .text iframe,
    .text object {
        max-width: 100%;
        max-width: 100% !important;
        width: 100%;
        width: 100% !important;
    }

    .article-image {
        margin-right: 0;
        margin-top: 0;
        width: 100%;
        display: block;
        float: none;
        max-width: none;
        text-align: center;
        line-height: 0;
    }

    .breadcrumb > li:not(:first-child):not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }

    .breadcrumb > li:not(:first-child):not(:last-child) a {
        font-size: 0;
        text-indent: -1000px; /* Apple */
    }

    .breadcrumb > li:not(:last-child) a span {
        display: none;
    }

    .breadcrumb > li:not(:first-child):not(:last-child) a:after {
        content: "...";
        font-size: 12px;
    }

    .breadcrumb > li + li:before {
        padding: 0 6px;
    }

    .breadcrumb > li:first-child a {
        font-size: 0 !important;
        letter-spacing: 0 !important;
    }

    .breadcrumb > li:first-child a:after {
        content: "\f015";
        display: inline-block;
        font-family: FontAwesome, sans-serif;
        font-size: 12px;
    }
}

@media screen and (max-width: 560px) {
    .aboutUs-section .btn-with-icon {
        margin: 0 auto;
    }
    .menu-box-wrapper{
        top: 75px;
    }
    header .logo {
        max-width: 60px;
    }
    .subpage #content{
        padding-top: 75px;
    }
    .bananer-right{
        width: 100%;
    }
    .bananer-left{
        width: 100%;
    }
    .bananer-content {
        justify-content: center;
        flex-direction: column-reverse;
        align-items: center;
    }

    .text {
        word-wrap: break-word;
        /*font-size: 14px;*/
    }

    .donate-price-buttons {
        flex-wrap: wrap;
    }

    .donate-price-button {
        width: 33.333%;
    }

    .header-right .btn .icon {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .modal-footer > .btn {
        width: 100%;
    }
    .number-box {
        width: 100%;
    }
    .donation-goal-box {
        width: 100%;
    }


    .contact-collection-texts-wrapper * {
        font-size: 16px !important;
    }

    .commitment-row + .commitment-row {
        margin-top: var(--space-60);
    }

    .commitment-img {
        width: unset;
        max-width: 200px;
    }

    .commitment-row {
        display: flex;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
    }

    .commitment-text {
        width: 100%;
        padding: 0;
        padding-top: var(--space-25);
        margin: 0 auto;
        max-width: 300px;
    }

    .header-right {
        gap: 5px;
    }

    .header-right .btn {
        font-size: 13px;
    }

    .modal-footer .btn + .btn {
        margin-left: 0;
        margin-top: 5px;
    }

    .projects-list .project-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .menu-box ul li{
        width: 100%;
    }
}

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

    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .donate-price-input {
        width: 100%;
    }

    .contact-collection-texts-wrapper * {
        font-size: 15px !important;
    }

    .certificates-list-item {
        width: 100%;
    }

    .project-row-item {
        flex-direction: column;
    }

    .gallery-list-item {
        width: 50%;
    }


    .rwdPanel .btn .icon {
        display: block;
    }

    .header-right > .btn.btn-lg {
        display: none;
    }

    .rwdPanel .btn {
        display: flex;
        max-width: 200px;
        margin: var(--space-25) auto 0;
    }
}

@media screen and (max-width: 319px) {
    body {
        width: 320px;
    }
}

/* --------------- GLOBAL VARIABLES --------------- */

@media screen and (max-width: 1600px) {
    :root {
        --space-60: 55px;
        --space-50: 45px;
        --space-40: 35px;

        --font-48: 40px;
        --font-36: 32px;
        --font-24: 22px;
    }
}

@media screen and (max-width: 1440px) {
    :root {
        --space-60: 50px;
        --space-50: 40px;

        --font-48: 36px;

        --container-padding: 30px;
    }
}

@media screen and (max-width: 1366px) {
    :root {
        --space-25: 20px;

        --font-48: 34px;
        --font-36: 28px;
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --space-60: 40px;
        --space-50: 35px;
        --space-40: 30px;

        --font-48: 32px;

        --container-padding: 20px;
    }
}

@media screen and (max-width: 1139px) {
    :root {
        --space-60: 35px;
        --space-50: 30px;
        --space-40: 25px;
        --space-25: 15px;
    }
}

@media screen and (max-width: 960px) {
    :root {
        --space-60: 30px;
        --space-50: 25px;
        --space-40: 20px;
    }
}

@media screen and (max-width: 900px) {
    :root {
        --container-padding: 15px;
    }
}

@media screen and (max-width: 639px) {
    :root {
        --font-48: 30px;
        --font-36: 24px;
        --font-24: 18px;
    }
}

@media screen and (max-width: 420px) {
    :root {
        --font-48: 24px;
        --font-36: 20px;
        --font-24: 16px;
    }
}