// Home Page Styles
// =================

// Base styles (all pages should import this)
@import "/_assets/styles/app.less";

// Components
@import "/_components/components.less";

// Dark scrollbar for this page
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #090909;
}

::-webkit-scrollbar-thumb {
    background: @dark-medium;
    border-radius: 4px;

    &:hover {
        background: @primary;
    }
}

// Hero Section
// ------------

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    padding-top: 113px;
}

// Background image/video layer
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;

    &__image,
    &__video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

// Dark overlay with spotlight hole
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: #000000CC;

    transition: mask-position 0.1s ease-out, -webkit-mask-position 0.1s ease-out;
}

// Hero content
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    height: 100%;
    padding: 0 34px;
    padding-top: 27px;

    @media (max-width: 768px) {
        padding: 0 34px;
    }
}

// Hero title with gradient
.hero-title {
    width: 50%;
    max-width: 700px;
    font-size: 64px;
    font-weight: @fontWeights-extra-bold;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    vertical-align: middle;
    // Gradient text
    background: linear-gradient(90deg, #E220E2 0%, #150564 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    @media (max-width: 1024px) {
        width: 70%;
    }

    @media (max-width: 768px) {
        width: 80%;
        font-size: 45px;
    }

}

// Video Section
// --------------

.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000;
}

.video-swiper-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.video-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;

    .swiper-slide {
        width: 100% !important;
        height: 100% !important;
    }
}

.video-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            fade(@text-dark, 30%) 0%,
            transparent 30%,
            transparent 70%,
            fade(@text-dark, 60%) 100%
        );
        z-index: 1;
        pointer-events: none;
    }

    > * {
        position: relative;
        z-index: 2;
    }
}

.video-nav {
    position: absolute;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;

    &:hover {
        color: @white;
        background: rgba(0, 0, 0, 0.5);
    }

    &.swiper-button-disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    &--prev {
        left: 20px;
    }

    &--next {
        right: 20px;
    }

    @media (max-width: 768px) {
        width: 40px;
        height: 40px;

        &--prev {
            left: 10px;
        }

        &--next {
            right: 10px;
        }
    }
}

.video-container {
    width: 100%;
    height: 100%;
}

.video-player {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            fade(@text-dark, 30%) 0%,
            transparent 30%,
            transparent 70%,
            fade(@text-dark, 60%) 100%
        );
        z-index: 1;
        pointer-events: none;
    }

    > * {
        position: relative;
        z-index: 2;
    }

    &__video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a5f 0%, #4a1a6b 50%, #6b1a5c 100%);

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            fade(@text-dark, 30%) 0%,
            transparent 30%,
            transparent 70%,
            fade(@text-dark, 60%) 100%
        );
        z-index: 1;
        pointer-events: none;
    }

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

    > * {
        position: relative;
        z-index: 2;
    }
}

.video-thumbnail__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    position: absolute;
    top: 16px;
    left: 16px;
    color: @white;
    transition: opacity 0.3s ease;

    &--hidden {
        opacity: 0;
        pointer-events: none;
    }
}

.video-info__title {
    font-size: @fontSize-small;
    font-weight: @fontWeights-medium;
}

.video-controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;

    &--hidden {
        opacity: 0;
        pointer-events: none;
    }
}

.video-controls__nav {
    position: absolute;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;

    &:hover {
        color: @white;
    }

    &--prev {
        left: 16px;
    }

    &--next {
        right: 16px;
    }
}

.video-controls__center {
    display: flex;
    align-items: center;
    gap: 24px;
}

.video-controls__btn {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;

    &:hover {
        color: @white;
    }

    &--fullscreen {
        margin-left: 8px;
        color: rgba(255, 255, 255, 0.7);
    }
}

.play-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: @white;
    transition: all 0.3s ease;

    &:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
        box-shadow: 0 0 40px fade(@primary, 40%);
    }
}

.video-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 16px 16px;
    transition: opacity 0.3s ease;

    &--hidden {
        opacity: 0;
        pointer-events: none;
    }
}

.video-progress__container {
    display: flex;
    align-items: center;
    gap: 12px;
    color: @white;
    font-size: @fontSize-small;
}

.video-progress__time {
    &--current {
        color: @primary;
        font-weight: @fontWeights-medium;
    }

    &--duration {
        color: rgba(255, 255, 255, 0.7);
    }
}

.video-progress__bar {
    flex: 1;
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    cursor: pointer;
}

.video-progress__fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: @primary;
    border-radius: 9999px;
}

.video-progress__handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: @primary;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

// Projects Section
// -----------------

.projects-section {
    padding: 64px 0;
    position: relative;
    max-height: 1600px;
    overflow: hidden;
    margin-bottom: 60px;
}

// Section Title
// -------------

.section-title {
    font-weight: 700;
    font-size: 25px;
    line-height: 30.25px;
    letter-spacing: 23.5px;
    vertical-align: middle;
    text-transform: uppercase;
    color: @white;
    margin-bottom: @spacing-extra-large;
    padding: 0 46px;

    @media(max-width: 768px) {
        font-size: 14px;
        letter-spacing: 13.2px;
        line-height: 16.94px;
        padding: 0 27px;
    }
}

// Projects Grid - Masonry Layout (using Masonry.js)
// --------------------------------------------------

.projects-grid {
    padding: 0 15px;

    // Sizer element for Masonry column width calculation
    // 3 columns on desktop, 2 columns on mobile
    &__sizer,
    .project-card {
        width: calc(33.333% - 20px);

        @media (max-width: 768px) {
            width: calc(50% - 23px);
        }
    }

    &__sizer {
        position: absolute;
        visibility: hidden;
    }
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 15px; // Gutter for Masonry
    background: #0a0a0a;
    // Altura mínima enquanto carrega para o Masonry calcular
    min-height: 250px;

    // Skeleton placeholder
    &__skeleton {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            90deg,
            #0f0f0f 0%,
            #1a1a1a 50%,
            #0f0f0f 100%
        );
        background-size: 200% 100%;
        animation: skeleton-loading 1.5s infinite;
        z-index: 1;
    }

    &__image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.4s ease, opacity 0.3s ease;
        opacity: 0;
    }

    // When image is loaded
    &--loaded {
        background: transparent;
        min-height: auto;

        .project-card__image {
            opacity: 1;
        }

        .project-card__skeleton {
            display: none;
        }
    }

    &:hover {
        .project-card__image {
            transform: scale(1.05);
        }

        .project-card__overlay {
            opacity: 1;
        }
    }

    // Overlay - gradient at bottom only
    &__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            transparent 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.7) 100%
        );
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: flex-end;
        padding: 20px;

        @media(max-width: 768px) {
            padding: 11px 18px;
        }
    }

    // Info container
    &__info {
        width: 100%;
    }

    // Project title
    &__title {
        font-size: 16px;
        font-weight: 700;
        color: @white;
        margin-bottom: 4px;
        text-transform: uppercase;

        @media(max-width: 768px) {
            font-size: 15px;
        }
    }

    // Person name
    &__person {
        font-size: 14px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.7);

        @media(max-width: 768px) {
            font-size: 10px;
        }
    }
}

// Projects Footer with View All button
.projects-footer {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    margin-top: 48px;
    padding: 0 44px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.8) 100%);
}

.view-all-btn {
    font-weight: @fontWeights-medium;
    font-size: 20px;
    line-height: 20px;
    color: #FAFAFA;
    background: transparent;
    cursor: pointer;
    transition: opacity 0.3s ease;

    &:hover {
        opacity: 0.7;
    }
}

// Clients Section
// ----------------

.clients-section {
    padding: 64px 0;
    background: #0a0a0a;
}

.clients-swiper-container {
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 20px;
    margin-top: 40px;
}

.clients-swiper {
    flex: 1;
    overflow: hidden;

    .swiper-slide {
        height: auto !important;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 10px 0;

        &:hover {
            .client-logo {
                transform: scale(1.08);
            }
        }
    }
}

.client-logo {
    width: 100%;
    max-width: 160px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.4s ease, opacity 0.3s ease;
    opacity: 0;

    // Skeleton placeholder
    &__skeleton {
        position: absolute;
        width: 120px;
        height: 50px;
        background: linear-gradient(
            90deg,
            #0f0f0f 0%,
            #1a1a1a 50%,
            #0f0f0f 100%
        );
        background-size: 200% 100%;
        animation: skeleton-loading 1.5s infinite;
        border-radius: 4px;
    }
}

// When client logo is loaded
.swiper-slide--loaded {
    .client-logo {
        opacity: 1;
    }

    .client-logo__skeleton {
        display: none;
    }
}

.clients-nav {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    flex-shrink: 0;

    &:hover {
        color: @white;
    }

    &.swiper-button-disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
}

.clients-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 48px;
    padding: 0 44px;
}

// About Me Section
// -----------------

.about-section {
    padding-bottom: 64px;
    background: #0a0a0a;
}

.about-content {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-right: 30px;

    @media (max-width: 1024px) {
        flex-direction: column;
        gap: 10px;
    }

    @media( max-width: 768px) {
        padding-right: 0px;
    }
}

.about-photo {
    flex-shrink: 0;
    width: 40%;

    div {
        width: 100%;
        height: 570px;
        background-size: cover;
        background-position: top;
    }

    @media (max-width: 1024px) {
        width: 100%;
    }
}

.about-info {
    flex: 1;

    @media( max-width: 1024px) {
        padding: 16px 27px;
    }
}

.about-name {
    font-weight: 700;
    font-size: 25px;
    line-height: 30.25px;
    letter-spacing: 17.5px;
    text-transform: uppercase;
    color: @white;
    margin-bottom: 20px;

    @media (max-width: 768px) {
        font-size: 18px;
        letter-spacing: 12.6px;
        line-height: 31.78px;
    }
}

.about-description {
    font-size: 22px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    vertical-align: middle;

    @media (max-width: 768px) {
        font-size: 15px;
    }
}

// Accordion Styles
.about-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.3);

    &:first-child {
        border-top: 0.5px solid rgba(255, 255, 255, 0.3);
    }
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;

    &:hover {
        opacity: 0.8;
    }
}

.accordion-title {
    font-size: 16px;
    font-weight: 600;
    color: @white;
    text-align: left;
    line-height: 16px;
    letter-spacing: -0.5px;
    transition: color 0.2s ease-out;
}

.accordion-icon {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-out, color 0.2s ease-out;
    flex-shrink: 0;
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.3s ease-out;

    > div {
        overflow: hidden;
    }

    p {
        font-size: 16px;
        font-weight: 300;
        line-height: 22.4px;
        color: rgba(255, 255, 255, 0.6);
        letter-spacing: -0.5px;
    }
}

.accordion-item--active {
    .accordion-title {
        color: #10FFFF;
    }

    .accordion-icon {
        color: #10FFFF;
    }

    .accordion-content {
        grid-template-rows: 1fr;
        margin-bottom: 20px;
    }
}

.about-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 48px;
    padding: 0 44px;
}

// Partners Section
// -----------------

.partners-section {
    padding: 64px 0;
    background: #0a0a0a;

    @media (max-width: 768px) {
        padding: 40px 0;
    }
}

.partners-swiper-container {
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 20px;
    margin-top: 40px;

    @media (max-width: 768px) {
        position: relative;
        padding: 0;
        gap: 0;
    }
}

.partners-swiper {
    flex: 1;
    overflow: hidden;

    .swiper-wrapper {
        align-items: center;
    }

    .swiper-slide {
        height: auto;
        display: flex;
        justify-content: center;
    }

    @media (max-width: 768px) {
        width: 100%;

        .swiper-slide {
            width: 100% !important;
        }
    }
}

.partners-slide {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: #111;
    flex-shrink: 0;

    // Fixed height + explicit width so Swiper can calculate positions before video loads
    height: 600px !important;
    width: calc(600px * 16 / 9) !important; // ~1067px for 16:9 horizontal (default)

    // Vertical video - 9:16 aspect ratio
    &--vertical {
        width: calc(600px * 9 / 16) !important; // ~338px for 9:16 vertical
    }

    &:hover {
        .partners-video {
            transform: scale(1.05);
        }
    }

    // Opacity overlay - dark by default, hidden when playing
    &__opacity-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1;
        pointer-events: none;
        transition: opacity 0.3s ease;

        &--hidden {
            opacity: 0;
        }
    }

    // Sound button
    &__sound-btn {
        position: absolute;
        bottom: 12px;
        left: 12px;
        z-index: 4;
        width: 36px;
        height: 36px;
        background: rgba(0, 0, 0, 0.6);
        border: none;
        border-radius: 50%;
        color: @white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        opacity: 0;

        &:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }
    }

    // Show sound button on hover or when playing
    &:hover &__sound-btn,
    &--playing &__sound-btn {
        opacity: 1;
    }

    @media (max-width: 768px) {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
        border-radius: 0;

        &--vertical {
            width: 100% !important;
            height: auto !important;
            aspect-ratio: 9/16;
            max-height: 80vh;
        }

        // Always show sound button on mobile
        &__sound-btn {
            opacity: 1;
        }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
        height: 400px !important;

        &--vertical {
            height: 400px !important;
        }
    }
}

.partners-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;

    @media (max-width: 768px) {
        width: 100%;
        height: 100%;
    }
}

.partners-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        transparent 30%,
        transparent 100%
    );
    display: flex;
    align-items: flex-start;
    padding: 16px;
    pointer-events: none;
}

.partners-slide__name {
    font-size: 14px;
    font-weight: 600;
    color: @white;

    @media (max-width: 768px) {
        font-size: 12px;
    }
}

.partners-nav {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    flex-shrink: 0;
    background: transparent;
    border: none;
    cursor: pointer;

    &:hover {
        color: @white;
    }

    &.swiper-button-disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    @media (max-width: 768px) {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;

        &--prev {
            left: 10px;
        }

        &--next {
            right: 10px;
        }
    }
}

// Social Media Section
// --------------------

.social-section {
    background: #090909;
}

.social-swiper {
    width: 100%;
    height: 480px;

    .swiper-slide {
        width: 100% !important;
    }
}

.social-slide {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;

    &__bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        z-index: 1;
    }

    &__overlay {
        position: absolute;
        inset: 0;
        background-color: var(--overlay-color, #C2185B);
        opacity: 0.75;
        z-index: 2;
    }

    &__content {
        position: relative;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 40px;
    }

    &__title {
        position: absolute;
        top: 27px;
        left: 27px;
        font-weight: 700;
        font-size: 25px;
        line-height: 30.25px;
        letter-spacing: 17.5px;
        text-transform: uppercase;
        color: @white;
        margin-bottom: 40px;
        text-align: center;

        @media (max-width: 768px) {
            font-size: 14px;
            letter-spacing: 9.8px;
            line-height: 37.3px;
            width: 45%;
            text-align: start;
        }
    }

    &__icon {
        width: 80px;
        height: 80px;
        object-fit: contain;
        filter: brightness(0) invert(1);

        @media (max-width: 768px) {
            width: 70px;
            height: 70px;
        }
    }
}

.social-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: @white;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;

    &--prev {
        left: 40px;

        &:hover {
            opacity: 1;
            transform: translateY(-50%) translateX(-5px);
        }
    }

    &--next {
        right: 40px;

        &:hover {
            opacity: 1;
            transform: translateY(-50%) translateX(5px);
        }
    }

    @media (max-width: 768px) {
        &--prev {
            left: 20px;
        }

        &--next {
            right: 20px;
        }
    }
}

.dimitrow-lema-section{
    padding: 51px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;

    @media (max-width: 768px) {
        padding-top: 21px;
        padding-bottom: 0px;
    }
}

.dimitrow-lema{
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 9px;
    text-align: right;
    vertical-align: middle;
    text-transform: uppercase;
    color: #10FFFF;
    padding-right: 42px;

    @media (max-width: 768px) {
        padding-right: 26px;
        font-size: 10px;
        letter-spacing: 5px;
    }
}

.dimitrow-lema__logo {
    width: 70%;
    margin-top: 20px;
    opacity: 0.05;

    @media (max-width: 768px) {
        margin-top: 0px;
    }
}

// Skeleton animation
@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

// SVG Icon styling
// -----------------

// Video navigation arrows
.video-nav .svg-icon {
    width: 24px;
    height: 24px;
}

// Play button icon
.play-button .svg-icon {
    width: 32px;
    height: 32px;
}

// Fullscreen button icon
.video-controls__btn--fullscreen .svg-icon {
    width: 20px;
    height: 20px;
}

// Clients navigation arrows
.clients-nav .svg-icon {
    width: 24px;
    height: 24px;
}

// Partners navigation arrows
.partners-nav .svg-icon {
    width: 24px;
    height: 24px;
}

// Partners sound button icon
.partners-slide__sound-btn .svg-icon {
    width: 18px;
    height: 18px;
}

// Social navigation arrows
.social-nav .svg-icon {
    width: 24px;
    height: 24px;
}

// Home Contact Section
// ---------------------

.home-contact-section {
    padding: 64px 0px 23px 46px;
    background: #090909;

    @media (max-width: 768px) {
        padding: 27px 0px;
    }
}

// Footer
// ------

.site-footer {
    padding: 48px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #090909;
}

.site-footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: @fontSize-small;
}

.page-footer{
    padding: 0px 42px 80px 0px;
    background-color: transparent;

    &__content {
        justify-content: flex-end;
    }

    &__left{
        display: none;
    }

    @media (max-width: 768px) {
        padding-bottom: 40px;
        padding-right: 25px;
        padding-left: 25px;
    }
}