/**
 * GLOBAL VARIABLES
 */
html {
    scroll-behavior: smooth;
}

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

    --font-64: clamp(30px, 4vw, 64px);
    --font-48: clamp(22px, 3vw, 48px);
    --font-40: clamp(22px, 3vw, 40px);
    --font-30: clamp(19px, 2vw, 30px);
    --font-36: 36px;
    --font-24: 24px;

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

    /** SPECIFIC **/
    --color-primary: #F9EBAE;
    --color-secondary: #C39347;
    --gradient-primary: linear-gradient(144deg, rgba(249, 235, 174, 1) 0%, rgba(195, 147, 71, 1) 93%);
    --color-default: #333;
}

body {
    color: #000;
    font-family: 'Outfit', Serif;
}

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: inherit;
}

.text a {
    color: var(--color-secondary);
}

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

/**
 * 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;
}

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

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

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

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

.container--noClear {
    clear: none;
}

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

/**
 * ICONS
 */

.icon-mask.icon-mask {
    -webkit-mask-size: contain;
    -mask-size: contain;
    -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');
}

.icon-arrow-right {
    -webkit-mask-image: url('../images/icons/arrow-right.svg');
    mask-image: url('../images/icons/arrow-right.svg');
}

.icon-arrow-left {
    -webkit-mask-image: url('../images/icons/arrow-left.svg');
    mask-image: url('../images/icons/arrow-left.svg');
}

.icon-heart {
    -webkit-mask-image: url('../images/icons/heart.svg');
    mask-image: url('../images/icons/heart.svg');
}

.icon-pin {
    -webkit-mask-image: url('../images/icons/pin.svg');
    mask-image: url('../images/icons/pin.svg');
}

.icon-mail {
    -webkit-mask-image: url('../images/icons/mail.svg');
    mask-image: url('../images/icons/mail.svg');
}

.icon-phone {
    -webkit-mask-image: url('../images/icons/phone.svg');
    mask-image: url('../images/icons/phone.svg');
}

/**
 * THEMES
 */
.btn-with-icon svg *[fill], .btn-lg svg *[fill], .btn-md svg *[fill] {
    fill: currentColor;
}

.btn-with-icon svg *[stroke], .btn-lg svg *[stroke], .btn-md svg *[stroke] {
    stroke: currentColor;
}

.btn-lg {
    min-width: 250px;
    min-height: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 100px;
}

.btn-md {
    height: 60px;
    min-width: 236px;
    border: 1px solid transparent;
    text-transform: uppercase;
    font-size: 16px;
    padding: 5px 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.btn-lg .icon {
    color: currentColor;
    display: block;
    width: 20px;
    height: 20px;
}

.btn-white,
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.btn-white.active:focus,
.btn-white:hover:focus,
.btn-white:hover:active,
.btn-white:focus:active {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.active:focus,
.btn-primary:hover:focus,
.btn-primary:hover:active,
.btn-primary:focus:active {
    background-color: transparent;
    border-color: transparent;
    color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.btn-primary:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transition: opacity 300ms;
    background: var(--gradient-primary);
    display: block;

}

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

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

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

.btn-secondary.active {
    background-color: #fff;
    color: var(--color-secondary);
}

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

.btn-transparent {
    position: relative;
    z-index: 2;
    border-color: rgba(0, 0, 0, 0.2);

}

.btn-transparent:before {
    content: "";
    inset: -1px;
    z-index: -1;
    position: absolute;
    opacity: 0;
    transition: opacity 300ms;
    border-radius: 30px;
    background: var(--gradient-primary);
    display: block;
}

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

.btn-default.active {
    background-color: #fff;
    color: var(--color-default);
}

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

@media screen and (min-width: 1140px) {
    .btn-primary:not([disabled]):hover:before,
    .btn-primary:not([disabled]).active:hover:before {
        opacity: 0;
    }

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

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

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

    .btn-transparent.active,
    .btn-transparent:hover {
        color: #fff;
    }

    .btn-transparent.active:before,
    .btn-transparent:hover:before {
        opacity: 1;
    }
}

/**
 * BUTTONS
 */

.btn {
    transition: all 0.2s;
}

/**
 * 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;
}

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 16px;
    font-weight: 300;
    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: "•";
    position: relative;
    display: inline-block;
    width: 10px;
    left: -10px;
    margin-left: -10px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 18px;
}

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

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: rgba(17, 17, 17, 0.4);
    right: 0;
    border-bottom: 1px solid transparent;
    transition: background-color 300ms, border-color 300ms;
}

header .logo {
    position: relative;
    display: block;
    transition: max-width 300ms;
    max-width: 97px;
}


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

.logo-white {
    transition: opacity 300ms;
}

.subpage header .logo-white, header.sticky .logo-white {
    opacity: 0;
}

.subpage header .logo-black, header.sticky .logo-black {
    opacity: 1;
}

.subpage header .langs-menu a, header.sticky .langs-menu a {
    color: #000;
}

.subpage header .lang:after, header.sticky .lang:after {
    background: rgba(0, 0, 0, 0.1) border-box;
}

.logo-black {
    inset: 0;
    opacity: 0;
    transition: opacity 300ms;
    position: absolute;
    display: block;
}

header.sticky + #content .menu-box-wrapper {
    top: 75px;
}

.mainpage header:not(.sticky) li:hover > ul a {
    color: #000 !important;
}

.mainpage header:not(.sticky) #main-menu li:hover > ul {
    background-color: transparent;

}

.subpage header, header.sticky {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    padding: 8px 0;
    justify-content: space-between;
}

.header-right > .btn + .langs-menu {
    position: relative;
}

.header-right > .btn + .langs-menu:before {
    width: 1px;
    position: absolute;
    left: calc(var(--space-60) / -2);
    height: 9px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    transition: background-color 300ms;
    content: "";
    display: block;
}

header.sticky .header-right > .btn + .langs-menu:before,
.subpage .header-right > .btn + .langs-menu:before {
    background-color: #000;
}

.header-right {
    gap: calc(var(--space-60));
    display: flex;
    align-items: center;
}

.logo {
    float: left;
}

.logo a {
    display: block;
}

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

#main-menu ul {
    font-size: 0;
}

#main-menu li {
    position: relative;
    display: inline-block;
    font-size: 1rem;
}

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

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

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


#main-menu li > ul {
    display: none;
    flex-direction: column;
    max-height: 80vh;
    min-width: 100%;
    text-align: center;
    flex-wrap: wrap;
    gap: 0 !important;
    position: absolute;
    top: 100%;
    left: 0;
}

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

#main-menu li:hover > ul {
    display: flex;
    background-color: #fff;
}

header.sticky #main-menu li a, .subpage header #main-menu li a {
    color: #000;
}

#main-menu > ul > li + li {
    margin-left: var(--space-25);
}

#main-menu li.active > a {
    color: var(--color-secondary);
}

#main-menu li:hover > a {
    color: var(--color-secondary);
}

#main-menu li a {
    padding: 5px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    transition: color 300ms;
}

#main-menu li ul a {
    display: block;
    width: 100%;
}

#main-menu li ul li {
    width: 100%;
}

#main-menu li:hover > ul > li > a {
    display: block;
    padding: 8px 15px;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: color .3s, background-color .3s;
}

#main-menu li:hover > ul > li > a:hover {
    background-color: var(--color-primary);
    color: var(--color-default);
}

#main-menu > ul > li:hover > ul > li {
    width: 100%;
    text-transform: uppercase;
}

#main-menu li:hover ul li {
    border-bottom: 1px solid var(--color-primary);
}

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

.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;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-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 BAR */
.footer-bar {
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 14px;
}

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

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-50);
}

.footer-bar {
    background-color: #000;
    color: #fff;
}

.footer-top .footer-bar {
    color: #fff;
    background-color: transparent;
}

.footer-bar-content {
    border-top: none;
}

.footer-top .footer-bar-content {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-top {
    background: center center /cover;
    background-color: rgba(0, 0, 0, 0.55);
    color: #fff;
    background-blend-mode: darken;
}

.footer-right {
    display: flex;
    gap: calc(var(--space-50) + var(--space-25));
}

.footer-image img {
    max-width: 100%;
    display: block;
}

.footer-image {
    margin-left: 5%;
    margin-right: -5%;
    margin-top: -13%;
    max-width: 270px;
}

.footer-right .contact-wrapper li + li {
    margin-top: var(--space-50);
}

.footer-right .contact-wrapper li {
    display: flex;
    align-items: center;
}

.footer-right .contact-wrapper li .caption {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-right .contact-wrapper li .caption-big {
    font-size: var(--font-24);
    transition: color 300ms;
    font-weight: 600;
}

.footer-right .contact-wrapper li a.caption-big:hover {
    color: var(--color-secondary);
}

.footer-top-content {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;
    padding: calc(var(--space-50) * 3) 0;
}


.footer-right .icon-wrapper {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-right: var(--space-50);
    display: flex;
    border: 1px solid #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.footer-right .icon-wrapper .icon {
    width: 25px;
    height: 25px;
    color: #fff;
}

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

.footer-bar-content > * {
    float: left;
}

.footer-bar-content > *:not(:last-child) {
    margin-right: 10px;
}

.footer-bar-content {
    padding: 10px 0;
}

.footer-bar-links {
    position: relative;
}

.footer-bar-links a {
    transition: color 300ms;
}

.footer-bar-links a:hover {
    color: var(--color-secondary);
}

.footer-bar-links:after {
    content: "";
    display: block;
    height: 12px;
    width: 1px;
    background: currentColor;
    position: absolute;
    right: -1px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.footer-bar-links {
    margin-left: -8px;
    font-size: 0;
    text-transform: uppercase;
}

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

.footer-bar-links a {
    color: inherit;
}

.copyright-undicom {
    float: right;
    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.form {
    /* padding: 15px 0; */
}

.form .form-element-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
    height: 46px;
}

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

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    /* font-size: 12px; */
}

.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 {
    border-radius: 6px;
    box-shadow: none;
}

/* 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 {
    right: var(--row-gap);
    border-radius: 0 6px 6px 0;
    background-color: transparent;
    border-color: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    color: unset;
    height: 46px;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.form button.captcha-refresh svg {
    animation: spin 2s infinite linear;
    animation-play-state: paused

}


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

    .form button.captcha-refresh:hover svg {
        -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;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

/*---- 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%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-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';
    font-size: 16px;
    vertical-align: middle;
}

.select2-container--default.select2-container--open .select2-selection__arrow {
    -webkit-transform: translateY(-50%) scaleY(-1);
    -moz-transform: translateY(-50%) scaleY(-1);
    -ms-transform: translateY(-50%) scaleY(-1);
    -o-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;
    }
}

/**
 * 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;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-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);
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
}

.animIcon.animIcon--close span:nth-child(2) {
    transform: rotateZ(-45deg);
    -webkit-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%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-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%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/**
 * LOGOTYPES SLIDER
 */
.logotypesSlider-section {
    margin-bottom: var(--space-50);
}

a[href].logotype:hover img {
    transform: scale(1.1);
}

a[href].logotype img {
    transition: all 0.3s;
}

.logotypesSlider {
    position: relative;
    padding-bottom: 1px;
    overflow: hidden;
    border-left: 1px solid #ccc;
}

.logotypesSlider:after {
    height: 100%;
    width: 1px;
    background: #cccccc;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}


.swiper-button-lock.btn {
    display: none !important;
}

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

.logotype {
    display: flex;
    width: 20%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: -1px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    align-items: center;
    justify-content: center;
}


/**
 * 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;
    transition: border-color 300ms, color 300ms, background-color 300ms;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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


/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    margin: 0;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
}

.langs-menu ul {
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s;
}

.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 {
    color: #fff;
}


.langs-menu--list .lang-item:before {
    inset: -1px;
    transition: opacity 300ms;
    opacity: 0;
}


.langs-menu--list .lang-item {
    border-radius: 50%;
    padding: 0;
    transition: background 300ms, border-color 300ms, color 300ms;
}

.langs-menu-short-hover {
    opacity: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: opacity 300ms;
    position: absolute;
    font-weight: 500;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: auto;
}

.lang-item.active .langs-menu-short-hover,
.lang-item:hover .langs-menu-short-hover {
    opacity: 1;
}

.lang-item.active,
.lang-item:hover {
    color: transparent;
    background: transparent;
    border-color: transparent;
}

.lang-item.active:after,
.lang-item:hover:after {
    opacity: 0;
}

.lang-item.active:before,
.lang-item:hover:before {
    opacity: 1;
}


.langs-menu-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin-right: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang {
    position: relative;
    padding: 1.3rem;
    backdrop-filter: blur(10px);
}

.lang::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid transparent;
    background: var(--gradient-primary) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.lang::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid transparent;
    background: #fff border-box;
    transition: opacity 300ms;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}


.lang {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
    width: 50px;
    height: 50px;
    justify-content: center;
}

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

.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: 18px;
    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:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
    }

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

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

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

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

.langs-menu.langs-menu--list li {
    border: none;
}


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

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
}

.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%;
    margin-right: 50px;
    margin-bottom: 20px;
}

.article-image img {
    max-width: 100%;
}

.article-subtitle {
    padding-bottom: 30px;
}

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

.article-text {
    margin-bottom: 30px;
}

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

.gallery-list {
    margin: -10px;
    font-size: 0;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 10px;
}


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

.gallery-picture > img {
    display: block;
    object-fit: cover;
    width: 100%;
}

.gallery-picture-hover span:nth-child(2) {
    transform: rotate(90deg);
}

.gallery-picture-hover span {
    display: inline-block;
    width: 23.5%;
    height: 1px;
    background: #fff;
    position: absolute;
    inset: 0;
    margin: auto;
}

.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(0, 0, 0, 0.5);
    transition: opacity 0.3s;
}

@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);
    }
}


/* mainslider section */
.mainSlider-slide > .container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mainSlider-slide {
    background: center center /cover;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    background-blend-mode: darken;
    display: flex;
    justify-content: stretch;
    flex-direction: column;
    min-height: min(100vh, 1000px);
}

.mainSlider-text {
    max-width: 650px;
    line-height: 1.8;
    font-size: 20px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}


.mainSlider-content {
    align-items: flex-start;
    display: flex;
    gap: calc(var(--space-25) + 5px);
    flex-direction: column;
}

.mainSlider-title {
    margin: auto auto 0 auto;
    padding: var(--space-40) 55px 0;
    overflow: visible;
}

.mainSlider-title .line1-wrapper{
    line-height: 1.23;
    margin-top: -0.2em;
    overflow: hidden;

    padding-right: min(16vw, 310px);
}
.mainSlider-title .line1 {
    max-height: calc(1em * 1.23);

    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-weight: 800;
    font-family: "Playfair Display", serif;
    font-size: clamp(60px, 14vw, 250px);
}


.mainSlider-title .line2 {
    font-weight: 100;
    padding-left: min(16vw, 310px);
    font-size: clamp(40px, 6vw, 110px);
}

.mainSlider-content-wrapper {
    flex-grow: 1;
    align-items: flex-start;
    padding-top: calc(var(--space-50) * 5);
    padding-bottom: calc(var(--space-60) + var(--space-50));
    display: flex;
    flex-direction: column;
}

.btn-with-icon {
    background: transparent !important;
    color: inherit;
    box-shadow: none !important;
    margin: -6px -12px;
    display: inline-flex;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    gap: calc(var(--space-25) + 5px);
    align-items: center;
}

.btn-circle {
    color: inherit;
    width: 50px;
    background: transparent;
    height: 50px;
    border-radius: 50%;
    border: 1px solid currentColor;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.btn-background-circle {
    background: var(--gradient-primary);
    border: unset;
    color: #fff;
}

.btn-circle .icon {
    width: 20px;
    height: 20px;
    color: inherit;
}

.btn-with-icon:hover,
.btn-with-icon:focus {
    gap: var(--space-50);
    color: var(--color-secondary);
}

.mainSlider .swiper-wrapper .swiper-slide {
    height: unset;
}

.mainSlider .swiper-wrapper {
    align-items: stretch;
}

.mainSlider-nav-wrapper {
    position: absolute;
    pointer-events: none;

    bottom: var(--space-50);
    z-index: 2;
    width: 100%;
}

.mainSlider-bullets .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    display: block;
    opacity: 0;
    border-radius: 50%;
    transition: opacity 300ms;
}

.mainSlider-bullets {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--space-40);
}

.mainSlider-bullets .swiper-pagination-bullet:after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: var(--gradient-primary) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    transition: opacity 300ms;
    opacity: 0;
}

.mainSlider-bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    pointer-events: auto;
    transition: background-color 300ms;
    background: #fff;
    position: relative;
    opacity: 1;
}

.mainSlider-bullets .swiper-pagination-bullet-active:after {
    opacity: 1;
}

.mainSlider-bullets .swiper-pagination-bullet:hover:before,
.mainSlider-bullets .swiper-pagination-bullet-active:before {
    opacity: 1;
}

.mainSlider-bullets .swiper-pagination-bullet:hover,
.mainSlider-bullets .swiper-pagination-bullet-active {
    background: transparent;
}

.mainSlider-section {
    position: relative;
}

.mainSlider-scroll-wrapper .btn-scroll .icon-wrapper {
    transform: rotate(90deg);
}

.mainSlider-scroll-wrapper .btn-scroll {
    writing-mode: tb;
    pointer-events: auto;
    color: #fff;
}

.mainSlider-scroll-wrapper .btn-scroll:hover {
    color: var(--color-primary);
}

.mainSlider-scroll-wrapper .btn-scroll:focus,
.mainSlider-scroll-wrapper .btn-scroll:hover {
    margin-bottom: calc(var(--space-25) * -1 - 1px);
}

.mainSlider-scroll-wrapper > .container {
    display: flex;
    justify-content: flex-end;
}

.mainSlider-scroll-wrapper {
    position: absolute;
    width: 100%;
    z-index: 2;
    pointer-events: none;
    bottom: calc(var(--space-50) + var(--space-60));
}

.mainSlider-section {
    margin-bottom: var(--space-60) !important;
}

/* about us section */
.section-content {
    display: flex;
    align-items: center;
}

.aboutUs-section {
    margin-bottom: var(--space-50);
}

.section-title {
    font-weight: 700;
    line-height: 1.333;
    font-size: var(--font-30);
}

.aboutUs-section .section-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
}

.aboutUs-section .section-header .section-title {
    margin-bottom: calc(1em * -1.333);
}

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

.aboutUs-section .section-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-50);
}

.aboutUs-section .section-right {
    justify-content: flex-end;
    position: relative;
    width: 52%;
}

.aboutUs-section .section-right {
    aspect-ratio: 860/820;
}

.aboutUs-section .section-left {
    padding-right: 13%;
    width: 48%;
}

.img-wrapper img {
    max-width: 100%;
    object-fit: cover;
    max-height: 100%;
    display: block;
}

.aboutUs-img-main {
    position: absolute;
    inset: 0;
}
@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
        opacity: 0;
    }
}
@media screen and (min-width: 1140px){
    .floating-title.opacityIn{
        opacity: 1;
    }
    .floating-title{
        opacity: 0;
    }
}
.aboutUs-img-main{
    opacity: 1 !important;
}
.shine::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    content: "";
    display: block;
    height: 100%;
    left: -75%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
    animation: shine 0.85s forwards;
    pointer-events: none;
}



.aboutUs-title {
    position: relative;
    min-height: 100%;
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-style: italic;
    justify-content: flex-end;
    font-size: clamp(55px, 10.5vw, 210px);
    display: flex;
    width: 100%;
    padding-top: calc(var(--space-60) + 15px);
    padding-bottom: var(--space-50);
    flex-direction: column;
}

.aboutUs-img-secondary {
    position: absolute;
    right: 15%;
    max-width: 46%;
    top: 45px;
}

.aboutUs-title-line {
    line-height: 1.2;
    margin: -0.15em 0;
    word-break: break-all;
}

.aboutUs-title-line:not(:first-child) {
    color: #fff;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}


.aboutUs-title-line {
    margin-left: 36%;
}

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

.aboutUs-title-line:first-child .text-wrapper{
    background: linear-gradient(144deg, rgba(249, 235, 174, 1) 0%, rgba(195, 147, 71, 1) 25%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.aboutUs-title-line:first-child {
    margin-left: -15%;

    position: relative;
    z-index: 2;
}

section {
    scroll-margin-top: 120px;
}

/*bananer*/
.bananer-section {
    background: center center /cover;
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: darken;
    position: relative;
}

.floating-title img {
    max-width: 100%;
    display: block;
}

.floating-title {
    position: absolute;
    font-size: clamp(40px, 11vw, 220px);
    font-weight: 800;
    font-family: "Playfair Display", serif;
    font-style: italic;
    line-height: 0.8;
    color: transparent;
    text-stroke: 1px rgba(255, 255, 255, 0.6);

    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
}

.slick-hidden {
    display: none !important;
}

.floating-title.line1 {
    top: 0;
    right: 0;
    font-size: clamp(40px, 13.5vw, 250px);
    bottom: unset;
    left: unset;
}

.background-text-section-wrapper .floating-title.line2 {
    position: static;
    margin-top: -4%;
    max-width: 70%;
    margin-bottom: -4%;
}
.background-text-section-wrapper .floating-title.line1 {
    top: -15%;
    max-width: 60%;
    right: 0%;
    font-size: clamp(40px, 13.5vw, 250px);
    bottom: unset;
    left: unset;
}

.background-text-section-wrapper .floating-title {
    font-size: clamp(40px, 13.5vw, 250px);

}

.floating-title text {
    fill: transparent;
    text-stroke: 1px rgba(255, 255, 255, 0.6);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);

}

.bananer-content .floating-title {
    width: 100%;
    top: 50%;
    line-height: 1.35;
    bottom: unset;
    transform: translateY(-44%);
    pointer-events: none;
    left: -2%;
}

.bananer-content .floating-title .line2 {
    padding-left: 36%;
}

.bananer-left {
    padding-top: var(--space-40);
    align-self: flex-end;
    width: 62%;
    display: flex;
    justify-content: center;
}

.bananer-left .img-wrapper {
    position: relative;
    z-index: 2;
    max-width: 58%;
    margin-right: 4%;
}

.bananer-right {
    width: 42%;
    padding: calc(var(--space-50) * 3) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
    align-items: flex-start;
}

.bananer-right .section-text {
    padding-right: 15%;
}


.bananer-content {
    display: flex;
    color: #fff;
    align-items: center;
}

.title {
    font-weight: 800;
    font-style: italic;
    font-family: "Playfair Display", serif;
    font-size: calc(var(--font-64) - 4px);
}

.title .line1 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bananer-section {
    margin-bottom: var(--space-50);
}

section .btn-lg {
    font-size: 19px;
    min-width: 300px;
    min-height: 60px;
}

/* projects slider section */
.section-header {
    margin-bottom: var(--space-50);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.subpage .section-header {
    margin-bottom: var(--space-60);
}

.section-header-left {
    width: 83%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-25);
}

.section-teaser {
    width: 50%;
}

.section-header-nav .btn-circle:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);

}

.section-header-nav {
    gap: 10px;
    display: flex;
    align-items: center;
}

.projectsSlider {
    margin: -20px;
}

.projectsSlider-section .slider-wrapper {
    overflow: hidden;
    margin-right: min(calc(((1720px - 2 * var(--container-padding) - 100vw) / 2 - 23%)), calc(-1 * var(--container-padding)));
    width: calc(100% + (max(calc(((1720px - 2 * var(--container-padding) - 100vw) / -2 + 23%)), var(--container-padding))));

}

.projectsSlider {
    width: calc(100% - (max(calc(((1720px - 2 * var(--container-padding) - 100vw) / -2 + 23%)), var(--container-padding))));
    overflow: visible !important;

}

.projectsSlider .slick-list, .projectsSlider .slick-track {
    overflow: visible !important;
}

.project-item {
    padding: 20px;
    width: 33.333%;
}
.projects-list .project-item{
    overflow: hidden;
}

.project-thumbnail {
    width: 100%;
    position: relative;
}

.project-thumbnail .img-wrapper img {
    display: block;
}

.project-thumbnail .img-wrapper {
    width: 100%;
}

.project-thumbnail .project-category {
    position: absolute;
    bottom: 0px;
    left: 0px;
    letter-spacing: 0.05em;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background: #fff;
}

.project-item .project-title {
    margin-top: var(--space-50);
    font-size: 20px;
    font-weight: 700;
}

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

.project-item-inner .project-thumbnail img {
    transition: transform 300ms;
}


.project-item-inner {
    transition: color 300ms;
}

.project-item-inner .img-wrapper {
    display: inline-block;
    width: unset;
    margin: 0 auto;
    transition: box-shadow 300ms;
}

.project-item-inner:hover .project-thumbnail .img-wrapper {
    box-shadow: -3px 5px 22px rgba(0, 0, 0, 0.25);
}

.project-item-inner:focus,
.project-item-inner:hover {
    color: #000;
}


.projectsSlider-section {
    margin-bottom: var(--space-50);
}

/* numbers section */
.numbers-section .section-header {
    margin-bottom: calc(var(--space-50) * 2);
}

.numbers-section {
    color: #fff;
    background: center center /cover;
    background-color: rgba(0, 0, 0, 0.35);
    background-blend-mode: darken;
    padding: calc(var(--space-50) + var(--space-25)) 0;
}

.number-box {
    width: 33.3333%;
    padding: calc(var(--space-50) * 2);
}

.number-box:nth-child(2n) .number-box-inner {
    margin-top: calc((var(--space-60) + 20px) * 2);
}

.number {
    font-size: calc(var(--font-64) - 4px);
    font-weight: 700;
    margin-bottom: 5px;
}

.number-title {
    margin-bottom: var(--space-25);
    font-weight: 300;
    font-size: var(--font-30);
}

.numbers-section-content {
    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--space-50) * -2);
}

.numbers-section {
    position: relative;
}

.numbers-section .bird {
    z-index: 3;
    top: 3%;
    max-width: 20.6%;
}

.numbers-section .bird img {
    max-width: 100%;
}

.numbers-section .floating-title.line1 {
    position: absolute;
    left: 50%;
    transform: translateX(-82%);
    top: 14%;
    width: 30%;
}

.projectsSlider .slick-track {
    margin: 0;
}

.numbers-section .floating-title.line2 {
    margin-left: auto;
    position: relative;
    right: 0;
    margin-top: -11%;
    margin-bottom: -6%;
    max-width: 80%;
    display: flex;
    justify-content: flex-end;
}

.numbers-section .floating-title {
    font-size: clamp(40px, 13.5vw, 250px);
}

/* statute */
.statute-section .floating-title {
    font-size: clamp(40px, 13.5vw, 250px);

    bottom: 0;
}

.statute-section {
    position: relative;
    background: center center /cover;
    background-color: rgba(0, 0, 0, 0.35);
    background-blend-mode: darken;
    color: #fff;
    padding: var(--space-60) 0;
}

.statute-section-content {
    align-items: flex-start;
}

.statute-section-content .section-right {
    width: 53%;
    position: relative;
}

.statute-section .floating-title.line1 {
    top: 0%;
    right: 5%;
    max-width: 39%;
}

.statute-section .floating-title.line2 {
    position: static;
    margin-left: 8%;
    margin-top: -12%;
    margin-bottom: -4%;
    max-width: 66%;
}

.statute-section-content .section-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(var(--space-25) + 5px);
    width: 47%;
    padding-right: 10%;
}

.statute-secondary-img {
    max-width: 35.5%;
    position: absolute;
    top: -11%;
    left: -19%;
}

.mainpage section + section {
    margin-top: var(--space-50);
}


.mainpage section {
    margin-bottom: var(--space-50);
}

/* subpage about us*/
.aboutUs-page {
    padding-top: calc(var(--space-60) + 5px);
}

.subpage .aboutUs-section {
    margin-top: calc(var(--space-60) + 10px);
}

.subpage .aboutUs-section .section-title {
    text-align: left;
}

.subpage .aboutUs-section .section-header {
    justify-content: flex-start;
}

.subpage .aboutUs-title {
    font-size: clamp(65px, 9vw, 165px);
}

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

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

/* background text */
.logo-emblem {
    width: 115px;
    margin-bottom: 10px;
}

.background-text-section {
    background: center center /cover;
    color: #ffff;
    padding: calc(var(--space-25) + var(--space-50)) 0;
    background-color: rgba(0, 0, 0, 0.45);
    background-blend-mode: darken;
    display: flex;
    align-items: stretch;
    min-height: min(100vh, 1000px);
}

.background-text-section-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.background-text-section .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.background-text-section .section-text {
    font-size: calc(var(--font-24) + 2px);
    max-width: 980px;
    line-height: 1.77;
    text-align: center;
}

.floating-title {
    bottom: 0;
    pointer-events: none;
    left: 0;
}

/* board list */
.board-item {
    display: flex;
    align-items: center;
    gap: calc(var(--space-60) + var(--space-25));
}

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

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

.board-arrow {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #000;
}

.board-arrow .icon {
    display: block;
    width: 18px;
    height: 14px;
    color: currentColor;
}

.board-item-left {
    width: 34.5%;
    flex-shrink: 0;
}

.person-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.person-job-title {
    margin-bottom: var(--space-25);
    font-size: 20px;
}

.person-text {
    font-weight: 300;
}

.board-section {
    margin-bottom: calc(var(--space-60) + 10px);
}

.logo-emblem svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* goals */
.goals-list-section {
    background: center center /cover;
    background-color: rgba(0, 0, 0, 0.55);
    background-blend-mode: darken;
    min-height: min(1000px, 100vh);
    padding: calc(var(--space-40) * 2) 0;
    color: #fff;
}

.goals-list::-webkit-scrollbar {
    width: 5px;
}

.goals-list::-webkit-scrollbar-track {
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.4);
    background-clip: padding-box;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.goals-list::-webkit-scrollbar-thumb {
    border-radius: 5px;

    background: var(--gradient-primary);
    width: 5px;
}

@-moz-document url-prefix() {
    .goals-list {
        overflow: scroll;
        scrollbar-color: var(--color-secondary) rgba(255, 255, 255, 0.4);
        scrollbar-width: thin;

    }
}

.goals-list {


    padding-right: calc(var(--space-25) + 5px);
    overflow: auto;
    max-height: clamp(400px, 75vh, 800px);
    flex-shrink: 0;
    width: 52%;
}

.goal {
    display: flex;
    gap: var(--space-25);
    padding: calc(var(--space-25) - 5px) calc(var(--space-25) + 5px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    align-items: center;
}

.goal:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.goal-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

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

.goal-icon {
    flex-shrink: 0;
    width: 40px;
}

.goals-list-section .section-header {
    margin-bottom: calc(var(--space-50) * 2);
}

.goals-list-section .aboutUs-title {
    font-size: clamp(30px, 7vw, 125px);
    width: 38%;
    margin-left: auto;
}

.goals-list-section .section-content {
    align-items: flex-start;
}

.goals-list-section .aboutUs-img-secondary {
    position: absolute;
    right: 1%;
    max-width: 55%;
    top: -15%;
}

.text-section .section-content .section-text {
    max-width: 910px;
    text-align: center;
    line-height: 1.77;
    font-size: calc(var(--font-24) + 2px);
}

.aboutUs-page section:not(:first-child):not([style*="background-image"]) {
    margin: calc(var(--space-60) + 10px) 0;
}

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

.text-section .logo-emblem {
    margin-bottom: var(--space-40);
}

/* commitment section */
.commitment-img {
    flex-shrink: 0;
    aspect-ratio: 1;
    overflow: hidden;
    width: 25%;
}

.commitment-section .section-header {
    margin-bottom: calc(var(--space-50) + var(--space-25));
}

.commitment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commitment-text {
    width: 50%;
    line-height: 1.78;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    font-size: calc(var(--font-24) + 2px);
    font-weight: 300;
    padding: 10px calc(var(--space-60) + var(--space-25));
}

.text .commitment-title {
    font-weight: 700;
}

.commitment-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


/* menu box */

.menu-box-wrapper {
    top: 111px;
    width: 100%;
    left: 0;
    transition: top 300ms;
    margin: 0 auto;
    right: 0;
    z-index: 10;
    position: fixed;
    background-color: #efecdb;

}

.menu-box {
    max-width: 100%;
    margin: 0 auto;
    transition: background-color 300ms, border-color 300ms;
}


.menu-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.menu-box ul li:first-child:before {
    width: 1px;
    height: 10px;
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
}

.menu-box ul li:after {
    width: 1px;
    height: 10px;
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
}

.menu-box ul li {
    position: relative;
    max-width: 20%;
    flex-grow: 1;
    text-align: center;
}

.menu-box ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 5px calc(var(--space-60) + var(--space-25));
    min-height: 64px;
    color: #000;
    transition: color 300ms, background-color 300ms, border-color 300ms;
    z-index: 2;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
}


.menu-box ul li a:before {
    content: "";
    position: absolute;
    inset: 0 -1px;
    border-radius: 20px;
    display: block;
    background: var(--gradient-primary);
    transition: opacity 300ms;
    z-index: -1;
    opacity: 0;
}

.menu-box ul li a.active:before {
    opacity: 1;
}

@media screen and (min-width: 1140px) {
    .menu-box ul li a:hover:before {
        opacity: 1;
    }


    .menu-box-toggle {
        display: none;
    }

}

.projects-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--space-40) * -1 + 5px) -20px;
    align-items: stretch;
}

.projects-list .project-item {
    padding: calc(var(--space-40) - 5px) 20px;
}

.portfolio-section .section-header-left {
    width: unset;
}

.portfolio-section .section-header-right {
    width: unset;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.section-header-btns-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-section {
    padding-top: var(--space-60);
    margin-bottom: calc(var(--space-50) + var(--space-25));
}


.pagination-wrapper {
    padding: 0;
    margin: calc(var(--space-50) + var(--space-25)) 0;
}

.pagination-wrapper ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-wrapper ul li.active > a,
.pagination-wrapper ul li a:hover {
    color: var(--color-secondary);
}

.pagination-wrapper ul li a {
    font-size: 15px;
    transition: color 300ms;
    font-weight: 600;
}

.pagination-wrapper ul li.next {
    margin-left: var(--space-50);
}

.pagination-wrapper ul li.prev {
    margin-right: var(--space-50);
}

.project-view-section {

    margin-top: calc(var(--space-60) + 10px);
    margin-bottom: var(--space-60);
}

.project-info {
    padding-bottom: var(--space-60);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.project-bananer img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: cover;
}

.project-bananer {
    margin-bottom: var(--space-50);
    position: relative;
}

.project-bananer-title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px var(--space-25);
    background: #fff;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.project-info-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.project-info-text {
    margin-top: var(--space-60);
    font-weight: 300;
}

.project-info-item {
    width: 50%;
    padding-right: 5%;
    gap: calc(var(--space-25) + 5px);
    display: flex;
    font-size: 18px;
    line-height: 1.44;
    align-items: center;
}

.project-info-item .icon-wrapper svg {
    display: block;
}

.project-info-item .icon-wrapper {
    flex-shrink: 0;
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    height: 65px;
}


.project-row-title {
    font-weight: 700;

    font-size: var(--font-30);
}

.project-row-icon {
    width: 43px;
}

.project-row-icon img {
    max-width: 100%;
    display: block;
}

.project-row {
    padding-bottom: var(--space-60);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.project-row-icon svg {
    display: block;
    width: 100%;
}

.project-row-top {
    margin-bottom: calc(var(--space-60) + 15px);
    display: flex;
    align-items: center;
    gap: var(--space-25);
}

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

.project-row-bottom {
    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--space-25) * -1 - 5px) calc(var(--space-40) * -1);
}

.project-row-item {
    width: 50%;
    display: flex;
    padding: calc(var(--space-25) + 5px) var(--space-40);
}

.project-row-item-number {
    margin-right: var(--space-25);
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    transform: translateY(-30%);
    flex-shrink: 0;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    justify-content: center;
}

.project-row-item-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.project-view-rows {
    margin-bottom: var(--space-60);
}

.gallery-section {
    margin-bottom: var(--space-60);
}

.project-view-gallery .gallery {
    padding-bottom: var(--space-60);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* project support */
.project-support-section {
    margin-bottom: var(--space-60);
}

.project-support-section .project-row-top {
    margin-bottom: var(--space-60);
}

.project-support-header {
    margin-bottom: var(--space-50);
}

.project-support-content {
    display: flex;
    align-items: center;
    gap: var(--space-60);
}

.project-support-text {
    font-weight: 300;
}

.project-support-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-style: italic;
    margin-top: -0.8em;
    font-size: clamp(70px, 10vw, 180px);
}

.project-support-big-text {
    font-weight: 300;
    font-size: calc(var(--font-36) - 1px);
    line-height: 1.428;
}
.big-text img{
    max-width: 100%;
    display: block;
}
.project-support-left {
    width: 50%;
    flex-shrink: 0;
}

.project-support-right {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    width: 42%;
}

.project-support-right .btn-lg {
    min-height: 65px;
    min-width: 330px;
    font-size: 21px;
}

.project-support-right .btn-lg .icon {
    width: 25px;
    height: 25px;
}

.project-support-right-title {
    line-height: 1.428;
    margin-bottom: calc(var(--space-25) + 10px);
    font-size: calc(var(--font-36) - 1px);
    font-weight: 800;
}

.project-support-img {
    max-width: 49%;
    margin-bottom: calc(vaR(--space-60) + 10px);
    align-self: center;
}

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

.row-flex-center {
    display: flex;
    align-self: center;
    justify-content: center;
}

.certificates-section {
    margin: var(--space-60) 0;
}

.certificates-list-item {
    width: 25%;
    padding: 17px;
}

.certificates-list-item .img-wrapper {
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.certificates-list-item .img-wrapper img {
    transition: transform 300ms;
}

.certificates-list-item .img-wrapper:hover img {
    transform: scale(1.05);
}

.certificates-list {
    display: flex;
    margin: -17px;
    align-items: stretch;
    flex-wrap: wrap;
}

.project-support-section-main {
    margin-top: var(--space-60);
}

.project-support-section-main .project-support-bird {
    margin-top: 0;
}

.project-support-section-main .project-support-content {
    align-items: flex-start;
}

.project-support-section-main .project-support-img {
    max-width: 76%;
    margin-bottom: 0;
}

.project-support-section-main .project-support-right {
    display: flex;
    justify-content: flex-end;
}

.project-support-section-main .project-support-right .img-wrapper {
    align-self: flex-end;
}

.project-support-section-main .section-header {
    margin-bottom: calc(var(--space-25) + 5px);
}

/* donate section */
.donate-section-content {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.donate-goals {
    padding: var(--space-40) var(--space-50);
}

.donate-section-title {
    font-size: calc(var(--font-24) + 2px);
    font-weight: 700;
}

.donate-section-number {
    display: flex;
    align-items: center;
    font-size: 16px;
    border-radius: 50%;
    width: 53px;
    height: 53px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: center;
}

.donate-section-header {
    display: flex;
    align-items: center;
    margin-bottom: calc(var(--space-25) + 5px);
    gap: 15px;
}

.donation-goal-box {
    width: 33.333%;
    padding: 18px 20px;
}

.donation-goal-thumbnail img {
    width: 100%;
}

.donation-goal-thumbnail {
    width: 100%;
    margin-bottom: 20px;
}

.donation-goal-title {
    font-size: 16px;
    font-weight: 700;
}

.donate-goals-list-wrapper {
    margin: 0 -10px;
}

.donate-goals-list {
    display: flex;
    margin: -18px -20px;
    padding: 0 10px;
    flex-wrap: wrap;
    max-height: clamp(400px, 75vh, 800px);
    overflow: auto;
}


.donate-goals-list::-webkit-scrollbar {
    width: 5px;
}

.donate-goals-list::-webkit-scrollbar-track {
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.donate-goals-list::-webkit-scrollbar-thumb {
    border-radius: 5px;

    background: var(--gradient-primary);
    width: 5px;
}

@-moz-document url-prefix() {
    .donate-goals-list {
        overflow: scroll;
        scrollbar-color: var(--color-secondary) rgba(255, 255, 255, 0.4);
        scrollbar-width: thin;

    }
}

.donation-goal-box-inner > * {
    pointer-events: auto;
}

.donation-goal-box-inner {
    cursor: pointer;
    pointer-events: none;
}

.donation-goal-box-inner:hover .donation-goal-thumbnail-hover {
    opacity: 1;
}

.donation-goal-thumbnail {
    position: relative;
}

.donation-goal-thumbnail-hover {
    transition: opacity 300ms;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    opacity: 0;
    position: absolute;
    align-items: center;
    justify-content: center;
}

.donation-goal-thumbnail-caption {
    background: #fff;
    height: 46px;
    padding: 0 var(--space-40);
    display: flex;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    border-radius: 30px;
    font-size: 16px;
}

.donate-price {
    background: #f5f5f5;
    padding: var(--space-25) var(--space-50) var(--space-50);
}

.donate-price-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.donate-price-button {
    height: 60px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    display: flex;
    align-items: center;
    z-index: 2;
    justify-content: center;
    position: relative;
    padding: 5px 20px;
    min-width: 120px;
    transition: color 300ms;
    font-size: 17px;
    font-weight: 500;
}

.donate-price-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

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

.donate-price-bottom {
    margin-top: var(--space-50);
}

.donate-price-input {
    height: 60px;
    background: #fff;
    border-radius: 30px;
    color: #000;
    font-size: 17px;
    font-weight: 500;
    padding: 5px 30px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    flex-shrink: 1;
    width: 280px;
}

.donate-price-button:before {
    content: '';
    display: block;
    border-radius: 30px;
    position: absolute;
    background: var(--gradient-primary);
    z-index: -1;
    transition: opacity 300ms;
    opacity: 0;
    inset: -1px;
}

.donate-price-button:hover,
.donate-price-button.active {
    color: #fff;
}

.donate-price-button:hover:before,
.donate-price-button.active:before {
    opacity: 1;
}

.donate-section {
    margin-bottom: calc(var(--space-60) + 10px);
}

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

.shareholder-top-section .aboutUs-title {
    justify-content: flex-start;
}

.shareholder-top-section .aboutUs-title-line:nth-child(2) {
    margin-left: 13%;
}

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

.shareholder-top-section .aboutUs-img-secondary {
    position: absolute;
    right: -11%;
    z-index: 2;
    max-width: 37%;
    top: -9%;
}

/* shareholder rows */
.shareholder-row {
    display: flex;
    align-items: center;
    gap: calc(var(--space-60) * 2);
}

.shareholder-row-right {
    flex-grow: 1;
}

.shareholder-title {
    font-size: var(--font-30);
    font-weight: 700;
    padding-right: calc(var(--space-60) + var(--space-60) + 20px);
    margin-bottom: var(--space-25);
}

.shareholder-row-left .shareholder-arrow .icon {
    width: 18px;
    height: 14px;
    background: #000;
}

.shareholder-row-left .shareholder-arrow {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(50%, -50%);
}

.shareholder-row-left {
    width: 50%;
    position: relative;
    flex-shrink: 0;
}

.shareholder-row-left .img-wrapper img {
    width: 100%;
    object-fit: cover;
}

.shareholder-row-left .img-wrapper {
    width: 100%;
}

.shareholder-row + .shareholder-row {
    margin-top: calc(var(--space-60) + 10px);
}

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

.shareholder-row:nth-child(2n) .shareholder-arrow {
    left: 0;
    right: unset;
    transform: translate(-50%, -50%);
}

.shareholder-row:nth-child(2n) .shareholder-arrow .icon {
    transform: scale(-1);
}

.shareholder-list-caption {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
}

.shareholder-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}

.shareholder-list-item {
    min-height: 48px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    font-size: 14px;
    justify-content: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
    background: #f2f2f2;
}

.shareholder-rows-section {
    margin-bottom: calc(var(--space-60) + 10px);
}

/* shareholder bananer */
.shareholder-bananer {
    background: center center /cover;
    background-color: rgba(0, 0, 0, 0.35);
    background-blend-mode: darken;
    color: #fff;
}

.shareholder-bananer-content-wrapper .floating-title {
    font-size: clamp(30px, 10vw, 190px);
    position: static;
}

.shareholder-bananer-content-wrapper .floating-title2{
    max-width: 40%;
    margin-top: -5%;
    margin-bottom: -5%;
}

.shareholder-bananer-content-wrapper .section-header {
    align-items: flex-start;
}

.shareholder-bananer-content-wrapper {
    padding: calc(var(--space-60) + 10px) 0;
}

.shareholder-bananer-content-wrapper .floating-title1 {
    margin-top: -6%;
    margin-bottom: -2%;
    width: 62%;
    flex-shrink: 0;
    display: flex
;
    justify-content: flex-end;
}

.shareholder-bananer-content {
    display: flex;
    align-items: stretch;
    margin: calc((var(--space-25) + 5px) * -1);
    flex-wrap: wrap;
}

.shareholder-box {
    width: 33.333%;
    display: flex;
    flex-direction: column;
    padding: calc(var(--space-25) + 5px);
}

.shareholder-box-inner {
    aspect-ratio: 1;
    flex-grow: 1;
    padding: 12% var(--space-40);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-40);
    justify-content: flex-start;
    border: 1px solid var(--color-secondary);
    background-color: rgba(0, 0, 0, 0.3);
}

.shareholder-box-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;

}

.shareholder-box-text {
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}

.shareholder-box-icon {
    width: 60px;
    height: 70px;
}

.shareholder-box-icon svg {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.shareholder-bananer {
    margin-bottom: calc(var(--space-60) + 10px);
}

/* shareholder form */
.shareholder-form-top {
    margin-top: calc(var(--space-50) * 2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.shareholder-form-title {
    position: relative;
    overflow: visible;
    font-size: calc(var(--font-36) - 1px);
}

.shareholder-form-bird {
    position: absolute;
    right: 8.2%;
    top: -42%;
    max-width: 18%;
}

.shareholder-form-gradient {
    margin-bottom: 0.1em;
    padding: 0 0.5vw;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(30px, 10vw, 180px);
    font-family: "Playfair Display", serif;
    line-height: 1;
    font-weight: 700;
    font-style: italic;
}


.bananer-content {
    position: relative;
}

.numbers-section-content {
    padding-top: var(--space-60);
    position: relative;
}

.bird-absolute {
    transform: scaleX(-1) translateY(-15%);
    right: 30%;
    top: 0;
    pointer-events: none;
    position: absolute;
}

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


.big-text {
    width: 100%;
    display: flex;
    line-height: 1.1;
    flex-direction: column;
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(30px, 10vw, 180px);
}
.big-text .line1 {
    margin-left: auto;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
    margin-bottom: -1%;
    max-width: 64%;
    text-stroke: 1px rgba(0, 0, 0, 0.2);
}
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-support-section .big-text .line1 {
    margin: -1% 13% -3% auto;
    width: 50%;
}

.contact-page {
    margin-top: calc(var(--space-60) + 10px);
}

.contact-section-content {
    display: flex;
}

.contact-section-content .contact-left {
    width: 50%;
}

.contact-section-content .contact-right {
    position: relative;
    width: 50%;
}

.contact-bird img {
    max-width: 100%;
    display: block;
}

.contact-bird {
    position: absolute;
    top: 46%;
    max-width: 45%;
    left: 0;
    transform: translate(-40%, -50%);
}

.contact-list-wrapper .icon-wrapper {
    width: 70px;
    flex-shrink: 0;
    height: 70px;
    background: var(--gradient-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-40);
    border-radius: 50%;
}

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

.contact-list-wrapper {
    line-height: 1.25;
}

.contact-address {
    display: flex;
    align-items: center;
}

.contact-list-wrapper li {
    display: flex;
    align-items: center;
}

.contact-list-wrapper ul:not(:first-child) li {
    margin-top: var(--space-40);
}

.contact-list-wrapper ul:first-child li + li {
    margin-top: var(--space-40);
}

.contact-text {
    padding-left: calc(var(--space-40) + 70px);
    margin-top: var(--space-40);
}

.contact-list-wrapper .caption {
    margin-bottom: 15px;
}

.contact-list-wrapper .text, .contact-list-wrapper .caption, .contact-list-wrapper a {
    line-height: 1.25;
}

.contact-list-wrapper .caption {
    font-size: calc(var(--font-24) - 4px);
}

.contact-list-wrapper .strong-text {
    font-size: var(--font-24);
    font-weight: 700;
    transition: color 300ms;
}

.contact-list-wrapper a.strong-text:hover {
    color: var(--color-secondary);
}


.contact-text {
    font-size: calc(var(--font-24) - 4px);
    line-height: 2;
}

.contact-page-collection {
    margin-bottom: calc(var(--space-60) + 10px);
}

.contact-people-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc((var(--space-25) + 5px) * -1);
}

.contact-person {
    width: 50%;
    padding: calc(var(--space-25) + 5px);
    display: flex;
    align-items: center;
    gap: var(--space-60);
}

.contact-person .img-wrapper {
    flex-shrink: 0;
    max-width: 31%;
}

.contact-person-name {
    font-size: calc(var(--font-24) - 2px);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-person-title {
    margin-bottom: calc(var(--space-25) + 5px);
    font-size: calc(var(--font-24) - 2px);

}

.contact-person a:hover {
    color: var(--color-secondary);
}

.contact-person a {
    transition: color 300ms;
    display: block;
    font-size: calc(var(--font-24) - 2px);
}

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

.contact-page-form {
    padding: calc(var(--space-50) + var(--space-60)) 0;
    background: center center /cover;
    background-color: rgba(0, 0, 0, 0.35);
    background-blend-mode: darken;
    color: #fff;
}

.form-title {
    font-weight: 300;
    margin-bottom: var(--space-50);
    font-size: calc(var(--font-36) - 1px);
    text-align: center;
}

.contact-page-form .form-element-option-text {
    color: #fff;
}

.contact-socials .caption {
    font-size: 20px;
    text-align: center;
    margin: 0 auto var(--space-25);
    max-width: 132px;
}

.contact-socials .social-list > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact-socials {
    aspect-ratio: 265/248;
    display: inline-flex;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    right: 0;
    top: 0;
    width: 39%;
    min-width: 250px;
    background: #fff;
    align-items: center;
}

.contact-right-bg-img img {
    max-width: 100%;
    display: block;
}

.contact-socials .social-icon {
    position: relative;
    width: 65px;
    height: 65px;
    border: 1px solid transparent;
    color: #fff;
    z-index: 2;
}

.contact-socials .social-icon:before {
    background: var(--gradient-primary);
    position: absolute;
    inset: 0;
    content: "";
    transition: opacity 300ms;
    border-radius: 50%;
    z-index: -1;
}

.contact-socials .social-icon:hover {
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
}

.contact-socials .social-icon:hover:before {
    opacity: 0;
}

.contact-page-top {
    margin-bottom: var(--space-60);
}


footer .social-icon:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.background-text-section-wrapper .section-header {

    margin-bottom: calc(var(--space-50) * 3);
}

.mainSlider-title{
    overflow: hidden;
    opacity: 1!important;
}
.mainSlider-title .caption{
    transition: all 1s ease-in-out;
    transform: translateY(100%);
}
.showText .caption{
    transform: none !important;
}
.mainSlider-text{
    overflow: hidden;
    opacity: 1 !important;

}

.textToAnimate{
    transition: all 1s ease-in-out;

    transform: translateY(100%);
}
.mainSlider-content{
    overflow: hidden;
}
.mainSlider-content .btn-with-icon{
    transform: translateX(-100%);
    transition: all 0.2s, transform 1s ease-in-out;
}
.btn-with-icon.showed{
    transform: none;

}
.aboutUs-title-line{
    overflow: hidden;
}
.aboutUs-img-secondary{
    overflow: hidden;
    z-index: 5;

}
.aboutUs-title{
    opacity: 1 !important;
}
.birdToAnimate{
    transition: all 1.3s ease-in-out;
    z-index: 5;
    opacity: 0;
    transform: scale(0.7) translateY(-100%) translateX(100%);
}


.animatedBird{
    transform: none;
    opacity: 1;
}

.aboutUs-img-secondary img{
    transition: all 1.3s ease-in-out;
    z-index: 5;
    opacity: 0;
    transform: scale(0.7) translateY(-100%) translateX(100%);
}
.aboutUs-title.showText .aboutUs-img-secondary img{
    transform: none;
    opacity: 1;
}
.aboutUs-title-line .caption{
    transform: translateY(100%);
    transition: all 1s ease-in-out;
}
.bananer-section{
    overflow: hidden;
}
.bananer-left.showed{
    transform: none;
}
.bananer-left{
    transition: all 1s ease-in-out;
    opacity: 1 !important;
    transform: translateY(100%);
}
.number-box{
    overflow: hidden;
}
.number-box .caption{
    transition: all 1s ease-in-out;

    transform: translateX(-150%);
}
.project-item.slick-cloned{
    opacity: 1 !important;
    pointer-events: all !important;
}
.project-item.showed .project-item-inner,
.project-item.slick-cloned .project-item-inner{
    transform: none !important;
}
.project-item:nth-child(2n) .project-item-inner{

    transform: translateY(-150%);

}
.projects-list .project-item-inner{
    display: block;
    transition: all 1s ease-in-out;

    transform: translateY(150%);
}

.bird-absolute{
    transition: all 1.5s ease-in-out;
    opacity: 0;
    transform: scaleX(-1) translateY(-15%)  scale(0.7) translateY(-100%) translateX(100%);
}
.bird-absolute.birdAnimated{
    opacity: 1;
    transform: scaleX(-1) translateY(-15%);
}

.board-list{
    overflow: hidden;
}
.board-item.showed{
    transform: none !important;
}
.board-item, .shareholder-row{
    transform: translateX(100%);
    transition: all 1s ease-in-out;

}
.shareholder-rows{
    overflow: hidden;
}
.our-commitment{
    overflow: hidden;
}
.commitment-row{
    transform: translateX(-100%);
    transition: all 1.5s ease-in-out;
}
.commitment-row:nth-child(2n){
    transform: translateX(100%);
}
.commitment-row.showed{
    transform: none !important;
}
.board-item:nth-child(2n), .shareholder-row:nth-child(2n){
    transform: translateX(-100%);
}
.shareholder-row.showed{
    transform: none !important;
}
.shareholder-box{
    overflow: hidden;
}
.shareholder-box-inner{
    transform: translateY(100%);
    transition: all 1s ease-in-out;
}
.shareholder-box.showed .shareholder-box-inner{
    transform: none !important;
}