/* ogólne */
:root {
    --white: #FFFFFF;
    --black: #000000;
    --orange: #FF8E1D;
    --purple: #4C2A62;
    --dark-purple: #1C022D;
    --gray: #504E4E;
    --light-blue: #F3FBFF;
    --light-gray: #E3E3E3;
    --title-color: #17012C;

    --font-family-main: "Plus Jakarta Sans";
    --max-width: 1440px;
    --padding-x: 80px;
    --padding-x-tablet: 24px;
    --padding-x-mobile: 12px;
    --padding-y: 60px;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background: var(--white);
    font-family: var(--font-family-main), sans-serif;
    color: var(--black);
    overflow-x: hidden;

    .container {
        max-width: var(--max-width);
        padding: var(--padding-y) var(--padding-x);
    }

    .container-fluid {
        padding: 0;
    }

    .section-header {
        h2 {
            margin: 8px 0;
        }

        p.text-3 {
            font-size: 12px;
            line-height: 15px;
        }
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h1 p,
    h2 p,
    h3 p,
    h4 p,
    h5 p {
        margin-bottom: 0;
    }

    h1,
    h1 p {
        font-size: 56px;
        line-height: 62px;
    }

    h2,
    h2 p {
        font-size: 42px;
        line-height: 46px;
    }

    h3,
    h3 p {
        font-size: 32px;
        line-height: 40px;
    }

    h4,
    h4 p {
        font-size: 24px;
        line-height: 28px;
    }

    h4.fw-bold,
    h4.fw-bold p {
        font-size: 20px;
        line-height: 24px;
    }

    h5,
    h5 p {
        font-size: 16px;
        line-height: 18px;
    }

    h5.fw-bold,
    h5.fw-bold p {
        line-height: 20px;
    }

    p {
        font-size: 16px;
        line-height: normal;
        margin: 0;
        color: var(--gray);
    }

    .lead-p p {
        font-size: 20px;
        line-height: 30px;
    }

    .text-1 {

        a,
        p,
        li {
            font-size: 14px;
            line-height: 20px;
        }
    }

    .text-2 {

        a,
        p,
        li {
            font-size: 12px;
            line-height: 15px;
        }
    }

    .text-3 {

        a,
        p,
        li {
            font-size: 12px;
            line-height: 15px;
        }
    }

    .text-white {
        color: var(--white);

        p {
            color: var(--white);
        }
    }

    .text-dark-purple {
        color: var(--dark-purple);

        p {
            color: var(--dark-purple);
        }
    }

    .text-gray {
        color: var(--gray);

        p {
            color: var(--gray);
        }
    }

    .text-orange {
        color: var(--orange);

        p {
            color: var(--orange);
        }
    }

    .text-title-color {
        color: var(--title-color);

        p {
            color: var(--title-color);
        }
    }

    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    a {
        color: var(--white);
        text-decoration: none;

        &:hover {
            text-decoration: underline;
        }
    }

    .marker {
        color: var(--orange);
    }

    .btn.btn__base {
        padding: 8.5px 34px;
        color: var(--white);
        font-size: 16px;
        font-weight: bold;
        line-height: 25px;
        border: unset;
        border-radius: 100px;
        background: var(--orange);

        &.btn-transparent {
            background: none;
            border: 1px solid var(--white);

            &:hover {
                border-color: var(--purple);
            }
        }

        &.btn-white {
            background: var(--white);

            a,
            span {
                color: var(--dark-purple);
            }

            img {
                margin-bottom: 0;
            }
        }

        &:hover {
            background: var(--purple);
            transition: background 0.2s ease-in-out;
        }

        &.btn-2 {
            font-size: 12px;
            line-height: 20px;
            padding-top: 7.5px;
            padding-bottom: 7.5px;
        }

        span {
            margin-left: 10px;
            font-size: 14px;
            line-height: 14px;

            img {
                margin-bottom: 4px;
            }
        }

        a:hover {
            text-decoration: none;
        }

        &.pulse {
            animation: pulse 1.5s infinite;

            &:hover {
                animation: none;
            }
        }

        &.hover-orange:hover {
            background: var(--orange) !important;
            border-color: var(--orange) !important;

            a {
                color: var(--white) !important;
            }
        }


    }

    .g-10 {
        gap: 10px;
    }

    .form-container {
        label {
            font-size: 16px;
            line-height: 18px;
            color: var(--dark-purple);
            margin-bottom: 12px;
            font-weight: 500;

            &.text-1 {
                font-size: 14px;
                line-height: 20px;
            }
        }

        span.required {
            background: linear-gradient(90deg, #7B5DFF 0%, #4D00FF 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        input,
        option,
        textarea,
        select {
            padding: 8px 30px 8px 20px;
            border-radius: 8px;
            background-color: var(--light-blue);
            border: 1px solid rgb(255, 255, 255, 0.2);

            &::placeholder {
                color: var(--gray);
                font-size: 14px;
                line-height: 20px;
            }

            &:focus {
                border-color: var(--orange);
                box-shadow: none;
            }
        }

        .form-select {
            font-size: 14px;
        }

        textarea {
            min-height: 200px;
            resize: vertical;
        }

        select option {
            background-color: var(--light-blue);

            &:checked {
                background-color: var(--orange);
                color: var(--white);
            }
        }

        label[for="consent"],
        label[for="contact-consent"] {
            display: inline;
        }
    }

    .swiper-button-prev,
    .swiper-button-next {
        .arrow--hover {
            display: none;
        }

        &:hover {
            .arrow {
                display: none;
            }

            .arrow--hover {
                display: block;
            }
        }
    }
}

/* komponenty */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    z-index: 20;
    background: var(--white);
    width: 90%;
    max-width: 1280px;
    border-bottom-right-radius: 32px;
    border-bottom-left-radius: 32px;
    transition: top 0.3s linear;

    &.smaller {
        top: -70px;

        nav.navbar {
            padding-bottom: 0;
        }
    }

    .top {
        background: var(--dark-purple);
        border-bottom-right-radius: 32px;
        border-bottom-left-radius: 32px;
        padding: 12px 85px;

        .left {
            gap: 30px;

            span {
                margin-right: 8px;

                img {
                    margin-bottom: 4px;
                }
            }
        }

        .right {
            gap: 36px;

            a {
                transition: all 0.3s linear;

                &:hover {
                    transform: scale(1.1);
                }
            }
        }
    }

    nav.navbar {
        padding: 22px 85px 24px;

        .container-fluid {
            /*gap: 178px;*/

            .collapse {
                gap: 47px;
            }

            img {
                object-fit: contain;
            }
        }

        .navbar-nav {
            gap: 24px;

            a {
                padding: 0 !important;
                color: var(--dark-purple);
            }
        }

        .nav-link {
            transition: border 0.1s linear;

            &.active,
            &:hover {
                text-decoration: none;
                border-bottom: 3px solid var(--purple);
            }
        }
    }
}

#hero-small {
    height: 580px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;

    .container {
        position: relative;
        height: 100%;
    }

    .content {
        position: absolute;
        top: 246px;
        left: 80px;
        right: 80px;
        max-width: 650px;

        h2 {
            margin-bottom: 8px;
        }

        p {
            margin-top: 8px;
        }

        .btn {
            margin-top: 24px;
        }
    }
}

#porozmawiajmy {
    .container {
        gap: 76px;
        padding-bottom: 100px;

        .images {
            position: relative;

            img {
                width: 100%;
                height: auto;
            }

            .image {
                z-index: 2;
                position: relative;
            }

            .background {
                position: absolute;
                top: 20px;
                left: -20px;
                z-index: 1;
            }

            .dots {
                position: absolute;
                top: -28px;
                left: -48px;
                z-index: 1;
                max-width: 95px;
            }
        }

        .right {
            width: 627px;

            .section-header {
                margin-bottom: 24px;
            }

            button {
                padding-right: 25px;
                padding-left: 25px;
                margin-bottom: 24px;

                img {
                    margin: 0;
                }

                &.btn-transparent {
                    border: 1px solid var(--dark-purple);
                    padding: 6.5px 46px;

                    .light {
                        display: none;
                    }

                    a {
                        color: var(--dark-purple);
                    }

                    &:hover {
                        .light {
                            display: inline;
                        }

                        .dark {
                            display: none;
                        }

                        a {
                            color: unset;
                        }
                    }
                }
            }

            h5 {
                margin-bottom: 12px;
                padding-top: 24px;
            }

            .separator {
                width: 90%;
                max-width: 440px;
                height: 1px;
                background: var(--light-gray);
            }

            .contacts {
                margin: 24px 0;
                gap: 24px;

                .contact {
                    gap: 12px;

                    a {
                        color: var(--dark-purple);
                    }
                }
            }
        }
    }

    &.image-right {
        .container {
            flex-direction: row-reverse !important;
            gap: 25px;

            .images {
                .background {
                    left: unset;
                    right: -20px;
                }

                .dots {
                    left: unset;
                    right: -48px;
                }
            }
        }
    }
}

footer {
    background: var(--dark-purple);
    position: relative;

    .container {
        position: relative;
        z-index: 1;
        padding-top: 50px;
        padding-bottom: 0;

        .footer-left {
            max-width: 326px;
            gap: 12px;
        }

        .footer-right {
            margin-right: 150px;
            gap: 36px;
        }

        .footer-right__menu {
            max-width: 194px;

            p,
            a {
                font-size: 14px;
                line-height: 24px;
            }

            &.footer-socials a {
                transition: all 0.3s linear;

                &:hover {
                    transform: scale(1.1);
                }
            }
        }

        .copyright {
            margin-top: 50px;
            padding: 4px 0 10px;
            border-top: 1px solid white;
        }
    }

    .ellipse-right {
        max-width: 100%;
        position: absolute;
        top: 0;
        right: 0;
    }

    .ellipse-left {
        max-width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .ellipse-left {
        max-width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .circles {
        max-width: 100%;
        position: absolute;
        bottom: 0;
        right: 0;
        height: 100%;
    }
}

/* główna */
#hero {
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    position: relative;

    .content {
        position: absolute;
        bottom: var(--padding-y);
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 856px;

        h1 {
            margin-bottom: 8px;
        }

        p {
            margin-bottom: 48px;
        }
    }
}

#dlaczego-my {
    .wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 46px 24px;
        margin-top: 48px;

        .element {
            border-radius: 20px;
            background: var(--light-blue);
            padding-left: 28px;
            padding-right: 28px;
            position: relative;
            background: url("/assets/sec2-bg-blue.svg") no-repeat;
            background-size: cover;
            transition: all 0.3s linear;

            &:hover {
                text-decoration: none;

                p {
                    color: var(--white);
                }
            }

            h4 {
                margin-bottom: 4px;
                margin-top: 6px;
            }

            p {
                margin-bottom: 55px;
            }

            .element__img {
                height: auto;
                margin-top: 31px;
            }

            .arrow {
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translate(-50%, 50%);
                width: 50px;
                height: 50px;
                border-radius: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--orange);
                transition: all 0.3s linear;

                .arrow-purple {
                    display: none;
                }
            }

            &:hover {
                background: url("/assets/sec2-bg-hover.svg") no-repeat;
                color: var(--white);
                background-size: cover;

                h4 {
                    color: var(--white);
                }

                .arrow {
                    background: var(--white);
                    box-shadow: 0 4px 40px 0 var(--purple);

                    .arrow-purple {
                        display: block;
                    }

                    .arrow-white {
                        display: none;
                    }
                }

            }
        }
    }
}

#propozycje {
    position: relative;
    z-index: 2;

    .wrapper {
        height: 120px;
        background: url("/assets/propozycje-bg.png") no-repeat;
        background-size: cover;
        border-radius: 24px;

        div {
            gap: 103px;
        }
    }
}

#podejscie {
    position: relative;

    .background-image {
        position: absolute;
        top: -60px;
        left: 0;
        width: 100vw;
        height: calc(100% + 60px);
    }

    .container {
        position: relative;
        z-index: 2;
    }

    .wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 48px;

        .element {
            border-radius: 24px;
            background: var(--white);
            padding: 20px 20px 0;
            box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.08);

            h4 {
                margin-bottom: 4px;
                margin-top: 24px;
            }

            p {
                margin-bottom: 58px;
            }

            &.purple-box {
                background: url("/assets/sec4-elem-bg2.svg") no-repeat;
                background-size: cover;

                h4,
                p {
                    color: var(--white);
                }
            }
        }
    }
}

#napisz {
    .container {
        gap: 110px;
    }

    .image {
        position: relative;

        .base {
            border-radius: 16px;
            z-index: 2;
            position: relative;
            margin-left: 48px;
            width: 100%;
            max-width: 495px;
            height: auto;
        }

        .bg {
            position: absolute;
            bottom: 0;
            left: 0;
        }
    }

    .contact {
        flex-grow: 1;

        .info {
            margin-top: 12px;
            margin-bottom: 48px;

            img {
                margin-right: 4px;
                vertical-align: text-top;
            }
        }

        .btn {
            padding-left: 40px;
            padding-right: 40px;
        }
    }
}

#realizacje {
    .wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 48px;

        .element {
            background: var(--white);
            box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.08);
            border-radius: 8px;
            transition: transform 0.2s linear;

            >img {
                width: 100%;
                height: auto;
                border-top-left-radius: 8px;
                border-top-right-radius: 8px;
            }

            &:hover {
                transform: translateY(-3px);
            }

            .element__text {
                padding: 16px 22px 25px 22px;

                .text-middle {
                    padding-top: 4px;
                    padding-bottom: 27px;
                    border-bottom: 1px solid #E3E3E3;
                }

                .text-bottom {
                    padding-top: 24px;

                    span {
                        margin-left: 10px;
                    }
                }
            }
        }
    }
}

#zaufali-nam {
    .container {
        padding-left: 0;
        padding-right: 0;

        .swiper {
            margin-top: 48px;
            margin-bottom: 48px;
        }

        .header {
            max-width: 1120px;
            height: 40px;
            margin: 0 auto;

            h4 {
                flex-shrink: 0;
            }
        }

        .separator {
            width: 90%;
            max-width: 1120px;
            height: 1px;
            background: var(--light-gray);
        }

        .separator-top {
            max-width: 434px;
        }
    }
}

/* usługi */
.uslugi {
    .container {
        padding-top: 80px;
        padding-bottom: 0;
    }

    .wrapper {
        background: url("/assets/uslugi-bg.png") no-repeat;
        background-size: cover;
        padding: 60px;

        .top {
            gap: 24px;

            .left {
                .section-header {
                    margin-bottom: 24px;

                    h3 {
                        margin: 8px 0;
                    }
                }

                .points {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 18px 16px;

                    .point {
                        gap: 8px;
                    }
                }

                .buttons {
                    margin-top: 35px;
                    gap: 24px;

                    .btn {
                        background: var(--purple);
                        padding: 6.5px 51.5px;

                        &.btn-transparent {
                            background: unset;
                            border: 1px solid var(--purple);
                            padding-right: 54px;
                            padding-left: 54px;

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

                    img {
                        margin: 0;
                    }
                }
            }

            .right {
                max-width: 567px;

                .swiper img {
                    border-radius: 12px;
                    width: 100%;
                    max-width: 567px;
                    height: 100%;
                    max-height: 320px;
                    object-fit: cover;
                }

                .nav {
                    gap: 6px;
                    margin-top: 12px;
                }

                .swiper-button-prev,
                .swiper-button-next {
                    position: unset;
                    width: unset;
                    height: unset;
                    margin: 0;

                    &:after {
                        content: unset;
                    }
                }
            }
        }

        .bottom {
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 73px;

            .element {
                padding: 18px 20px;
                border: 2px solid var(--orange);
                border-radius: 24px;
                background: var(--white);

                img.purple {
                    display: none;
                }

                h4 {
                    margin: 24px 0 4px;
                }

                p {
                    margin-bottom: 38px;
                }


                &.purple-box {
                    border: none;
                    background: url("/assets/uslugi-el-bg-purple.png") no-repeat;
                    background-size: cover;

                    img.normal {
                        display: none;
                    }

                    img.purple {
                        display: inline;
                    }

                    h4,
                    p {
                        color: var(--white) !important;
                    }
                }
            }
        }
    }
}

#ludzie {
    position: relative;
    margin-top: 80px;

    .bg {
        background: url("/assets/uslugi-slider-bg.png") no-repeat;
        background-size: cover;
        width: 100vw;
        position: absolute;
        top: 0;
        left: 0;
    }

    .container {
        padding-top: 100px;
    }

    .swiper {
        min-height: 564px;

        .swiper-slide {
            gap: 264px;
            justify-content: space-between;
        }

        .images {
            position: relative;

            .top,
            .bottom {
                border-radius: 8px;
                outline: 7px solid var(--white);
                box-shadow: 0 4px 27px 0 rgba(0, 0, 0, 0.10);
                width: 370px;
                height: 388px;
                object-fit: cover;
            }

            .bottom {
                z-index: 5;
                position: absolute;
                top: 168px;
                left: 168px;
            }

            .top {
                position: relative;
                z-index: 3;
                margin: 8px 0 0 8px;
            }

            .dots {
                position: absolute;

                &.dots-bottom {
                    top: 406px;
                    left: 41px;
                    z-index: 1;
                }

                &.dots-top {
                    top: 114px;
                    left: 313px;
                    z-index: 4;
                }
            }

            .background {
                position: absolute;
                z-index: 2;
                top: 236px;
                left: 12px;
            }
        }

        .right {
            /*width: 628px;*/

            .section-header {
                margin-bottom: 87px;
            }

            h5 {
                margin-bottom: 4px;
            }

            .points {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;

                .point {
                    gap: 20px;

                    .point-icon {
                        width: 60px;
                        height: 60px;
                        border-radius: 50px;
                        box-shadow: 0 4px 25px 0 rgba(56, 75, 255, 0.08);
                        flex-shrink: 0;
                    }
                }
            }
        }
    }

    .nav {
        gap: 6px;
        margin-top: 24px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        position: unset;
        width: unset;
        height: unset;
        margin: 0;

        &:after {
            content: unset;
        }
    }
}

/* realizacje */
.nasze-realizacje {
    &.image-right {
        .gallery-wrapper {
            flex-direction: row-reverse !important;
        }

        .left,
        .right {
            display: flex;
            flex-direction: column-reverse;
            gap: 24px;
            justify-content: flex-end;

            .wrapper {
                margin-top: 0;
            }
        }
    }

    .gallery-wrapper {
        margin-top: 52px;
        gap: 24px;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;

        img {
            width: 100%;
            height: auto;
            border-radius: 24px;
            aspect-ratio: 302/240;
        }
    }

    .left {
        .big {
            margin-bottom: 24px;

            img {
                border-radius: 24px;
                max-width: 628px;
                aspect-ratio: 628/504;
                height: 504px;
            }
        }
    }

    .right {
        .points {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .wrapper {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 24px;

            .element {
                border-radius: 24px;
                background: var(--white);
                padding: 20px;
                box-shadow: 0 4px 25px 0 rgba(56, 75, 255, 0.08);
                max-width: 302px;
                min-height: 240px;

                h4 {
                    margin-bottom: 4px;
                    margin-top: 24px;
                }

                &.purple-box {
                    background: url("/assets/sec4-elem-bg2.svg") no-repeat;
                    background-size: cover;

                    h4,
                    p {
                        color: var(--white);
                    }
                }
            }
        }
    }
}

#sprzet {
    position: relative;

    .bg {
        background: url("/assets/uslugi-slider-bg.png") no-repeat;
        background-size: cover;
        width: 100vw;
        height: 330px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .container {
        position: relative;
        padding-bottom: 40px;
    }

    .wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 64px;

        .element {
            border-radius: 24px 24px 8px 8px;
            background: var(--white);
            box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.08);
            transition: transform 0.2s linear;

            &:hover {
                transform: translateY(-3px);
            }

            img {
                width: 100%;
                height: 268px;
                object-fit: cover;
                border-top-left-radius: 12px;
                border-top-right-radius: 12px;
            }

            .text {
                padding: 24px;
            }

            h4 {
                padding-bottom: 4px;
            }
        }


    }
}

#detale {
    .container {
        padding-left: 0;
        padding-right: 0;
    }

    .swiper {
        margin-top: 48px;

        .swiper-slide {
            img {
                border-radius: 24px;
                width: 410px;
                height: 410px;
            }
        }
    }
}

#liczby {
    .container {
        position: relative;
        padding: 100px 0 100px 80px;
        overflow: hidden;
    }

    .left {
        background: url('/assets/liczby-bg.png') no-repeat;
        background-size: cover;

        .numbers {
            padding: 60px 0 67px 80px;

            .number {
                max-width: 240px;
                margin: 0 24px;

                div p {
                    margin-top: 12px;
                    line-height: 20px;
                }

                h2 {
                    margin: 12px 0 -7px;
                    font-size: 20px;
                    line-height: 24px;
                    font-weight: 700;
                }

                small {
                    font-size: 12px;
                    line-height: 15px;
                    font-weight: normal;
                    margin-left: 15px;
                }

                &.right-border {
                    padding: 0 24px;
                    margin: 0;
                    border-right: 2px solid rgba(255, 255, 255, 0.1);
                    border-left: 2px solid rgba(255, 255, 255, 0.1);
                    box-sizing: content-box;
                }
            }
        }

    }

    .right {
        position: absolute;
        top: 86px;
        right: -236px;

        img {
            width: 643px;
            height: 320px;
            aspect-ratio: 643/320;
            object-fit: cover;
            border-radius: 24px;
        }
    }
}

/* blog */
#blog {
    .container {
        gap: 24px;

        .left {
            gap: 32px;

            .element {
                max-width: 846px;
                border-bottom: 1px solid var(--light-gray);
                position: relative;

                .date {
                    position: absolute;
                    top: 20px;
                    left: 20px;
                    background: var(--white);
                    border-radius: 8px;
                    line-height: normal;

                    .day {
                        background: var(--purple);
                        border-radius: 8px;
                    }

                    .month,
                    .day {
                        padding: 5px 0;
                    }

                    .month {
                        padding-left: 20px;
                        padding-right: 20px;
                    }
                }

                h4 {
                    margin: 32px 0 4px;
                }

                button {
                    margin: 24px 0 30px;
                    border-radius: 8px;
                    padding: 9.5px 37px;
                }

                img {
                    max-width: 846px;
                    max-height: 350px;
                    object-fit: cover;
                    border-radius: 24px;
                }
            }

            .pagination {
                gap: 12px;
                flex-wrap: wrap;

                a {
                    width: 40px;
                    height: 40px;
                    background: var(--light-blue);
                    border-radius: 50%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    color: var(--gray);
                    transition: all 0.2s linear;

                    &:hover {
                        text-decoration: none;
                        transform: scale(1.05);
                    }

                    &.current {
                        border: 1px solid var(--dark-purple);
                        background: unset;
                        color: var(--dark-purple);
                    }

                    &.next {
                        background: var(--dark-purple);
                    }
                }
            }
        }

        .right {
            width: 410px;
            flex-shrink: 0;
            margin-left: auto;

            .wrapper {
                gap: 24px;
            }

            .top {
                background: var(--light-blue);
                border-radius: 16px;
                padding: 30px 24px;

                h4 {
                    margin-bottom: 16px;
                }

                .posts {
                    padding-right: 52px;
                    gap: 16px;

                    .post {
                        gap: 24px;

                        >img {
                            max-width: 80px;
                        }

                        span {
                            margin-right: 10px;

                            img {
                                margin-bottom: 3px;
                            }
                        }
                    }
                }
            }

            .bottom {
                padding: 30px 24px;
                background: var(--light-blue);
                border-radius: 16px;

                a {
                    line-height: 18px;
                }
            }
        }
    }
}

/* blog - detal */
#blog-detal {
    .container {
        gap: 24px;

        .left {
            gap: 32px;

            .element {
                max-width: 846px;
                position: relative;
                border-bottom: 1px solid var(--light-gray);
                padding-bottom: 36px;

                .date {
                    position: absolute;
                    top: 20px;
                    left: 20px;
                    background: var(--white);
                    border-radius: 8px;
                    line-height: normal;

                    .day {
                        background: var(--purple);
                        border-radius: 8px;
                        color: var(--white);
                    }

                    .month,
                    .day {
                        padding: 5px 0;
                    }

                    .month {
                        padding-left: 20px;
                        padding-right: 20px;
                    }
                }

                h3 {
                    margin: 32px 0 4px;
                }

                h2 {
                    color: var(--dark-purple);
                    font-size: 42px;
                    line-height: 46px;
                    margin: 32px 0 4px;
                    font-weight: 700;
                }

                >img {
                    border-radius: 24px;
                    max-width: 846px;
                    max-height: 350px;
                    object-fit: cover;
                }

                .images {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 26px;
                    margin: 48px 0;

                    img {
                        border-radius: 24px;
                        max-width: 410px !important;
                        max-height: 400px;
                        object-fit: cover;
                        aspect-ratio: 1/1;
                    }
                }
            }

            .links {
                a {
                    cursor: pointer;

                    img {
                        width: 62px;
                        height: 62px;
                        border-radius: 50%;
                        object-fit: cover;
                    }

                    &.link--next {
                        margin-left: auto;
                    }
                }
            }
        }

        .right {
            width: 410px;
            flex-shrink: 0;

            .wrapper {
                gap: 24px;
            }

            .top {
                padding: 30px 24px;
                background: var(--light-blue);
                border-radius: 16px;

                h4 {
                    margin-bottom: 16px;
                }

                .posts {
                    padding-right: 52px;
                    gap: 16px;

                    .post {
                        gap: 24px;

                        >img {
                            max-width: 80px;
                        }

                        span {
                            margin-right: 10px;

                            img {
                                margin-bottom: 3px;
                            }
                        }
                    }
                }
            }

            .bottom {
                padding: 30px 24px;
                background: var(--light-blue);
                border-radius: 16px;

                a {
                    line-height: 18px;
                }
            }
        }
    }
}

/* o nas */
#zasady {
    margin-bottom: 89px;

    .container {
        gap: 264px;

        .images {
            position: relative;

            .top,
            .bottom {
                border-radius: 8px;
                outline: 7px solid var(--white);
                box-shadow: 0 4px 27px 0 rgba(0, 0, 0, 0.10);
                width: 370px;
                height: 388px;
                object-fit: cover;
            }

            .bottom {
                z-index: 5;
                position: absolute;
                top: 168px;
                left: 168px;
            }

            .top {
                position: relative;
                z-index: 3;
            }

            .dots {
                position: absolute;

                &.dots-bottom {
                    top: 406px;
                    left: 41px;
                    z-index: 1;
                }

                &.dots-top {
                    top: 114px;
                    left: 313px;
                    z-index: 4;
                }
            }

            .background {
                position: absolute;
                z-index: 2;
                top: 236px;
                left: 12px;
            }
        }

        .right {
            max-width: 628px;

            .section-header {
                margin-bottom: 48px;
            }

            h5 {
                margin-bottom: 4px;
            }

            .points {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;

                .point {
                    gap: 20px;

                    .point-icon {
                        width: 60px;
                        height: 60px;
                        border-radius: 50px;
                        box-shadow: 0 4px 25px 0 rgba(56, 75, 255, 0.08);
                        flex-shrink: 0;
                    }
                }
            }


        }
    }
}

#nasza-ekipa {
    position: relative;

    .bg {
        background: url("/assets/nasza-ekipa-bg.png") no-repeat;
        background-size: cover;
        width: 100vw;
        height: 525px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .container {
        position: relative;
        padding-bottom: 0;

        img {
            border-radius: 24px;
            margin-top: 54px;
            width: 100%;
            height: auto;
        }

        .swiper-slide img {
            width: 1280px;
            height: 500px;
            object-fit: cover;
        }

        .swiper-button-prev,
        .swiper-button-next {
            &:after {
                content: unset;
            }

            img {
                width: unset;
            }
        }

        .swiper-button-prev {
            margin-left: 20px;
        }

        .swiper-button-next {
            margin-right: 20px;
        }
    }
}

/* kontakt */
#kontakt {
    .section-header {
        margin-bottom: 48px;
    }

    .contact {
        span.required--orange {
            color: var(--orange);
        }

        .btn {
            padding: 9.5px 53.5px;
        }

        .info {
            margin-top: 12px;

            img {
                margin-right: 4px;
                vertical-align: text-top;
            }
        }

        .plans {
            grid-template-columns: repeat(6, 1fr);
        }

        .emotions {
            grid-template-columns: repeat(4, 1fr);
        }

        #plans-error,
        #emotions-error {
            display: none;
            color: red;
        }

        .square-checkbox {
            gap: 10px;
            display: flex;
            cursor: pointer;
            font-size: 12px;
            line-height: 16px;

            .required--orange {
                display: contents;
            }

            .custom-check {
                width: 20px;
                height: 20px;
                border: 1px solid var(--black);
                border-radius: 2px;
                display: inline-block;
                position: relative;
                transition: all 0.2s linear;
                flex-shrink: 0;

                img {
                    opacity: 0;
                    transition: all 0.2s linear;
                }
            }

            input[type="checkbox"] {
                position: absolute;
                opacity: 0;
                pointer-events: none;

                &:checked+.custom-check {
                    background: var(--orange);
                    border-color: var(--orange);

                    img {
                        opacity: 1;
                        margin-bottom: 3px;
                    }
                }
            }

            p {
                font-size: 12px;
                line-height: 15px;
                color: var(--black);
            }
        }

        .plans,
        .emotions {
            gap: 12px 0;

            .circle-checkbox {
                display: flex;
                align-items: center;
                cursor: pointer;
                gap: 8px;

                .custom-check {
                    width: 30px;
                    height: 30px;
                    border: 1px solid var(--black);
                    border-radius: 50%;
                    display: inline-block;
                    position: relative;
                    transition: all 0.2s linear;
                    flex-shrink: 0;

                    img {
                        opacity: 0;
                        transition: all 0.2s linear;
                    }
                }

                input[type="checkbox"] {
                    position: absolute;
                    opacity: 0;
                    pointer-events: none;

                    &:checked+.custom-check {
                        border: unset;

                        img {
                            opacity: 1;
                        }
                    }
                }
            }
        }
    }
}

#contactModal {
    .modal-dialog {
        max-width: 1062px;

        .modal-content {
            border-radius: 24px;
            margin: 0 24px;

            button.btn-close {
                position: absolute;
                top: 20px;
                right: 20px;
                z-index: 10;
            }

            .modal-body {
                gap: 44px;
                padding: 20px;

                .image img {
                    border-radius: 16px;
                    width: 100%;
                    height: auto;
                    max-width: 499px;
                    max-height: 430px;
                    aspect-ratio: 499 / 430;
                    object-fit: cover;
                }

                .btn {
                    margin-top: 55px;
                }
            }
        }
    }
}


/* media query */
@media (max-width: 1399px) {

    #blog-detal,
    #blog {
        .container {
            .left {
                .element {
                    max-width: unset;
                }
            }

            .right {
                & .top {
                    .posts {
                        padding-right: 0;
                    }
                }
            }
        }
    }

    #ludzie {
        .swiper {
            .swiper-slide {
                gap: 180px;

                .images {
                    transform: scale(0.8);
                }

                .right {
                    .section-header {
                        margin-bottom: 48px;
                    }
                }
            }
        }
    }

    #detale {
        .swiper {
            .swiper-slide {
                img {
                    width: 350px;
                    height: 350px;
                }
            }
        }

        .swiper-pagination-bullet-active {
            background: var(--dark-purple);
        }
    }
}

@media (max-width: 1250px) {
    header {
        .top {
            padding-right: 20px;
            padding-left: 20px;
        }

        nav.navbar {
            padding-right: 20px;
            padding-left: 20px;

            .container-fluid {
                .collapse {
                    gap: 12px;

                    .navbar-nav {
                        gap: 16px;
                    }
                }
            }
        }
    }

    #kontakt {
        & .contact {

            .plans,
            .emotions {
                grid-template-columns: repeat(4, 1fr);
            }
        }
    }

    #zasady {
        .container {
            gap: 200px;
        }
    }

    footer {
        .container {
            .footer-right {
                margin-right: 0;
            }
        }
    }

    #ludzie {
        .swiper {
            .swiper-slide {
                gap: 160px;

                .images {
                    transform: scale(0.7);
                }
            }
        }
    }
}

@media (max-width: 1199px) {
    #dlaczego-my {
        .wrapper {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    #zaufali-nam {
        .container {
            .header {
                margin: 0 24px;
            }

            h4 {
                margin: 0 24px;
            }

            .separator-top {
                flex-basis: 33%;
            }
        }
    }

    #blog-detal,
    #blog {
        .container {
            .right {
                width: unset;
                flex-shrink: 1;
            }
        }
    }

    #blog {
        .container {
            align-items: center;

            .right {
                margin-left: unset;
            }
        }
    }

    .nasze-realizacje {
        &.image-right {
            .gallery-wrapper {
                flex-direction: column !important;
            }

            .left,
            .right {
                display: block;
                flex-direction: column-reverse;
                gap: 24px;
                justify-content: flex-end;

                .wrapper {
                    margin-top: 24px;
                }
            }
        }

        .left {
            .big {
                img {
                    width: 100%;
                    max-width: unset;
                    height: unset;
                }
            }
        }

        .right {
            .wrapper {
                .element {
                    max-width: unset;
                    min-height: unset;
                }
            }
        }
    }

    #napisz {
        .container {
            gap: 24px;
            align-items: center;

            .contact {
                width: 100%;
            }
        }
    }

    #zasady {
        .container {
            align-items: center;

            .images {
                margin-left: -170px;
            }

            .right {
                max-width: unset;

                .points {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
        }
    }

    #liczby {
        .container {
            padding: 80px 0;
        }

        .left {
            .numbers {
                padding: 60px 20px 60px 20px;
                align-items: center;
                gap: 24px;

                .number {
                    max-width: unset;
                    min-width: 200px;
                    margin: 0;

                    p {
                        margin-top: 0 !important;
                    }

                    &.right-border {
                        padding: 0;
                        margin: 0;
                        border: unset;
                        box-sizing: border-box;
                    }
                }
            }

        }

        .right {
            position: absolute;
            top: 80px;
            right: 0;
        }
    }

    .uslugi {
        .wrapper {
            padding: 24px;

            .top {
                .right {
                    /*align-self: center;*/
                }
            }

            .bottom {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    }

    #ludzie {
        .swiper {
            .swiper-slide {
                gap: 90px;

                .images {
                    transform: scale(0.7);
                }
            }
        }
    }

    #detale {
        position: relative;

        .swiper {
            .swiper-slide {
                img {
                    width: 300px;
                    height: 300px;
                }
            }
        }
    }
}

@media (max-width: 1050px) {
    header {
        nav.navbar {
            .container-fluid {
                .collapse {
                    gap: 12px;

                    .navbar-nav {
                        gap: 10px;
                    }
                }
            }
        }
    }

    #ludzie {
        .swiper {
            .swiper-slide {
                gap: 90px;

                .images {
                    transform: scale(0.6);
                }

                .right {
                    .points {
                        grid-template-columns: repeat(1, 1fr);
                    }
                }
            }
        }
    }
}

@media (max-width: 991px) {
    body {
        .container {
            padding: 40px var(--padding-x-tablet);
        }
    }

    header {
        &.smaller {
            nav.navbar {
                padding-bottom: 16px;
            }
        }

        nav.navbar {
            .container-fluid {
                .collapse {
                    .navbar-nav {
                        gap: 24px;
                    }
                }

                .btn {
                    margin-top: 24px;
                }
            }
        }
    }

    #kontakt {
        & .contact {

            .plans,
            .emotions {
                grid-template-columns: repeat(3, 1fr);
            }
        }
    }

    #porozmawiajmy {
        .container {
            .images {
                img {
                    width: 80%;
                }

                .background {
                    left: 5%;
                }

                .dots {
                    left: 0;
                }
            }

            .right {
                width: unset;
            }
        }

        &.image-right {
            & .container {
                flex-direction: column !important;

                & .images {
                    .background {
                        right: 65px;
                    }

                    .dots {
                        right: 30px;
                    }
                }
            }
        }
    }

    #propozycje {
        .wrapper {
            div {
                gap: 16px;
            }
        }
    }

    #podejscie {
        .wrapper {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    #realizacje {
        .wrapper {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    #liczby {
        .left {
            .numbers {
                .number {
                    display: flex;
                    gap: 24px;

                    div {
                        min-width: 250px;
                    }
                }
            }
        }
    }

    #ludzie {
        .container {
            padding-top: 0;
        }

        .swiper {
            .swiper-slide {
                gap: 120px;
                align-items: center;

                .images {
                    transform: scale(0.8);
                    margin-left: -120px;
                }

                .right {
                    .points {
                        grid-template-columns: repeat(2, 1fr);
                    }
                }
            }
        }
    }

    #detale {
        .swiper {
            .swiper-slide {
                img {
                    width: 220px;
                    height: 220px;
                }
            }
        }
    }

    #blog-detal {
        .container {
            .left {
                .element {
                    .images {
                        img {
                            width: 100% !important;
                            height: auto;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 800px) {
    #detale {
        .swiper {
            .swiper-slide {
                img {
                    width: 200px;
                    height: 200px;
                }
            }
        }
    }
}

@media (max-width: 767px) {
    footer {
        .container {
            .footer-menu {
                gap: 24px;
            }
        }
    }

    #hero {
        .content {
            h1 {
                font-size: 42px;
                line-height: 46px;
            }
        }
    }

    #hero-small {
        .content {
            top: 200px;
            left: 30px;
            right: 30px;

            h2 {
                font-size: 32px;
                line-height: 40px;
            }
        }
    }

    #dlaczego-my {
        .wrapper {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    #propozycje {
        .wrapper {
            div {
                h3 {
                    font-size: 24px;
                    line-height: 30px;
                }
            }
        }
    }

    #contactModal {
        & .modal-dialog {
            & .modal-content {
                margin: 0 24px;

                .modal-body {
                    padding: 56px 20px 24px;
                }
            }
        }
    }

    #sprzet {
        .wrapper {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    .uslugi {
        .wrapper {
            .top {
                .left {
                    .points {
                        grid-template-columns: repeat(1, 1fr);
                    }
                }
            }
        }
    }
}

@media (max-width: 575px) {
    body {
        .container {
            padding: 40px var(--padding-x-mobile);
        }
    }

    header {
        width: 100%;

        &.smaller {
            top: -95px;
        }

        .top {
            .left {
                gap: 4px;
            }

            .right {
                gap: 13px;
            }
        }
    }

    #hero-small {
        height: 700px;

        .content {
            text-align: center;
            bottom: 100px;
            top: auto;

            h2 {
                font-size: 26px;
                line-height: 32px;
            }
        }
    }

    #kontakt {
        & .contact {

            .plans,
            .emotions {
                grid-template-columns: repeat(1, 1fr);
            }
        }
    }

    #propozycje {
        .wrapper {
            height: 160px;

            div {
                padding: 12px;

                h3 {
                    text-align: center;
                }
            }
        }
    }

    #podejscie {
        .wrapper {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    #realizacje {
        .wrapper {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    #blog-detal {
        .container {
            .left {
                .element {
                    .date {
                        font-size: 14px;
                    }
                }
            }
        }
    }

    #napisz {
        .image {
            .base {
                margin-left: 0;
            }
        }
    }

    .nasze-realizacje {
        .right {
            .wrapper {
                grid-template-columns: repeat(1, 1fr);
            }
        }
    }

    #zasady {
        .container {
            gap: 100px;

            .images {
                transform: scale(0.7);
                margin-left: -110px;
            }

            .right {
                .points {
                    grid-template-columns: repeat(1, 1fr);
                }
            }
        }
    }

    .uslugi {
        .wrapper {
            padding: 0;

            .bottom {
                grid-template-columns: repeat(1, 1fr);
            }
        }
    }

    #ludzie {
        .swiper {
            .swiper-slide {
                gap: 70px;

                .images {
                    transform: scale(0.5);
                }

                .right {
                    .points {
                        grid-template-columns: repeat(1, 1fr);
                    }
                }
            }
        }
    }

    .social-icon {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    #blog-detal {
        .container {
            .left {
                .links {
                    flex-direction: column;
                    align-items: center;
                    gap: 24px;

                    a.link--next {
                        margin-left: unset;
                    }
                }
            }

            & .right {
                & .top {
                    .posts {
                        padding-right: 0;
                    }
                }
            }
        }
    }

    #ludzie {
        .swiper {
            .swiper-slide {
                gap: 0;

                .images {
                    transform: scale(0.4);
                    margin-left: -80px;
                }
            }
        }
    }

    #zasady {
        .container {
            gap: 12px;
            padding-top: 0;

            .images {
                transform: scale(0.5);
                margin-left: -110px;
            }
        }
    }

    #detale {
        .swiper {
            .swiper-slide {
                img {
                    width: 280px;
                    height: 280px;
                }
            }
        }
    }
}

/* animations */
[data-animate] {}

[data-animate].animate {
    opacity: 1;
    transform: none;
}

[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-down"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(-40px);
}

[data-animate="fade-left"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateX(-40px);
}

[data-animate="fade-right"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="zoom-in"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(0.9);
}

[data-animate="flip-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: rotateX(60deg);
    transform-origin: bottom;
}

[data-animate="pulse-shadow"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    box-shadow: 0 0 0 0 rgba(55, 191, 131, 0.5);
}

[data-animate="pulse-shadow"].animate {
    animation: pulseBoxShadow 2.5s infinite ease-in-out;
}

@keyframes pulseBoxShadow {
    0% {
        box-shadow: 0 0 0 0 rgba(55, 191, 131, 0.5);
    }

    50% {
        box-shadow: 0 0 30px 20px rgba(27, 43, 37, 0.6);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(15, 18, 24, 0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 var(--orange);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}


.eu-flag {
    border: 1px solid #fff;
    border-radius: 3px;
    background-color: #fff;
}