/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-30: 30px;
    --space-25: 25px;

    --font-55: 55px;
    --font-50: 50px;
    --font-48: 48px;
    --font-45: 45px;
    --font-42: 42px;
    --font-40: 40px;
    --font-36: 36px;
    --font-30: 30px;
    --font-26: 26px;
    --font-24: 24px;
    --font-22: 22px;
    --font-20: 20px;
    --font-19: 19px;
    --font-18: 18px;
    --font-17: 17px;

    --container-padding: 40px;
    --row-gap: 5px;

    /** SPECIFIC **/
    --color-primary: #E10A76;
    --color-secondary: #FFBD59;
    --color-default: #333;
}

body {
    color: #000;
    font-family: "Inter", sans-serif;
}

/**
 * BASIC
 */

a, input, select, textarea, option, button {
    outline: none !important;
}

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: var(--color-primary);
}

a:hover, a:focus {
    color: var(--color-secondary);
}

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Mourning class added to body */
.mourning {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.grayscale {
    filter: grayscale(1);
}

.grayscale-fade {
    transition: filter 0.2s;
}

.grayscale-fade:hover,
.grayscale-fade:focus {
    filter: grayscale(0);
}

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

.container {
    clear: both;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1720px;
    width: 100%;
}

.container-small {
    max-width: 1440px;
}

.container--noClear {
    clear: none;
}

.container--noClear::before,
.container--noClear::after {
    display: none;
}

/**
 * ICONS
 */

/*.icon-mask.icon-mask {    -webkit-mask-size: cover;    -mask-size: cover;    -webkit-mask-position: center;    mask-position: center;    -webkit-mask-repeat: no-repeat;    mask-repeat: no-repeat;    background-color: currentColor;}*/
/*.icon-user {    -webkit-mask-image: url('../images/icons/user.svg');    mask-image: url('../images/icons/user.svg');}*/
/*.icon-register {    -webkit-mask-image: url('../images/icons/register.svg');    mask-image: url('../images/icons/register.svg');}*/
/*.icon-logout {    -webkit-mask-image: url('../images/icons/logout.svg');    mask-image: url('../images/icons/logout.svg');}*/


/**
 * BUTTONS
 */

.btn, a, button {
    border-radius: 0;
    transition: all 0.2s;
}

.btn-lg {
    border: 1px solid transparent;
    padding: 0 34px;
    height: 46px;
    line-height: 44px;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    border-radius: 23px;
}

.btn-sm {
    border: 2px solid;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 30px;
    height: 40px;
    line-height: 36px;
}


.btn.has-icon {
    display: flex;
    align-items: center;
    padding-left: 2px;
}

.btn.has-icon .btn-icon {
    width: 44px;
    height: 44px;
    padding: 6px;
}

.has-arrow {
    padding-right: 58px;
}

.btn.has-arrow:after {
    width: 44px;
    height: 44px;
    display: block;
    content: "\f105";
    font: normal normal normal 20px/1 FontAwesome;
    transition: all 300ms ease-out;
    line-height: 44px;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    font-size: 18px;
    top: 0;
}


/**
 * THEMES
 */

.btn.btn-primary,
.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary:focus:active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.btn.btn-primary[disabled],
.btn.btn-primary[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn.btn-secondary,
.btn.btn-secondary:focus,
.btn.btn-secondary:active,
.btn.btn-secondary:focus:active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #000;
}

.btn.btn-secondary[disabled],
.btn.btn-secondary[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn.btn-default,
.btn.btn-default:focus,
.btn.btn-default:active,
.btn.btn-default:focus:active {
    background-color: #fff;
    border-color: #000;
    color: #000;
}

.btn.btn-default[disabled],
.btn.btn-default[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn.btn-white,
.btn.btn-white:focus,
.btn.btn-white:active,
.btn.btn-white:focus:active {
    background-color: #fff;
    border-color: #fff;
    color: var(--color-primary);
}


.btn.btn-primary .btn-icon svg,
.btn.btn-primary .btn-icon svg * {
    fill: #fff;
}

.btn.btn-secondary .btn-icon svg,
.btn.btn-secondary .btn-icon svg * {
    fill: var(--color-primary);
}

.btn.btn-white .btn-icon svg,
.btn.btn-white .btn-icon svg * {
    fill: #fff;
}


@media screen and (min-width: 1140px) {
    .btn-primary:not([disabled]):hover,
    .btn-primary:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-primary);
        border-color: var(--color-primary);
    }

    .btn-primary:hover .btn-icon svg,
    .btn-primary:hover .btn-icon svg * {
        fill: var(--color-primary);
    }

    .btn-secondary:not([disabled]):hover,
    .btn-secondary:not([disabled]).active:hover {
        background-color: #fff;
        border-color: var(--color-secondary);
        color: var(--color-secondary);
    }

    .btn-secondary:hover .btn-icon svg,
    .btn-secondary:hover .btn-icon svg * {
        fill: var(--color-secondary);
    }

    .btn-default:not([disabled]):hover,
    .btn-default:not([disabled]).active:hover {
        background-color: var(--color-secondary);
        color: var(--color-default);
        border-color: var(--color-secondary);
    }

    .btn-default:hover .btn-icon svg,
    .btn-default:hover .btn-icon svg * {
        fill: var(--color-default);
    }

    .btn-white:not([disabled]):hover,
    .btn-white:not([disabled]).active:hover {
        background-color: var(--color-primary);
        border-color: #fff;
        color: var(--color-primary);
    }

    .btn-white:hover .btn-icon svg,
    .btn-white:hover .btn-icon svg * {
        fill: #fff
    }

}


/**
 * BOOTSTRAP
 */
.panel,
.panel-heading,
.modal-content,
.alert,
.popover {
    border-radius: 0;
}

.panel {
    box-shadow: none;
}

.panel-default {
    border-color: #e5e5e5;
}

.row {
    margin-left: calc(-1 * var(--row-gap));
    margin-right: calc(-1 * var(--row-gap));
    display: flex;
    flex-wrap: wrap;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7,
.col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5,
.col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3,
.col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12,
.col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-left: var(--row-gap);
    padding-right: var(--row-gap);
}

.modal-footer[style="display: block;"] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.modal-footer:after, .modal-footer:before {
    content: none;
}

/**
 * TITLES
 */


.text.txt h1 {
    font-size: var(--font-24);
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 1.8;
    color: #000;
}

.text.txt h2 {
    font-size: var(--font-20);
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 1.8;
    color: #000;
}

.text.txt h3 {
    font-size: var(--font-19);
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 1.8;
    color: #000;
}

.text.txt h4 {
    font-size: var(--font-18);
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 1.8;
    color: #000;
}

.text.txt h5 {
    font-size: var(--font-17);
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 1.8;
    color: #000;
}


.text.txt h6 {
    margin-bottom: var(--space-30);
    font-weight: 700;
    line-height: 1.8;
    color: #000;
    font-size: 16px;
}

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 16px;
    line-height: 30px;
}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}

.text ul > li,
.text ol > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
}

.text ul > li::before {
    content: "";
    display: inline-block;
    left: -16px;
    margin-left: -8px;
    font-family: sans-serif;
    position: relative;
    top: -4px;
    width: 5px;
    height: 5px;
    background-color: var(--color-default);
    border-radius: 50%;
}

.text ol > li::marker {
    word-spacing: 3px;
}

/** Text table **/
.text table {
    margin: 30px 0;
}

.text table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.text table td {
    padding: 12px 12px;
    border: 1px solid #ddd;
}

.text a:hover {
    text-decoration: underline;
}

.vcenter {
    display: block;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
}

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

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

.mask {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    pointer-events: none;
}

.grayscale, .gray {
    filter: grayscale(100%);
}

.buttons-center {
    text-align: center;
}

.slick-track {
    display: flex !important;
    height: auto;
}

.slick-slide {
    height: inherit !important;
}

div#container-page {
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
}


/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
}

.top {
    padding-top: 11px;
    padding-bottom: 11px;
}

.top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-right {
    display: flex;
    align-items: center;
}

.logo {
    float: left;
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    max-width: 100%;
}

#main-menu {
    transition: all 300ms ease-out;
}

#main-menu ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#main-menu li {
    position: relative;
}

#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

#main-menu li a {
    position: relative;
    padding: 15px;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
}

#main-menu li a:hover {
    transition: -webkit-text-stroke 0.3s;
    -webkit-text-stroke: 0.6px currentColor;
}

#main-menu li.active a {
    transition: -webkit-text-stroke 0.3s;
    -webkit-text-stroke: 0.6px currentColor;
}

#main-menu li > ul {
    display: none;
}

#main-menu li:hover > ul {
    display: block;
}

#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

#main-menu li > ul > li > ul {
    top: 0;
    left: 100%;
}

.main-menu-button {
    float: right;
    width: 40px;
    margin: 18px 0 18px var(--container-padding);
    border: none;
    background: transparent;
}

.main-menu-button.animIcon--hamburger.active span {
    background-color: var(--color-primary);
}

.top-link {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    background: var(--color-primary);
    border-radius: 23px;
    height: 46px;
    padding-left: 13px;
    padding-right: 26px;
    border: 1px solid var(--color-primary);
}

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

.top-link .btn-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.top-link .btn-icon svg {
    fill: #fff;
}

@media screen and (min-width: 1140px) {
.top-link:hover {
    background: #fff;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.top-link:hover .btn-icon svg {
    fill: var(--color-primary);
}
}
.top .social-list {
    margin-left: 30px;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -40px;
}

.contact-link {
    align-items: flex-start;
    font-size: var(--font-18);
    line-height: 200%;
    font-weight: 400;
    display: flex;
    padding: 40px;
}

.contact-link .link-icon {
    margin-right: 39px;
    position: relative;
    border-radius: 50%;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border: 1px solid #e5e5e5;
    padding: 14px;
    text-align: center;
}

.contact-links .contact-link svg, .contact-links .contact-link svg * {
    stroke: currentColor;
}

.contact-link .caption strong {
    display: block;

}

@media screen and (min-width: 1140px) {
    .contact-link:hover {
        text-decoration: underline;
        color: #fff;
    }

    .contact-link:hover .link-icon {
        background: #fff;
    }
}

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    float: left;
    position: relative;
    width: 350px;
    max-width: 100%;
}

.mainsearch-search {
    display: flex;
    align-items: stretch;
}

.mainsearch .form-element-container {
    flex-grow: 1;
}

.mainsearch input.form-control {
    display: block;
    height: 46px;
    padding: 5px 15px;
    border-right: none;
    box-shadow: none;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mainsearch .alert-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.mainsearch .form-control-feedback {
    display: none;
}


/*
* USER NAV
*/

/*.header-top .user-nav {    display: flex;    align-items: stretch;}*/
/*.header-top .user-nav-item {    display: flex;    align-items: stretch;    position: relative;}*/
/*.header-top .user-nav-item-inner {    display: flex;    align-items: center;    color: #fff;}*/
/*.header-top .user-nav-item + .user-nav-item {    padding-left: 20px;    margin-left: 20px;}*/
/*.header-top .user-nav-item + .user-nav-item::before {    content: '';    display: block;    position: absolute;    top: 50%;    left: 0;   -ms-transform: translate3d(0, -50%, 0);     transform: translate3d(0, -50%, 0);    width: 1px;    height: 12px;    background-color: rgba(255, 255, 255, 0.6);}*/
/*.header-top .user-nav-item .icon {    width: 26px;    height: 26px;}*/

/**
 * FOOTER
 */
/**
 * FOOTER
 */
footer {
    position: relative;
    overflow: visible !important;
}

.footer-mask {
    background: rgba(0, 57, 93, 0.80)
}

.footer-box-container {
    position: relative;
    padding-top:calc(var(--space-50) + var(--space-40));
    background: #4da3df;
}

.footer-box-container .container {
    position: relative
}

.footer-col-title {
    margin-bottom: var(--space-30);
    font-weight: 700;
    font-size: 18px;
    line-height: 2;
    color: #fff;
}

.footer-boxes {
    display: flex;
    justify-content: space-between;
}


.footer-box ul li {
    margin-bottom: 0;
}

.footer-box ul li a {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 2.5;
    color: #fff;
}

@media screen and (min-width: 1140px) {
.footer-box ul li a:hover {
    color: var(--color-primary);
}
}
.footer-box .text.txt {
    font-weight: 500;
    font-size: 16px;
    line-height: 2.5;
    color: #fff;
}

.footer-box:last-child {
    width: 28%;
    position: relative;
}

.footer-box {
    width: 24%;
    padding-bottom: 84px;
}

img.woman {
    position: absolute;
    bottom: 0;
    max-width: 72%;
    left: 7%;
}

img.logo-min {
    position: absolute;
    max-width: 53%;
    top: 50%;
    right: 0;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin-top: -25px;
}

.footer .social-icon {
    background: transparent;
    border-color: #fff;
}

.footer-box .social-icon {
    border-color: #fff;
    color: #fff;
    width: 60px;
    height: 60px;
}

@media screen and (min-width: 1140px) {
.footer-box .social:hover .social-icon {
    background: #fff;
    color: var(--color-primary)
}
}
.footer-box .text.txt a {
    color: #fff;
}

.footer-box .social-list {
    padding-top: var(--space-50);
}

.donation-bar-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
}

.donation-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    font-weight: 300;
    background-color: #4da3df;
    font-size: 13px;
    color: #fff;
}

.footer-bar-left {
    display: flex;
    align-items: center;
    flex-grow: 1;
    flex-wrap: wrap;
}

.footer-bar-right {
    display: flex;
    align-items: center;
}

.footer-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bar-links a {
}

.footer-bar-links {
    margin-left: -5px;
    font-size: 0;
    margin-right: 8px;
}

.footer-bar-links:has(li) + .copyright:before {
    content: "|";
    color: currentColor;
    margin-right: 10px;
    display: inline-block;
}

.footer-bar-links > li + li:before {
    content: "|";
    color: currentColor;
    margin-right: 16px;
    display: inline-block;
}

.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 8px;
    font-size: 13px;
    line-height: 2;
    font-weight: 300;
}

@media screen and (min-width: 1140px) {
.footer-bar-links a:hover {
    text-decoration: underline;
}
}
.footer-bar-links a {
    color: inherit;
}


.copyright-undicom {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}

.copyright-undicom svg {
    max-width: 15px;
    fill: currentColor;
}

/**
 * FORM
 */

.form-box-title {
    font-weight: 300;
    font-size: var(--font-36);
    line-height: 1.85714;
    color: #000;
    margin-bottom: var(--space-40);
    letter-spacing: 0.04em;
}

form.form {
    padding: 9px 0 0;
}

.form-group {
    margin-bottom: 19px;
}

.form .form-element-name {
    font-style: normal;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 15px;
    color: #000;
}


/* INPUTY */
.form-control,
.form .form-control {
    height: 46px;
    box-shadow: 0 0 0 transparent;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 0;
    font-family: poppins, sans-serif;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    border: 1px solid transparent;
    background: #f4f4f4;
    border-radius: 5px;
}

/* TEXTAREA */
.form textarea.form-control:not([rows]) {
    height: 138px;
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.69231;
    color: #000;
}

.form .before-consent-row {
    padding-top: 14px;
}


.form .consent-row .error {
    /* font-size: 12px; */
    /* letter-spacing: 0; */
}

/* CAPTCHA */
.form .captcha-image-wrapper, .form .form-group-sm .captcha-image-wrapper, .form .form-group-lg .captcha-image-wrapper {
    box-shadow: none;
    background: #f4f4f4;
    border-radius: 5px;
}

/* KOLOR GWIAZDKI WYMAGANEGO POLA */
.form .form-required-mark {
    /* color: #a94442; */
}

.form-element-select .form-control-feedback,
.form-element-country .glyphicon {
    display: none;
}

.form button.captcha-refresh {
    border: 0 none;
    right: var(--row-gap);
    color: var(--color-default);
    border-radius: 0 5px 5px 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.form button.captcha-refresh .fa.fa-spin {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused
}

@media screen and (min-width: 1140px) {
    .form button.captcha-refresh:hover {
        color: #000;
        border-color: #e5e5e5;
        border-radius: 0 5px 5px 0;
    }

    .form button.captcha-refresh:hover .fa.fa-spin {
        -webkit-animation-play-state: running;
        -moz-animation-play-state: running;
        -o-animation-play-state: running;
        animation-play-state: running
    }
}

.form-control-feedback {
    top: 50%;
    right: 0;
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}


.controls.captcha-container {
    width: 66.66%;
}

.row-flex-center {
    padding-top: 14px;
}

.form .consent-all-row {
    color: var(--color-default);
    margin-bottom: calc(var(--space-40) + 5px);
}

.form-service-container .form .consent-all-row {
    color: #fff;
}

/*---- SELECT 2 -----*/

.select2-dropdown {
    z-index: 100;
    border-radius: 0;
}

.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single {
    height: 46px;
    border-color: #ccc;
    border-radius: 6px;
    text-align: left;
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 12px;
    font-size: 14px;
    padding-right: 44px;
    color: #555;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search {
    line-height: 44px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    line-height: 24px;
    display: inline-block;
    float: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 8px;
}

.has-feedback .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 68px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    transition: all 0.4s;
    right: 16px;
    color: #000;
    text-align: center;
    font-size: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: '\f107';
    font-family: 'FontAwesome', sans-serif;
    font-size: 16px;
    vertical-align: middle;
}

.select2-container--default.select2-container--open .select2-selection__arrow {
    -ms-transform: translateY(-50%) scaleY(-1);
    transform: translateY(-50%) scaleY(-1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow > b {
    display: none;
}

.select2-results__option[aria-selected] {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 300;
    padding: 6px 22px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary);
}

@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .form-element-multiselectCheckbox .select2-results__option:not([role="group"]):not(.select2-results__message)::before {
        -webkit-background-size: 200px 20px !important;
        background-size: 200px 20px !important;
    }
}

.form-box-wrapper button.btn.btn-primary.btn-lg {
    border-radius: 23px;
    margin: 0 auto;
    display: block;
    font-size: 14px;
}


@media screen and (min-width: 1140px) {
    .form-box-wrapper button.btn.btn-primary.btn-lg:hover {
    }

}

.form .consent-all-row strong {
    padding-top: 20px;
    display: block;
}

@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .form-element-multiselectCheckbox .select2-results__option:not([role="group"]):not(.select2-results__message)::before {
        -webkit-background-size: 200px 20px !important;
        background-size: 200px 20px !important;
    }
}


/**
 * MAP POINTS
 */

.map-point .custom-map-wrapper {
    position: relative;
}

.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.png') no-repeat scroll center center;
    cursor: pointer;
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.map-point #marker-cloud-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10%;
    height: 10%;
    background: red;
}

.map-point #marker-cloud-wrapper .popover {
    top: 0 !important;
    left: 0 !important;
    display: block;
    margin: 0;
    width: 300px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}

.map-point #marker-cloud-wrapper .popover .arrow {
    display: none !important;
}

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 20px 0;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li {
    position: relative;
    display: inline;
    color: #6d6e71;
}

.breadcrumb > li > a {
    font-size: 12px;
}

.breadcrumb > li > a:not([href]),
.breadcrumb > li > a:not(:hover) {
    color: inherit;
}

.breadcrumb > li + li:before {
    content: '>';
    font-size: 12px;
    padding: 0 15px;
    color: inherit;
}

.breadcrumb > li > a.last {
    color: var(--color-primary);
}

/**
 * ANIMATABLE ICON
 */
.animIcon {
    position: relative;
    display: inline-block;
    width: 32px;
    padding: 0 !important;
}

.animIcon::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.animIcon span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: gray;
    transition: all .4s ease;
}

/* Close */
.animIcon.animIcon--close span {
    top: 50%;
    margin-top: -1px;
    transform-origin: center;
}

.animIcon.animIcon--close span:nth-child(1) {
    transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
}

.animIcon.animIcon--close span:nth-child(2) {
    transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
}

/* Hamburger -> Close */
.animIcon.animIcon--hamburger span {
    top: 0;
    left: 0;
    transform-origin: left center;
}

.animIcon.animIcon--hamburger span:nth-child(1) {
    margin-top: 20%;
}

.animIcon.animIcon--hamburger span:nth-child(2) {
    margin-top: 50%;
}

.animIcon.animIcon--hamburger span:nth-child(3) {
    margin-top: 80%;
}

.animIcon.animIcon--hamburger.active span:nth-child(1) {
    margin-top: 15%;
    margin-left: 15%;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.animIcon.animIcon--hamburger.active span:nth-child(2) {
    opacity: 0;
    margin-top: 70%;
}

.animIcon.animIcon--hamburger.active span:nth-child(3) {
    margin-top: 85%;
    margin-left: 15%;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}


/**
 * LOGOTYPES SLIDER
 */
.logotypes-box-container {
}

.logotypes-box-title {
    color: #00306d;
    font-size:var(--font-22);
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.1em;
}

.logotype {
    position: relative;
    float: none;
    display: inline-block;
    vertical-align: middle;
    height: 100px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 13px;
    width: 100%;
    padding-bottom: 100%;
}

.logotype img {
    max-height: 90%;
    max-width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.logotype-slide {
    padding: 11px;
}

@media screen and (min-width: 1140px) {
.logotype:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 1px var(--color-secondary)
}
}


/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
}

.social-list > ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    text-align: center;
    font-size: 1rem;
}


.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    color: #000
}

.social-icon svg, .social-icon svg * {
    fill: currentColor;
}

@media screen and (min-width: 1140px) {
.social:hover .social-icon {
    color: var(--color-primary)
}
}
.social-icon img {
    display: block;
}

.social-icon .fa {
    font-size: 20px;
}


/**
 * LANGUAGES MENU
 */

.langs-menu {
    position: relative;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
    margin-left: 21px;
}

.langs-menu:before {
}

.langs-menu ul {
    overflow: hidden;
    position: relative;
    top: auto;
    width: auto;
    background-color: transparent;
    transition: all 0.3s;
    display: flex;
}

.langs-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}

.langs-menu a {
    text-decoration: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.lang span.langs-menu-icon {
    vertical-align: middle;
    line-height: 0;
    margin-right: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang {
    display: flex;
    align-items: center;
    height: 46px;
    padding: 5px 12px;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
}

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

.lang-button {
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    font-size: var(--font-18);
    line-height: 12px;
    transition-duration: 0.3s;
    transition-property: transform, -webkit-transform, -ms-transform;
}

.langs-menu-icon img {
    max-width: 100%;
}

@media screen and (min-width: 1140px) {

    .langs-menu li.active a.lang {
        color: var(--color-primary);
        background-color: transparent;
        border-color: var(--color-primary);
    }

    .langs-menu a.lang:hover,
    a.lang:focus {
        border: 1px solid var(--color-primary);
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 1;
        position: relative;
        top: auto;
        width: auto;
        display: flex;
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
        display: none;
    }

    .langs-menu li {
        border-bottom: 0 none;
        margin-left: 9px;
    }

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

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

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

.langs-menu.langs-menu--list ul {
    position: static;
    opacity: 1;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

.langs-menu.langs-menu--list li {
    margin: 4px 10px;
    border: none;
}

.langs-menu.langs-menu--list a {
    height: auto;
    padding: 5px;
    border: none;
}

.langs-menu--list .lang {
    background: none;
}

.langs-menu--list .langs-menu-icon {
    margin: 0;
}

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

    .langs-menu ul {
        overflow: hidden;
        position: relative;
        top: auto;
        width: auto;
        background-color: transparent;
        display: flex;
    }
}

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
    padding-bottom: var(--space-40);
}

.article-content::after {
    content: "";
    display: table;
    clear: both;
}

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 50.6%;
    margin-right: 64px;
    margin-bottom: 20px;
}

.article-image img {
    max-width: 100%;
    display: block;
    border-radius: 15px;
}

.article-subtitle {
    padding-bottom: var(--space-30);
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 1.8;
    color: #000;
}

.article-date {
    font-weight: bold;
}

.article-text {
    margin-bottom: var(--space-30);
}

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

.gallery-list {
    margin: -5px;
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
}

.gallery-list-item {
    display: flex;
    flex-wrap: wrap;
    width: 33.33%;
    padding: 5px;
}

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
}

.gallery-picture > img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
}

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background-color: rgba(17, 0, 17, 0.50);
    transition: opacity 0.3s;
    border-radius: 15px;
}

.gallery-picture-hover > * {
    background: url(../images/icons/zoom.svg) no-repeat center center;
    text-indent: -20000px;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 66px;
    height: 66px;
    left: 0;
    right: 0;
    position: absolute;
    border-radius: 0;
    margin: 0 auto;
    display: block;
    top: 50%;
}

@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

.icheckbox_minimal-custom,
.iradio_minimal-custom {
    background-image: url(../images/minimal.png);
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .icheckbox_minimal-custom,
    .iradio_minimal-custom {
        background-image: url(../images/minimal@2x.png);
    }
}

/**
* PAGINATION
*/

.pagination-wrapper {
    clear: both;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    background: url(../images/full_line.png) no-repeat top center;
    padding-top: calc(var(--space-40) + var(--space-30));
    padding-bottom: var(--space-50);
}

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

.pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
    padding: 0 25px;
    vertical-align: middle;
    float: none;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    line-height: 66px;
    padding: 0 11px;
    font-weight: 400;
    font-size: 16px;
    color: #000;
}


.pagination-wrapper ul li.prev a, .pagination-wrapper ul li.next a {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 66px;
    height: 66px;
    border: 1px solid #000;
    line-height: 64px;
}

.pagination-wrapper ul li.active a {
    transition: -webkit-text-stroke 0.3s;
    -webkit-text-stroke: 0.7px currentColor;
}

.pagination-wrapper ul li.next a > * {
    text-indent: -20000px;
    width: 100%;
    height: 100%;
    background: url(../images/icons/arrow_right.svg) no-repeat center center;
}

.pagination-wrapper ul li.prev a > * {
    text-indent: -20000px;
    width: 100%;
    height: 100%;
    background: url(../images/icons/arrow_left.svg) no-repeat center center;
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li.next a:hover {
        background: var(--color-secondary)
    }

    .pagination-wrapper ul li.next a:hover > * {
        background: url(../images/icons/arrow_right.svg) no-repeat center center
    }

    .pagination-wrapper ul li.prev a:hover {
        background: var(--color-secondary)
    }

    .pagination-wrapper ul li.prev a:hover > * {
        background: url(../images/icons/arrow_left.svg) no-repeat center center;
    }

    .pagination-wrapper ul li a:hover {
        transition: -webkit-text-stroke 0.3s;
        -webkit-text-stroke: 0.7px currentColor;
    }
}

#content {
    padding-top: 128px;
}


.main-slider, .slider .slide, .slider-photo, .main-slider .slick-list, .main-slider .slick-track {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.slider {
    position: relative;
}

.slider .slider-photo {
    width: 100%;
}

.slider-photo img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
}

.slider ul.slick-dots {
    width: 50%;
    position: absolute;
    left: 0;
    text-align: left;
    padding-left: 40px;
    bottom: 40px;
    padding-top: 0;
}

.slider ul.slick-dots li {
    margin: 0 30px 0 0;
}

.slider ul.slick-dots li span {
    width: 15px;
    height: 15px;
    border: 1px solid #fff;
}

.slider ul.slick-dots li.slick-active span {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

@media screen and (min-width: 1140px) {
ul.slick-dots li:hover span {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}
}
button.slick-autoplay-toggle-button {
    display: none;
}


.btn.btn-donation {
    border-radius: 76px;
    width: 330px;
    height: 70px;
    font-weight: 600;
    font-size: var(--font-22);
    text-transform: none;
    justify-content: center;
}

.btn.btn-donation .btn-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    padding: 0;
    margin-right: 15px;
}

.header-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-50);
    padding-bottom: var(--space-60);
}

.header-slider .text.txt {
    font-weight: 400;
    font-size: var(--font-18);
    line-height: 1.66667;
    color: #000;
    width: 23.2%;
}

.header-slider-title {
    font-weight: 300;
    font-size: var(--font-55);
    line-height: 1.18182;
    color: #000;
    letter-spacing: 0.048em;
}

.header-slider-title strong {
    color: #ed117f;
    letter-spacing: 0.033em;
}

.help-item.help-item-first {
    width: 50%;
    font-weight: 300;
    font-size: var(--font-55);
    line-height: 1.18182;
    text-align: right;
    color: #000;
    order: 3;
    display: flex;
    align-items: center;
    letter-spacing: 0.05em;
    padding-left: 10%;
}

.help-item {
    width: 25%;
    order: 3;
    padding: 7px;
}

.help-box {
    display: flex;
    flex-wrap: wrap;
    margin: -7px;
}

.help-link {
    height: 295px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 300ms ease-out;
    padding: 40px 40px 27px;
    border: 2px solid #f4f4f4;
    border-radius: 15px;
    background: #f4f4f4;
}

.help-box-container {
    padding-top: calc(var(--space-40) + var(--space-40) + 5px);
    padding-bottom: var(--space-60);
}

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

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

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

.help-link .btn {
    opacity: 0;
    position: absolute;
    bottom: 100%;
    margin-bottom: 10px;
    margin-top: 20px;
}

@media screen and (min-width: 1140px) {
.help-link:hover .btn {
    opacity: 1;
    display: block;
    position: relative;
    bottom: auto;
}

.help-link:hover {
    background: #fff;
    border-color: var(--color-secondary)
}

}
.help-title {
    transition: all 1300ms ease-out;
    font-weight: 400;
    font-size: var(--font-20);
    line-height: 1.5;
    color: #000;
    padding-right: 30%;
}

.help-icon {
    width: 57px;
    height: 57px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.help-content-inner-title {
    font-weight: 300;
    font-size:var(--font-55);
    line-height: 1.18182;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 19px;
}

.help-content-inner-text {
    font-weight: 500;
    font-size: var(--font-18);
    line-height: 2;
    color: #fff;
    padding-right: 25%;
}

.help-content-inner {
    display: flex;
    padding: 30px 92px;
    padding-right: 100px;
    align-items: center;
    background: var(--color-primary);
    border: 2px solid #f4f4f4;
    border-radius: 15px;
    height: 100%;
}

.slider .btn.btn-donation {
    position: absolute;
    bottom: 50px;
    right: 50px;
}

.slider .btn.btn-donation .btn-icon svg {
    fill: #fff;
}

.help-item.help-item-last .btn.btn-donation {
    font-size: var(--font-20);
    border-radius: 32px;
    height: 62px;
    padding-left: 24px;
    border: 2px solid;
}

.slider .btn.btn-donation .btn-icon svg {
    fill: #fff;
}

.help-item.help-item-last .btn.btn-donation .btn-icon svg, .help-item.help-item-last .btn.btn-donation .btn-icon svg * {
    fill: var(--color-primary);
}

@media screen and (min-width: 1140px) {
.help-item.help-item-last .btn.btn-donation:hover, .help-item.help-item-last .btn.btn-donation:hover:active {
    color: #fff; background:var(--color-primary);
}

.help-item.help-item-last .btn.btn-donation:hover .btn-icon svg, 
.help-item.help-item-last .btn.btn-donation:hover .btn-icon svg *, .help-item.help-item-last .btn.btn-donation:hover:active .btn-icon svg, 
.help-item.help-item-last .btn.btn-donation:hover:active .btn-icon svg *  {
    fill: #fff;
}
}
.arrow-down {
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-secondary);
    border-radius: 50%;
}

.about-box-container {
    background: url(../images/full_line.png) no-repeat top center;
    padding-top: calc(var(--space-40) + var(--space-40));
}

.about-box {
    display: flex;
    justify-content: space-between;
}

.about-photo {
    width: 43.5%;
    position: relative;
}

.about-photo img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
}

.about-text {
    width: 50%;
    background: url(../images/half_line.png) no-repeat bottom left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 25px;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: calc(var(--space-40)  + 5px);
}

.about-logo {
    width: 23%;
}

.about-title {
    width: 70%;
    font-weight: 300;
    font-size: var(--font-50);
    line-height: 1.2;
    color: #000;
    letter-spacing: 0.05em;
}

.about-title strong {
    letter-spacing: 0.03em;
}

.about-logo img {
    display: block;
    max-width: 100%;
}

.text.txt {
    font-weight: 500;
    font-size: var(--font-17);
    line-height: 2.11765;
    color: #000;
}

.about-text .text.txt {
    margin-bottom: calc(var(--space-30)  + 5px);
}

.arrow-down {
    position: absolute;
    bottom: -107px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.stop-box-container {
    padding-bottom: calc(var(--space-50) + var(--space-50));
    padding-top: calc(var(--space-50) + var(--space-60));
}

.stop-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.stop-left {
    width: 59%;
    text-align: center;
    margin-left: 9%;
    position: relative;
}

.stop-right {
    width: 36.5%;
    padding-top: calc(var(--space-50) + var(--space-50));
    margin-left: -9%;
}

.stop-right-title {
    font-weight: 300;
    font-size: var(--font-36);
    line-height: 1.27778;
    color: #000;
    margin-bottom: var(--space-40);
    letter-spacing: 0.04em;
}

.stop-right .btn {
    height: 56px;
    line-height: 54px;
    font-size: var(--font-18);
    border-radius: 30px;
    padding: 0 43px;
}

.black-title {
    position: absolute;
    font-weight: 700;
    font-size: 9.896vw;
    color: #000;
    top: 100px;
    left: -11%;
}
@media screen and (min-width: 1921px) {
    .black-title {
        font-size: 190px;
    }
}
.pink-title {
    font-weight: 200;
    font-size: 7.032vw;
    color: #fff;
    letter-spacing: 0.055em;
    padding: 24px;
    line-height: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    width: 105%;
    background: var(--color-primary);
    border-radius: 15px;
}

@media screen and (min-width: 1921px) {
    .pink-title {
        font-size: 135px;
    }
}

.stop-left img {
    display: block;
    margin: 0 auto;
    max-width: 61%;
}

.news-box-container {
    background: url(../images/full_line.png) no-repeat top center, url(../images/full_line.png) no-repeat bottom center;
    padding-top: calc(var(--space-40) + var(--space-40) + 5px);
    padding-bottom: calc(var(--space-60) + var(--space-60));
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--space-40) + var(--space-40));
}

.box-title {
    font-weight: 300;
    font-size: var(--font-55);
    line-height: 1.18182;
    color: #000;
    letter-spacing: 0.05em;
}

.mainpage .news-slider {
    margin: -18px;
}

.mainpage .news {
    padding: 18px;
}

.news-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

@media screen and (min-width: 1140px) {
.news-link:hover .btn {
    background-color: var(--color-secondary);
    color: var(--color-default);
    border-color: var(--color-secondary);
}
}

.news-photo img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
}


.news-photo {
    margin-bottom: var(--space-50);
    position: relative;
}


.news-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
}

.news-title {
    letter-spacing: 0.01em;
    font-weight: 600;
    font-size: var(--font-20);
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
    height: 72px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (min-width: 1140px) {
.news-link:hover .news-title {
    color: var(--color-secondary);
}
}
.news .text.txt {
    font-weight: 300;
    font-size: var(--font-17);
    line-height: 1.76471;
    color: #000;
    margin-bottom: var(--space-40);
    height: 90px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

ul.slick-dots {
    padding-top: calc(var(--space-40) + var(--space-30));
    text-align: center;
}

ul.slick-dots li span {
    width: 13px;
    height: 13px;
    display: block;
    border-radius: 50%;
    border: 1px solid #000;
    cursor: pointer;
}

ul.slick-dots li {
    margin: 0 12px;
    display: inline-block;
    transition: all 0.2s;
}

ul.slick-dots li.slick-active span {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

@media screen and (min-width: 1140px) {
ul.slick-dots li:hover span {
    border-color: var(--color-secondary);
}
}
.logotypes-box-container {
    padding-top: calc(var(--space-40) + var(--space-30) + 5px);
    padding-bottom: calc(var(--space-60) + var(--space-60));
}

.logotypes-box-container .box-title {
    font-size: var(--font-36);
    line-height: 1.80556;
}

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

.logotype-slider {
    margin: -11px;
}

.subpage .about-box-container {
    background: url(../images/full_line.png) no-repeat bottom center;
    padding-top: calc(var(--space-30)  + 5px);
    padding-bottom: calc(var(--space-50) + var(--space-50));
}

.page-heading-title {
    font-weight: 300;
    font-size:var(--font-45);
    line-height: 1.44444;
    text-align: center;
    color: #000;
    letter-spacing: 0.05em;
    margin-bottom: calc(var(--space-60)  + 5px);
}

.grid-box-container {
    padding-bottom: 20px;
    padding-top: calc(var(--space-40) + var(--space-40));
    background: url(../images/full_line.png) no-repeat bottom center, url(../images/full_line.png) no-repeat top center;
}

.grid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--space-40) + var(--space-40));
}

.grid-photo {
    width: 56.5%;
}

.grid-photo img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
}

.grid-text {
    width: 35.54%;
}

.grid-text .text.txt h3 {
    margin-bottom: var(--space-40);
}

.grid-item:nth-child(even) {
    flex-direction: row-reverse;
}

.subpage .about-box{
    display: block;
}
.subpage .about-photo {
    width: 42%;
    margin-bottom: var(--space-40);
    margin-right: var(--space-60);
    float: left;
}

.subpage .about-text {
    width: 100%;
    display: unset;
    background: transparent;
    padding: 0;
}

.subpage .about-logo {
    width: 25%;
}

.subpage .about-title {
    font-size: var(--font-45);
    line-height: 1.22222;
    width: 65%;
}

.subpage .stop-box-container {
    padding-top: calc(var(--space-60)  + 5px);
}

.files-list ul {
    display: flex;
    flex-wrap: wrap;
    margin: -20px;
}

.files-list ul li {
    width: 50%;
    padding: 20px;
    display: flex;
}

.files-list ul li a {
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 100%;
    justify-content: space-between;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding-top: 19px;
    padding-bottom: 19px;
}


.icon-file {
    width: 22%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.file-name {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 20px;
    letter-spacing: 0.04em;
    width: 83%;
    font-weight: 400;
    font-size: 14px;
    line-height: 2;
    color: #000;
}

.file-name-content {
    width: 73%;
}

.icon-download {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 17%;
}


@media screen and (min-width: 1140px) {
    .files-list ul li a:hover {
        border-color: var(--color-secondary);
        box-shadow: 0 0 0 1px var(--color-secondary)
    }
}

.files-box-container {
    padding-top: calc(var(--space-40) + var(--space-30) + 5px);
    padding-bottom: calc(var(--space-50) + var(--space-50));
    background: url(../images/full_line.png) no-repeat bottom center;
}

.files-box-title {
    font-weight: 300;
    font-size: var(--font-36);
    line-height: 1.27778;
    text-align: center;
    color: #000;
    letter-spacing: 0.04em;
    margin-bottom: calc(var(--space-40) + var(--space-30) + 5px);
}

.share-box-title {
    font-weight: 300;
    font-size: var(--font-36);
    line-height: 1.27778;
    text-align: center;
    color: #000;
    letter-spacing: 0.04em;
    margin-bottom: calc(var(--space-40) + var(--space-30) + 5px);
}

.share-box-container {
    padding-top: calc(var(--space-40) + var(--space-40));
    padding-bottom: calc(var(--space-50) + var(--space-50));
    background: url(../images/full_line.png) no-repeat bottom center;
}

.share-video-link img {
    display: block;
    border-radius: 15px;
    max-width: 100%;
}

.share-video-link {
    display: block;
    position: relative;
    width: 100%;
}

.mask.share-mask {
    background: linear-gradient(180deg, rgba(17, 0, 17, 0.00) 0%, rgba(17, 0, 17, 0.40) 100%);
    border-radius: 15px;
}

.play {
    background: url(../images/icons/play.svg) no-repeat center center / contain;
    width: 55px;
    height: 55px;
    display: block;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.share-slide {
    padding: 8px;
}

.share-slider {
    margin: -8px;
}

.share-slider ul.slick-dots {
    padding-top: calc(var(--space-40) + var(--space-40));
}

.counter-item {
    width: 33.33%;
    height: 326px;
    padding: 10px;
}

.counter-box {
    display: flex;
    margin: -10px;
}

.counter-nb {
    font-weight: 700;
    font-size: 3.958vw;
    line-height: 130%;
    color: #000;
}
@media screen and (min-width: 1921px) {
    .counter-nb {
        font-size: 70px;
    }
}
.counter-item .text.txt {
    font-weight: 400;
    font-size: var(--font-20);
    line-height: 1.5;
    color: #000;
}

.counter-box-title {
    font-weight: 300;
    font-size: var(--font-36);
    line-height: 1.27778;
    text-align: center;
    color: #000;
    letter-spacing: 0.04em;
    margin-bottom: calc(var(--space-40) + var(--space-30) + 5px);
}

.counter-box-container {
    padding-top: calc(var(--space-40) + var(--space-40));
    padding-bottom: calc(var(--space-50) + var(--space-60));
}

.counter-item-content {
    padding: 38px 51px 27px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-radius: 15px;
    background: #F4F4F4;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 196px;
}


.action-details-container {
    padding-top: 37px;
}

.action-photo img {
    display: block;
    border-radius: 15px;
    max-width: 100%;
}


.action-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: calc(var(--space-40) + var(--space-40));
    align-items: center;
    padding-top: var(--space-40);
}

.action-photo {
    width: 65.6%;
}

.action-right {
    width: 29%;
}

.action-details-right-title {
    font-family: var(--second-family), sans-serif;
    font-weight: 400;
    font-size: var(--font-40);
    text-align: center;
    color: #fff;
    margin-bottom: var(--space-30);
}

.activities-submenu {
    background: #fff;
    padding-bottom: 10px;
}


.activities-submenu ul {
    display: flex;
    justify-content: center;
    margin: -9px;
}

.activities-submenu ul li a {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #000;
    border-radius: 50px;
    min-width: 219px;
    padding: 13px;
    border: 1px solid #000;
    display: block;
}

.activities-submenu ul li.active a {
    background: var(--color-secondary); border-color: var(--color-secondary);
}

@media screen and (min-width: 1140px) {

.activities-submenu ul li a:hover {
   background: var(--color-secondary);border-color: var(--color-secondary);

}
}
.activities-submenu.affix {
    position: fixed;
    top: 128px;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 2;
}


.product-submenu.affix {
    max-width: 1360px;
    margin: 0 auto;
}


.action-section-box {
}


.action-details-section {
    padding-bottom: var(--space-60);
}

.action-details-container .page-heading-title {
    margin-bottom: var(--space-30);
}

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

.action-details-title {
    font-weight: 300;
    font-size: var(--font-40);
    line-height: 1.25;
    color: #000;
    letter-spacing: 0.03em;
}


.action-section {
    clear: both;
    margin: 0 auto;
    max-width: 1640px;
    width: 100%;
    background: url(../images/full_line.png) no-repeat center top;
    padding-top: calc(var(--space-50) + var(--space-40));
    padding-bottom:calc(var(--space-40) + var(--space-30) + 5px);
}

.action-section-title {
    font-weight: 300;
    font-size: var(--font-36);
    line-height: 1.27778;
    text-align: center;
    color: #000;
    letter-spacing: 0.05em;
    margin-bottom: calc(var(--space-40) + var(--space-30));
}

.programs-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.program-item {
    width: 33.33%;
    padding: 10px;
}

.program-link {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px 30px;
    background: #f4f4f4;
    border-radius: 15px;
    border: 1px solid #f4f4f4;
    height: 100%;
}

.program-title {
    font-weight: 400;
    font-size: var(--font-20);
    line-height: 1.5;
    color: #000;
    letter-spacing: 0.01em;
}

.program-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 33px;
    flex-shrink: 0;
}

@media screen and (min-width: 1140px) {
.program-link:hover {
    background: #fff;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 1px var(--color-secondary);
}
}
.training-list {
    display: flex;
    flex-wrap: wrap;
    margin: -24px;
    margin-bottom: -40px;
}

.training-item {
    width: 50%;
    padding: 24px;
    margin-bottom: 22px;
}

.training-photo img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
}

.training-title {
    font-weight: 700;
    font-size:var(--font-20);
    line-height: 1.8;
    color: #000;
    margin-bottom: var(--space-40);
}

.training-photo {
    margin-bottom: var(--space-30);
}

.training-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.campaigns-list {
    display: flex;
    justify-content: center;
    margin: -11px;
    padding-bottom: 5px;
}

.campaign-item {
    width: 33.33%;
    padding: 11px;
}

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

.campaign-photo img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
}

.campaign-link {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.campaign-content {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.campaign-content .text.txt {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: var(--font-18);
    line-height: 1.66667;
    text-align: center;
    width: 79%;
}

.action-section .files-list {
    padding-bottom: calc(var(--space-50) + var(--space-40));
}

.frame .black-title {
    top: 65px;
    font-size: 7.032vw;
    left: -12%;
    letter-spacing: 0.04em;
}

@media screen and (min-width: 1921px) {
    .frame .black-title  {
        font-size: 135px;
    }
}

.frame  .stop-left {
    width: 42%;
    margin-top: -53px;
    left: 1%;
}

.frame  .pink-title {
    font-size: 5vw;
    padding-top: 5px;
    padding-bottom: 9px;
}
@media screen and (min-width: 1921px) {
    .frame .pink-title {
        font-size: 96px;
    }
}
.frame.stop-box {
    margin-top: var(--space-40);
    padding-bottom: var(--space-30);
    border: 5px solid #ed117f;
    border-radius: 15px;
}

.frame  .stop-right {
    padding-top: 74px;
    width: 39%;
}

.frame  .stop-right-title {
    font-weight: 300;
    font-size: var(--font-42);
    /* line-height: 50px; */
    line-height: 1.19048;
    color: #000;
}

.action-section:last-child {
    padding-bottom: calc(var(--space-30)  + 5px);
}

.news-box {
    display: flex;
    flex-wrap: wrap;
    margin: -19px;
    padding-bottom:calc(var(--space-30)  + 5px);
    margin-bottom: 0;
}

.subpage .news {
    width: 33.33%;
    padding: 19px;
    margin-bottom: 25px;
}

.subpage .news-box-container {
    background: transparent;
    padding-top: 37px;
    padding-bottom: 0;
}

.subpage .news-box-container .page-heading-title {
    margin-bottom: calc(var(--space-30)  + 5px);
}

.news.video-news .play {
    background: url(../images/icons/play.svg) no-repeat;
    display: block;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 108px;
    height: 108px;
}

.text-box-container {
    padding-top: 37px;
    padding-bottom: calc(var(--space-40) + var(--space-40));
}

.text-box-container .page-heading-title {
    margin-bottom: calc(var(--space-30)  + 5px);
}

.article-text.text.txt {
    font-weight: 400;
    font-size: 16px;
    /* line-height: 30px; */
    line-height: 1.875;
    color: #000;
}

.gallery-title {
    font-weight: 300;
    font-size: var(--font-36);
    line-height: 130%;
    text-align: center;
    color: #000;
    letter-spacing: 0.04em;
    margin-bottom: calc(var(--space-40) + var(--space-30) + 5px);
}

.buttons-center-section {
    padding-top: calc(var(--space-40) + var(--space-40));
    padding-bottom: 10px;
    background: url(../images/full_line.png) no-repeat top center;
}


.subpage .logotype-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

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

.partners-box-container {
    padding-top: 37px;
    padding-bottom: calc(var(--space-60) + var(--space-60) + 5px);
}

.partners-box-container .page-heading-title {
    margin-bottom: calc(var(--space-30)  + 5px);
}

.donation-box {
    border: 5px solid #ed117f;
    border-radius: 15px;
    display: flex;
    align-items: center;
    max-width: 95.5%;
    justify-content: space-between;
    margin-bottom: var(--space-50);
}

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

.donation-left {
    width: 26%;
}

.donation-right {
    width: 69%;
    display: flex;
    justify-content: space-between;
    padding-right: 50px;
    align-items: center;
}

.donation-title {
    font-weight: 300;
    font-size: var(--font-40);
    line-height: 130%;
    color: #000;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
}

.donation-right .btn.btn-donation {
    width: 298px;
    height: 62px;
    padding-left: 22px;
    font-weight: 600;
    font-size: var(--font-20);
}


.donation-text {
    flex-grow: 1;
    padding-right: 60px;
}

.contact-box-container {
    padding-top: 37px;
    padding-bottom: calc(var(--space-40) + var(--space-30));
}

.contact-box-container .page-heading-title {
    font-weight: 300;
    font-size:var(--font-36);
    line-height: 1.85714;
    color: #000;
    text-align: left;
    margin-bottom:  calc(var(--space-40)  + 5px);
}

.contact-box-header {
    max-width: 1360px;
    margin: 0 auto;
}

.contact-title {
    padding-left: 15%;
    font-weight: 200;
    font-size: var(--font-50);
    line-height: 100%;
    color: #000;
    letter-spacing: 0.05em;
    padding-bottom: 10px;
    margin-bottom: var(--space-60);
}

.contact-title strong {
    font-weight: 700;  font-size: 5.991vw;

    /* line-height: 91px; */
    line-height: 1;
    color: #000;
}
@media screen and (min-width: 1921px) {
    .contact-title strong {
        font-size: 115px;
    }
}
.contact-box {
    display: flex;
    justify-content: space-between;
    width: 70%;
}

.contact-item-title {
    font-weight: 700;
    font-size: var(--font-36);
    /* line-height: 60px; */
    line-height: 1.59825;
    color: #ffbd59;
    letter-spacing: 0.05em;
}

.contact-item {
    width: 28%;
    padding-right: 30px;
}

.contact-item:first-child {
    width: 44%;
}

.contact-item .text.txt {
    font-weight: 400;
    font-size: 16px;
    /* line-height: 40px; */
    line-height: 2.5;
    color: #000;
}

.contact-item .text.txt a {
    color: #000;
}

.contact-box-wrapper {
    padding-bottom: calc(var(--space-50) + var(--space-40));
    background: url(../images/full_line.png) no-repeat bottom center;
}

.contact-box-inner {
    max-width: 1360px;
    margin: 0 auto;
    justify-content: space-between;
    display: flex;
}

.contact-box-img {
    width: 26%;
    margin-left: -2.5%;
    margin-top: -150px;
    position: relative;
}

.contact-box-img img {
    display: block;
    max-width: 100%;
    position: absolute;
}

.form-box-wrapper {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    padding-top: calc(var(--space-50)  + 5px);
}

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

.form-box-inner {
    padding-bottom: var(--space-60);
}

.map-box-title {
    font-weight: 300;
    font-size: var(--font-36);
    line-height: 1.85714;
    color: #000;
    letter-spacing: 0.04em;
    margin-bottom: var(--space-50);
}

.map-box iframe {
    width: 100%;
    height: 400px;
}


.modal-content {
    border: 3px solid #ed117f;
    border-radius: 15px;
    min-width: 1360px;
    padding: 0 75px;
}

.hide-after-success {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
}

.hide-after-success > img {
    display: block;
    max-width: 31%;
    margin-bottom: -16px;
    margin-left: 3%;
}

form#report-form {
    margin-bottom: var(--space-60);
}

.modal-header {
    border-bottom: 0 none;
    margin-top: 35px;
    padding-bottom: 0;
}

h4.modal-title {
    font-weight: 300;
    font-size: var(--font-36);
    line-height: 1.27778;
    color: #000;
}


.modal-header button.close {
    position: absolute;
    width: 72px;
    height: 72px;
    top: 0;
    right: 0;
    background: var(--color-primary);
    font-size: 40px;
    color: #FFF;
    OPACITY: 1;
    border-radius: 50%;
    margin-top: -70px;
    margin-right: -108px;
}


.modal-dialog {
    width: 1360px;
    margin: 30px auto;
}

.form .consent-row {
    margin-bottom: var(--space-60);
}

.form-box-inner {
    padding-bottom: var(--space-40);
}

.modal.in .modal-dialog {
     transform: translate(0, 25%);
}

.pink-title:nth-child(2) {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin-right: 8%;
    left: -9%;
}

.black-title:first-child {
    position: relative;
    margin-right: 9%;
    top: auto;
    left: -9%;
}

.activities-submenu ul li:last-child a {
    font-weight: bold;
    border-color: var(--color-primary);
}

.fancybox-slide > video {
    max-width: 100%;
}

.donation-box {
    flex-direction: column;
    padding-bottom: 30px;
    padding-top: 30px;
    max-width: 100%;
}

.donation-right {
    width: 100%;
    padding: 0 30px;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.donation-text {
    text-align: center;
    padding-right: 0;
    margin-bottom: 30px;
}

.donation-text .donation-title {
    text-align: center;
}

.donation-text .text.txt p {
    text-align: center!important;
}

.donation-left {
    width: 26%;
    margin-bottom: 20px;
}

.donation-left img {
    border-radius: 10px;
}

.text ul > li p {
    display: inline;
}

.text-box-container .text.txt ul {
    margin-bottom: var(--space-30);
}



.donate-form-title {
    font-weight: 300;
    font-size: var(--font-36);
    line-height: 130%;
    text-align: left;
    color: #000;
    letter-spacing: 0.04em;
    margin-bottom: var(--space-40);
}

button.price-bubble {
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    width: 119px;
    font-weight: 400;
    font-size: 1.063em;
    text-align: center;
    color: var(--color-default);
    display: block;
    line-height: 58px;
    margin: 5px;
}

.amounts-list {
    display: flex;
    justify-content: space-between;
}

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

button.donate-button.btn.btn-red.btn-xl {
        width: 280px;
        height: 62px;
        padding-left: 22px;
        font-weight: 600;
        font-size: var(--font-20);
        text-transform: none;
        justify-content: center;
        border-radius: 76px;
        margin-left: 5px;
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff;
}


.icon-wrapper {
    margin-bottom: 13px;
}

.input-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-left: 30px;
}

.amounts-list-inner input {
    width: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    height: 60px;
    line-height: 58px;
    border-radius: 30px;
    font-weight: 400;
    font-size: 1.063em;
    color: var(--color-default);
    text-align: left;
    min-width: 280px;
    margin: 5px;
}

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

.donate-amounts-wrapper {
    margin-bottom: var(--space-60);
}

.target-items {
    display: flex;
    margin: -20px;
    flex-wrap: wrap;
}

.donation-target {
    width: 25%;
    padding: 20px;
}

.donation-target .caption {
    padding: 30px;
    opacity: 0.3;
    background: #fff;
    color: #ed117f;
    border: 5px solid #ed117f;
    border-radius: 15px;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
}

.donate-targets-wrapper {
    margin-bottom: var(--space-60);
}

.donate-form-fields-wrapper {
    margin-bottom: var(--space-60);
}


.donation-target.active .caption {
    opacity: 1;
}

button.price-bubble.active {
    background: var(--color-primary);
    color: #fff;
}