@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:first-child {
    border-top: 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-primary);
}

.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: 46px;
    height: 46px;
    padding: 0;
    margin: 5px 0 5px 10px;
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.4s;
    border-radius: 50%;
}

.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: #f00;
}

.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: 1670px) {
    #main-menu li a {
        padding: 15px 9px;
    }
}

@media screen and (max-width: 1600px) {
    .social-list > ul {
        margin: -3px;
    }

    .social-list > ul > li {
        padding: 3px;
    }

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

    .langs-menu {
        margin-left: 2px;
    }

    .top .social-list {
        margin-left: 10px;
    }

    .header-slider .text.txt {
        width: 26%;
    }

    .help-title {
        padding-right: 20%;
    }

    .help-link {
        padding: 37px 35px 20px;
    }

    .help-content-inner {
        padding: 25px 50px;
    }

    .about-text .btn {
        margin-bottom: calc(var(--space-40) + var(--space-40) - 25px);
    }
}

@media screen and (max-width: 1440px) {
    .social-icon {
        width: 42px;
        height: 42px;
    }

    .langs-menu a {
        width: 42px;
        height: 42px;
    }

    .header-slider .text.txt {
        width: 27%;
    }

    .help-link {
        padding: 35px 35px 20px;
    }

    .help-title {
        padding-right: 15%;
    }

    .help-content-inner {
        padding: 25px 45px;
    }


    .arrow-down {
        bottom: -80px;
    }

    .arrow-down {
        width: 160px;
        height: 160px;
    }

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

    .donation-bar a {
        padding: 8px;
    }
	
	.modal-dialog {
    max-width: 1360px;
    margin: 30px auto;
	width:90%;
}

.modal-content {
    max-width: 1360px;
    width:100%; padding: 0 var(--space-60); 
        min-width: 1px;
    }
	
	.modal-header button.close {
    margin-right: calc(-1 * var(--space-60) - 36px);
}
}

@media screen and (max-width: 1366px) {
    #main-menu li a {
        padding: 15px 4px;
    }

    .logo a {
        display: block;
        width: 90px;
    }

    .top-link {
        width: 160px;
    }

    #content {
        padding-top: 110px;
    }

    .header-slider .text.txt {
        width: 28%;
    }

    .help-link {
        padding: 30px 30px 20px;
    }

    .help-title {
        padding-right: 10%;
    }

    .help-content-inner {
        padding: 25px 40px;
    }


    .arrow-down {
        bottom: -70px;
    }

    .arrow-down {
        width: 140px;
        height: 140px;
    }

    .about-box {
        align-items: flex-start;
    }

    .footer-box .social-icon {
        width: 46px;
        height: 46px;
    }

    .donation-bar a {
        padding: 7px;
    }

    .logotypes-box-container {
        padding-bottom: calc(var(--space-40) + var(--space-30));
    }

    .training-list {
        margin: -10px;
    }

    .training-item {
        padding: 10px;
    }
.target-items {
    margin: -15px;
}

.donation-target {
    padding: 15px;
}

}

@media screen and (max-width: 1280px) {
    .top-link {
        width: 140px;
        font-size: 13px;
    }

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

    .header-slider .text.txt {
        width: 29%;
    }

    .help-link {
        padding: 25px;
    }

    .help-title {
        padding-right: 5%;
    }

    .help-content-inner {
        padding: 20px 35px;
    }

    .arrow-down {
        bottom: -60px;
    }

    .arrow-down {
        width: 120px;
        height: 120px;
    }

    .donation-bar a {
        padding: 6px;
    }


    .activities-submenu ul li a {
        min-width: 1px;
    }

    .counter-nb {
        font-size: 4.5vw;
    }
	
	.target-items {
    margin: -10px;
}

.donation-target {
    padding: 10px;
}
}

@media screen and (max-width: 1200px) {
    .langs-menu {
        margin-left: 0;
    }

    .social-list > ul {
        margin: -2px;
    }

    .social-list > ul > li {
        padding: 2px;
    }

    .top .social-list {
        margin-left: 10px;
    }

    .logo {
        width: 80px;
    }

    #main-menu li a {
        padding: 15px 3px;
        font-size: 13px;
    }

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

    .langs-menu a {
        width: 40px;
        height: 40px;
    }

    .top-link {
        width: 130px;
        font-size: 13px;
    }

    .top-link .btn-caption {
        margin-left: 10px;
    }

    .header-slider .text.txt {
        width: 30%;
    }

    .help-link {
        padding: 20px;
    }

    .help-title {
        padding-right: 0;
    }

    .help-content-inner {
        padding: 20px 30px;
    }

    .arrow-down {
        bottom: -50px;
    }

    .arrow-down {
        width: 100px;
        height: 100px;
    }

    .counter-nb {
        font-size: 5vw;
    }
	
	.target-items {
    margin: -5px;
}

.donation-target {
    padding: 5px;
}
}

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

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

@media screen and (max-width: 1139px) {
    .footer-bar-content {
        gap: 10px;
        flex-direction: column;
    }

    .footer-bar-left {
        justify-content: center;

    }

    .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;
    }

    .top-link {
        width: auto;
        font-size: 13px;
    }

    .slider .btn.btn-donation {
        right: 20px;
        bottom: 20px;
        width: auto;
        padding-left: 10px;
        padding-right: 20px;
        height: 46px;
    }

    .slider .btn.btn-donation .btn-icon {
        padding: 5px;
        margin-right: 7px;
    }

    .help-item.help-item-first {
        order: initial;
    }

    .help-item:nth-child(2) {
        order: initial;
    }

    .help-item:nth-child(3) {
        order: initial;
    }

    .help-item {
        order: initial;
    }

    .help-item.help-item-first {
        order: initial;
    }

    .help-item:nth-child(2) {
        order: initial;
    }

    .help-item:nth-child(3) {
        order: initial;
    }

    .help-item {
        order: initial;
    }

    .help-item.help-item-first {
        width: 100%;
        text-align: left;
        padding: 0;
        margin-bottom: var(--space-60);
        padding: 7px;
    }

    .help-item.help-item-last {
        width: 100%;
    }

    .donation-bar a img {
        display: block;
        margin: 0 auto;
        height: 40px;
    }

    .pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
        padding: 0;
    }

    .donation-bar {
        justify-content: center;
    }

    header.stickable {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .social-list > ul > li {
        border-bottom: 0 none;
    }

    .contact-box-img {
        display: none;
    }

    .contact-title {
        padding: 0;
        padding-bottom: 5px;
    }

    .contact-box {
        width: 100%;
    }

    .form-box-right {
        width: 100%;
    }

    .action-right {
        width: 34%;
        padding-left: 15px;
    }

    .program-link {
        padding: 20px;
    }

    .icon-file {
        width: 40px;
        flex-shrink: 0;
        padding: 0;
        margin-right: 14px;
    }

    .icon-file svg {
        width: 40px;
    }

    .files-list ul li a {
        padding: 10px;
    }

    .file-name {
        width: auto;
        flex-grow: 1;
    }

    .file-name-content {
        width: auto;
    }

    .file-name {
        padding-right: 0;
    }

    .icon-download {
        width: 19px;
        margin-right: 10px;
        flex-shrink: 0;
    }

    .icon-download svg {
        width: 19px;
    }

    .donation-right .btn.btn-donation {
        width: auto;
        height: 50px;
        margin: 0 auto;
        font-size: 15px;
        height: 46px;
        padding-left: 10px;
        padding-right: 20px;
    }

    .donation-right {
        flex-wrap: wrap;
        padding-right: 30px;
        width: 74%;
        padding-left: 30px;
    }

    .donation-text {
        padding-right: 0;
        margin-bottom: 10px;
    }
    .donation-title {
        margin-bottom: 10px;
    }

    .donation-box {
        max-width: 100%;
    }
	
	.btn.btn-donation .btn-icon {
    height: 30px;
    margin-right: 10px;
}

.news.video-news .play {
    width: 70px;
    height: 70px;
    background-size: contain;
}
}

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


    .footer-box {
        width: 100% !important;
        float: none !important;
        padding: 15px 0 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-col-title {
        background: url(../images/icons/arrow_down2.svg) no-repeat right 5px;
        background-size: 20px 20px;
        margin-bottom: 0;
        font-size: 20px;
        padding-bottom: 15px;
        padding-left: 0;
    }

    .footer-col-title.active {
        background: url(../images/icons/arrow_up2.svg) no-repeat right 5px;
        background-size: 20px 20px;
    }

    .show-hide {
        display: none;
        padding-bottom: 15px;
    }

    .footer-boxes-container {
        padding-top: 0;
        padding-bottom: 0;
    }

    .footer-box:last-child {
        display: none;
    }

    .footer-boxes {
        flex-wrap: wrap;
    }

    .footer-box-container {
        padding: 0;
    }

    .activities-submenu ul li {
        padding: 3px;
    }

    .activities-submenu ul {
        margin: -3px;
    }

    .counter-nb {
        font-size: 6vw;
    }

    .donation-right {
        padding: 20px;
    }
}

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


    .about-box {
        display: flex !important;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .about-photo {
        width: 100%;
        max-width: 714px;
        margin: 0 auto !important;
    }

    .about-text {
        width: 100%;
        margin-bottom: 20px;
        background: url(../images/full_line.png) no-repeat bottom center;
    }

    .stop-box, .frame.stop-box {

        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .stop-left, .frame .stop-left {
        width: 90%;
        margin: 0 auto;
        left: auto;
    }

    .stop-right, .frame .stop-right {
        width: 100%;
        margin: 0;
        justify-content: center;
        align-items: center;
        display: flex
;
        flex-wrap: wrap;
        margin-bottom: 30px;
        padding-top: 0;
    }
	
.subpage .stop-box-container {
    padding-top: 0;
}

    .stop-right-title, .frame .stop-right-title {
        text-align: center;
        width: 100%;
    }

    .pink-title, .frame .pink-title {
        width: auto;
        max-width: none;
        display: inline-block;
    }

    .black-title, .frame .black-title {
        left: 0;
    }

    .subpage .news {
        width: 50%;
    }

    .activities-submenu ul {
        flex-wrap: wrap;
    }

    .program-item {
        width: 50%;
    }

    .subpage .about-text {
        width: 100%;
    }

    .subpage .about-photo {
        width: 100%;
        max-width: 574px;
    }

    .counter-nb {
        font-size: 6.5vw;
    }
	
	.hide-after-success > img {
    display: none;
}

form#report-form {
    width: 100%;
}

.black-title:first-child {
    left: auto;
    right: auto;
    margin: 0;
    text-align: center;
}

.pink-title:nth-child(2) {
    left: auto;
    right: auto;
    margin: auto;
}

.donation-target {
    width: 33.33%;
}
}

@media screen and (max-width: 900px) {
    .footer-bar-left {
        display: inline-block;
    }

    .footer-bar-links:has(li) + .copyright:before {
        display: none;
    }

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

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

    .help-item {
        width: 33.33%;
    }

    .contact-title strong {
        font-size: 7vw;
    }

    .counter-item-content {
        padding: 26px;
    }

    .subpage .logotype-slide {
        width: 20%;
    }
	
	.modal-header {
    margin-top: 0;
}

    .modal-content {
        padding: 0;
    }
	
    .modal-header button.close {
        width: 46px;
        height: 46px;
        font-size: 29px;
        right: 10px;
        top: 10px;
        padding-bottom: 5px;
        margin: 0;
    }

}

@media screen and (max-width: 850px) {
    .action-details {
        flex-direction: column;
    }

    .action-photo {
        width: 100%;
    }

    .action-right {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .campaign-item {
        width: 50%;
    }

    .campaigns-list {
        flex-wrap: wrap;
    }

    .counter-nb {
        font-size: 7vw;
    }

    .counter-item-content {
        padding: 24px;
    }
}

@media screen and (max-width: 767px) {
    .text .table-responsive-wrapper {
        position: relative;
        padding-bottom: 40px;
        margin: 20px 0;
    }

    .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;
    }

    .header-slider-title {
        width: 100%;
        margin-bottom: 20px;
    }

    .header-slider .text.txt {
        width: 100%;
    }

    .header-slider {
        flex-wrap: wrap;
    }

    .box-header {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }

    .box-title {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }


    .pagination-wrapper ul li {
        padding: 0;
    }

    .contact-title strong {
        font-size: 8vw;
    }

    .contact-box {
        flex-wrap: wrap;
    }

    .contact-item {
        width: 50%;
    }

    .contact-item:first-child {
        width: 100%;
        margin-bottom: 20px;
    }

    .grid-item {
        flex-wrap: wrap;
    }

    .grid-photo {
        width: 100%;
        margin-bottom: 30px;
    }

    .grid-text {
        width: 100%;
    }

    .counter-nb {
        font-size: 7.5vw;
    }

    .counter-item-content {
        padding: 22px;
    }
	
	.modal-content {

}

.modal-header {
    margin-top: 0;
}

    .modal-header button.close {

    }
	
	.modal-header button.close {

	}
	
    .amounts-list-inner {
        margin-bottom: 30px;
        width: 100%;
    }

.input-wrapper {
    padding-left: 0;
    width: 100%;
}

.amounts-list {
    flex-wrap: wrap;
}
.amounts-list-buttons {
    justify-content: center;
}

.amounts-list-inner input {
    margin: 5px auto;
}

.donation-target {
    width: 50%;
}
}

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

@media screen and (max-width: 639px) {
    .text img {
        max-width: 100%;
        max-width: 100% !important;
        width: inherit;
        width: inherit !important;
        height: auto;
        height: auto !important;
    }

    .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;
    }

    .help-content-inner {
        flex-wrap: wrap;
    }

    .help-content-inner-left {
        margin-bottom: 20px;
        width: 100%;
    }

    .help-content-inner-text {
        padding-right: 0;
    }

    .contact-title strong {
        font-size: 8.5vw;
    }

    .program-item {
        width: 100%;
    }

    .counter-item-content {
        padding: 20px;
    }

    .counter-nb {
        font-size: 8vw;
    }

    .counter-item {
        width: 50%;
    }

    .counter-box {
        flex-wrap: wrap;
        justify-content: center;
    }

    .counter-nb {
        font-size: 11vw;
    }

    .subpage .logotype-slide {
        width: 25%;
    }
}

@media screen and (max-width: 560px) {
    .text {
        word-wrap: break-word;
    }

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


    .slider ul.slick-dots {
        bottom: 20px;
        padding-left: 20px;
    }

    .slider ul.slick-dots {
        display: none !important
    }

    .help-item {
        width: 50%;
    }

    .pagination-wrapper ul li.prev a, .pagination-wrapper ul li.next a {
        width: 46px;
        height: 46px;
        line-height: 44px;
    }

    .pagination-wrapper ul li a, .pagination-wrapper ul li span {
        line-height: 46px;
    }

    .contact-title strong {
        font-size: 9vw;
    }

    .training-item {
        width: 100%;
    }

    .files-list ul li {
        width: 100%;
    }

    .files-list ul {
        margin: -10px;
    }

    .files-list ul li {
        padding: 10px;
    }

    .campaign-content .text.txt {
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .counter-nb {
        font-size: 12vw;
    }
.donation-box {
        padding-top: 0;
        flex-direction: column;
        padding-bottom: 0;
    }
    .donation-left {
        width: 100%;
    }

    .donation-left img {
        width: 100%;
    }

    .donation-left img {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }

    .donation-right {
        width: 100%;
    }

    .subpage .logotype-slide {
        width: 33.33%;
    }
	
	    .modal-content {

    }
	
	    form#report-form {
        margin-bottom: 0;
    }
	
	.training-title:last-child {
    margin-bottom: 0;
}

.training-item {
    margin-bottom: 10px;
}

}

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

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

    .slider .btn.btn-donation {
        right: 10px;
        bottom: 10px;
    }


    .main-slider {
        height: 300px;
    }

    .slider .slider-photo {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .slider .slider-photo img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .subpage .news {
        width: 100%;
    }

    .contact-title strong {
        font-size: 10vw;
    }

    .campaign-item {
        width: 100%;
    }

    .campaign-item:nth-child(even) .campaign-link {
        flex-direction: column;
    }

    .campaign-item:nth-child(even) .campaign-link {
        flex-direction: column;
    }

    .campaign-content {
        padding: 20px;
    }

    .campaign-content .text.txt {
        position: relative;
        width: auto;
        transform: none;
        left: auto;
        right: auto;
        top: auto;
    }

    .counter-nb {
        font-size: 13vw;
    }
	
	.news-title {
    height: auto;
}

    .donation-target {
        width: 100%;
    }
}

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

    .counter-nb {
        font-size: 14vw;
    }
    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .top-link .btn-caption {
        display: none;
    }

    .top-link {
        width: 46px;
        height: 46px;
        padding: 0;
        display: flex;
        justify-content: center;
    }

    .help-item {
        width: 100%;
    }

    .help-link {
        height: auto;
    }

    .help-icon {
        margin-bottom: 20px;
    }

    .help-content-inner {
        padding: 10px;
    }

    .contact-title strong {
        font-size: 11vw;
    }

    .contact-item {
        width: 100%;
        margin-bottom: 10px;
    }

.counter-item {
        width: 100%;
        height: auto;
    }

    .subpage .logotype-slide {
        width: 50%;
    }

    .donation-right {
        padding: 15px;
    }
	
	.counter-item .text.txt {
    margin-top: 30px;
    margin-bottom: 30px;
}

.amounts-list-inner input {
    width: calc(100% - 10px);
}

button.price-bubble {
    width: calc(33.33% - 10px);
}
}

@media screen and (max-width: 360px) {
    .black-title, .frame .black-title {
        left: 0;
        top: 70px;
    }
}
@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-55: 46px;
        --font-50: 42px;
        --font-48: 40px;
        --font-45: 38px;
        --font-42: 36px;
        --font-40: 34px;
        --font-36: 32px;
        --font-30: 26px;
        --font-24: 22px;
        --font-22: 21px;
        --font-20: 19px;
        --font-19: 18px;
        --font-18: 17px;
        --font-17: 16px;
    }
}

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

        --font-55: 41px;
        --font-50: 38px;
        --font-48: 36px;
        --font-45: 35px;
        --font-42: 33px;
        --font-40: 32px;

        --container-padding: 30px;
    }
}

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

        --font-55: 39px;
        --font-50: 35px;
        --font-48: 34px;
        --font-45: 33px;
        --font-42: 32px;
        --font-40: 31px;
        --font-36: 28px;
        --font-30: 24px;
        --font-22: 20px;
        --font-20: 18px;
        --font-19: 17px;
    }
}

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

        --font-55: 36px;
        --font-50: 33px;
        --font-48: 32px;
        --font-45: 30px;
        --font-42: 29px;
        --font-40: 28px;
        --font-22: 19px;
        --font-18: 16px;

        --container-padding: 20px;
    }
}

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

        --font-55: 33px;
        --font-50: 32px;
        --font-48: 31px;
        --font-45: 30px;
        --font-22: 18px;
    }
}

@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-55: 32px;
        --font-50: 31px;
        --font-48: 30px;
        --font-45: 28px;
        --font-42: 27px;
        --font-40: 26px;
        --font-36: 24px;
        --font-30: 22px;
        --font-24: 18px;
        --font-22: 17px;
        --font-20: 17px;
        --font-19: 16px;
    }
}

@media screen and (max-width: 424px) {
    :root {
        --font-55: 29px;
        --font-50: 25px;
        --font-48: 24px;
        --font-45: 23px;
        --font-42: 22px;
        --font-40: 21px;
        --font-36: 20px;
        --font-30: 20px;
        --font-24: 16px;
        --font-22: 16px;
        --font-20: 16px;
    }
}