html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    min-width: 320px;
    background-color: #000;
}
body.invert {
    background-color: #fff;
}

* {
    box-sizing: border-box;
}


/* --- PAGE WRAPPER AND CONTAINER --- */
.page-wrapper {
    flex: 1 0 auto;
}

.container {
    padding: 0 16px;
    margin: 0 auto;
    max-width: 1440px;
}
@media (min-width: 768px) {
    .container {
        padding: 0 33px;
    }
}
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}


/* --- CONTENT --- */
.content {
    background-color: #000;
    padding-top: 72px;
}
@media (min-width: 768px) {
    .content {
        padding-top: 60px;
    }
}
.invert .content {
    background-color: #fff;
}

.page-title {
    display: none;
    font-size: 0;
}


/* --- FONTS, HEADINGS & TEXT STYLE --- */
.font-menu-link {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #fff;
    text-transform: uppercase;
}
.invert .font-menu-link {
    color: #000;
}

.font-section-title {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
    color: #fff;
    text-transform: uppercase;
}
.invert .font-section-title {
    color: #000;
}

.font-discussion-title {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;
}

.font-text {
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.font-btn {
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
}

.font-movie-title {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 38px;
}

.font-film-description {
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}


/* --- ANIMATION --- */
@keyframes pulse-item {
    0% {
        background: #fff;
        opacity: 1;
    }
    50% {
        background: #fff;
        opacity: 0.8;
    }
    100% {
        background: #fff;
        opacity: 1;
    }
}

@keyframes pulse-bordered-btn {
    0% {
        background: #000;
        border-color: #fff;
    }
    50% {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
    }
    100% {
        background: #000;
        border-color: #fff;
    }
}

@keyframes pulse-filled-btn {
    0% {
        background: #fff;
    }
    50% {
        background: rgba(255, 255, 255, 0.6);
    }
    100% {
        background: #fff;
    }
}

@keyframes pulse-menu-btn {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}


/* --- BUTTON STYLES --- */
.btn-bordered, .btn-filled {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn-bordered {
    flex-shrink: 0;
    color: #fff;
    padding: 11px 36px;
    border: 1px solid #fff;
}
.invert .btn-bordered {
    filter: invert(1);
}
@media (min-width: 1180px) {
    .btn-bordered:hover {
        animation: pulse-bordered-btn 3s infinite;
    }
    .invert .btn-bordered:hover {
        animation: none;
    }
}

.btn-filled {
    color: #000;
    text-align: center;
    background-color: #fff;
    padding: 12px;
    border: 2px solid #fff;
}
.invert .btn-filled {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
@media (min-width: 1180px) {
    .btn-filled:hover {
        animation: pulse-filled-btn 3s infinite;
    }
    .invert .btn-filled:hover {
        animation: none;
    }
}


/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    display: flex;
    width: 100%;
    height: 72px;
    background: #000;
    z-index: 100;
}
@media (min-width: 768px) {
    .header {
        height: 60px;
    }
}
.invert .header {
    background: #fff;
}

.ribbon {
    display: block;
    height: 36px;
    background: left repeat-x url("img/ribbon_aids.svg"), linear-gradient(35.8deg, #c3aab2 -4.77%, #9ec 46.72%, #80c0c8 90.23%, #4b8bfa 134.46%);
    background-size: 280px, 134%;
}

.invert .ribbon {
    background: left / 280px repeat-x url("img/ribbon_aids.svg"), white;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.header-col {
    height: 100%;
}
.header-col:first-child {
    display: flex;
    align-items: center;
}

.header-col:last-child {
    display: flex;
    align-items: center;
}

.header-menu-list {
    display: none;
}
@media (min-width: 1024px) {
    .header-menu-list {
        display: flex;
        justify-content: center;
        height: 100%;
    }
}

.header-logo {
    flex-shrink: 0;
    width: 170px;
    height: 35px;
    background: url("img/logo.svg") no-repeat left center;
    background-size: 100%;
    margin-left: -7px;
}
@media (min-width: 768px) {
    .header-logo {
        margin-right: 5px;
    }
}
@media (min-width: 1180px) {
    .header-logo {
        width: 190px;
        height: 40px;
    }
}
.invert .header-logo {
    filter: invert(1) grayscale(1);
}

.lang-switcher, .theme-btn {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 5px;
    cursor: pointer;
}

.lang-switcher {
    color: #fff;
}
.invert .lang-switcher {
    color: #000;
}

.invert .theme-btn {
    filter: invert(1);
}

/* Header Navigation Menu */
.header-menu-item, .header-menu-link {
    height: 100%;
}

.header-menu-item {
    margin-right: 16px;
}
@media (min-width: 768px) {
    .header-menu-item {
        border-bottom: 4px solid transparent;
    }
    .header-menu-item.active {
        border-color: #fff;
    }
    .invert .header-menu-item.active {
        border-color: #000;
    }
}
@media (min-width: 1024px) {
    .header-menu-item {
        margin-right: 24px;
    }
    .header-menu-item:not(.active):hover {
        border-color: #fff;
        animation: pulse-menu-btn 3s infinite;
    }
    .invert .header-menu-item:not(.active):hover {
        border-color: #000;
    }
}
@media (min-width: 1180px) {
    .header-menu-item {
        margin-right: 32px;
    }
}
.header-menu-item:last-child {
    margin-right: 0;
}

.header-menu-link {
    display: flex;
    align-items: center;
    width: fit-content;
    cursor: pointer;
}
.invert .header-menu-link {
    color: #000;
}

/* Login & My Account Buttons */
.login-btn, .account-btn {
    display: none;
}
@media (min-width: 768px) {
    .login-btn, .account-btn {
        display: none;
    }

    .account-btn {
        padding: 12px 36px;
    }
}
@media (min-width: 1024px) {
    .login-btn, .account-btn {
        display: flex;
    }
}

/* Mobile Menu Button */
.menu-btn {
    display: flex;
    align-items: center;
    width: 30px;
    height: 100%;
    padding: 5px;
    cursor: pointer;
}
@media (min-width: 1024px) {
    .menu-btn {
        display: none;
    }
}

.menu-btn-line {
    display: flex;
    flex-direction: column;
    width: 20px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 6px;
}
.invert .menu-btn-line {
    background-color: #000;
}

.menu-btn .menu-btn-line:last-child {
    margin-bottom: 0;
}

/* Header Navigation Menu MOBILE */
@media (min-width: 768px) {
    .mobile-menu.open .bg-overlay {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.8);
    }
}

.mobile-header-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 10px 0 25px;
    z-index: 1500;
    overflow-y: auto;
    transition: right 0.3s ease, visibility 0.3s;
    visibility: hidden;
}
@media (min-width: 768px) {
    .mobile-header-nav {
        width: 375px;
        right: -375px;
    }
}

@media (min-width: 1024px) {
    .mobile-nav-list {
        display: none;
    }
}

.mobile-menu.open .mobile-header-nav {
    right: 0;
    visibility: visible;
}

.close-btn-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
}

.close-btn {
    display: flex;
    width: fit-content;
    height: 100%;
    padding: 20px;
    cursor: pointer;
}

.mobile-nav-link {
    display: flex;
    color: #000;
    padding: 10px 19px;
    border-left: 4px solid #fff;
}

.mobile-nav-link.active {
    border-color: #000;
}

.mobile-nav-container {
    padding: 16px 23px;
    margin-top: 30px;
}

.lang-switchers {
    display: flex;
    margin-bottom: 24px;
}
@media (min-width: 768px) {
    .lang-switchers {
        display: none;
    }
}

.lang-switchers a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 44px;
    color: #000;
    border: 2px solid #000;
}

.lang-switchers a.selected {
    color: #fff;
    background: #000;
}

/* --- LOGIN, REGISTRATION, RESTORE --- */
#loginWrapper h2 {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 44px;
}

#loginWrapper form {
    max-width: 330px;
}

form {
    display: flex;
    flex-wrap: wrap;
}

form input {
    border-radius: 0;
}

form input::placeholder {
    font-family: 'PT Sans', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #767676;
    text-transform: uppercase;
}

input[type="text"], input[type="password"] {
    width: 100%;
    border-style: none;
    border-bottom: 2px solid #000;
    padding: 8px 0;
    margin-bottom: 18px;
}

/* todo: @Daria, check the style, naming */
input[type="submit"], .logout {
    font-family: 'PT Sans', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    padding: 12px 36px;
    color: #000;
    background: #fff;
    border: 2px solid #000;
    margin-bottom: 28px;
    cursor: pointer;
}

input.black-input,
select.black-select {
    color: #fff;
    background-color: #000;
    border-color: #fff;
}
.invert input.black-input,
.invert select.black-select {
    filter: invert(1);
}

input[disabled], select[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

label.white-label {
    color: #fff;
}
.invert label.white-label {
    color: #000;
}

/* todo: @Daria, check the style, naming */
input[type="submit"]:focus,
.close-btn:focus,
.logout:focus,
.login-email:focus,
.login-password:focus,
.restore-pass:focus,
.to-registration:focus,
a.logout:focus,
.swiper-pagination-bullet:focus {
    outline: 3px #7FB3F9 solid;
    outline-offset: 3px;
}

.outlined:focus {
    outline: 3px #7FB3F9 solid;
    outline-offset: 3px;
}

/* Logout button */
.logout {
    margin-top: 10px;
    display: inline-block;
}
.logout:hover {
    animation: none;
}
.mobile-header-nav .profile-menu .logout {
    margin-left: 24px;
}
@media (min-width: 1024px) {
    .profile :not(.mobile-header-nav).logout {
        display: none;
    }
}
.invert .logout {
    filter: invert(0);
}

.login-submit {
    margin-right: 24px;
}

.restore-pass {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.to-registration {
    display: flex;
    margin-bottom: 30px;
}

#loginWrapper a {
    color: #000;
}

.registration-last-name, .registration-box, .login-code, .registration-code, .restore-password, .restore-box, .restore-code {
    display: none;
}

.success_message_container, .error_message_container {
    width: 100%;
    padding-bottom: 20px;
}

.error_message_container {
    color: #e51414;
}

button.no-border-btn {
    padding: 0;
}


/* --- CHECKBOX --- */
.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-container label {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    cursor: pointer;
}
@media (min-width: 510px) {
    .checkbox-container label {
        width: calc(100% - 8px);
    }
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    cursor: pointer;
    opacity: 0;
}

.checkbox-container label::before {
    content: '';
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 8px;
    border: 2px solid #fff;
}
.invert .checkbox-container label::before {
    border-color: #000;
}

.checkbox-container label::after {
    display: none;
    content: '';
    position: absolute;
    top: calc(50% - 7px);
    left: 7px;
    width: 15px;
    height: 13px;
    background-image: url("img/tick.svg");
    background-position: center;
    background-repeat: no-repeat;
}
.invert .checkbox-container label::after {
    filter: invert(1);
}

@media (min-width: 1024px) {
    .checkbox-container label:hover::before,
    .checkbox-container input[type="checkbox"]:hover + label::before {
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
    }
    .invert .checkbox-container label:hover::before,
    .invert .checkbox-container input[type="checkbox"]:hover + label::before {
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
    }
}

.checkbox-container input[type="checkbox"]:disabled + label,
.checkbox-container input[type="checkbox"]:disabled {
    color: rgba(255, 255, 255, 0.6);
    cursor: default;
}
.invert .checkbox-container input[type="checkbox"]:disabled + label {
    color: #666666;
}

.checkbox-container input[type="checkbox"]:disabled + label::after {
    filter: contrast(0.3);
}
.invert .checkbox-container input[type="checkbox"]:disabled + label::after {
    filter: invert(1) contrast(0.3);
}

.checkbox-container input[type="checkbox"]:checked + label::after {
    display: block;
}

.checkbox-container input[type="checkbox"]:active + label::before {
    background-color: #666666;
}

.checkbox-container input[type="checkbox"]:disabled + label::before {
    color: #666666;
    background-color: transparent;
    border-color: #666666;
    border-style: dotted;
    cursor: not-allowed;
}
.checkbox-container input[type="checkbox"]:disabled:hover + label::before {
    box-shadow: none;
}


/* --- SWIPER SLIDER --- */
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    margin-bottom: 12px;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 5px 16px;
}
@media (min-width: 576px) {
    .swiper-pagination {
        padding: 5px 0;
    }
}

.swiper-pagination-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    background-color: #fff;
    opacity: 0.5;
    border-radius: 0;
    margin: 2px !important;
}
.invert .swiper-pagination-bullet {
    color: #fff;
    background-color: #000;
}

.swiper-pagination-bullet:only-child {
    display: none;
}

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


/* --- SLIDER MOBILE ITEM --- */
@media (max-width: 575px) {
    .slider-item-mobile {
        width: 83vw !important;
        margin-left: 16px;
    }
    .slider-item-mobile:last-child {
        margin-right: 16px;
    }
}
@media (min-width: 576px) {
    .slider-item-mobile {
        margin: 0;
    }
    .slider-item-mobile:last-child {
        margin-right: 0;
    }
}


/* --- FOOTER --- */
.footer {
    flex-shrink: 0;
    width: 100%;
    height: fit-content;
    background-color: #000;
    color: #fff;
    border-top: 2px solid #000;
}
.invert .footer {
    color: #000;
    background-color: #fff;
}

.grid-container.footer-row:first-child {
    flex-direction: column;
}
.grid-container.footer-row:last-child {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(4, auto);
    grid-column-gap: 16px;
}
@media (min-width: 1024px) {
    .grid-container.footer-row:last-child {
        grid-template-columns: repeat(9, minmax(0, 1fr));
        grid-template-rows: repeat(1, auto);
    }
}
@media (min-width: 1440px) {
    .grid-container.footer-row:last-child {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
}

/* FOOTER: Partner Logos */
.partners {
    padding: 50px 0;
    border-bottom: 2px solid #fff;
}
.invert .partners {
    border-color: #000;
}

.partners-heading {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 33px;
}

@media (min-width: 1024px) {
    .partners-heading {
        grid-column: 1 / span 2;
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .partners-list {
        grid-column: 3 / span 7;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-column-gap: 16px;
    }
}
@media (min-width: 1440px) {
    .partners-list {
        grid-column: 3 / span 10;
    }
}

.partner-item {
    margin-bottom: 40px;
}
.partner-item:last-child {
    margin-bottom: 0;
}
@media (min-width: 1024px) {
    .partner-item {
        margin-bottom: 0;
    }
}

.partner-link {
    display: block;
}

.partner-logo {
    max-width: 100%;
}
.invert .partner-logo {
    filter: invert(1);
}

/* FOOTER: Festival Info & Menu */
.fest-info {
    padding: 50px 0;
}

@media (min-width: 1024px) {
    .fest-info .footer-col:first-child {
        grid-column: 1 / 2;
    }
}

.fest-info .footer-col:last-child {
    text-align: right;
}
@media (min-width: 1024px) {
    .fest-info .footer-col:last-child {
        grid-column: 2 / span 8;
        display: grid;
        grid-template-columns: repeat(4,minmax(0, 1fr));
        grid-column-gap: 16px;
        text-align: left;
    }
}
@media (min-width: 1440px) {
    .fest-info .footer-col:last-child {
        grid-column: 2 / span 11;
    }
}

.fest-logo-link {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

.fest-logo {
    width: 56px;
}
.invert .fest-logo {
    filter: invert(1);
}

/* Support Info */
.fest-support {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    margin-bottom: 52px;
    text-align: right;
}
@media (min-width: 1024px) {
    .fest-support {
        grid-column: 2 / span 2;
        grid-row: 1 / 2;
        margin-bottom: 0;
        text-align: left;
    }
}
@media (min-width: 1440px) {
    .fest-support {
        grid-column: 2 / span 2;
    }
}

.fest-support p, .fest-support p a, .subscribe-links a {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}
.invert .fest-support p, .invert .fest-support p a, .invert .subscribe-links a {
    color: #000;
}

/* Footer Menu */
.footer-menu {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    margin-bottom: 48px;
    text-align: right;
}
@media  (min-width: 1024px) {
    .footer-menu {
        grid-row: 1 / 2;
        grid-column: 4 / span 4;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-column-gap: 16px;
        text-align: left;
        margin-bottom: 0;
    }
}
@media  (min-width: 1440px) {
    .footer-menu {
        grid-column: 4 / span 6;
    }
}

.footer-menu-list {
    width: 100%;
}
.footer-menu-list:first-child {
    margin-bottom: 44px;
}
@media  (min-width: 1024px) {
    .footer-menu-list:first-child {
        grid-column: 1 / 2;
        margin-bottom: 0;
    }

    .footer-menu-list:last-child {
        grid-column: 2 / 3;
        margin-bottom: 0;
    }

    .footer-menu-list:only-child {
        grid-column: span 2;
        width: fit-content;
        display: flex;
        flex-direction: column;
        justify-self: center;
    }
}

.invert .footer-menu-link {
    color: #000;
}

.footer-menu-item {
    margin-bottom: 16px;
}
.footer-menu-item:last-child {
    margin-bottom: 0;
}

/* Subscribe links */
.subscribe-links {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    text-align: right;
}
@media (min-width: 1024px) {
    .subscribe-links {
        grid-row: 1 / 2;
        grid-column: 8 / span 2;
        text-align: left;
    }
}
@media (min-width: 1440px) {
    .subscribe-links {
        grid-column: 11 / span 2;
    }
}

.subscribe-links a {
    display: block;
    margin-bottom: 20px;
}
@media (min-width: 1024px) {
    .subscribe-links a {
        margin-bottom: 12px;
    }
}
@media (min-width: 1440px) {
    .subscribe-links a {
        margin-bottom: 18px;
    }
}

.social-links {
    display: flex;
    justify-content: flex-end;
}
@media (min-width: 1024px) {
    .social-links {
        justify-content: flex-start;
    }
}

.social-links li {
    display: flex;
    justify-content: center;
    margin-right: 10px;
}

.social-links li:last-child {
    margin-right: 0;
}

.social-links li a {
    display: flex;
    width: 21px;
    height: 21px;
    background-position: center;
    background-repeat: no-repeat;
}
.invert .social-links li a {
    filter: invert(1);
}
@media (min-width: 1024px) {
    .social-links li a:hover {
        filter: invert(0.6);
        transition: 0.3s ease;
    }
}


.instagram-link a {
    background-image: url(img/social-icon-instagram.svg);
}

.facebook-link a {
    background-image: url(img/social-icon-facebook.svg);
}

.youtube-link a {
    background-image: url(img/social-icon-youtube.svg);
}

.twitter-link a {
    background-image: url(img/social-icon-twitter.svg);
}

.flickr-link a {
    background-image: url(img/social-icon-flickr.svg);
}

.telegram-link a {
    background-image: url(img/social-icon-telegram.svg);
}


/* GRID CONTAINER */
@media (min-width: 576px) {
    .grid-items-wrapper.grid-container {
        display: grid;
        grid-template-columns: repeat(6,minmax(0, 1fr));
        grid-column-gap: 16px;
    }
}

@media (min-width: 1024px) {
    .grid-container, .grid-items-wrapper.grid-container {
        display: grid;
        grid-template-columns: repeat(9, minmax(0, 1fr));
        grid-column-gap: 16px;
    }
}
@media (min-width: 1180px) {
    .grid-container, .grid-items-wrapper.grid-container {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
}


/* --- SLIDER MOBILE ITEM --- */
@media (max-width: 575px) {
    .slider-item-mobile {
        width: 83vw !important;
        margin-left: 16px;
    }
    .slider-item-mobile:last-child {
        margin-right: 16px;
    }
    .slider-item-mobile:only-child {
        width: calc(100vw - 32px) !important;
    }
}
@media (min-width: 576px) {
    .slider-item-mobile {
        margin: 0;
    }
    .slider-item-mobile:last-child {
        margin-right: 0;
    }
}


/* --- CLEARFIX --- */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

