@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background: #2E2D2D;
    overflow-x: hidden;
}

html,
body {
    scroll-behavior: smooth;
}

a {
    color: var(--color-text-white);
    position: relative;
    text-decoration: none;
    font-weight: 400;
    transition: .2s ease;
}

u {
    color: var(--color-red);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.material-symbols-sharp {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48
}

.video-container {border-radius: 20px;}

/* animacja */

/*! 1 */
.animate {
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: .3s ease;
}

.animate.active {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 600px) {
    .animate {
        transition: .2s ease;
    }
}

/*! 2 */
@media (min-width: 768px) {
    .animate-menu {
        animation-duration: .2s;
        animation-fill-mode: both;
    }
}

.slideIn-menu {
    animation-name: slideIn;
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }

    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

/*! button shake */

/* @keyframes ButtonShake {

    2%,
    18% {
        transform: rotate(0deg)
    }

    4%,
    16% {
        transform: rotate(2deg)
    }

    6%,
    10%,
    14% {
        transform: rotate(-4deg)
    }

    8%,
    12% {
        transform: rotate(4deg)
    }
} */

/* color */

:root {
    --color-red: #E00A3D;
    --color-gray: #404040;
    --color-gray-light: #ADADAD;
    --color-text-white: #F2F2F2;
    --color-text-faq: #a09f9f;
    --color-text-black: #252525;
    --color-blue-mls: #009EE0;
    --color-blue: #3555a8;
    --color-white: #fff;
}

::selection {
    color: var(--color-text-white);
    background-color: var(--color-red);
}

.collapsing {
    transition: .3s ease !important;
}

/* hamburger */

.mobile-menu-is-open {
    overflow-y: hidden;
    touch-action: none;
    -ms-touch-action: none;
}

.mobile-menu-is-open .header__small {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: linear-gradient(180deg, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 80%) 100%);
    height: 100vh;
}

.navbar-toggler {
    border: 0 !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

.toggler-icon {
    width: 30px;
    height: 3px;
    background-color: var(--color-red);
    display: block;
    transition: all 0.2s;
}

.middle-bar {
    margin: 5px auto;
}

.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .toggler-icon {
    background-color: var(--color-red);
}

/* header */

.header {
    background: linear-gradient(180deg, rgb(0 0 0 / 40%) 0%, rgba(0, 0, 0, 0) 100%);
    border-bottom: 1px solid #8c878850;
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: all .5s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.header.header__small .navbar-top,
.header.header__small .socialmedia {
    transition: .2s ease;
    opacity: 0;
    height: 0;
}

.header.header__small .navbar {
    transition: .2s ease;
    opacity: 1;
    height: auto;
}

.navbar-brand.logo img {
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 200px;
}

button.navbar-toggler.collapsed {
    border: 0;
}

.header__small {
    background: linear-gradient(180deg, rgb(0 0 0 / 71%) 0%, rgb(0 0 0 / 66%) 100%);
    box-shadow: 0px 0px 50px 10px #303030;
    backdrop-filter: blur(2px);
}

.header__small .navbar-expand-lg {
    height: fit-content;
    width: 100vw;
}

.header__small li.nav-item {
    height: 70px;
}

/* dropdown */

.dropdown-menu {
    /* display: block; */
    opacity: 0;
    visibility: hidden;
    background: #B90530;
    transition: .2s ease;
    margin-top: 0;
    top: 170px;
    width: 300px;
    border-radius: 0px 0px 10px 10px;
}

.dropdown-menu.show {
    display: flex;
    flex-direction: column;
    border-radius: 0px 0px 10px 10px;
    background: #B90530;
    margin-top: 0;
    width: 300px;
    box-shadow: 0px 30px 50px 0px var(--color-text-black);
    transition: .2s ease;
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    display: flex;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    height: 40px;
    align-items: center;
    transition: .2s ease
}

.nav-item.dropdown>ul>li {
    height: 40px;
    border-bottom: 1px solid #E00A3D;
}

.dropdown-item:hover {
    color: var(--color-text-white);
    background-color: #E00A3D;
    padding-left: 30px;
    transition: .2s ease;
}

.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
}

.nav-link.dropdown-toggle span {
    width: 24px;
    color: var(--color-red);
    transition: .2s ease;
}

.nav-link.dropdown-toggle.show span {
    transform: rotate(180deg);
    color: var(--color-red);
    transition: .2s ease;
}

.dropdown-item:hover:after {
    content: "";
    display: block;
    width: 10px;
    height: 1px;
    background: white;
    position: absolute;
    opacity: 1;
    border-radius: 1000px;
    left: 12px;
}

a.nav-link:before {
    content: "";
    position: absolute;
    background: var(--color-gray);
    width: 0%;
    height: 1px;
    display: inline-block;
    transition: .2s ease;
    bottom: 0;
    left: 0;
}

a.nav-link:not(.active):hover:before {
    content: "";
    position: absolute;
    background: var(--color-gray);
    width: 100%;
    height: 1px;
    display: inline-block;
    transition: .2s ease;
    bottom: 0;
    left: 0;
}

a.nav-link:hover span {
    transform: rotate(90deg);
}

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

.navbar-nav .dropdown-menu {
    position: absolute;
}

.navbar-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    padding-right: 0px !important;
    padding-left: 0 !important;
}

.navbar-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
    gap: 2px;
    transition: .2s ease;
    opacity: 1;
    display: none;
    /*! narazie usunięte testowo */
}

.navbar-top .phone {
    color: var(--color-red);
    background: var(--color-text-white);
    border-radius: 100px 0px 0px 100px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 10px 0px 10px;
    border-right: 1px solid #7b7b7b80;
}

.navbar-top .phone p {
    color: var(--color-text-black);
    margin-bottom: 0;
    font-weight: 500;
}

.navbar-top .language {
    color: var(--color-red);
    background: #fff;
    border-radius: 0px 100px 100px 0px;
    width: min-content;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 10px 0px 10px;
    z-index: 2;
}

.dropdown-item.language {
    cursor: pointer;
    cursor: pointer;
    font-weight: 500;
    color: var(--color-text-black)
}

.dropdown-item.language:hover {
    font-weight: 700;
    padding-left: 15px;
}

.dropdown-toggle.language span {
    color: var(--color-red);
    transition: .2s ease;
}

.dropdown-toggle.language.show span {
    transform: rotate(180deg);
    color: var(--color-red);
    transition: .2s ease;
}

.dropdown.language ul.dropdown-menu.show {
    background: #fff;
    width: auto;
    min-width: auto;
    transform: translate(0px, 27px) !important;
    border: 0px;
    z-index: -2;
}

.dropdown.language ul.dropdown-menu.show li {
    border-radius: 0px;
    width: 101px;
    display: flex;
}

li.dropdown-item.language:nth-child(1) {
    margin-top: -35px;
    height: 72px;
    background: white;
    padding-top: 37px;
    border-radius: 17px 17px 0px 0px !important;
}

.navbar-top .phone span,
.navbar-top .language span {
    font-size: 20px;
}

.navbar-top .language a {
    color: var(--color-text-black);
    margin-bottom: 0px;
    font-weight: 500;
}

.language>span:nth-child(3) {
    color: var(--color-text-black);
}

li.nav-item {
    height: 150px;
    display: flex;
    align-items: center;
    position: relative;
    transition: .2s ease;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--color-text-faq);
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    color: #fff;
}

.navbar-collapse {
    align-items: flex-start;
    flex-basis: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.navbar-collapse.collapse.show {
    transition: .2s ease;
}

.nav-item a {
    color: #FFFFFF;
    font-size: 15px;
    letter-spacing: 0px;

    height: 100%;
    display: flex;
    align-items: center;
}

a.nav-link.active:after {
    content: "";
    display: block;
    background: var(--color-red);
    width: 100%;
    height: 1px;
    position: absolute;
    /* margin-top: 8px; */
    bottom: 0;
}

.dropdown-toggle::after {
    display: none;
}

#navbarSupportedContent>ul>li.nav-item.dropdown>span {
    color: var(--color-red);
    cursor: pointer;
}

#navbarDropdown {
    padding-right: 0;
}

#breadcrumb {
    position: relative;
}

.breadcrumb {
    position: absolute;
    font-size: 13px;
    z-index: 10;
    margin-bottom: 0;
    padding-bottom: 0;
    padding: 0px 15px;
    border-radius: 0px 0px 7px 7px;
    /* box-shadow: 0px 20px 40px 0px #00000063; */
    background: var(--color-gray);
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb-item.active {
    padding-left: 0;
    font-weight: 600;
}

.breadcrumb-item.active {
    color: var(--color-text-white);
}

.breadcrumb-item+.breadcrumb-item::before {
    font-size: 20px;
    padding-right: 0;
    margin: 0px 5px 0px 5px;
    font-family: "Material Symbols Outlined";
    content: "chevron_right";
    color: var(--color-gray-light);
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    width: 20px;
}

.breadcrumb-item a:hover {
    color: var(--color-red);
    transition: .2s ease;
}

/* baner */

.phone-mobile {
    color: var(--color-text-white);
    display: flex;
    gap: 10px;
}

.phone-mobile div {
    display: flex;
    gap: 10px;
    background: #7070701c;
    padding: 10px 20px;
    border-radius: 10px;
}

.phone-mobile span {
    color: var(--color-red);
    font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 48;
}

.mobile-social {
    gap: 10px;
    /* margin: 10px 0px 50px 0px; */
}

.mobile-social a {
    background: #7070701c;
    padding: 10px;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baner {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 200px;
}

.baner__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    color: var(--color-text-white);
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-duration: .5s;
    animation-delay: .5s;
    animation: fadeIn .5s ease;
}

@keyframes fadeInOpacity {

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, 10%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.baner__title h1 {
    line-height: 55px;
}

.baner__player lottie-player:before {
    position: absolute;
    content: "";
    background: #616161;
    height: 400px;
    border-radius: 100px;
    filter: blur(50px);
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-delay: 2s;
    z-index: -10;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.baner__player {
    position: relative;
    opacity: 1;
    animation-name: fadeInOpacityPlayer;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-duration: 1s;
    animation-delay: 1s;
    animation: fadeInPlayer 1s ease;
}

@keyframes fadeInOpacityPlayer {

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInPlayer {
    from {
        opacity: 0;
        transform: translate3d(0, 10%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.baner__title-text {
    font-weight: 600;
    font-size: 50px;
    line-height: 1.2;
}

.baner__title-text-p {
    color: var(--color-gray-light);
    font-size: 15px;
    font-weight: 400;
    border-left: 2px solid var(--color-red);
    padding-left: 20px;
}

.baner__demo {
    animation: fadeIn 1s ease;
    margin: 70px 0px 50px 0px;
}

.baner__demo-button {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.baner__demo-button input {
    border-radius: 12px;
    border: 0px;
}

.baner__demo-check {
    display: flex;
    color: var(--color-text-white);
    font-size: 12px;
    font-weight: 300;
    margin-top: 10px;
    justify-content: center;
}

.baner__demo-check label.form-check-label {
    width: 100%;
}

.main .form-check-input:checked {
    background-color: var(--color-red) !important;
    border-color: var(--color-red) !important;
}

.form-check-input:focus {
    border-color: var(--color-red);
    outline: 0;
    box-shadow: 0 0 0 0.25rem #e00a3d00;
}

.section__demo-button button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 300px;
    height: 60px;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-text-black);
    border: 2px solid var(--color-red);
    border-radius: 15px;
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation-delay: 1s;
}

.section__demo-button button .material-symbols-sharp {
    width: 24px;
}

.section__demo-button button:hover {
    font-family: 'Montserrat', sans-serif;
    height: 60px;
    font-size: 22px;
    background-color: var(--color-red);
    border: 2px solid var(--color-red);
    box-shadow: 0px 0px 100px 1px var(--color-red);
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.baner__demo-button div {
    flex: 0 1 auto;
    width: 400px;
}

label.form-check-label a {
    color: var(--color-red);
    font-weight: 700;
}

label.form-check-label a:hover {
    text-decoration: underline;
}

.main button.button__baner {
    background: #B90530;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
    min-height: 50px;
    width: calc(100% + 60px);
    min-width: 100px;
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation-delay: 2s;
}

.main button.button__baner span {
    background: #E3053A;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

.main button.button__baner:hover {
    background: #404040;
    min-height: 50px;
    width: calc(100% + 70px);
    min-width: 100px;
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.main button.button__baner:hover span {
    background: #40404000;
}

.main button.button__baner-test {
    background: var(--color-text-black);
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-size: 22px;
    position: relative;
    padding: 15px 30px 15px 30px;
    margin-top: 30px;
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

.main button.button__baner-test span {
    background: #E3053A;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

.main button.button__baner-test:hover {
    background: var(--color-text-black);
    color: var(--color-gray-light);
    padding: 15px 30px 15px 30px;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    box-shadow: 0px 0px 100px 5px #404040;
}

.main button.button__baner-test:hover span {
    background: #40404000;
}

/* sekcja 1 */

.section__1-box {
    background: var(--color-gray);
    padding: 100px 70px 100px 70px;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
    overflow: visible;
}

.main .section__1-box:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, black, red);
    right: 0;
    filter: blur(100px);
    z-index: -1;
    bottom: 0;
    border-radius: 100px;
    left: 0;
    margin: 0 auto;
}

.main .section__1-logo-text {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.section__1-logo {
    display: flex;
    align-items: center;
    margin: 20px 0px 20px 0px;
    flex: 1;
}

.section__1-logo img {
    max-width: 300px;
    min-width: 210px;
}

.main .section__1-text {
    display: flex;
    align-items: center;
    flex: 2;
}

.section__1-text h1 {
    color: var(--color-text-white);
    font-size: 40px;
    font-weight: 200;
}

.section__1-text span {
    color: var(--color-text-white);
    font-size: 40px;
    font-weight: 600;
}

.section__1-ikony {
    display: flex;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.main .section__1-ikony div {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 14%;
}

.section__1-ikony-text {
    color: var(--color-text-white);
    text-align: center;
}

.section__1-ikony .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.main .section__1-ikony .box-ikona img {
    width: 50px;
    height: 50px;
}

.element__1 {
    width: 400px;
    height: 400px;
    border: 1px solid var(--color-red);
    border-radius: 100%;
    position: absolute;
    top: -300px;
    z-index: -1;
    opacity: 0.5;
    left: 100px;
}

/* sekcja partners */

.section__logo_partners {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.section__logo_partners-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.section__logo_partners-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

.section__logo_partners-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

.section__logo_partners-text-line {
    display: flex;
    flex-basis: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

.section__logo_partners-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

.section__logo_partners-logo {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    grid-gap: 20px;
}

.section__logo_partners-logo img {
    max-width: fit-content;
    mix-blend-mode: luminosity;
    transition: .2s ease;
    flex-basis: 10%;
    /* width: 130px; */
}

.section__logo_partners-logo img:hover {
    mix-blend-mode: normal;
    transform: scale(1.1);
    transition: .2s ease;
}

.section__logo_partners-text-line-pion {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 100px;
    border-radius: 100px;
    margin: 0 auto;
}

/* sekcja counter */

#counter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 20px;
    margin-bottom: 150px;
}

.section__counter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    font-weight: 600;
    color: var(--color-text-white);
    flex-direction: column;
    flex: 1 1 20%;
    flex-wrap: wrap;
}

.section__counter-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.section__counter-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 200;
}

.section__counter-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

.section__counter-inside {
    display: flex;
    align-items: baseline;
    flex-direction: row;
    gap: 10px;
}

.section__counter-inside .count_b {
    display: flex;
    font-weight: 600;
    align-items: flex-end;
    font-size: 30px;
}

.section__counter-inside>.col {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.col.section__counter-inside-text p {
    display: flex;
    font-weight: 400;
    font-size: 15px;
    color: var(--color-gray-light);
    border-left: 2px solid var(--color-red);
    padding-left: 10px;
    margin-bottom: 0;
}

/* sekcja 2 */

.section__2 {
    margin-bottom: 100px;
    position: relative;
}

.main .section__2-box {
    background: var(--color-gray);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0px 50px 99px #00000026;
    height: auto;
    transition: .2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 400px;
}

.element__2 {
    width: 100px;
    height: 100px;
    border: 1px solid var(--color-red);
    border-radius: 100px;
    position: absolute;
    right: 50px;
    top: 300px;
    z-index: -1;
    opacity: 0.5;
}

.main .section__2-box:hover {
    background: #2E2D2D;
    box-shadow: 0 0 0 1px var(--color-gray) inset;
    cursor: pointer;
}

.main .section__2-box:hover .section__2-box-ikona {
    background: var(--color-red);
    box-shadow: 0px 0px 70px 0px var(--color-red);
}

.main .section__2-box-ikona img {
    width: 90%;
    height: auto;
}

.main .section__2-box:hover .section__2-box-line {
    width: 100%;
}

.main .section__2-box:hover .section__2-box-text {
    opacity: 1;
}

.main .section__2-box:hover .section__2-box-svg {
    filter: brightness(0) invert(1);
}

.main .section__2-box-line {
    display: inline-block;
    margin-right: 20px;
    width: 20px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
    transition: .4s ease;
}

.section__2-box-text {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 0;
    color: var(--color-text-white);
    transition: .2s ease;
    opacity: 0.1;
    white-space: nowrap;
}

.section__2-box-line-text {
    display: flex;
    align-items: center;
}

.section__2-box-line:hover {
    opacity: 1;
    width: 60px;
    display: inline-block;
    margin-right: 20px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
    transition: .4s ease;
}

.main .section__2-box-line-text a:hover {
    color: var(--color-red);
    font-weight: bold;
    letter-spacing: 1.8px;
}

.section__2-box-ikona {
    position: absolute;
    top: -50px;
    background-color: #fff;
    padding: 10px;
    border-radius: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s ease;
}

.section__2-box-title {
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    color: var(--color-text-white);
    margin-top: 50px;
}

.section__2-box-description {
    font-size: 15px;
    color: var(--color-gray-light);
    height: 100%;
}

.row.section__2 {
    row-gap: 80px;
    column-gap: 40px;
}

/* sekcja 3 */

.section__3 {
    margin-bottom: 150px;
}

.section__3-box {
    background: var(--color-gray);
    padding: 30px 0px 30px 0px;
    border-radius: 20px;
    display: flex;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
}

.section__3-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 100px;
    border-radius: 100px;
    margin: 0 auto;
}

.element__3 {
    width: 70px;
    height: 70px;
    border: 1px solid var(--color-red);
    border-radius: 100px;
    position: absolute;
    z-index: -1;
    opacity: 0.5;
    left: 100px;
    bottom: -30px;
}

.section__3-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 100px;
    margin-top: 50px;
}

.section__3-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 200;
}

.section__3-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

.section__3-box-icon-right {
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-left: 126px;
    z-index: 2;
}

.section__3-box-icon-right .section__3-box-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
    margin: 7px 0px 7px 20px;
}

.section__3-box-icon-right .section__3-box-icon p {
    margin-left: 10px;
    min-width: fit-content;
    font-size: 15px;
}

.section__3-box-icon-left {
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-right: 127px;
    z-index: 2;
}

.section__3-box-icon-left .section__3-box-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 7px 20px 7px 0px;
}

.section__3-box-icon p {
    color: var(--color-text-white);
    font-size: 15px;
    margin-bottom: 0;
    margin-right: 10px;
    margin-left: 10px;
}

.section__3-box-icon span {
    background: var(--color-red);
    padding: 10px;
    border-radius: 14px;
    color: var(--color-text-white);
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}

.section__3-box-phone {
    position: absolute;
    width: 250px;
    margin: 0 auto;
    left: 0;
    right: 0;
    margin-top: -97px;
    z-index: 999;
}

.section__3-box-phone img {
    box-shadow: 0px 0px 100px 10px #000000c2;
    border-radius: 39px;
    z-index: 1;
}

.section__3-box-phone-line {
    width: 2px;
    background-color: var(--color-red);
    height: 90px;
    border-radius: 100px;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -42px;
    z-index: -1;
}

.section__3 a {
    width: auto;
    padding: 0;
    position: static;
}

.section__3-more {
    color: var(--color-text-white);
    margin-top: 180px;
    z-index: 10;
    justify-content: center;
}

.section__3-more a {
    display: flex;
    z-index: 2;
    cursor: pointer;
    transition: .2s ease;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    background: var(--color-gray);
    max-width: fit-content;
    justify-content: center;
    align-items: center;
    padding: 25px;
    border-radius: 20px;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

.section__3-more a:hover {
    background-color: var(--color-text-white);
    box-shadow: 0px 0px 100px 1px var(--color-red);
    color: var(--color-text-black);
}

/* sekcja 4 */

.section__4 {
    margin-bottom: 100px;
}

.section__4-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
}

.section__4-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

.section__4-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 200;
}

#main .section__4-text span {
    color: var(--color-text-white);
    font-size: 45px;
    font-weight: 700;
    background: linear-gradient(90deg, #c70400, #3391ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section__4-title {
    justify-content: center;
    row-gap: 40px;
}

.section__4-title img {
    width: 300px;
}

.main .section__4-box {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.element__4 {
    width: 500px;
    height: 500px;
    border: 1px solid var(--color-red);
    border-radius: 100%;
    position: absolute;
    left: 110px;
    top: 0px;
    z-index: -1;
    opacity: 0.5;
}

.main .section__4-box:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 500px;
    background: linear-gradient(0deg, #722e2d, #547fae);
    filter: blur(100px);
    z-index: -1;
    border-radius: 100px;
    top: 0;
}

.section__4-box-img {
    background: url(../images/image_laptop-october.webp) no-repeat;
    width: 50%;
    background-size: contain;
    transition: .2s ease;
    margin-top: 35px;
    height: 350px;
    position: relative;
}

.section__4-box-img a {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}

.section__4-box-text p {
    display: flex;
    flex-direction: column;
    flex: 1 1 500px;
    margin-top: 40px;
    font-size: 15px;
    font-weight: 300;
}

.section__4-box-img:hover {
    background: url(../images/image_laptop-october-system.webp) no-repeat;
    background-size: contain;
    transform: scale(1.1);
}

.section__4-box-text {
    display: flex;
    color: var(--color-text-white);
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px;
    row-gap: 0px;
}

.main .section__4-box-line {
    border-top: 2px solid var(--color-red);
    content: '';
    display: block;
    width: 20px;
    margin-top: 10px;
}

.section__4-box-item {
    display: flex;
    grid-gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.section__4-box-item img {
    margin-right: 10px;
}

.section__4-box-item .col {
    align-items: center;
    display: flex;
    color: var(--color-text-white);
    border: 1px solid #584147;
    padding: 10px;
    border-radius: 7px;
    white-space: nowrap;
    backdrop-filter: blur(2px);
    flex: 0 1 auto;
    justify-content: center;
    transition: .2s ease;
    font-weight: 600;
    /* cursor: pointer; */
}

/* .section__4-box-item .col:hover {
    background: var(--color-text-white);
    border: 1px solid #7b7b7b00;
    color: var(--color-red);
} */

.section__4-box-item .col span {
    margin-right: 10px;
    color: var(--color-red);
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 48;
}

.section__4-more {
    color: var(--color-text-white);
    margin-top: 50px;
    z-index: 10;
    justify-content: center;
}

.section__4-more a {
    display: flex;
    z-index: 2;
    cursor: pointer;
    transition: .2s ease;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    background: var(--color-gray);
    max-width: fit-content;
    justify-content: center;
    align-items: center;
    padding: 25px;
    border-radius: 20px;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

.section__4-more a:hover {
    background-color: var(--color-text-white);
    box-shadow: 0px 0px 100px 1px var(--color-red);
    color: var(--color-text-black);
}

/* sekcja 5 */

.section__5 {
    position: relative;
    z-index: 1;
}

.section__5 .container {
    position: relative;
}

.section__5-box {
    background: var(--color-text-white);
    padding: 100px 70px 100px 70px;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    box-shadow: 0px 50px 99px #00000026;
}

.main .section__5-box-line {
    width: 2px;
    background-color: var(--color-red);
    height: 90px;
    border-radius: 100px;
    position: absolute;
    margin: 0 auto;
    left: 0px;
    right: 0;
    bottom: 0px;
    top: -44px;
}

.section__5-text {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 30px;
}

.section__5-text h3 {
    color: var(--color-gray);
    font-size: 30px;
    font-weight: 400;
}

.section__5-box-item p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}

.section__5-text span {
    color: var(--color-text-black);
    font-size: 30px;
    font-weight: 600;
}

.section__5-box-item {
    display: flex;
    flex-direction: row;
    gap: 10px;
    background: var(--color-white);
    padding: 20px;
    border-radius: 20px;
    align-items: center;
}

.section__5-text-under {
    margin-top: 20px;
    border: 0px solid var(--color-text-faq);
    padding: 30px;
    border-radius: 20px;
    background: var(--color-white);
}

.section__5-text-under p {
    margin-bottom: 0;
    font-weight: 500;
}

.section__5-text-under a {
    color: var(--color-red);
    font-weight: 500;
}

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

.section__5-more {
    color: var(--color-text-white);
    margin-top: 50px;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0;
}

.section__5-more a {
    display: flex;
    z-index: 2;
    cursor: pointer;
    transition: .2s ease;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    background: var(--color-gray);
    max-width: fit-content;
    justify-content: center;
    align-items: center;
    padding: 25px;
    border-radius: 20px;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

.section__5-more a:hover {
    background-color: var(--color-text-white);
    box-shadow: 0px 0px 100px 1px #bfbfbf;
    color: var(--color-text-black);
}

.section__5-box-item>span {
    /* background: var(--color-red); */
    color: var(--color-red);
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 0;
    width: max-content;
    height: max-content;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 200, 'opsz' 40;
    font-size: 40px;
}

.section__5-box-item p span {
    font-weight: 700;
    color: var(--color-black);
}

.section__5-box .box-item-publikowanie {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 500px;
    gap: 20px;
    padding-left: 0;
}

.section__5-box .lottie-player-publikowanie {
    display: flex;
    flex: 1 1 500px;
}

/* sekcja 6 */

.main .section__6 {
    position: relative;
    margin-bottom: 100px;
    padding-top: 0px;
    margin-top: -50px;
    /* overflow-x: hidden; */
}

.main .section__6::before {
    position: absolute;
    content: '';
    /* background: linear-gradient(0deg, rgba(64, 64, 64, 0) 0%, #1d70b857 100%); */
    background: radial-gradient(circle at 50% 0, rgb(0 82 192), rgba(255,0,0,0) 70.71%), radial-gradient(circle at 6.7% 75%, #2e2d2d, rgba(0,0,255,0) 70.71%), radial-gradient(circle at 93.3% 75%, #2e2d2d, rgba(0,255,0,0) 70.71%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section__6-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-blue-mls);
    height: 200px;
    border-radius: 100px;
    margin: 0 auto;
}

.section__6-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
    gap: 13px;
    position: realtive;
}

.main .section__6-text::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 300px;
    background: linear-gradient(180deg, #007bff, #002760);
    filter: blur(100px);
    z-index: -1;
    border-radius: 100px;
    opacity: .5;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.section__6-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 200;
}

.main .section__6-text p {
    color: var(--color-text-white);
    margin-top: 30px;
    background: var(--color-text-black);
    padding: 10px;
    border-radius: 15px;
    margin: auto;
    font-size: 15px;
}

.section__6-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

.section__6-text img {
    margin: 30px auto;
}

.main .section__6 .section__counter-mls-image a {
    display: flex;
    justify-content: center;
    width: 80%;
}

.main .section__6 .section__counter-mls-image {
    justify-content: center;
    position: relative;
}

.main .section__counter-mls-image::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 200px;
    background: linear-gradient(0deg, #000000, #00adff);
    box-shadow: 0px 0px 50px 10px #19171b;
    filter: blur(100px);
    z-index: -1;
    border-radius: 100px;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    right: 0;
}

.section__6-more {
    color: var(--color-text-white);
    margin-top: 50px;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0;
}

.section__6-more a {
    display: flex;
    z-index: 2;
    cursor: pointer;
    transition: .2s ease;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    background: var(--color-blue);
    max-width: fit-content;
    justify-content: center;
    align-items: center;
    padding: 25px;
    border-radius: 20px;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

.section__6-more a:hover {
    background-color: var(--color-text-white);
    box-shadow: 0px 0px 100px 1px #bfbfbf;
    color: var(--color-text-black);
}

/* sekcja counter mls */

#counter__mls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
    margin: 50px 0px 50px 0px;
}

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

.section__counter__mls-text h3 {
    color: var(--color-text-white);
    font-size: 20px;
    font-weight: 300;
}

.section__counter__mls-text p {
    color: var(--color-text-white);
    font-size: 15px;
}

.section__counter__mls-text p a {
    color: var(--color-blue-mls);
    font-weight: 600;
}

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

.section__counter__mls-text span {
    color: var(--color-text-white);
    font-size: 28px;
    font-weight: 600;
}

.section__counter__mls {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 70px;
    font-weight: 600;
    color: var(--color-text-white);
    flex-direction: column;
    width: auto;
}

.section__counter__mls-inside {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.col.section__counter__mls-inside-text p {
    display: flex;
    font-weight: 400;
    color: var(--color-gray-light);
    border-left: 2px solid var(--color-blue-mls);
    padding-left: 10px;
    margin-bottom: 0;
    font-size: 15px;
}

/* sekcja 7 */

.section__7 {
    margin-bottom: 100px;
    position: relative;
}

.section__7-box {
    background: var(--color-text-white);
    padding: 50px 30px 50px 30px;
    border-radius: 20px;
    display: flex;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
    justify-content: space-between;
}

.section__7-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 100px;
    border-radius: 100px;
    margin: 0 auto;
}

.element__7 {
    width: 70px;
    height: 70px;
    border: 1px solid var(--color-red);
    border-radius: 100px;
    position: absolute;
    z-index: -1;
    opacity: 0.5;
    left: 100px;
    bottom: -30px;
}

.section__7-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 100px;
    margin-top: 50px;
}

.section__7-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 200;
}

.section__7-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

.section__7-box-icon-right {
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-left: 126px;
    z-index: 2;
}

.section__7-box-icon-right .section__7-box-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
    margin: 7px 0px 7px 0px;
}

.section__7-box-icon-right .section__7-box-icon p {
    margin-left: 10px;
    min-width: fit-content;
}

.section__7-box-icon-item {
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-right: 127px;
    z-index: 2;
}

.section__7-box-item .section__7-box-icon {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.section__7-box-icon p {
    color: var(--color-text-black);
    font-size: 15px;
}

.section__7-box-icon p a {
    color: var(--color-red);
    font-weight: 500;
}

.section__7-box-icon p a:hover {
    text-decoration: underline;
}

.section__7-box-text-line {
    border-top: 2px solid var(--color-red);
    content: '';
    display: block;
    width: 20px;
    margin-top: 10px;
    padding: 0px !important;
}

.section__7-box-title {
    font-weight: 600;
    margin-bottom: 10px;
    margin: 10px 0px 10px 0px;
}

.section__7-box-description {
    font-weight: 500;
}

.section__7-box-icon span {
    background: var(--color-red);
    padding: 10px;
    border-radius: 14px;
    color: var(--color-text-white);
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}

.section__7-box-ricoh {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
}

.section__7-box-ricoh img {
    width: 250px;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
}

.section__7-box-ricoh-line {
    width: 2px;
    background-color: var(--color-red);
    height: 90px;
    border-radius: 100px;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -70px;
    z-index: -1;
}

#section__7-background {
    /* background-image: url(../images/image_baner-wirtualne.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: -webkit-fill-available;
    position: absolute;
    margin: 20px 0px 20px 0px;
}

.section__7-more {
    color: var(--color-text-white);
    margin-top: 50px;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0;
}

.section__7-more a {
    display: flex;
    z-index: 2;
    cursor: pointer;
    transition: .2s ease;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    background: var(--color-gray);
    max-width: fit-content;
    justify-content: center;
    align-items: center;
    padding: 25px;
    border-radius: 20px;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

.section__7-more a:hover {
    background-color: var(--color-text-white);
    box-shadow: 0px 0px 100px 1px #bfbfbf;
    color: var(--color-text-black);
}


/* sekcja opinie */
/* slide js edit */

.section__opinions {
    margin-bottom: 50px;
}

.section__opinions-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.section__opinions-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

.section__opinions-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

.section__opinions-text-line {
    display: flex;
    flex-basis: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

.section__opinions-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

.section__opinions-box {
    border-radius: 30px;
    /* margin: 0px 10px 0px 10px; */
}

.section__opinions-box-text {
    background: #40404024;
    padding: 40px;
    color: var(--color-text-white);
    font-size: 15px;
    line-height: 24px;
    font-weight: 200;
    border-radius: 30px;
    max-height: fit-content;
}

.section__opinions-box-text span {
    font-size: 40px;
    color: var(--color-red);
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    transform: translateX(-3px);
}

.section__opinions-box-text p {
    font-size: 15px;
    line-height: 23px;
}

.section__opinions-box-item {
    display: flex;
    color: var(--color-text-white);
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    margin: 10px 40px 0px 40px;
    position: relative;
}

.section__opinions-box-item p {
    margin-bottom: 0;
}

.section__opinions-box-item span {
    font-weight: 400;
    font-size: 13px;
    color: var(--color-gray-light);
}

.section__opinions-box-name-star>span {
    color: var(--color-red);
    font-size: 20px;
}

.section__opinions-box-name {
    display: flex;
    flex-direction: column;
}

.section__opinions-box-name-star {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.section__opinions-box-name span {
    white-space: nowrap;
}

.splide__pagination {
    display: none;
}

/* sekcja 8 */

.section__8 {
    margin-bottom: 150px;
    position: relative;
}

.section__8-box {
    background: var(--color-text-white);
    padding: 50px 30px 50px 30px;
    border-radius: 20px;
    display: flex;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
    justify-content: space-between;
}

.section__8-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 100px;
    border-radius: 100px;
    margin: 0 auto;
}

.element__8 {
    width: 70px;
    height: 70px;
    border: 1px solid var(--color-red);
    border-radius: 100px;
    position: absolute;
    z-index: -1;
    opacity: 0.5;
    left: 100px;
    bottom: -30px;
}

.section__8-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 50px;
    flex-direction: column;
}

.section__8-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 200;
}

.section__8-text h3>span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

.section__8-text p {
    color: var(--color-text-white);
    margin-top: 30px;
    font-size: 15px;
}

.section__8-text p a {
    color: var(--color-red);
    font-weight: 600;
}

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

/* .section__8-text p>span {
    display: inline;
    background: var(--color-text-black);
    box-shadow: .5em 0 0 var(--color-text-black), -.5em 0 0 var(--color-text-black);
    padding: 10px;
    border-radius: 15px;
    margin: auto;
    line-height: 35px;
} */

.section__8-wykres {
    display: flex;
    justify-content: center;
    position: relative;
}

.section__8-wykres lottie-player:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #4e4d49, #4e4d49, #ffffff52);
    filter: blur(100px);
    z-index: -1;
    border-radius: 100px;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
}

.section__8-more {
    color: var(--color-text-white);
    margin-top: 50px;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0;
}

.section__8-more a {
    display: flex;
    z-index: 2;
    cursor: pointer;
    transition: .2s ease;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    background: var(--color-gray);
    max-width: fit-content;
    justify-content: center;
    align-items: center;
    padding: 25px;
    border-radius: 20px;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

.section__8-more a:hover {
    background-color: var(--color-text-white);
    box-shadow: 0px 0px 100px 1px #bfbfbf;
    color: var(--color-text-black);
}


/* sekcja 9 */

.section__9 {
    margin-bottom: 150px;
    position: relative;
}

.section__9-box {
    background: var(--color-text-white);
    padding: 50px 30px 50px 30px;
    border-radius: 20px;
    display: flex;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
    justify-content: space-between;
}

.section__9-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 100px;
    border-radius: 100px;
    margin: 0 auto;
}

.section__9-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    margin-top: 50px;
    flex-direction: column;
}

.section__9-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 200;
}

.section__9-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

/* mail i button */

.section__9-mail-button {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section__9-mail {
    max-width: 500px;
}

.section__9-button button {
    width: 300px;
    height: 80px;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-red);
    border: 2px solid var(--color-red);
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite
}

.section__9-button button:hover {
    font-family: 'Montserrat', sans-serif;
    height: 80px;
    font-size: 22px;
    background-color: var(--color-text-black);
    border: 2px solid var(--color-red);
    box-shadow: 0px 0px 100px 1px var(--color-red);
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.btn-check:focus+.btn,
.btn:focus {
    color: var(--color-text-white);
    background-color: var(--color-text-black);
    border-color: var(--color-red);
    outline: 0;
    box-shadow: 0px 0px 100px 1px var(--color-red);
}

div.section__9-button>button {
    background: var(--color-red);
    border: 2px solid var(--color-red);
}

/* sekcja faq */

.accordion a {
    color: var(--color-red);
    font-weight: 500;
}

.accordion-item h2.accordion-header {
    line-height: 1.7!important;
}

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

.section__faq {
    background: linear-gradient(0deg, rgba(64, 64, 64, 0) 0%, rgb(64 64 64 / 36%) 100%);
    margin-bottom: 100px;
}

.section__faq-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.section__faq-text p {
    display: block;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 0;
}

.section__faq-text p span {
    font-size: 30px;
    font-weight: 600;
    padding-right: 9px;
}

.section__faq-text-line {
    display: flex;
    margin-right: 20px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
    min-width: 40px;
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 7px;
}

.accordion-body {
    color: var(--color-text-faq);
    font-size: 15px;
}

.accordion-button {
    background-color: var(--color-text-black);
    color: var(--color-text-white);
}

.accordion-button::after {
    font-family: "Material Symbols Outlined";
    content: "expand_more";
    color: var(--color-gray-light);
    font-size: 25px;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button.collapsed {
    font-size: 13px;
}

.accordion-item {
    border: 0;
    color: var(--color-text-white);
    font-size: 13px;
    line-height: 30px;
}

.accordion-flush .accordion-item {
    border-top: 0;
    margin: 0px 0px 20px 0px;
    border-radius: 7px !important;
    background: var(--color-text-black);
}

.accordion-flush .accordion-item .accordion-button {
    font-size: 15px;
    border-radius: 7px;
}

.accordion-button:focus {
    z-index: 3;
    border-color: var(--color-gray-light);
    outline: 0;
    box-shadow: var(--color-text-black);
}

.accordion-button:not(.collapsed) {
    color: var(--color-text-white);
    background-color: var(--color-text-black);
    box-shadow: inset 0 calc(var(--color-gray-light) * -1) 0 var(--color-gray);
}

/* sekcja__10 */

/* footer */

.row.footer {
    position: relative;
}

/* .section__footer-services:after,
.section__footer-mail:after {
    display: block;
    content: "";
    height: 50%;
    position: absolute;
    border-right: 1px solid #7b7b7b80;
    margin-left: -41px;
} */

.footer {
    background: var(--color-text-black);
}

.section__footer-text-line {
    display: inline-block;
    margin-right: 20px;
    width: 50px;
    background-color: var(--color-red);
    height: 1px;
    border-radius: 100px;
}

.section__footer-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.section__footer-top {
    height: 150px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.section__footer-top-logo {
    display: flex;
}

.section__footer-bottom {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    margin: 50px 0px 50px 0px;
}

.section__footer-bottom div {
    flex: 1 1 auto;
    width: 200px;
}

.section__footer-text p {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.footer .section__footer-office-text a {
    color: var(--color-text-faq) !important;
    font-weight: 400 !important;
}

.footer .section__footer-office-text a:hover {
    color: var(--color-red) !important;
}

.section__footer-text img {
    margin-left: 10px;
    margin-right: 10px;
    width: 19px;
}

.section__footer-office-text {
    font-size: 15px;
    line-height: 32px;
    color: var(--color-text-faq);
    transition: .2s ease;
}

.section__footer-office-text-link {
    font-size: 15px;
    line-height: 32px;
    color: var(--color-text-faq);
    transition: .2s ease;
}

.section__footer-office-text-link:hover {
    margin-left: 3px;
    color: var(--color-red);
}

.section__footer-office {
    color: var(--color-text-white);
    /* border-right: 1px solid #7b7b7b80; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-width: thin;
}

.section__footer-office:before {
    font-family: "material symbols sharp";
    content: "home";
    color: var(--color-red);
    font-size: 40px;
    margin-left: -7px;
    font-variation-settings:
        'FILL' 0,
        'wght' 200,
        'GRAD' 200,
        'opsz' 48
}

.section__footer-phone {
    color: var(--color-text-white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    /* border-right: 1px solid #7b7b7b80; */
}

.section__footer-phone:before {
    font-family: "material symbols sharp";
    content: "call";
    color: var(--color-red);
    font-size: 40px;
    margin-left: -7px;
    font-variation-settings:
        'FILL' 0,
        'wght' 200,
        'GRAD' 200,
        'opsz' 48
}

.section__footer-mail {
    color: var(--color-text-white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    /* border-right: 1px solid #7b7b7b80; */
}

.section__footer-mail:before {
    font-family: "material symbols sharp";
    content: "mail";
    color: var(--color-red);
    font-size: 40px;
    margin-left: -3px;
    font-variation-settings:
        'FILL' 0,
        'wght' 200,
        'GRAD' 200,
        'opsz' 48
}

.section__footer-services {
    color: var(--color-text-white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    /* border-right: 1px solid #7b7b7b80; */
}

.section__footer-services:before {
    font-family: "material symbols sharp";
    content: "display_settings";
    color: var(--color-red);
    font-size: 40px;
    margin-left: -7px;
    font-variation-settings:
        'FILL' 0,
        'wght' 200,
        'GRAD' 200,
        'opsz' 48
}

.section__footer-copyright {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: space-between;
    column-gap: 18px;
    flex-wrap: wrap;
}

.section__footer-copyright .footer__year p,
.section__footer-copyright .footer__links a {
    font-size: 12px;
    color: var(--color-gray-light);
    margin-bottom: 0;
    position: relative;
}

.section__footer-copyright .footer__links a {
    text-decoration: none;
}

.section__footer-copyright .footer__links a:hover {
    text-decoration: underline;
}

.section__footer-copyright-line {
    display: flex;
    background-color: var(--color-gray);
    height: 1px;
    border-radius: 100px;
    flex: 1 1 auto;
}

.section__footer-copyright .footer__links a:not(:last-child)::after {
    width: 2px;
    height: 13px;
    content: "";
    background: #404040;
    position: absolute;
    margin-left: 9px;
    bottom: 3px;
}

span.section__footer-copyright-line:after {
    position: absolute;
    width: 2%;
    height: 1px;
    content: "";
    background: var(--color-red);
}

.footer__links {
    gap: 18px;
    display: flex;
}

@media (max-width: 500px) {

    .section__footer-copyright-line,
    span.section__footer-copyright-line:after {
        display: none;
    }
}

/* to top */

#to__top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 0px;
    border: none;
    outline: none;
    background-color: var(--color-red);
    color: var(--color-text-white);
    cursor: pointer;
    border-radius: 100px;
    height: 50px;
    width: 50px;
    transition: .2s ease;
}

#to__top:hover {
    background-color: #555;
    transition: .2s ease;
}

/*!--- nowa zakładka --- */
/*! zakladka System CRM */

#system-crm .video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* padding-top: 30px; */
    height: 0;
    overflow: hidden;
}

#system-crm .video-container iframe,
#system-crm .video-container object,
#system-crm .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#system-crm p a {
    color: var(--color-red);
    font-weight: 600;
}

#system-crm p a:hover {
    text-decoration: underline;
}

.baner__system-crm {
    display: flex;
    height: 500px;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    position: relative;
}

#system-crm .section__text-baner {
    padding: 0px 70px 0px 70px;
    display: flex;
}

#system-crm .section__text-h1 {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
    animation: fadeIn .5s ease;
}

#system-crm .section__text-h1 h1 {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 100;
}

#system-crm .section__text-h1 span {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 600;
}

#system-crm .section__baner-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    animation: fadeIn .5s ease;
}

/* system-crm sekcja 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 */

#system-crm .section__1 {
    margin-top: 50px;
    position: relative;
}

#system-crm .section__1-box {
    overflow: visible;
    margin-bottom: 40px;
}

#system-crm .section__4-text span {
    color: var(--color-text-white);
    font-size: 45px;
    font-weight: 700;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#system-crm .section__4-box {
    margin-bottom: 50px;
}

#system-crm .section__2,
#system-crm .section__3,
#system-crm .section__4,
#system-crm .section__5,
#system-crm .section__6,
#system-crm .section__7,
#system-crm .section__8,
#system-crm .section__9,
#system-crm .section__10 {
    margin-top: 150px;
    position: relative;
}

#system-crm .section__1::before,
#system-crm .section__2::before,
#system-crm .section__3::before,
#system-crm .section__4::before,
#system-crm .section__5::before,
#system-crm .section__6::before,
#system-crm .section__7::before,
#system-crm .section__8::before,
#system-crm .section__9::before,
#system-crm .section__10::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 30px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
    z-index: -1;
}

#system-crm .section__1 .section__1-box,
#system-crm .section__2 .section__2-box,
#system-crm .section__3 .section__3-box,
#system-crm .section__4 .section__4-box,
#system-crm .section__5 .section__5-box,
#system-crm .section__6 .section__6-box,
#system-crm .section__7 .section__7-box,
#system-crm .section__8 .section__8-box,
#system-crm .section__9 .section__9-box,
#system-crm .section__10 .section__10-box {
    background: var(--color-gray);
    padding: 70px 50px 50px 50px;
    border-radius: 15px;
    display: flex;
    justify-content: space-evenly;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
    max-width: fit-content;
    cursor: auto;
}

#system-crm .section__1-text,
#system-crm .section__2-text,
#system-crm .section__3-text,
#system-crm .section__4-text,
#system-crm .section__5-text,
#system-crm .section__6-text,
#system-crm .section__7-text,
#system-crm .section__8-text,
#system-crm .section__9-text,
#system-crm .section__10-text {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 30px;
    margin-top: 0px;
}

#system-crm .section__3-text-end,
#system-crm .section__6-text-end {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 20px;
    margin-top: 0px;
    background: #393939;
    padding: 20px;
    border-radius: 10px;
}

#system-crm .section__1-text .box-ikona,
#system-crm .section__2-text .box-ikona,
#system-crm .section__3-text .box-ikona,
#system-crm .section__4-text .box-ikona,
#system-crm .section__5-text .box-ikona,
#system-crm .section__6-text .box-ikona,
#system-crm .section__7-text .box-ikona,
#system-crm .section__8-text .box-ikona,
#system-crm .section__9-text .box-ikona,
#system-crm .section__10-text .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: absolute;
    top: -40px;
    color: #fff;
    font-size: 35px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#system-crm .section__1-text h2,
#system-crm .section__2-text h2,
#system-crm .section__3-text h2,
#system-crm .section__4-text h2,
#system-crm .section__5-text h2,
#system-crm .section__6-text h2,
#system-crm .section__7-text h2,
#system-crm .section__8-text h2,
#system-crm .section__9-text h2,
#system-crm .section__10-text h2 {
    color: var(--color-text-white);
    font-size: 38px;
    font-weight: 100;
}

#system-crm .section__1-text span,
#system-crm .section__2-text span,
#system-crm .section__3-text span,
#system-crm .section__4-text span,
#system-crm .section__5-text span,
#system-crm .section__6-text span,
#system-crm .section__7-text span,
#system-crm .section__8-text span,
#system-crm .section__9-text span,
#system-crm .section__10-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

#system-crm .section__1-text p,
#system-crm .section__2-text p,
#system-crm .section__3-text p,
#system-crm .section__4-text p,
#system-crm .section__5-text p,
#system-crm .section__6-text p,
#system-crm .section__7-text p,
#system-crm .section__8-text p,
#system-crm .section__9-text p,
#system-crm .section__10-text p {
    color: var(--color-text-white);
    line-height: 30px;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: left;
}

#system-crm .section__3-text-end p,
#system-crm .section__4-text-end p,
#system-crm .section__6-text-end p {
    color: var(--color-text-white);
    line-height: 30px;
    text-align: left;
    margin-bottom: 0px;
}

#system-crm .section__1 img,
#system-crm .section__2 img,
#system-crm .section__3 img,
#system-crm .section__4 img,
#system-crm .section__5 img,
/*todo bez 6*/
#system-crm .section__7 img,
#system-crm .section__8 img,
#system-crm .section__9 img {
    margin-bottom: 50px;
    display: flex;
    width: 1100px;
    margin: 0 auto;
    margin-top: 50px;
    border-radius: 10px;
}

#system-crm iframe.podpis {
    margin: 0 auto;
    margin-top: 30px;
    display: block;
}

#system-crm .section__8-wykres {
    margin: 0 auto;
    padding-top: 50px;
}

@media (max-width: 1400px) {

    #system-crm .section__1 img,
    #system-crm .section__2 img,
    #system-crm .section__3 img,
    #system-crm .section__4 img,
    #system-crm .section__5 img,
    /*todo bez 6*/
    #system-crm .section__7 img,
    #system-crm .section__8 img,
    #system-crm .section__9 img {
        width: 100%;
    }
}

#system-crm .section__3-box-item,
#system-crm .section__4-box-item,
#system-crm .section__6-box-item {
    display: flex;
    flex-direction: row;
    justify-content: space-start;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

#system-crm .section__3-box-item-text,
#system-crm .section__4-box-item-text,
#system-crm .section__6-box-item-text {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex: 1 1;
    gap: 10px;
}

#system-crm .section__3-box-item-text span,
#system-crm .section__4-box-item-text span,
#system-crm .section__6-box-item-text span {
    color: var(--color-red);
    font-size: 30px;
    font-weight: 700;
}

#system-crm .section__3-box-item-text p,
#system-crm .section__4-box-item-text p,
#system-crm .section__6-box-item-text p {
    color: var(--color-gray-light);
    text-align: left;
    line-height: 28px;
    margin-bottom: 0;
}

#system-crm .section__6-img {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    gap: 10px;
}

#system-crm .section__6-img img {
    max-width: 500px;
}

#system-crm .section__10 {
    background: none;
    z-index: 2;
}

/*! sekcja 10 mail */

#system-crm .section__10-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    margin-top: 100px;
}

#system-crm .section__10-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0px;
}

#system-crm .section__10-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#system-crm .section__10-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#system-crm .section__10-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#system-crm .section__10-b-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    row-gap: 50px;
    column-gap: 30px;
}

#system-crm .section__10-b-box-1 {
    display: flex;
    flex-direction: column;
    background: var(--color-text-white);
    padding: 70px 50px 50px 50px;
    border-radius: 15px;
    box-shadow: 0px 0px 99px #00000026;
    flex: 1 1 30%;
}

#system-crm p.section__10-b-title {
    font-weight: bold;
}

#system-crm p.section__10-b-description {
    margin-bottom: 0;
}

#system-crm .section__10-b-box div .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    /* position: absolute;
    left: 30px;
    top: -40px;*/
    color: #fff;
    font-size: 35px;
    box-shadow: 0px 0px 99px #00000080;
    margin-top: -110px;
}

/* sekcja 11 */

#system-crm .section__11 {
    margin-bottom: 150px;
    position: relative;
    margin-top: 200px;
}

#system-crm .section__11-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 200px;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 50px;
    position: absolute;
    top: -270px;
    left: 50%;
    z-index: 1;
}

#system-crm .section__11-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    flex-direction: column;
}

#system-crm .section__11-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 100;
}

#system-crm .section__11-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

/* sekcja 12 */

#system-crm .section__faq {
    background: linear-gradient(0deg, rgba(64, 64, 64, 0) 0%, rgb(64 64 64 / 36%) 100%);
    margin-bottom: 100px;
}

/*!--- nowa zakładka --- */
/*! zakladka Publikacja ofert */

#publikacja-ofert p a {
    color: var(--color-red);
    font-weight: 600;
}

#publikacja-ofert p a:hover {
    text-decoration: underline;
}

.baner__publikacja-ofert {
    display: flex;
    height: 600px;
    align-items: center;
    justify-content: center;
    padding-top: 195px;
    margin-bottom: 200px;
}

#publikacja-ofert .section__text-baner {
    border-radius: 20px;
    display: flex;
    position: relative;
}

#publikacja-ofert .section__text-h1 {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
    animation: fadeIn .5s ease;
    position: absolute;
    top: 210px;
    left: 0;
}

#publikacja-ofert .section__text-h1 span {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 600;
}

/* sekcja 1 */

#publikacja-ofert .section__1 {
    margin-top: 300px;
}

#publikacja-ofert .section__1-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
    flex-direction: column;
}

#publikacja-ofert .section__1-text h3 {
    color: var(--color-text-white);
    font-size: 34px;
    font-weight: 100;
    margin-bottom: 50px;
}

#publikacja-ofert .section__1-text span {
    color: var(--color-text-white);
    font-size: 38px;
    font-weight: 600;
}

#publikacja-ofert .section__baner-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    animation: fadeIn .5s ease;
    margin-bottom: 50px;
}

#publikacja-ofert .section__1-box-item {
    background: var(--color-text-white);
    padding: 70px 70px 70px 70px;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
    z-index: 1;
    row-gap: 20px;
}

#publikacja-ofert .section__1-box-item div>span {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
    background: var(--color-red);
    color: var(--color-text-white);
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 10px;
    width: max-content;
    height: max-content;
}

#publikacja-ofert .section__1-box-item p span {
    font-weight: 700;
    color: var(--color-black);
}

/* sekcja 2 */

#publikacja-ofert .section__2 {
    margin-bottom: 100px;
    position: relative;
}

#publikacja-ofert .section__2-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    margin-top: 100px;
}

#publikacja-ofert .section__2-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#publikacja-ofert .section__2-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#publikacja-ofert .section__2-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#publikacja-ofert .section__2-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#publikacja-ofert .section__2::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: -30px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
}

#publikacja-ofert .section__2-a-partners {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 100px;
    flex-wrap: wrap;
    grid-gap: 20px;
}

#publikacja-ofert .section__2-a-partners img:hover {
    mix-blend-mode: normal;
    transform: scale(1.1);
    transition: .2s ease;
}

#publikacja-ofert .section__2-a-partners img {
    flex-basis: 10%;
    max-width: fit-content;
    transition: .2s ease;
    /* mix-blend-mode: luminosity; */
    transform: scale(1);
}

#publikacja-ofert .section__2 .accordion-body {
    background: #fff;
}

.section__2-a-partners-more {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.section__2-a-partners-more img {
    display: flex;
    width: auto;
    gap: 23px;
    height: fit-content;
}

/* sekcja 3 */

#publikacja-ofert .section__3 {
    position: relative;
    margin-bottom: 0px;
}

#publikacja-ofert .section__3-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    margin-top: 100px;
}

#publikacja-ofert .section__3-a-text-line {
    display: flex;
    background-color: var(--color-red);
    height: 2px;
    min-width: 40px;
    border-radius: 100px;
}

#publikacja-ofert .section__3-a-text p {
    font-size: 30px;
    font-weight: 600;
    padding-right: 9px;
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    margin-bottom: 0;
}

#publikacja-ofert .section__3-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#publikacja-ofert .section__3-a-text-line_end {
    display: flex;
    width: 120px;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    /* margin-bottom: 58px; */
    flex: 1 1 auto;
    min-width: 20px;
}

#publikacja-ofert .section__3::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0px;
    background: var(--color-text-black);
    opacity: 1;
    z-index: -10;
}

#publikacja-ofert .section__3-box-item {
    display: flex;
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
}

#publikacja-ofert .section__3-box-item div>span {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
    background: var(--color-red);
    color: var(--color-text-white);
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 10px;
    width: max-content;
    height: max-content;
}

#publikacja-ofert .section__3-box-item p {
    color: var(--color-text-white);
}

#publikacja-ofert .section__3-box-item div {
    margin-bottom: 20px;
    line-height: 1.875rem;
    flex: 1 1 auto;
}

/* sekcja 4 */

#publikacja-ofert .section__4 {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    margin: 0;
}

#publikacja-ofert .section__4-title-a,
#publikacja-ofert .section__4-title {
    color: var(--color-text-white);
}

#publikacja-ofert .section__4-title-a span {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
    background: var(--color-red);
    color: var(--color-text-white);
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 10px;
    width: max-content;
    height: max-content;
}

#publikacja-ofert .section__4-title-a {
    display: flex;
    flex-direction: column;
}

#publikacja-ofert .section__4-title-a p {
    margin-top: 40px;
    border: 1px solid var(--color-red);
    padding: 30px;
    border-radius: 10px;
}

#publikacja-ofert .section__4-title h2 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 80px;
}

#publikacja-ofert .section__4-items {
    margin-bottom: 20px;
}

#publikacja-ofert .section__4-items p {
    color: var(--color-text-white);
}

#publikacja-ofert .section__4-items span {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' -25, 'opsz' 48;
    color: var(--color-red);
    font-size: 40px;
    margin-bottom: 10px;
    transform: translateX(-5px);
}

#publikacja-ofert .section__4::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #a5092d87 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
    z-index: -10;
}

/* sekcja 5 */

#publikacja-ofert .section__5 {
    position: relative;
    margin-bottom: 0px;
    z-index: 1;
}

#publikacja-ofert .section__5-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 100px;
}

#publikacja-ofert .section__5-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#publikacja-ofert .section__5-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#publikacja-ofert .section__5-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#publikacja-ofert .section__5-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#publikacja-ofert .section__5::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
}

#publikacja-ofert .section__5 .section__5-a-description {
    margin-bottom: 100px;
}

#publikacja-ofert .section__5 .section__5-c-description {
    margin-bottom: 100px;
    margin-top: 50px;
}

#publikacja-ofert .section__5 .section__5-a-description p,
#publikacja-ofert .section__5 .section__5-c-description p {
    color: var(--color-text-white);
}

#publikacja-ofert .section__2-text-under p {
    color: var(--color-text-white);
    padding-top: 50px;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

#publikacja-ofert .section__5-b-box {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    row-gap: 60px;
    column-gap: 30px;
}

#publikacja-ofert .section__5-b-box-1 {
    display: flex;
    flex-direction: column;
    flex: 1 1 30%;
    background: var(--color-gray);
    padding: 70px 50px 50px 50px;
    border-radius: 15px;
    box-shadow: 0px 0px 99px #00000026;
}

#publikacja-ofert .section__5-b-box div .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 35px;
    margin-top: -110px;
}

#publikacja-ofert p.section__5-b-title {
    font-weight: 500;
    color: var(--color-text-white);
}

#publikacja-ofert p.section__5-b-description {
    color: var(--color-gray-light);
}

/* sekcja 5a dodana*/

.section__5-a .container {
    position: relative;
}

#publikacja-ofert .section__5-a {
    position: relative;
    margin-bottom: -20px;
    z-index: 1;
}

#publikacja-ofert .section__5-a::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
}

#publikacja-ofert .section__5-a-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 100px;
}

#publikacja-ofert .section__5-a-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#publikacja-ofert .section__5-a-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#publikacja-ofert .section__5-a-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#publikacja-ofert .section__5-a-a-box-1 {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    background: var(--color-gray);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0px 0px 99px #00000026;
    align-items: flex-start;
    gap: 20px;
}

#publikacja-ofert .section__5-a-a-box-1 img {
    max-width: 200px;
}

#publikacja-ofert .section__5-a-a-box-1 p {
    color: var(--color-text-white);
    margin-bottom: 0px;
}

#publikacja-ofert .section__5-a-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#publikacja-ofert .section__5-a-a-box {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    row-gap: 30px;
    column-gap: 30px;
}


/* sekcja 6 */

#publikacja-ofert .section__6 {
    margin-bottom: 150px;
    position: relative;
    margin-top: 100px;
}

#publikacja-ofert .section__6-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 50px;
    position: absolute;
    top: -48px;
    left: 50%;
    z-index: 1;
}

#publikacja-ofert .section__6-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    flex-direction: column;
}

#publikacja-ofert .section__6-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 100;
}

#publikacja-ofert .section__6-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

#publikacja-ofert .section__faq {
    background: linear-gradient(0deg, rgba(64, 64, 64, 0) 0%, rgb(64 64 64 / 36%) 100%);
    margin-bottom: 100px;
}

/*!--- nowa zakładka --- */
/*! zakladka Strona WWW */

#strona-www p a {
    color: var(--color-red);
    font-weight: 600;
}

#strona-www p a:hover {
    text-decoration: underline;
}

#strona-www .baner__strona-www {
    display: flex;
    height: 500px;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    position: relative;
}

#strona-www .section__text-baner {
    padding: 0px 70px 0px 70px;
    border-radius: 20px;
    display: flex;
}

#strona-www .section__text-h1 {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
    animation: fadeIn .5s ease;
}

#strona-www .section__text-h1 h1 {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 100;
}

#strona-www .section__text-h1 span {
    color: var(--color-text-white);
    font-size: 55px;
    font-weight: 700;
    background: linear-gradient(90deg, #c70400, #3391ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#strona-www .section__baner-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    animation: fadeIn .5s ease;
}

/* sekcja 1 */

#strona-www .section__1 .section__1-image {
    justify-content: center;
    position: relative;
}

#strona-www .section__1 .section__1-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 500px;
    background: linear-gradient(0deg, #722e2d, #547fae);
    box-shadow: 0px 0px 10px 100px #19171b;
    filter: blur(100px);
    z-index: -1;
    border-radius: 100px;
    top: 0;
}

#strona-www .section__1 .section__1-image img {
    display: flex;
    justify-content: center;
    width: 60%;
}

#strona-www .section__1 .section__1-box {
    background: var(--color-gray);
    padding: 50px 70px 50px 70px;
    border-radius: 15px;
    display: flex;
    justify-content: space-evenly;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
    max-width: fit-content;
    cursor: auto;
    margin-top: 50px;
    gap: 50px;
}

#strona-www .section__1-more {
    color: var(--color-text-white);
    margin-top: 50px;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0;
}

#strona-www .section__1-more p {
    display: flex;
    z-index: 2;
    cursor: pointer;
    transition: .2s ease;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    background: var(--color-gray);
    max-width: fit-content;
    justify-content: center;
    align-items: center;
    padding: 25px;
    border-radius: 20px;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

#strona-www .section__1-more p:hover {
    background-color: var(--color-text-white);
    box-shadow: 0px 0px 100px 1px var(--color-red);
    color: var(--color-text-black);
}



#strona-www .section__1-box>img {
    display: flex;
    width: 400px;
}

#strona-www .section__1-text {
    color: var(--color-text-white);
    line-height: 30px;
    text-align: center;
}

#strona-www .section__1-ikony {
    display: flex;
    margin-top: 0px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 40px;
    column-gap: 40px;
}

#strona-www .section__1-ikony .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#strona-www .col-md-12.section__1-ikony>div {
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;
    width: 150px;
    align-items: center;
}

#strona-www .section__1-box-text {
    color: var(--color-text-white);
    line-height: 30px;
    text-align: center;
    margin: 100px 0px 50px 0px;
}

/* sekcja Infinity demo */

#strona-www .section__1-box-text-infinity-demo {
    color: var(--color-text-white);
    line-height: 40px;
    text-align: center;
    margin: 100px 0px 50px 0px;
    font-size: 40px;
    font-weight: 600;
}

#strona-www .section__demo-infinity {
    row-gap: 40px;
    column-gap: 40px;
    margin-top: 100px;
}

#strona-www .section__demo-infinity a {
    display: flex;
    flex: 1 1 auto;
    width: 400px;
    padding: 0;
}

/* #strona-www .section__demo-infinity a:before {
    content: "star";
    position: absolute;
    top: -20px;
    left: 20px;
    background: red;
    width: 200px;
    height: 200px;
    border-radius: 100px;
    opacity: .5;
    font-family: 'Material Symbols Outlined';
} */

#strona-www .section__demo_infinity-box-1,
#strona-www .section__demo_infinity-box-2,
#strona-www .section__demo_infinity-box-3 {
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0px 50px 99px #00000026;
    transition: .2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 400px;
    height: 400px;
    overflow: hidden;
}

#strona-www .section__demo_infinity-box-1 {
    background-image: url(https://virgo.galactica.pl/themes/virgo/assets/images/infinity-demo-1.webp);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: 0.5;
    box-shadow: inset 0px 0px 100px 20px #00000063;
    transition: .2s ease;
}

#strona-www .section__demo_infinity-box-2 {
    background-image: url(https://virgo.galactica.pl/themes/virgo/assets/images/infinity-demo-2.webp);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: 0.5;
    box-shadow: inset 0px 0px 100px 20px #00000063;
}

#strona-www .section__demo_infinity-box-3 {
    background-image: url(https://virgo.galactica.pl/themes/virgo/assets/images/infinity-demo-3.webp);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: 0.5;
    box-shadow: inset 0px 0px 100px 20px #00000063;
}

#strona-www .section__demo_infinity-box-1:hover,
#strona-www .section__demo_infinity-box-2:hover,
#strona-www .section__demo_infinity-box-3:hover {
    mix-blend-mode: normal;
    opacity: 1;
    box-shadow: none;
    transition: .2s ease;
}

#strona-www .demo__1 {
    display: flex;
    gap: 10px;
    background: var(--color-red);
    color: #fff;
    border: 0;
    padding: 10px 20px;
    border-radius: 10px;
    position: absolute;
    bottom: -46px;
    transition: .2s ease;
}

#strona-www .section__demo_infinity-box-1:hover .demo__1,
#strona-www .section__demo_infinity-box-2:hover .demo__1,
#strona-www .section__demo_infinity-box-3:hover .demo__1 {
    bottom: 50px;
}

@media (max-width: 768px) {
    #strona-www .section__demo_infinity-box-1,
    #strona-www .section__demo_infinity-box-2,
    #strona-www .section__demo_infinity-box-3 {
        mix-blend-mode: normal;
        opacity: 1;
        box-shadow: none;
        margin-left: 15px;
        margin-right: 15px;
    }
    #strona-www .demo__1 {
        bottom: 50px;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 50%;
        width: fit-content;
        height: fit-content;
    }
}

/* sekcja 2 */

#strona-www .section__2 {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    margin: 0;
}

#strona-www .section__2 .row:before {
    content: "";
    position: absolute;
    top: -15px;
    right: 10%;
    border: 1px solid var(--color-red);
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

#strona-www .section__2::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #a5092d87 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
    z-index: -10;
}

#strona-www .section__2-title h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 80px;
}

#strona-www .section__2-title {
    color: var(--color-text-white);
}

#strona-www .section__2-items {
    margin-bottom: 20px;
}

#strona-www .section__2-items span {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' -25, 'opsz' 48;
    color: var(--color-red);
    font-size: 40px;
    margin-bottom: 10px;
    transform: translateX(-5px);
}

#strona-www .section__2-items p strong {
    color: var(--color-text-white);
    line-height: 1.875rem;
    font-weight: 600;
}

#strona-www .section__2-items p {
    color: var(--color-gray-light);
}

/* sekcja 3 */

#strona-www .section__3-standard {
    margin: 0px 0px 100px 0px;
}

#strona-www .section__3-standard-box {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    position: relative;
    gap: 20px;
    background: var(--color-text-white);
    padding: 50px;
    border-radius: 15px;
    flex: 0 1 70%;
    flex-wrap: wrap;
}

#strona-www .section__3-standard-box .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -37px;
}

#strona-www .section__3-standard-box p {
    color: var(--color-text-black);
    font-weight: 500;
}

#strona-www .section__3 {
    position: relative;
    margin-bottom: 0px;
    z-index: 1;
    padding-bottom: 100px;
}

#strona-www .section__3-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    margin-top: 100px;
}

#strona-www .section__3-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#strona-www .section__3-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#strona-www .section__3-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#strona-www .section__3-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#strona-www .section__3-box {
    background: var(--color-text-white);
    padding: 50px;
    border-radius: 15px;
    display: flex;
    justify-content: flex-start;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
    row-gap: 30px;
}

#strona-www .section__3-box:after {
    content: "";
    position: absolute;
    top: -50px;
    right: 20%;
    border: 1px solid var(--color-red);
    width: 100px;
    height: 100px;
    border-radius: 100%;
    z-index: -1;
    opacity: 1;
}

#strona-www .section__3-b-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

#strona-www .section__3-b-text a {
    width: fit-content;
}

#strona-www .section__3-b-text .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -90px;
}

#strona-www .section__3-box p {
    display: inline-block;
    margin-bottom: 0;
    /* gap: 10px; */
    font-weight: 500;
}

#strona-www .section__3-b-text p span {
    font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 0, 'opsz' 48;
    color: var(--color-red);
    font-size: 30px;
    margin-bottom: 0px;
    transform: translateY(7px);
    margin-right: 7px;
}

#strona-www button.button__api {
    background: #B90530;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
    min-height: 50px;
    width: calc(100% + 60px);
    min-width: 100px;
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation-delay: 2s;
}

#strona-www button.button__api:hover {
    background: #404040;
    min-height: 50px;
    width: calc(100% + 70px);
    min-width: 100px;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

#strona-www button.button__api span {
    background: #E3053A;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

#strona-www button.button__api:hover span {
    background: #40404000;
}

#strona-www .section__3::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0px;
    background: var(--color-text-black);
    opacity: 1;
    z-index: -1;
}

/* sekcja 4 */

#strona-www .section__4 {
    position: relative;
    margin-bottom: 0px;
    z-index: 1;
}

#strona-www .section__4 .container {
    position: relative;
}

#strona-www .section__4-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    margin-top: 100px;
}

#strona-www .section__4-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#strona-www .section__4-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#strona-www .section__4-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#strona-www .section__4-a-text-line_end {
    display: flex;
    flex: 1 1 auto;
    min-width: 20px;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
}

#strona-www .section__4-b-box {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    row-gap: 50px;
    column-gap: 30px;
}

#strona-www .section__4-b-box-1 {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 400px;
    background: var(--color-gray);
    padding: 70px 50px 50px 50px;
    border-radius: 15px;
    box-shadow: 0px 0px 99px #00000026;
}

#strona-www .section__4-b-box div .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 35px;
    margin-top: -110px;
}

#strona-www p.section__4-b-title {
    font-weight: 500;
    color: var(--color-text-white);
}

#strona-www p.section__4-b-description {
    color: var(--color-gray-light);
}

/* sekcja 5 */

#strona-www .section__5 {
    margin-bottom: 150px;
    position: relative;
    margin-top: 200px;
}

#strona-www .section__5-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 50px;
    position: absolute;
    top: -117px;
    left: 50%;
    z-index: 1;
}

#strona-www .section__5-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    flex-direction: column;
}

#strona-www .section__5-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 100;
}

#strona-www .section__5-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

#strona-www .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 80px;

}

#strona-www .video-container iframe,
#strona-www .video-container object,
#strona-www .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* sekcja faq */

#strona-www .section__faq {
    background: linear-gradient(0deg, rgba(64, 64, 64, 0) 0%, rgb(64 64 64 / 36%) 100%);
    margin-bottom: 100px;
}

/*!--- nowa zakładka --- */
/*! zakladka Wirtualny spacer */

#wirtualny-spacer .video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* padding-top: 30px; */
    height: 0;
    overflow: hidden;
}

#wirtualny-spacer .video-container iframe,
#wirtualny-spacer .video-container object,
#wirtualny-spacer .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#wirtualny-spacer p a {
    color: var(--color-red);
    font-weight: 600;
}

#wirtualny-spacer p a:hover {
    text-decoration: underline;
}

#wirtualny-spacer .baner__wirtualny-spacer {
    display: flex;
    height: 500px;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    position: relative;
}

#wirtualny-spacer .section__text-baner {
    padding: 0px 70px 0px 70px;
    border-radius: 20px;
    display: flex;
}

#wirtualny-spacer .section__text-h1 {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
    animation: fadeIn .5s ease;
}

#wirtualny-spacer .section__text-h1 h1 {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 100;
}

#wirtualny-spacer .section__text-h1 span {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 600;
}

/* sekcja 1 */

#wirtualny-spacer #section__1-baner {
    height: auto;
    width: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    display: flex;
}

#wirtualny-spacer .section__4-box-line {
    border-top: 2px solid var(--color-red);
    content: '';
    display: block;
    width: 20px;
    margin-top: 10px;
}

#wirtualny-spacer .section__1-baner-text {
    color: var(--color-text-white);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    position: relative;
}

#wirtualny-spacer .section__1-baner-text .box-text {
    display: flex;
    flex-direction: column;
    gap: 50px;
    flex: 0 1 50%;
}

#wirtualny-spacer .section__1-baner-text .box-text p {
    color: var(--color-gray-light);
    margin-bottom: 0;
}

#wirtualny-spacer .section__1-baner-text .box-text strong {
    color: var(--color-text-white);
    font-size: 22px;
    font-weight: 600;
}

#wirtualny-spacer .section__1-baner img.ricoh {
    position: absolute;
    right: 10%;
    bottom: 0;
    width: 320px;
}

#wirtualny-spacer .section__1-baner {
    position: relative;
    height: 450px;
}

#wirtualny-spacer .section__1-baner-text .box-ikona {
    background: var(--color-text-white);
    display: flex;
    width: 100px;
    height: 100px;
    padding: 13px;
    border-radius: 30px;
    position: absolute;
    top: -50px;
    left: 0px;
}

/* sekcja 2 */

#wirtualny-spacer .section__2 {
    margin-top: 100px;
    margin-bottom: 0px;
    row-gap: 50px;
    column-gap: 30px;
}

#wirtualny-spacer .section__2-box:after {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--color-red);
    bottom: 50px;
    left: 50px;
}

#wirtualny-spacer .section__2-box:nth-child(2):before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    display: block;
    top: 100px;
    right: -50px;
    border-radius: 100%;
    border: 1px solid var(--color-red);
    z-index: -1;
}

#wirtualny-spacer .section__text-h3 {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
    animation: fadeIn .5s ease;
}

#wirtualny-spacer .section__text-h3 h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 100;
}

#wirtualny-spacer .section__text-h3 span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

#wirtualny-spacer .section__baner-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    animation: fadeIn .5s ease;
}

#wirtualny-spacer .row.section__2 .section__2-box {
    background: var(--color-gray);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: inherit;
    flex: 1 1 auto;
    width: 450px;
}

#wirtualny-spacer .section__2-title {
    color: var(--color-text-white);
    font-weight: 600;
    font-size: 26px;
    line-height: 35px;
    margin-top: 30px;
}

#wirtualny-spacer .section__2-description {
    line-height: 30px;
    color: var(--color-text-faq);
}

#wirtualny-spacer .section__2-box .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: absolute;
    top: -40px;
}

#wirtualny-spacer .row.section__2>div:nth-child(2),
#wirtualny-spacer .row.section__2>div:nth-child(4) {
    margin-top: 0px;
}

/* sekcja 3 */

#wirtualny-spacer .section__3 {
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
}

#wirtualny-spacer .section__3::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: -30px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
}

#wirtualny-spacer .section__3-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 100px;
}

#wirtualny-spacer .section__3-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#wirtualny-spacer .section__3-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#wirtualny-spacer .section__3-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#wirtualny-spacer .section__3-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#wirtualny-spacer .section__3 .section__3-a-description {
    margin-bottom: 20px;
}

#wirtualny-spacer .section__3 .section__3-a-description p {
    color: var(--color-text-white);
    /* margin: 0px 0px 40px 70px; */
}

#wirtualny-spacer .section__3-box-item {
    background: var(--color-text-white);
    padding: 50px;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: self-start;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
    z-index: 1;
    row-gap: 20px;
}

#wirtualny-spacer .section__3-box-item div>span {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
    background: var(--color-red);
    color: var(--color-text-white);
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 10px;
    width: max-content;
    height: max-content;
}

#wirtualny-spacer .section__3-box-item p {
    font-weight: 500;
    margin-bottom: 0px;
}

#wirtualny-spacer .section__3-box-item p span {
    font-weight: 700;
    color: var(--color-black);
}

#wirtualny-spacer iframe.panotica {
    margin: 50px 0px 50px 0px;
    z-index: 10;
}

/* sekcja 4 */

#wirtualny-spacer .section__4 {
    margin-bottom: 50px;
    position: relative;
    z-index: 0;
}

#wirtualny-spacer .section__4::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
}

#wirtualny-spacer .section__4-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 100px;
}

#wirtualny-spacer .section__4-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#wirtualny-spacer .section__4-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#wirtualny-spacer .section__4-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#wirtualny-spacer .section__4-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#wirtualny-spacer .section__4 .section__4-a-description {
    margin-bottom: 100px;
}

#wirtualny-spacer .section__4 .section__4-a-description p {
    color: var(--color-text-white);
}

#wirtualny-spacer .section__4-b-box {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
    z-index: 2;
    padding-left: 0px;
    padding-right: 0px;
    row-gap: 50px;
    column-gap: 30px;
}

#wirtualny-spacer .section__4-b-box-1 {
    display: flex;
    flex-direction: column;
    background: var(--color-gray);
    padding: 70px 30px 30px 30px;
    border-radius: 15px;
    flex: 1 1 auto;
    width: 400px;
    box-shadow: 0px 0px 99px #00000026;
}

#wirtualny-spacer .section__4-b-box div .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 35px;
    margin-top: -110px;
}

#wirtualny-spacer p.section__4-b-title {
    font-weight: 500;
    color: var(--color-text-white);
}

#wirtualny-spacer p.section__4-b-description {
    color: var(--color-gray-light);
    display: inline-block;
    position: relative;
    padding-left: 35px;
    flex-direction: column;
}

#wirtualny-spacer p.section__4-b-description span {
    color: var(--color-text-white);
}

#wirtualny-spacer p.section__4-b-description:before {
    position: absolute;
    content: "check";
    font-family: 'Material Symbols Sharp';
    font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 48;
    color: var(--color-text-white);
    font-size: 30px;
    top: 0;
    transform: translateY(-8px);
    left: 0;
}

/* sekcja 5 */

#wirtualny-spacer .section__5 {
    margin-bottom: 0px;
    position: relative;
}

#wirtualny-spacer .section__5::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: -80px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
}

#wirtualny-spacer .section__5 {
    position: relative;
    margin-bottom: 0px;
    z-index: 1;

}

#wirtualny-spacer .section__5-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

#wirtualny-spacer .section__5-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#wirtualny-spacer .section__5-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#wirtualny-spacer .section__5-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#wirtualny-spacer .section__5-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#wirtualny-spacer .section__5 .section__5-a-description {
    margin-bottom: 20px;
}

#wirtualny-spacer .section__5 .section__5-a-description p {
    color: var(--color-text-white);
    /* margin: 0px 0px 40px 70px; */
}

#wirtualny-spacer .section__5-b-box {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
    z-index: 2;
    margin-top: 50px;
    padding-right: 0;
    padding-left: 0;
    row-gap: 60px;
    column-gap: 30px;
}

#wirtualny-spacer .section__5-b-box-1 {
    display: flex;
    flex-direction: column;
    background: var(--color-gray);
    padding: 70px 30px 30px 30px;
    border-radius: 15px;
    box-shadow: 0px 0px 99px #00000026;
    flex: 1 1 auto;
    width: 400px;
}

#wirtualny-spacer .section__5-b-box div .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 35px;
    margin-top: -110px;
}

#wirtualny-spacer p.section__5-b-description {
    color: var(--color-gray-light);
    display: flex;
    gap: 8px;
}

/* sekcja 6*/

#wirtualny-spacer .section__6 {
    margin-bottom: 0px;
    padding-top: 0px;
    position: relative;
    z-index: 1;
    background: none;
}

#wirtualny-spacer .section__6::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: -30px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
}

#wirtualny-spacer .section__6-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 100px;
}

#wirtualny-spacer .section__6-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#wirtualny-spacer .section__6-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#wirtualny-spacer .section__6-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#wirtualny-spacer .section__6-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#wirtualny-spacer .section__6 .section__6-a-description {
    margin-bottom: 20px;
}

#wirtualny-spacer .section__6 .section__6-b-description {
    margin-bottom: 50px;
    margin-top: 50px;
}

#wirtualny-spacer .section__6 .section__6-c-description {
    margin-bottom: 50px;
    margin-top: 50px;
}

#wirtualny-spacer .section__6 .section__6-a-description p,
#wirtualny-spacer .section__6 .section__6-b-description p {
    color: var(--color-text-white);
    /* margin: 0px 0px 40px 70px; */
}

#wirtualny-spacer .section__6 .section__6-c-description p {
    color: var(--color-text-white);
    margin-bottom: 0px;
}

#wirtualny-spacer .section__6-box-item {
    background: var(--color-text-white);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
    z-index: 1;
    row-gap: 20px;
}

#wirtualny-spacer .section__6-box-item.new {
    background: var(--color-text-black);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
    z-index: 1;
    row-gap: 20px;
    flex-wrap: wrap;
}

#wirtualny-spacer .section__6-box-item div {
    flex: 1 1 300px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
}

#wirtualny-spacer .section__6-box-item.new div {
    flex: 1 1 300px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: row;
}

#wirtualny-spacer .section__6-box-item div>span {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
    background: var(--color-red);
    color: var(--color-text-white);
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 10px;
    width: max-content;
    height: max-content;
}

#wirtualny-spacer .section__6-box-item.new div>span {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    background: #40404000;
    color: #ff0015;
    padding: 0px;
    border-radius: 15px;
    margin-bottom: 0px;
    width: max-content;
    height: max-content;
}

#wirtualny-spacer .section__6-box-item p {
    font-weight: 500;
    margin-bottom: 0;
}

#wirtualny-spacer .section__6-box-item.new p {
    color: var(--color-text-white);
    font-weight: 500;
    margin-bottom: 0;
}

#wirtualny-spacer .section__6 .button__baner {
    background: #B90530;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
    min-height: 50px;
    width: calc(100% + 60px);
    min-width: 100px;
    margin-top: 0px;
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

#wirtualny-spacer .section__6 .button__baner:hover {
    background: #404040;
    min-height: 50px;
    width: calc(100% + 70px);
    min-width: 100px;
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

#wirtualny-spacer button.button__baner:hover span {
    background: #40404000;
}

button.button__baner span {
    background: #E3053A;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

#wirtualny-spacer .section__6-box-item-1 {
    margin-bottom: 50px;
}

#wirtualny-spacer .section__6-box-item-1 div:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* sekcja 7 */

#wirtualny-spacer .section__7 {
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
}

#wirtualny-spacer .section__7::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
}

#wirtualny-spacer .section__7-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    margin-top: 100px;
}

#wirtualny-spacer .section__7-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#wirtualny-spacer .section__7-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#wirtualny-spacer .section__7-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#wirtualny-spacer .section__7-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

/* sekcja 8 */

#wirtualny-spacer .section__8 {
    margin-top: 100px;
    margin-bottom: 100px;
}

/*  section__text-baner skopiowany */
/* section__8-a */

#wirtualny-spacer .section__8-a {
    z-index: 2;
}

#wirtualny-spacer #section__8-a-baner-bottom {
    height: auto;
    width: 100%;
    background-size: contain;
    background-position: center;
    z-index: 1;
    display: flex;
}

#wirtualny-spacer .section__8-a-baner {
    position: relative;
    height: auto;
}

#wirtualny-spacer .section__8-a-baner-text {
    display: flex;
    height: fit-content;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 40px;
}

#wirtualny-spacer .section__8-a-box {
    background: var(--color-text-white);
    padding: 20px 30px 20px 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    width: 400px;
    bottom: -55px;
}

#wirtualny-spacer .section__8-a-box .box-ikona {
    background: var(--color-red);
    width: 50px;
    height: 50px;
    padding: 13px;
    border-radius: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 35px;
    margin-top: -48px;
}

#wirtualny-spacer .section__8-a-box p {
    color: var(--color-text-black);
    margin-bottom: 0;
    font-weight: 500;
}

#wirtualny-spacer .section__8-a-box p strong {
    color: var(--color-text-black);
    margin-bottom: 0;
    font-weight: 700;
}


#wirtualny-spacer .section__8-a-baner-img img {
    position: absolute;
    right: -50px;
    bottom: 0;
    width: 300px;
}

/* sekcja 9 */

#wirtualny-spacer .section__9 {
    margin-bottom: 150px;
    position: relative;
    margin-top: 150px;
}

#wirtualny-spacer .section__9-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 50px;
    position: absolute;
    top: -43px;
    left: 50%;
    z-index: 1;
}

#wirtualny-spacer .section__9-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    flex-direction: column;
}

#wirtualny-spacer .section__9-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 100;
}

#wirtualny-spacer .section__9-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

#wirtualny-spacer .section__faq {
    background: linear-gradient(0deg, rgba(64, 64, 64, 0) 0%, rgb(64 64 64 / 36%) 100%);
    margin-bottom: 100px;
}

/*!--- nowa zakładka --- */
/*! zakladka Smart MLS */

#smart-mls .video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* padding-top: 30px; */
    height: 0;
    overflow: hidden;
}

#smart-mls .video-container iframe,
#smart-mls .video-container object,
#smart-mls .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#smart-mls p a {
    color: var(--color-blue-mls);
    font-weight: 600;
}

#smart-mls p a:hover {
    text-decoration: underline;
}

#smart-mls .accordion a {
    color: var(--color-blue-mls);
    font-weight: 500;
}

#smart-mls .accordion a:hover {
    text-decoration: underline;
}

#smart-mls .baner__smart-mls {
    display: flex;
    height: 500px;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    position: relative;
}

#smart-mls .section__text-baner {
    padding: 0px 70px 0px 70px;
    display: flex;
}

#smart-mls .section__text-h1 {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
    animation: fadeIn .5s ease;
}

#smart-mls .section__text-h1 h1 {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 100;
}

#smart-mls .section__text-h1 span {
    font-family: 'Audiowide', cursive;
    color: var(--color-text-white);
    font-size: 55px;
    font-weight: 100;
    background: linear-gradient(90deg, #4fa5ff, #006fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#smart-mls .section__baner-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-blue-mls);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    animation: fadeIn .5s ease;
}

#smart-mls .section__counter .section__counter-mls-image img {
    display: flex;
    justify-content: center;
    width: 60%;
}

#smart-mls .section__counter .section__counter-mls-image {
    justify-content: center;
    position: relative;
}

#smart-mls #counter__mls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    grid-gap: 20px;
    margin: 50px 0px 50px 0px;
}

#smart-mls .section__counter__mls {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 70px;
    font-weight: 600;
    color: var(--color-text-white);
    flex-direction: column;
    width: auto;
}

#smart-mls .section__counter__mls-inside {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

#smart-mls .section__counter__mls {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 70px;
    font-weight: 600;
    color: var(--color-text-white);
    flex-direction: column;
    width: auto;
}

#smart-mls .col.section__counter__mls-inside-text p {
    display: flex;
    font-weight: 400;
    color: var(--color-gray-light);
    border-left: 2px solid var(--color-blue-mls);
    padding-left: 10px;
    margin-bottom: 0;
    font-size: 15px;
}

#smart-mls .section__counter-mls-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 500px;
    background: linear-gradient(0deg, #19171b, #619ddd);
    box-shadow: 0px 0px 10px 100px #19171b;
    filter: blur(100px);
    z-index: -1;
    border-radius: 100px;
    top: 0;
    left: 0;
}

/* sekcja 1 */

#smart-mls .section__1 {
    margin-bottom: 50px;
}

#smart-mls .section__1-box {
    background: var(--color-text-white);
    padding: 100px 70px 100px 70px;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
}

#smart-mls .section__1-ikony {
    justify-content: space-between;
    margin-top: 0px;
    row-gap: 20px;
    column-gap: 40px;
}

#smart-mls .section__1-ikony div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

#smart-mls .section__1-logo {
    display: flex;
    align-items: center;
    margin: 20px 0px 20px 0px;
    flex-direction: column;
}

#smart-mls .section__1-logo img {
    max-width: 300px;
}

#smart-mls .section__1-text {
    margin-top: 50px;
    font-size: 22px;
    text-align: center;
    max-width: 700px;
}

#smart-mls .section__1-ikony .box-ikona {
    background: var(--color-blue-mls);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#smart-mls .section__1-ikony-text {
    color: var(--color-text-black);
    text-transform: inherit;
    font-weight: 600;
}

#smart-mls .section__1::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 30px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #009EE0 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
    z-index: -10;
}

#smart-mls .section__2-description p {
    color: var(--color-text-white);
    margin: 50px 0px 50px 0px;
    text-align: center;
}

/* sekcja 2 */

#smart-mls .section__2 {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    margin: 0;
}

#smart-mls .section__2-title {
    color: var(--color-text-white);
}

#smart-mls .section__2::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #009EE0 100%) 0% 0% no-repeat padding-box;
    z-index: -10;
    opacity: 0.33;
}

#smart-mls .section__2-title h2 {
    font-size: 40px;
    font-weight: 600;
    max-width: 500px;
    margin-bottom: 50px;
}

#smart-mls .section__2-items {
    margin-bottom: 20px;
}

#smart-mls .section__2-items span {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' -25, 'opsz' 48;
    color: var(--color-blue-mls);
    font-size: 40px;
    margin-bottom: 10px;
    transform: translateX(-5px);
}

#smart-mls .section__2-items p {
    color: var(--color-text-white);
    line-height: 1.875rem;
}

/* #smart-mls .section__2-mls-sygnet {
    position: absolute;
    right: 20%;
    right: 550px;
    width: 300px;
    opacity: .05;
    bottom: 100px;
} */

/* sekcja 3 */

#smart-mls .section__3 {
    position: relative;
    margin-bottom: 0px;
    z-index: 1;
    padding-bottom: 100px;
}

#smart-mls .section__3::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    /* top: -30px; */
    background: linear-gradient(0deg, #25252500 0%, #404040 100%);
    opacity: 1;
    z-index: -10;
}

#smart-mls .section__3-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    margin-top: 100px;
}

#smart-mls .section__3-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-blue-mls);
    height: 2px;
    border-radius: 100px;
}

#smart-mls .section__3-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#smart-mls .section__3-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#smart-mls .section__3-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#smart-mls .section__3-description p {
    color: var(--color-gray-light);
}

#smart-mls .section__3-description a {
    color: var(--color-blue-mls);
}

#smart-mls .section__3-description a:hover {
    text-decoration: underline;
}

#smart-mls .section__3-description {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#smart-mls .section__3-image {
    display: flex;
    justify-content: center;
}

/* sekajca 4 */

#smart-mls .section__4 {
    margin-bottom: 150px;
    position: relative;
    margin-top: 100px;
}

#smart-mls .section__4-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-blue-mls);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 50px;
    position: absolute;
    top: -150px;
    left: 50%;
    z-index: 1;
}

#smart-mls .section__4-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    flex-direction: column;
}

#smart-mls .section__4-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 100;
}

#smart-mls .section__4-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

/* sekcja faq */

#smart-mls .section__faq {
    background: linear-gradient(0deg, rgba(64, 64, 64, 0) 0%, rgb(64 64 64 / 36%) 100%);
    margin-bottom: 100px;
}

/*!--- nowa zakładka --- */
/*! zakladka Cennik */

#cennik p a {
    color: var(--color-red);
    font-weight: 600;
}

#cennik p a:hover {
    text-decoration: underline;
}

#cennik .baner__cennik {
    display: flex;
    height: 500px;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    position: relative;
}

#cennik .section__text-baner {
    padding: 0px 70px 0px 70px;
    border-radius: 20px;
    display: flex;
}

#cennik .section__text-h1 {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
    animation: fadeIn .5s ease;
}

#cennik .section__text-h1 h1 {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 100;
}

#cennik .section__text-h1 span {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 600;
}

#cennik .section__baner-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
}

/* sekcja 1 */

#cennik .section__1 {
    margin-bottom: 50px;
    position: relative;
}

#cennik .section__1::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
    z-index: -10;
}

#cennik .section__1-title {
    color: var(--color-white);
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 30px;
}

#cennik button.nav-link.active::before {
    font-family: "material symbols sharp";
    content: "check_box";
    color: var(--color-red);
    font-size: 55px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 200, 'opsz' 48;
}

#cennik button.nav-link::before {
    font-family: "material symbols sharp";
    content: "check_box_outline_blank";
    color: var(--color-red);
    font-size: 40px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 200, 'opsz' 48;
}

/* #cennik .box-ikona span {
    color: var(--color-red);
    font-size: 50px;
}

#cennik .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
}

#cennik .box-ikona img {
    width: 50px;
    height: 50px;
} */

#cennik .business>a,
#cennik .global>a {
    max-width: fit-content;
    margin-top: 50px;
}

#cennik .button__cennik {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

#cennik .button__cennik span {
    font-size: 20px;
    font-weight: 800;
}

#cennik .button__cennik {
    background: #B90530;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    padding-left: 15px;
    min-height: 50px;
    width: calc(100% + 60px);
    min-width: 100px;
    justify-content: flex-start;
    color: #fff;
    font-size: 14px;
    position: relative;
    transition: .2s ease;
}

#cennik .button__cennik span {
    background: #E3053A;
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

#cennik .button__cennik:hover {
    background: #404040;
    min-height: 50px;
    width: calc(100% + 70px);
    min-width: 100px;
}

#cennik .button__cennik:hover span {
    background: #40404000;
}

/* od tego */

#cennik .button__pakiety {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

#cennik .button__pakiety span {
    font-size: 20px;
    font-weight: 800;
}

#cennik .button__pakiety {
    background: #996c80;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    padding-left: 15px;
    min-height: 50px;
    width: calc(100% + 60px);
    min-width: 100px;
    justify-content: flex-start;
    color: #fff;
    font-size: 14px;
    position: relative;
    transition: .2s ease;
}

#cennik .button__pakiety span {
    background: #6b4b5e;
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

#cennik .button__pakiety:hover {
    background: #2a4062;
    min-height: 50px;
    width: calc(100% + 70px);
    min-width: 100px;
}

#cennik .button__pakiety:hover span {
    background: #40404000;
}

/**/

#myTab {
    justify-content: center;
    border: 0;
    margin: 0;
    padding: 0;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    align-items: center;
    gap: 30px;
}

#myTab p:nth-child(2) {
    font-size: 35px;
    color: var(--color-white);
    margin-bottom: 0;
    text-align: center;
}

#myTab li {
    display: flex;
    flex: 2 1;
    height: auto;
    /* padding-left: 20px; */
}

#myTab li:nth-child(1) {
    justify-content: flex-end;
    /* padding-right: 20px; */
}

#myTab li.nav-item button {
    display: flex;
    justify-content: left;
    align-items: center;
    margin: 0;
    padding: 18px;
    text-transform: uppercase;
    border-radius: 20px;
    gap: 30px;
    flex: 1 1 auto;
    max-width: 410px;
    position: relative;
}

.myTab-text-1 p,
.myTab-text-2 p {
    margin-bottom: 0px;
    text-align: left;
    line-height: 26px;
}

.myTab-text-1 span,
.myTab-text-2 span {
    font-size: 20px;
    font-weight: 600;
}

/* .myTab-text-1 span:nth-child(1),
.myTab-text-2 span:nth-child(1) {
    font-size: 13px;
    background: var(--color-gray-light);
    color: #fff;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 2px 10px;
    border-radius: 7px;
} */

.myTab-text-1 span:nth-child(2),
.myTab-text-2 span:nth-child(2) {
    font-size: 25px;
    font-weight: 600;
}

.myTab-text-2 span:nth-child(3) {
    font-size: 25px;
    font-weight: 600;
    color: white;
    background: red;
    padding: 0px 10px;
    border-radius: 5px;
}

.vat {
    color: var(--color-text-white);
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    background: #343434;
    width: fit-content;
    margin: 0 auto;
    top: 20px;
    position: relative;
    padding: 10px 25px;
    border-radius: 10px;
}

.nav-tabs .nav-link {
    background: #404040 0% 0% no-repeat padding-box;
    color: var(--color-gray-light);
}

.tab-content>.active {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    /* position: relative; */
    flex-wrap: wrap;
}

#myTab li.nav-item button[aria-selected="false"] div {
    mix-blend-mode: luminosity;
}

.business {
    background: white;
    border-radius: 25px 0px 0px 0px;
    padding: 50px;
    display: flex;
    flex-flow: column nowrap;
    border-right: 1px solid #d0d0d0;
    flex: 1 1;
    width: 50%;
}

/* .tab-content::before {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 400px;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    font-family: "material symbols sharp";
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    content: "swipe";
    color: var(--color-red);
    font-size: 40px;
    opacity: 0;
} */

.global {
    background: white;
    border-radius: 0px 25px 0px 0px;
    padding: 50px;
    display: flex;
    flex-flow: column nowrap;
    flex: 1 1;
    width: 50%;
}

.business span,
.global span {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-faq);
}

.business .title,
.global .title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0px;
    display: flex;
    justify-content: space-between;
}

.business .price,
.global .price {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-red);
    gap: 9px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

/* business */

#cennik #myTabContent .business p.item {
    display: flex;
    font-weight: 500;
    color: var(--color-text-black);
    margin-bottom: 10px;
}

#cennik #myTabContent .business p.item span {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    color: var(--color-red);
    font-size: 25px;
    margin-bottom: 0;
    margin-right: 5px;
}

#cennik #myTabContent .business p.item-not {
    display: flex;
    font-weight: 500;
    color: var(--color-text-faq);
    margin-bottom: 10px;
}

#cennik #myTabContent .business p.item-not span {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    color: var(--color-text-faq);
    font-size: 25px;
    margin-bottom: 0;
    margin-right: 5px;
}

/* global */

#cennik #myTabContent .global p.item {
    display: flex;
    font-weight: 500;
    color: var(--color-text-black);
    margin-bottom: 10px;
}

#cennik #myTabContent .global p.item span {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    color: var(--color-red);
    font-size: 25px;
    margin-bottom: 0;
    margin-right: 5px;
}

#cennik #myTabContent .global p.item-not {
    display: flex;
    font-weight: 500;
    color: var(--color-text-faq);
    margin-bottom: 10px;
}

#cennik #myTabContent .global p.item-not span {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    color: var(--color-text-faq);
    font-size: 25px;
    margin-bottom: 0;
    margin-right: 5px;
}

#cennik .section__1-text {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

#cennik .section__1-text-cena {
    line-height: 30px;
    display: flex;
}

#cennik .section__1-text-cena p {
    color: var(--color-text-black);
    text-align: center;
    position: relative;
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1 1 50%;
    gap: 10px;
}

#cennik .section__1-text-cena .cena-1 {
    background: #e7e7e7;
    padding: 4px 12px;
    border-radius: 12px;
    width: fit-content;
}

#cennik .section__1-text-cena .dodatek {
    font-size: 13px;
    font-weight: 600;
}

#cennik .section__1-text .pakiety {
    width: fit-content;
}

#cennik .cena {
    background: white;
    width: 100%;
    border-radius: 0px 0px 25px 25px;
    padding: 50px 50px 50px 50px;
    border-top: 1px solid #d0d0d0;
}

#cennik .cena__title {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}

#cennik .mobile-cennik {
    display: flex;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 0px;
    text-transform: capitalize;
    padding-right: 60px;
    align-items: center;
}

#cennik .mobile-cennik span {
    font-size: 40px;
    animation: run 2s cubic-bezier(.65, 0, .35, 1) infinite;
    font-variation-settings: 'FILL' 1, 'wght' 200, 'GRAD' 0, 'opsz' 48;
}

@media (min-width: 450px) {
    #cennik .business > p.title > span {
        display: none;
    }
}

@keyframes run {
    0% {
        transform:translateX(0px);
    }
    50% {
        transform: translateX(35%);
    }
    0% {
        transform:translateX(0px);
    }
}

/* sekcja 2 */

#cennik .section__2 {
    z-index: 1;
}

#cennik .section__2::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    z-index: -10;
    opacity: .33;
}

#cennik .section__2-h4 {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
    margin-top: 50px;
}

#cennik .section__2-h4 h4 {
    color: var(--color-text-white);
    font-size: 34px;
    font-weight: 100;
    margin-bottom: 50px;
}

#cennik .section__2-h4 span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

#cennik .section__2-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
}

#cennik .section__2 p.section__2-text {
    color: var(--color-text-white);
    text-align: center;
}

#cennik .section__2-one {
    background: var(--color-text-white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0px 50px 99px #00000026;
    height: auto;
    transition: .4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 300px;
}

#cennik .section__2-one.one,
#cennik .section__2-one.vip {
    min-height: 580px
}

#cennik .section__2-one.premium {
    min-height: 650px;
    background: #355C7D;
    background: -webkit-linear-gradient(to top, #C06C84, #6C5B7B, #355C7D);
    background: linear-gradient(to top, #C06C84, #6C5B7B, #355C7D);
}

#cennik .section__2-one.premium p,
#cennik .section__2-one.premium p.item {
    color: var(--color-text-white);
}

#cennik .section__2-one.premium p.item span {
    color: var(--color-text-black);
}

#cennik .section__2-one p {
    color: var(--color-text-black);
}

#cennik .section__2-one p.item-price {
    display: flex;
    color: var(--color-text-black);
    font-size: 30px;
    font-weight: 700;
    align-items: baseline;
    align-self: flex-end;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: 0;
    flex-direction: row;
    column-gap: 15px;
    line-height: normal;
}

#cennik .section__2-one p.item-price span {
    font-weight: 500;
    font-size: 15px;
}

#cennik .section__2-one p.item-price.best {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 700;
    column-gap: 15px;
}

#cennik .section__2-one-img {
    background: var(--color-red);
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: absolute;
    top: -50px;
}

#cennik .section__2-one-title {
    font-size: 30px;
    font-weight: 700;
    text-align: left;
}

#cennik .section__2-one-description {
    text-align: left;
    font-weight: 600;
}

#cennik .section__2-one p.item {
    display: flex;
    font-weight: 500;
    color: var(--color-text-black);
    margin-bottom: 5px;
    gap: 8px;
}

#cennik .section__2-one p.item:nth-child(4) {
    font-weight: 700;
    margin-bottom: 0px;
    background: #a8a3a321;
    padding: 5px 10px;
    border-radius: 9px;
}

#cennik .section__2-one p.item span {
    font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;
    color: var(--color-red);
    font-size: 25px;
    margin-bottom: 0;
    margin-right: 5px;
    min-width: 25px;
}

#cennik .row.section__2-box {
    column-gap: 40px;
    margin-bottom: 50px;
    margin-top: 50px;
    align-items: center;
    position: relative;
}

#cennik .row.section__2-box:before {
    content: "";
    position: absolute;
    background: linear-gradient(to top, #C06C84, #6C5B7B, #355C7D);
    width: 50%;
    height: 50%;
    left: 50%;
    right: 50%;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    top: 50%;
    filter: blur(50px);
    opacity: .5;
}

#cennik .section__2-one.premium .section__2-one-img {
    width: 100px;
    height: 100px;
    top: -70px;
}

#cennik s {
    font-size: 30px;
    font-weight: 400;
    opacity: 0.3;
}

/* sekcja 3 */

#cennik .section__3 {
    margin-bottom: 0px;
    position: relative;
    margin-top: 100px;
}

#cennik .section__3-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 50px;
    position: absolute;
    top: -44px;
    left: 50%;
    z-index: 1;
}

#cennik .section__3-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#cennik .section__3-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 100;
}

#cennik .section__3-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

#cennik .section__3-text a {
    transform: translateX(-30px);
}

#cennik button.button__cennik-2 {
    background: #B90530;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    padding-left: 15px;
    min-height: 50px;
    width: calc(100% + 60px);
    min-width: 100px;
    font-size: 14px;
    position: relative;
    transition: .2s ease;
}

#cennik .button__cennik-2 span {
    background: #E3053A;
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

#cennik .button__cennik-2 span {
    font-size: 20px;
    font-weight: 800;
}

#cennik .button__cennik-2:hover span {
    background: #40404000;
}

#cennik button.button__cennik-2:hover {
    background: #404040;
    min-height: 50px;
    width: calc(100% + 70px);
    min-width: 100px;
}

#cennik .section__faq {
    background: linear-gradient(0deg, rgba(64, 64, 64, 0) 0%, rgb(64 64 64 / 36%) 100%);
    margin-bottom: 100px;
}

/*!--- nowa zakładka --- */
/*! zakladka Kontakt */

#kontakt .section__1-box-kontakt p a:hover {
    color: var(--color-red);
}

#kontakt .baner__kontakt {
    display: flex;
    height: 500px;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    position: relative;
}

#kontakt .section__text-baner {
    padding: 0px 70px 0px 70px;
    border-radius: 20px;
    display: flex;
}

#kontakt .section__text-h1 {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
    animation: fadeIn .5s ease;
}

#kontakt .section__text-h1 h1 {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 100;
}

#kontakt .section__text-h1 span {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 600;
}

#kontakt .section__baner-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
}

/* sekcja 1 */

#kontakt .section__1 {
    margin-bottom: 100px;
}

#kontakt .section__1-kontakt {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 30px;
}

#kontakt .section__1-kontakt div {
    flex: 1 1 auto;
    width: 300px;
}

#kontakt .section__1-box-kontakt {
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--color-gray);
    padding: 50px 50px 50px 50px;
    border-radius: 15px;
    box-shadow: 0px 0px 99px #00000026;
}

#kontakt .section__1-kontakt div>span {
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 48;
    font-size: 34px;
    background: var(--color-red);
    color: var(--color-text-white);
    padding: 6px;
    border-radius: 15px;
    width: fit-content;
    margin-bottom: 20px;
    width: 46px;
}

#kontakt .section__1-kontakt div>p>span {
    color: var(--color-gray-light);
}

#kontakt .section__1-box-kontakt p {
    color: var(--color-text-white);
}

#kontakt .section__faq {
    background: linear-gradient(0deg, rgba(64, 64, 64, 0) 0%, rgb(64 64 64 / 36%) 100%);
    margin-bottom: 100px;
}

#kontakt .kontakt__mapa iframe {
    margin: 50px 0px 50px 0px;
    border-radius: 15px;
}

/* sekcja 9 */

#kontakt .section__9 {
    margin-bottom: 0px;
    position: relative;
}

#kontakt .section__9-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
    flex-direction: column;
}

#kontakt .section__9-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 200;
}

#kontakt .section__9-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

#kontakt .section__9-mail-button {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#kontakt .section__9-mail {
    max-width: 500px;
}

#kontakt .section__9-button button {
    width: 300px;
    height: 80px;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-red);
    border: 2px solid var(--color-red);
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

#kontakt .section__9-button button:hover {
    font-family: 'Montserrat', sans-serif;
    height: 80px;
    font-size: 22px;
    background-color: var(--color-text-black);
    border: 2px solid var(--color-red);
    box-shadow: 0px 0px 100px 1px var(--color-red);
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

/*!--- nowa zakładka --- */
/*! system asgal */

#asgal p a {
    color: var(--color-red);
    font-weight: 600;
}

#asgal p a:hover {
    text-decoration: underline;
}

#asgal .baner__asgal {
    display: flex;
    height: 500px;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    position: relative;
}

#asgal .section__text-baner {
    padding: 0px 70px 0px 70px;
    border-radius: 20px;
    display: flex;
}

#asgal .section__text-h1 {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
    animation: fadeIn .5s ease;
}

#asgal .section__text-h1 h1 {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 100;
}

#asgal .section__text-h1 span {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 600;
}

#asgal .section__baner-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
}

/* sekcja 1 */

#asgal .section__1 {
    z-index: 10;
    position: relative;
}

#asgal .section__1 img {
    z-index: 1;
}

#asgal .section__1:before {
    content: "";
    position: absolute;
    width: 63%;
    height: 100%;
    background: linear-gradient(0deg, #333e74, #7fc3f2);
    filter: blur(100px);
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0.5;
}

/* sekcja 2 */

#asgal .section__2 {
    margin-bottom: 100px;
    position: relative;
}

#asgal .section__2::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: -76px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
    z-index: -1;
}

#asgal .section__2-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 100px;
}

#asgal .section__2-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#asgal .section__2-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#asgal .section__2-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#asgal .section__2-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#asgal .section__2 .section__2-description p {
    color: var(--color-text-white);
}

#asgal .section__2-box {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    margin: 50px 0px 50px 0px;
}

#asgal .section__2-box-item {
    flex: 1 1 400px;
}

#asgal .section__2-box-item span {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    color: var(--color-red);
    font-size: 40px;
    margin-bottom: 10px;
    transform: translateX(-5px);
}

#asgal .section__2-box div p {
    color: var(--color-gray-light);
}

/* sekcja 3 */

#asgal .section__3 {
    margin-top: 100px;
    margin-bottom: 0px;
    z-index: 1;
}

#asgal .section__3::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: -30px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
    z-index: -1;
}

#asgal .section__3-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 100px;
}

#asgal .section__3-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#asgal .section__3-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
    text-align: left;
}

#asgal .section__3-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#asgal .section__3-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#asgal .section__3 .section__3-description p {
    color: var(--color-text-white);
}

#asgal .section__3-a-box {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    row-gap: 60px;
    column-gap: 30px;
    margin-top: 100px;
}

#asgal .section__3-a-box-1 {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 400px;
    background: var(--color-gray);
    padding: 70px 50px 50px 50px;
    border-radius: 15px;
    box-shadow: 0px 0px 99px #00000026;
}

#asgal .section__3-a-box div .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 35px;
    margin-top: -110px;
}

#asgal p.section__3-a-title {
    font-weight: 500;
    color: var(--color-text-white);
}

#asgal p.section__3-a-description {
    color: var(--color-gray-light);
}

/* sekcja 4 */

#asgal .section__4 {
    margin-bottom: 0px;
    position: relative;
    margin-top: 200px;
}

#asgal .section__4-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 200px;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 50px;
    position: absolute;
    top: -270px;
    left: 50%;
    z-index: 1;
}

#asgal .section__4-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#asgal .section__4-text a {
    transform: translateX(-30px);
}

#asgal .section__4-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 100;
}

#asgal .section__4-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

#asgal button.button__cennik-2 {
    background: #B90530;
    border: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    min-height: 50px;
    width: calc(100% + 60px);
    min-width: 100px;
    justify-content: flex-start;
    color: #fff;
    font-size: 14px;
    position: relative;
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

#asgal .button__cennik-2 span {
    font-size: 20px;
    font-weight: 800;
    background: #E3053A;
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

#asgal button.button__cennik-2:hover {
    background: #404040;
    min-height: 50px;
    width: calc(100% + 70px);
    min-width: 100px;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

#asgal .button__cennik-2:hover span {
    background: #40404000;
}

#asgal .section__4 .section__11-title {
    color: var(--color-text-white);
    font-weight: 600;
    font-size: 30px;
}

#asgal .section__9 {
    margin-bottom: 150px;
    position: relative;
}

#asgal .section__9-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 100px;
    border-radius: 100px;
    margin: 0 auto;
}

#asgal .section__9-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    margin-top: 50px;
    flex-direction: column;
}

#asgal .section__9-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 200;
}

#asgal .section__9-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

#asgal .section__9-mail-button {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#asgal .section__9-mail {
    max-width: 500px;
}

#asgal .section__9-button button {
    width: 300px;
    height: 80px;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-red);
    border: 2px solid var(--color-red);
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

/* sekcja faq */

#asgal .section__faq {
    background: linear-gradient(0deg, rgba(64, 64, 64, 0) 0%, rgb(64 64 64 / 36%) 100%);
    margin-bottom: 100px;
}

@media (max-width: 500px) {
    #asgal .section__2-a-text-line {
        display: flex;
        min-width: 2px;
        background-color: var(--color-red);
        height: 100%;
        border-radius: 100px;
    }
}

/*!--- nowa zakładka --- */
/*! system epodpis */

#epodpis .video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* padding-top: 30px; */
    height: 0;
    overflow: hidden;
}

#epodpis .video-container iframe,
#epodpis .video-container object,
#epodpis .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#epodpis p a {
    color: var(--color-red);
    font-weight: 600;
}

#epodpis p a:hover {
    text-decoration: underline;
}

#epodpis .baner__epodpis {
    display: flex;
    height: 500px;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    position: relative;
}

#epodpis .section__text-baner {
    padding: 0px 70px 0px 70px;
    border-radius: 20px;
    display: flex;
}

#epodpis .section__text-h1 {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
    animation: fadeIn .5s ease;
}

#epodpis .section__text-h1 h1 {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 100;
}

#epodpis .section__text-h1 span {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 600;
}

#epodpis .section__baner-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
}

/* sekcja 1 */

#epodpis .section__1 {
    z-index: 10;
}

#epodpis .section__1::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 30px;
    /* background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box; */
    opacity: 0.33;
    z-index: -10;
}

/* sekcja 2 */

#epodpis .section__2 {
    margin-top: 100px;
}

#epodpis .section__2::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: -76px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
}

#epodpis .section__epodpis-element-1 {
    position: absolute;
    top: 30px;
    left: 30%;
    transform: scale(.3) translate(-177%, -84%);
}

#epodpis .section__epodpis-element-2 {
    position: absolute;
    top: 0;
    right: 0;
    transform: scale(0.6) translate(-360%, -74%);
}

#epodpis .section__epodpis-element-3 {
    position: absolute;
    top: 0;
    right: 0;
    transform: scale(0.6) translate(-360%, -74%);
}

#epodpis .section__2-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
    flex-direction: column;
    position: relative;
}

#epodpis .section__2-element {
    position: absolute;
    top: 0;
    right: 0;
}

#epodpis .section__2 div p {
    color: var(--color-text-white);
    text-align: center;
    line-height: 30px;
    margin-bottom: 0px;
}

#epodpis .section__2-text h3 {
    color: var(--color-text-white);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 50px;
}

#epodpis .section__baner-box-line-1 {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    animation: fadeIn .5s ease;
    margin-bottom: 50px;
}

/* sekcja 3 */

#epodpis .section__3::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
    z-index:-1;
}

#epodpis .section__3 {
    margin-bottom: 100px;
    position: relative;
}

#epodpis .section__3-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 100px;
}

#epodpis .section__3-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#epodpis .section__3-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#epodpis .section__3-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#epodpis .section__3-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#epodpis .section__3 .section__3-description p {
    color: var(--color-text-white);
}

#epodpis .section__3 .section__3-description p a {
    color: var(--color-red);
}

#epodpis .section__3 .section__3-description p a:hover {
    text-decoration: underline;
}

#epodpis .row.section__3-a {
    margin-top: 100px;
}

#epodpis .section__3-b {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

#epodpis .section__3-box {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    /* width: 600px; */
    background: var(--color-gray);
    padding: 30px 50px 0px 50px;
    border-radius: 15px;
    box-shadow: 0px 0px 99px #00000026;
}

#epodpis .section__3-box .box-ikona {
    background: var(--color-red);
    width: 60px;
    height: 60px;
    padding: 13px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: absolute;
    top: -40px;
    color: white;
    font-size: 30px;
}

#epodpis p.section__3-title {
    font-weight: 500;
    color: var(--color-text-white);
}

#epodpis .section__3-img {
    display: flex;
    max-width: 500px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

#epodpis .section__2-items {
    margin-bottom: 20px;
}

#epodpis .section__2-items span {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    color: var(--color-red);
    font-size: 40px;
    margin-bottom: 10px;
    transform: translateX(-5px);
}

#epodpis .section__2-items p {
    color: var(--color-gray-light);
}

#epodpis .section__2-items p strong {
    color: var(--color-text-white);
    line-height: 1.875rem;
    font-weight: 600;
}

/* sekcja 4 */

#epodpis .section__4 {
    position: relative;
}

#epodpis .section__4::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
}

#epodpis .section__epodpis-element-4 {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0.3) translate(80%, -88%);
}

#epodpis .section__4-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 100px;
}

#epodpis .section__4-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#epodpis .section__4-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#epodpis .section__4-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#epodpis .section__4-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#epodpis .section__4-items {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    flex: 0 1 25%;
}

#epodpis .section__4-items span {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    color: var(--color-red);
    font-size: 40px;
    margin-bottom: 10px;
    transform: translateX(-5px);
}

#epodpis .section__4-items p {
    color: var(--color-gray-light);
}

#epodpis .section__4-items p strong {
    color: var(--color-text-white);
    line-height: 1.875rem;
    font-weight: 600;
}

#epodpis .section__4-img {
    display: flex;
    max-width: 350px;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
    order: 1;
}

/* sekcja 5 */

#epodpis .section__5 {
    position: relative;
}

#epodpis .section__epodpis-element-5 {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0.4) translate(220%, -345%);
}

#epodpis .section__5::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
}

#epodpis .section__5-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 100px;
}

#epodpis .section__5-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#epodpis .section__5-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#epodpis .section__5-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#epodpis .section__5-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#epodpis .section__5-a-box {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    margin-top: 200px;
}

#epodpis .section__5-description {
    color: var(--color-text-white);
    display: flex;
    flex: 0 1 auto;
    width: 50%;
}

#epodpis .section__5-img {
    width: 500px;
    position: absolute;
    right: 5%;
    top: 77px;
}

#epodpis .section__5-a-box-1 {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 300px;
    background: var(--color-gray);
    padding: 70px 50px 30px 50px;
    border-radius: 15px;
    box-shadow: 0px 0px 99px #00000026;
}

#epodpis .section__5-a-box div .box-ikona {
    background: var(--color-red);
    width: 60px;
    height: 60px;
    padding: 13px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 35px;
    margin-top: -110px;
}

#epodpis p.section__5-a-title {
    font-weight: 500;
    color: var(--color-text-white);
    margin-bottom: 0;
}

/* sekcja 6 */

#epodpis .section__6 {
    margin-bottom: 150px;
    position: relative;
    margin-top: 100px;
}

#epodpis .section__6-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 50px;
    position: absolute;
    top: -47px;
    left: 50%;
    z-index: 1;
}

#epodpis .section__6-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    flex-direction: column;
}

#epodpis .section__6-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 100;
}

#epodpis .section__6-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

#epodpis button.button__uslugi-deweloper-2 {
    background: #B90530;
    border: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    height: 70px;
    width: 325px;
    justify-content: flex-start;
    color: #fff;
    font-size: 20px;
    position: relative;
    padding-left: 20px;
    margin-top: 0px;
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

#epodpis button.button__uslugi-deweloper-2 span {
    background: #E3053A;
    height: 70px;
    display: flex;
    align-items: center;
    width: 70px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

#epodpis button.button__uslugi-deweloper-2:hover {
    width: 330px;
    background: var(--color-text-black);
    padding-left: 20px;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

#epodpis button.button__uslugi-deweloper-2:hover span {
    background: #40404000;
}

/* sekcja 7 */

#epodpis .section__faq {
    background: linear-gradient(0deg, rgba(64, 64, 64, 0) 0%, rgb(64 64 64 / 36%) 100%);
    margin-bottom: 100px;
}

/*!--- nowa zakładka --- */
/*! usługi uzupełniające */

#uslugi p a {
    color: var(--color-red);
    font-weight: 600;
}

#uslugi p a:hover {
    text-decoration: underline;
}

#uslugi .baner__uslugi {
    display: flex;
    height: 500px;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    position: relative;
}

#uslugi .section__text-baner {
    padding: 0px 70px 0px 70px;
    border-radius: 20px;
    display: flex;
}

#uslugi .section__text-h1 {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
    animation: fadeIn .5s ease;
}

#uslugi .section__text-h1 h1 {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 100;
}

#uslugi .section__text-h1 span {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 600;
}

#uslugi .section__baner-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
}

/* sekcja 1 */

#uslugi .section__1 {
    margin-bottom: 50px;
    margin-top: 50px;
}

div#fb,
div#przegladarka,
div#logo,
div#dron,
div#animacja,
div#deweloper {
    cursor: pointer;
}

#uslugi .section__1-box {
    background: var(--color-text-white);
    padding: 50px 50px 50px 50px;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
}

#uslugi .section__1-ikony {
    justify-content: space-between;
    margin-top: 0px;
    row-gap: 20px;
    column-gap: 40px;
}

#uslugi .section__1-ikony>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

#uslugi .section__1-ikony .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: .2s ease;
}

#uslugi .section__1-ikony .box-ikona:hover {
    transform: scale(1.1)
}

#uslugi .section__1-ikony-text {
    color: var(--color-text-black);
    text-transform: inherit;
    font-weight: 600;
}

/* sekcja 2 */

#uslugi .section__2 {
    margin-bottom: 100px;
    position: relative;
}

#uslugi .section__2-text {
    color: var(--color-text-white);
}

/*todo do przemyślenia #uslugi .section__2 .row:before {
    content: "";
    position: absolute;
    top: -24px;
    left: 10%;
    border: 1px solid var(--color-red);
    width: 50px;
    height: 50px;
    border-radius: 100%;
} */

#uslugi .section__2::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
    z-index: -1;
}

#uslugi .section__2-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 100px;
}

#uslugi .section__2-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#uslugi .section__2-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#uslugi .section__2-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#uslugi .section__2-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#uslugi .section__2 .section__2-description p {
    color: var(--color-text-white);
}

#uslugi .section__2-box {
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    margin: 50px 0px 50px 0px;
    padding: 30px;
    row-gap: 50px;
    background: #4040404d;
    border-radius: 20px;
    justify-content: space-between;
}

#uslugi .section__2-box-item {
    display: flex;
    align-items: flex-start;
    width: 300px;
}

#uslugi .section__2-box-item span {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    color: var(--color-red);
    font-size: 30px;
    margin-bottom: 0px;
    transform: translateX(-5px);
    padding-right: 12px;
}

#uslugi .section__2-box div p {
    color: var(--color-gray-light);
    margin-bottom: 0;
}

/* sekcja 4 */

#uslugi .section__4 {
    margin-bottom: 100px;
    position: relative;
}

#uslugi .section__4::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
    z-index: -1;
}

#uslugi .section__4-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 100px;
}

#uslugi .section__4-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#uslugi .section__4-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#uslugi .section__4-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#uslugi .section__4-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#uslugi .section__4 .section__4-description p {
    color: var(--color-text-white);
}

#uslugi .section__4-box-item p strong {
    color: var(--color-text-white);
    line-height: 1.875rem;
    font-weight: 600;
}

#uslugi .section__4-box {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    flex-wrap: wrap;
    column-gap: 50px;
    margin: 50px 0px 50px 0px;
    row-gap: 50px;
}

#uslugi .section__4-box-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1 1 auto;
    width: 300px;
    margin-top: 0px;
}

#uslugi .section__4-box-item span {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    color: var(--color-red);
    font-size: 30px;
    margin-bottom: 0px;
    transform: translateX(-5px);
    padding-right: 12px;
}

#uslugi .section__4-box div p {
    color: var(--color-gray-light);
    margin-bottom: 0;
}

#uslugi .section__4-box div p a {
    color: var(--color-red);
}

#uslugi .section__4-box div p a:hover {
    text-decoration: underline;
}

#uslugi .section__4-description-a {
    background: var(--color-gray);
    border-radius: 20px;
    padding: 40px 30px 30px 30px;
    position: relative;
}

#uslugi .section__4-description-a>span {
    position: absolute;
    top: -22px;
    font-size: 40px;
    transform: translateX(-5px);
    color: white;
}

#uslugi .section__4-description-a p {
    font-size: 20px;
    color: var(--color-text-white) !important;
    max-width: 500px;
}

#uslugi button.button__uslugi {
    background: #B90530;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
    min-height: 50px;
    width: calc(170px + 60px);
    min-width: 100px;
    margin-top: 50px;
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

#uslugi button.button__uslugi:hover {
    background: var(--color-text-black);
    min-height: 50px;
    width: calc(170px + 70px);
    min-width: 100px;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

#uslugi button.button__uslugi:hover span {
    background: #40404000;
}

#uslugi button.button__uslugi span {
    background: #E3053A;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

#uslugi .section__4-brandbook {
    display: flex;
}

/* sekcja 5 */

#uslugi .section__5-description-a {
    background: var(--color-gray);
    border-radius: 20px;
    padding: 40px 30px 30px 30px;
    position: relative;
}

#uslugi .section__5-description-a>span {
    position: absolute;
    top: -22px;
    font-size: 40px;
    transform: translateX(-5px);
    color: white;
    font-variation-settings:
        'FILL' 0,
        'wght' 200,
        'GRAD' 0,
        'opsz' 48
}

#uslugi .section__5-description-a p {
    font-size: 20px;
    color: var(--color-text-white) !important;
    text-align: left;
}

#uslugi .section__5-button-animation {
    display: inline-flex;
    flex-wrap: wrap;
    column-gap: 80px;
}

#uslugi button.button__uslugi-animation {
    background: #B90530;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    padding-left: 15px;
    min-height: 50px;
    width: calc(100% + 60px);
    min-width: 100px;
    justify-content: flex-start;
    color: #fff;
    font-size: 14px;
    position: relative;
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

#uslugi button.button__uslugi-animation:hover {
    background: var(--color-text-black);
    min-height: 50px;
    width: calc(100% + 70px);
    min-width: 100px;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

#uslugi button.button__uslugi-animation:hover span {
    background: #40404000;
}

#uslugi button.button__uslugi-animation span {
    background: #E3053A;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

#uslugi button.button__uslugi-animation-1 {
    background: var(--color-text-black);
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    padding-left: 15px;
    min-height: 50px;
    width: calc(100% + 60px);
    min-width: 100px;
    justify-content: flex-start;
    color: #fff;
    font-size: 14px;
    position: relative;
    transition: .2s ease;
}

#uslugi button.button__uslugi-animation-1:hover {
    background: var(--color-text-black);
    min-height: 50px;
    width: calc(100% + 70px);
    min-width: 100px;
}

#uslugi button.button__uslugi-animation-1:hover span {
    background: #40404000;
}

#uslugi button.button__uslugi-animation-1 span {
    background: #00000030;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 11px 11px 0px;
    position: absolute;
    right: 0px;
    top: 0px;
    border: 0px solid var(--color-text-black);
}

/* sekcja 6 */

#uslugi .section__6-description-a {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#uslugi .section__6-description-a a {
    transform: translateX(-30px);
}

#uslugi .section__6-description-a p {
    color: var(--color-text-white) !important;
    margin-bottom: 0;
    font-size: 20px;
}

#uslugi button.button__uslugi-deweloper-1 {
    background: #B90530;
    border: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    min-height: 50px;
    width: calc(100% + 60px);
    min-width: 100px;
    justify-content: flex-start;
    color: #fff;
    font-size: 14px;
    position: relative;
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

#uslugi button.button__uslugi-deweloper-1:hover {
    background: var(--color-text-black);
    min-height: 50px;
    width: calc(100% + 70px);
    min-width: 100px;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

#uslugi button.button__uslugi-deweloper-1:hover span {
    background: #40404000;
}

#uslugi button.button__uslugi-deweloper-1 span {
    background: #E3053A;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

/* sekcja 7 */

#uslugi .section__7 {
    margin-bottom: 50px;
    position: relative;
    margin-top: 300px;
}

#uslugi .section__7-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 200px;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 50px;
    position: absolute;
    top: -270px;
    left: 50%;
    z-index: 1;
}

#uslugi .section__7-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    flex-direction: column;
    gap: 20px;
}

#uslugi .section__7-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 100;
}

#uslugi .section__7-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

#uslugi .button__deweloper {
    display: flex;
    justify-content: center;
    transform: translateX(-30px);
}

#uslugi button.button__uslugi-deweloper-2 {
    background: #B90530;
    border: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    min-height: 50px;
    width: calc(100% + 60px);
    min-width: 100px;
    font-size: 14px;
    justify-content: flex-start;
    color: #fff;
    position: relative;
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

#uslugi button.button__uslugi-deweloper-2:hover {
    background: var(--color-text-black);
    min-height: 50px;
    width: calc(100% + 70px);
    min-width: 100px;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

#uslugi button.button__uslugi-deweloper-2:hover span {
    background: #40404000;
}

#uslugi button.button__uslugi-deweloper-2 span {
    background: #E3053A;
    font-size: 24px;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

/* sekcja faq */

#uslugi .section__faq {
    background: linear-gradient(0deg, rgba(64, 64, 64, 0) 0%, rgb(64 64 64 / 36%) 100%);
    margin-bottom: 100px;
}

/*!--- nowa zakładka --- */
/*! bonusy portalowe */

#bonusy p a {
    color: var(--color-red);
    font-weight: 600;
}

#bonusy p a:hover {
    text-decoration: underline;
}

#bonusy .baner__bonusy {
    display: flex;
    height: 500px;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    position: relative;
}

#bonusy .section__text-baner {
    padding: 0px 70px 0px 70px;
    display: flex;
}

#bonusy .section__text-h1 {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
    animation: fadeIn .5s ease;
}

#bonusy .section__text-h1 h1 {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 100;
}

#bonusy .section__text-h1 span {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 600;
}

#bonusy .section__baner-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
}

/* sekcja 1 */

#bonusy .section__1 {
    margin-bottom: 100px;
    margin-top: 50px;
    position: relative;
}

#bonusy .section__1-box img {
    width: 300px;
}

#bonusy .section__1-box p {
    font-weight: 500;
    margin-top: 50px;
}

#bonusy .section__1::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
    z-index: -1;
}

#bonusy .section__1-a-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 100px;
}

#bonusy .section__1-a-text-line {
    display: flex;
    min-width: 40px;
    background-color: var(--color-red);
    height: 2px;
    border-radius: 100px;
}

#bonusy .section__1-a-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#bonusy .section__1-a-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#bonusy .section__1-a-text-line_end {
    display: flex;
    background-color: var(--color-gray);
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#bonusy .section__1-box {
    background: var(--color-text-white);
    padding: 50px 50px 50px 50px;
    border-radius: 20px;
    display: flex;
    justify-content: flex-start;
    box-shadow: 0px 50px 99px #00000026;
    position: relative;
    margin-bottom: 50px;
}

#bonusy .section__1-ikony {
    justify-content: space-between;
    margin-top: 0px;
}

#bonusy .section__1-ikony .box-ikona {
    background: var(--color-red);
    width: 80px;
    height: 80px;
    padding: 13px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#bonusy .section__1-ikony-text {
    color: var(--color-text-black);
    text-transform: inherit;
    font-weight: 600;
}

#bonusy .section__1 .section__1-description p {
    color: var(--color-text-white);
    margin-bottom: 50px;
}

#bonusy .section__1-a-box div p {
    color: var(--color-text-black);
    margin-bottom: 0;
    margin-top: 0px;
}

/* profesjonalny agent */

#bonusy .section__pro-agent {
    position: relative;
    padding: 50px 0px;
}

#bonusy .section__pro-agent::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    background: linear-gradient(180deg, #0000004a, #e25f0080);
    opacity: 1;
    z-index: -1;
}

#bonusy .pro-agent-img {
    width: 300px;
    height: auto;
    margin: 0px 0px 20px 60px;
}

#bonusy .section__pro-agent-text {
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    /* margin-top: 100px; */
}

#bonusy .section__pro-agent-text-line {
    display: flex;
    min-width: 40px;
    background-color: #ff943a;
    height: 2px;
    border-radius: 100px;
}

#bonusy .section__pro-agent-text p {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 20px;
    margin-bottom: 0;
}

#bonusy .section__pro-agent-text p span {
    font-size: 30px;
    font-weight: 200;
    padding-right: 9px;
}

#bonusy .section__pro-agent-text-line_end {
    display: flex;
    background-color: #ff943a;
    height: 2px;
    border-radius: 100px;
    flex: 1 1 auto;
    min-width: 20px;
}

#bonusy .section__pro-agent .section__pro-agent-description p {
    color: var(--color-text-white);
    margin-bottom: 50px;
}

#bonusy .section__pro-agent-box {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
    z-index: 2;
    padding-left: 0px;
    padding-right: 0px;
    row-gap: 50px;
    column-gap: 30px;
    margin-top: 20px;
}

#bonusy .section__pro-agent-box-1 {
    display: flex;
    flex-direction: column;
    background: var(--color-text-white);
    padding: 30px;
    border-radius: 15px;
    flex: 1 1 auto;
    width: 400px;
    box-shadow: 0px 0px 99px #00000026;
}

#bonusy .section__pro-agent-box-1>span {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    background: #404458;
    color: var(--color-text-white);
    padding: 13px;
    margin-bottom: 20px;
    border-radius: 100%;
    width: max-content;
    height: max-content;
}

#bonusy p.section__pro-agent-title {
    font-weight: 600;
    font-size: 20px;
    color: #ff943a;
}

#bonusy p.section__pro-agent-description {
    color: #424457;
    margin-bottom: 0px;
    font-weight: 500;
}

#bonusy .section__pro-agent-description-2 {
    padding: 50px;
    border-radius: 15px;
    margin-top: 30px;
    border: 2px solid #ff943a;
}

#bonusy .section__pro-agent-description-2 .more {
    color: var(--color-text-white);
    margin-bottom: 0px;
}

#bonusy .section__pro-agent-description-2 p a {
    color: #ff943a;
}

#bonusy .section__pro-agent-description-2 p a:hover {
    text-decoration: underline;
}

#bonusy .section__pro-agent-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
}

#bonusy .section__pro-agent-button a {
    transform: translateX(-30px);
}

#bonusy .section__pro-agent-button p {
    color: var(--color-text-white);
}

#bonusy button.button__agent {
    background: #B90530;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
    min-height: 50px;
    width: calc(100% + 60px);
    min-width: 100px;
    margin-top: 0px;
    transition: .2s ease;
}

#bonusy button.button__agent span {
    background: #E3053A;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

#bonusy button.button__agent:hover {
    background: var(--color-text-black);
    min-height: 50px;
    width: calc(100% + 70px);
    min-width: 100px;
}

#bonusy button.button__agent:hover span {
    background: #40404000;
}

/* sekcja 2 */

#bonusy .section__2 {
    margin-bottom: 50px;
    position: relative;
    margin-top: 200px;
}

#bonusy .section__2-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 100px;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 50px;
    position: absolute;
    top: -150px;
    left: 50%;
    z-index: 1;
}

#bonusy .section__2-text {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    flex-direction: column;
}

#bonusy .section__2-text h3 {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 100;
}

#bonusy .section__2-text span {
    color: var(--color-text-white);
    font-size: 30px;
    font-weight: 600;
}

#bonusy .button__deweloper {
    display: flex;
    justify-content: center;
    transform: translateX(-30px);
}

#bonusy .button__deweloper a {
    margin-top: 50px;
}

#bonusy button.button__uslugi-deweloper-2 {
    background: #B90530;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
    min-height: 50px;
    width: calc(100% + 60px);
    min-width: 100px;
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
}

#bonusy button.button__uslugi-deweloper-2:hover {
    background: var(--color-text-black);
    min-height: 50px;
    width: calc(100% + 70px);
    min-width: 100px;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

#bonusy button.button__uslugi-deweloper-2:hover span {
    background: #40404000;
}

#bonusy button.button__uslugi-deweloper-2 span {
    background: #E3053A;
    height: 50px;
    display: inline-flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

/*! formularz */

.form-floating>label {
    text-transform: lowercase;
    font-weight: 500;
    color: #989898;
}

#form .form-check-input:checked {
    background-color: var(--color-red) !important;
    border-color: var(--color-red) !important;
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

#form .section__1 {
    position: relative;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    flex-wrap: wrap;
}

#form .section__1 .section__1-form-description {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#form .form-check-label {
    font-size: 13px;
    font-weight: 600;
}

#form .form-check-input:focus {
    border-color: #86b7fe00;
    outline: 0;
    box-shadow: 0 0 0 0rem rgb(73 70 67);
}

#form .form-control {
    border: 0px solid #ced4da;
}

#form .form-control.is-invalid {
    border: #dc3545 1px solid;
}

#form .form-control:focus {
    box-shadow: 0 0 0 0 rgb(142 42 46);
}

#form .section__1-form p span {
    font-size: 18px;
    margin-left: 10px;
}

/* form */

#form .section__1-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--color-text-white);
    border-radius: 20px;
    padding: 50px;
    flex: 1 1 50%;
}

#form .section__1-form img {
    width: 300px;
    padding: 0px 50px 50px 0px;
}

#form .form-check-input:checked {
    background-color: #8e2a2e;
    border-color: #8e2a2e;
}

#form button.button__baner {
    background: #B90530;
    border: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    height: 50px;
    width: 210px;
    justify-content: flex-start;
    color: #fff;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
    margin: 50px 0px 50px 0px;
    transition: .2s ease;
    -webkit-animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation: ButtonShake 4s cubic-bezier(.65, 0, .35, 1) infinite;
    animation-delay: 2s;
}

#form button.button__baner span {
    background: #E3053A;
    height: 50px;
    display: flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: 0px 13px 13px 0px;
    position: absolute;
    right: 0;
    top: 0;
}

#form button.button__baner:hover {
    width: 220px;
    background: #404040;
    padding-left: 20px;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

#form button.button__baner:hover span {
    background: #40404000;
}

#form a strong {
    color: var(--color-red);
}

#form .section__1-form p {
    font-size: 25px;
    margin-bottom: 0px;
}

/* description */

#form .section__1-description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px;
    flex: 1 1 50%;
}

#form .section__1-description>p {
    color: var(--color-text-white);
    width: 100%;
    font-size: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* links */

#form .links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

#form .links a {
    display: flex;
    flex: 1 1 auto;
    width: 200px;
    position: relative;
    padding-left: 25px;
    color: var(--color-gray-light);
}

#form .links a:before {
    position: absolute;
    font-family: "Material Symbols Outlined";
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    content: "link";
    color: var(--color-red);
    font-size: 22px;
    left: 0;
    transform: translateY(-4px);
    transition: .2s ease;
}

#form .links a:hover {
    text-decoration: underline;
}

#form .links a:hover:before {
    color: var(--color-text-white);
}

/* links__2 */

#form .links__2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

#form .links__2 .section__1-description-items {
    display: flex;
    flex: 1 1 auto;
    width: 200px;
    position: relative;
    color: var(--color-gray-light);
}

#form .links__2 .section__1-description-items span {
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 48;
    color: var(--color-red);
    font-size: 22px;
    margin-right: 10px;
}

#form .links__2 .section__1-description-items p {
    color: var(--color-gray-light);
    font-size: 16px;
    margin-bottom: 0px;

}

/* slidejs */

.splide2 {
    position: relative;
    visibility: hidden;
    background: white;
    padding: 50px;
    border-radius: 20px;
}

.splide2__list {
    align-items: center;
}

.splide2__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.splide2__slide img {
    max-width: 150px;
}

.splide2__progress__bar {
    height: 2px;
    background: var(--color-red);
}

.splide2__pagination__page.is-active {
    background: var(--color-red);
}

.splide2__pagination__page {
    background: var(--color-text-faq);
}

.main #splide01-track:before {
    content: "";
    z-index: 999;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 200px;
    background: linear-gradient(90deg, #2e2d2d, transparent);
}

.main #splide01-track:after {
    content: "";
    z-index: 999;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 200px;
    background: linear-gradient(90deg, transparent, #2e2d2d);
}

/*!--- media ---*/
/*--- baner ---*/

@media(min-width: 1400px) {

    .phone-mobile,
    .mobile-social {
        display: none;
    }
}

@media(max-width: 1399.98px) {

    .phone-mobile,
    .mobile-social {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (min-width: 1400px) {
    .navbar-expand-xxl .navbar-nav .nav-link {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
}

@media (max-width:1200px) {
    .baner {
        padding-top: 80px;
        height: 900px;
    }
}

@media (max-width: 992px) {
    .baner {
        padding-top: 100px;
        height: 100%;
    }

    .baner__player {
        margin-top: 50px;
        margin-bottom: 0px;
    }

    .baner__title-text {
        font-size: 40px;
    }
}

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

    .baner__title-text-p {
        margin-top: 20px;
    }

    button.button__baner {
        margin: 20px 0 50px 0;
    }

    .baner__demo-button {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .baner__player lottie-player:before {
        height: 200px;
    }

    .baner__player {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .baner__demo {
        margin: 40px 0px 50px 0px;
    }
}

@media (max-width: 400px) {
    .baner__title-text {
        font-size: 35px;
    }
}

/*--- header ---*/

@media (max-width: 1399.98px) {
    .header {
        background: linear-gradient(180deg, rgb(0 0 0 / 71%) 0%, rgb(0 0 0 / 66%) 100%);
    }

    .header #navbarSupportedContent>ul.navbar-nav {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
    }

    .header #navbarSupportedContent>ul li.nav-item {
        display: block;
        width: auto;
        height: auto;
    }
        .header #navbarSupportedContent>ul li.nav-item a {
        font-size: 20px;
        padding-bottom: 0px;
        padding-top: 0;
    }
}

@media (max-width: 1400px) {
    .navbar {
        border-bottom: 0px solid #8C8788;
    }

    .navbar-top {
        display: none;
    }
}

/*--- sekcja__1 ---*/

@media (max-width: 1200px) {

    .section__1-text h1,
    .section__1-text span {
        font-size: 30px;
    }
}

@media (max-width: 992px) {

    .element__1,
    .element__2,
    .element__3 {
        display: none;
    }

    .section__1-box {
        padding: 50px;
    }

    .main .section__1-ikony div {
        flex: 1 1 40%;
    }
}

@media (max-width: 768px) {
    .section__1-box {
        padding: 50px;
    }

    .section__1-text h1,
    .section__1-text span {
        font-size: 30px;
        margin-bottom: 0px;
    }

    .section__1-ikony {
        justify-content: space-around;
        column-gap: 10px;
        row-gap: 10px;
    }

    .section__1-ikony>div {
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .section__1-box {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .section__1-logo img {
        max-width: 200px;
    }
}

@media (max-width: 450px) {

    .section__1-text h1,
    .section__1-text span {
        font-size: 25px;

    }
}

/*--- sekcja logo partners ---*/

@media (max-width: 1000px) {
    .section__counter {
        font-size: 60px;
    }

    .col.section__counter-inside-text p {
        font-size: 15px;
    }
}

@media (max-width: 800px) {
    .section__counter {
        font-size: 50px;
        flex: 1 1 200px;
    }
}

@media (max-width: 768px) {
    .section__logo_partners-text-line {
        width: 50px;
    }

    .section__logo_partners-text p span,
    .section__logo_partners-text p {
        font-size: 20px;
    }
}

@media (max-width:550px) {

    .section__counter-text h3,
    .section__counter-text span {
        font-size: 30px;
    }
}

@media (max-width: 450px) {

    .section__logo_partners {
        margin-bottom: 50px;
    }

    .section__logo_partners-text-line,
    .section__logo_partners-text-line_end {
        display: none;
    }

    .section__logo_partners-text p {
        margin-left: 0px;
    }

    .section__counter {
        align-items: center;
    }
}

/*--- sekcja__2 ---*/

@media (max-width: 1200px) {

    .section__2-box-line-text {
        margin-top: 50px;
    }

    .section__2 {
        margin-bottom: 50px;
    }
}

@media (max-width: 1200px) {
    .row.section__2 {
        justify-content: space-evenly;
    }
}

@media (max-width: 992px) {
    .row.section__2 {
        justify-content: space-evenly;
    }

    .main .section__2-box {
        width: 300px;
    }
}

@media (max-width: 700px) {
    .main .section__2-box {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .section__2-box-title {
        font-size: 20px;
        line-height: 25px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .section__2-box {
        padding: 30px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .section__2-box-title>br {
        display: none;
    }
}

@media (max-width: 600px) {
    .main .section__2-box {
        padding: 30px;
    }
}

/*--- sekcja__3 ---*/

@media (max-width: 1200px) {
    .section__3-box-icon p {
        text-align: right;
        font-size: 15px;
    }
}

@media(max-width: 992px) {
    .section__3-box-icon p {
        text-align: right;
        font-size: 15px;
    }

    .section__3-box-phone {
        display: none;
    }

    .section__3-box-icon-right {
        padding-left: 0px;
    }

    .section__3-box-icon-left {
        padding-right: 0px;
    }

    .section__3-more {
        margin-top: 50px;
    }

}

@media (max-width: 768px) {
    .section__3-more {
        margin-top: 50px;
    }

    .section__3-box {
        padding: 50px;
    }
}

@media (max-width: 768px) {

    .section__3-box-icon-left {
        padding-right: 0px;
        padding-left: 0px;
    }

    .section__3-box-icon-right {
        padding-left: 0px;
    }

    .section__3-box-icon-left .section__3-box-icon {
        flex-direction: row-reverse;
        margin: 7px 0px 7px 0px;
    }

    .section__3-box-icon-right .section__3-box-icon {
        margin: 7px 0px 7px 0px;
    }

    .section__3-box-icon p {
        text-align: left;
    }
}

@media (max-width: 700px) {

    .section__3-more a,
    .section__4-more a {
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .section__3-box {
        padding: 30px;
    }

    .section__3-more a,
    .section__4-more a {
        max-width: 300px;
    }
}

@media (max-width: 550px) {
    .section__3-line {
        display: none;
    }

    .section__3-text h3,
    .section__3-text span {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .section__3-more {
        margin-top: 50px;
    }

    .section__3-box-icon-left {
        padding-left: 0;
    }

    .section__3-more p {
        font-size: 20px;
    }
}

@media (max-width: 450px) {
    .section__3-text {
        margin-bottom: 50px;
    }
}

/*--- sekcja__4 ---*/

@media (max-width:1200px) {
    .section__4-box-item {
        margin-top: 0px;
    }

    .section__4-box-img:hover {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .main .section__4-box-item {
        grid-gap: 10px;
        justify-content: center;
        padding: 0px;
        margin-top: 50px;
    }

    .section__4-box-img {
        width: 100%;
        height: 350px;
        background-position: center;
    }
}

@media (max-width: 768px) {
    .element__4 {
        display: none;
    }
}

@media (max-width: 500px) {

    .section__4-box-img,
    .section__4-box-item {
        margin-top: 0px;
    }

    .section__4-box-img {
        height: 257px;
    }
}

@media (max-width: 550px) {

    .section__4-text h3,
    .section__4-text span {
        font-size: 30px;
    }
}

/*--- sekcja__5 ---*/

@media (max-width:992px) {
    .section__5-box {
        padding: 50px;
    }
}

@media (max-width: 600px) {
    .section__5-box {
        padding: 30px;
    }
}

@media (max-width: 550px) {
    .section__5-box {
        padding: 30px;
    }

    .section__5-text h3 {
        font-size: 25px;
    }

    .section__5-text span {
        font-size: 30px;
    }
}

/*--- sekcja__6 ---*/

@media (max-width: 1200px) {
    .section__6 {
        margin-bottom: 0px;
    }
}

@media (max-width: 800px) {
    .section__counter__mls {
        font-size: 60px;
    }

    .main .section__6 .section__counter-mls-image img {
        width: 100%;
    }
}

@media (max-width: 550px) {

    .section__6-text h3,
    .section__6-text span {
        font-size: 30px;
    }
}

@media (max-width: 450px) {
    .main .section__6 {
        margin-bottom: 50px;
    }

    .section__6-box-line {
        height: 150px;
    }

    .section__6-text {
        margin-top: 0px;
    }

    #counter__mls {
        margin: 0px 0px 50px 0px;
    }
}

/*--- sekcja__7 ---*/

@media (max-width: 992px) {
    .col-md-4.section__7-box-ricoh {
        display: none;
    }
}

@media (max-width: 700px) {
    .section__7-box {
        padding: 50px;
    }
}

@media (max-width: 600px) {
    .section__7-box {
        padding: 30px;
    }
}

@media (max-width: 550px) {

    .section__7-text h3,
    .section__7-text span {
        font-size: 30px;
    }
}

@media (max-width: 450px) {
    .section__7 {
        margin-bottom: 50px;
    }

    .section__7-text {
        margin-bottom: 50px;
    }
}

/*--- sekcja__8 ---*/

@media(max-width: 550px) {

    .section__8-text h3,
    .section__8-text h3>span {
        font-size: 30px;
    }
}

/*--- sekcja__9 ---*/

@media (max-width: 1200px) {
    .section__9 {
        margin-bottom: 100px;
    }
}

@media (max-width: 576px) {

    .section__9-text h3,
    .section__9-text span {
        font-size: 30px;
    }

    .section__9-mail-button {
        gap: 10px;
    }

    .section__9-button {
        align-items: center;
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 450px) {
    .section__9-text {
        margin-bottom: 50px;
    }
}

/*--- opinie ---*/

@media (max-width: 768px) {
    .section__opinions-text-line {
        width: 50px
    }

    .section__opinions-text p span,
    .section__opinions-text p {
        font-size: 20px;
    }
}

@media (max-width: 450px) {

    .section__opinions-text-line,
    .section__opinions-text-line_end {
        display: none;
    }

    .section__opinions-text p {
        margin-left: 0px;
    }
}

/*--- sekcja__10 ---*/

@media (max-width: 768px) {
    .section__faq-text p span {
        font-size: 20px;
    }

    .section__faq-text p {
        font-size: 20px;
        flex-direction: column;
    }

    .section__faq-text-line {
        margin-bottom: 48px;
        width: 50px;
    }
}

@media (max-width: 576px) {
    .section__faq-text-line {
        margin-bottom: 75px;
        display: none;
    }
}

@media (max-width: 477px) {
    .section__3-more p {
        font-size: 20px;
        flex-direction: column;
    }
}

/*--- footer ---*/

/* @media (max-width: 800px) {
    .section__footer-bottom div {
        width: 300px;
    }
} */

@media (max-width: 768px) {

    .section__footer-office,
    .section__footer-phone,
    .section__footer-mail,
    .section__footer-services {
        border: 0;
    }

    .section__footer-top {
        justify-content: space-between;
    }

    .section__footer-top-logo img {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .section__footer-text-line {
        width: 0px;
    }
}

@media (max-width: 500px) {
    .section__footer-top {
        height: 150px;
        justify-content: space-evenly;
        flex-direction: column;
        align-items: flex-start;
    }

    .section__footer-text-line {
        display: none;
    }
}

@media (max-width: 500px) {
    .section__footer-copyright {
        height: 50px;
        margin-top: 30px;
    }

    .footer__links {
        gap: 8px;
    }

    .section__footer-copyright .footer__links a:not(:last-child)::after {
        display: none;
    }
}

/*! system crm */

@media (max-width: 768px) {
    .baner__system-crm {
        height: 400px;
        padding-top: 0px;
    }

    #system-crm .section__text-baner {
        padding: 0px 0px 0px 0px;
    }

    #system-crm .section__text-h1 h1,
    #system-crm .section__text-h1 span {
        font-size: 30px;
    }
}

@media (max-width: 700px) {

    #system-crm .section__1 .section__1-box,
    #system-crm .section__2 .section__2-box,
    #system-crm .section__3 .section__3-box,
    #system-crm .section__4 .section__4-box,
    #system-crm .section__5 .section__5-box,
    #system-crm .section__6 .section__6-box,
    #system-crm .section__7 .section__7-box,
    #system-crm .section__8 .section__8-box,
    #system-crm .section__9 .section__9-box,
    #system-crm .section__10 .section__10-box {
        padding: 60px 20px 50px 20px;
    }

    #system-crm .section__3-box-item,
    #system-crm .section__4-box-item,
    #system-crm .section__6-box-item {
        justify-content: flex-start;
    }

    #system-crm .section__3-box-item-text,
    #system-crm .section__4-box-item-text,
    #system-crm .section__6-box-item-text {
        flex-direction: row;
        align-items: flex-start;
        flex: 1 1 auto;
    }

    #system-crm .section__3-box-item-text span,
    #system-crm .section__4-box-item-text span,
    #system-crm .section__6-box-item-text span {
        font-size: 30px;
    }

    #system-crm .section__10-a-text-line {
        display: flex;
        min-width: 2px;
        background-color: var(--color-red);
        height: 100%;
        border-radius: 100px;
    }

    #system-crm .section__10-a-text-line_end {
        display: none;
    }

    #system-crm .section__1-text,
    #system-crm .section__2-text,
    #system-crm .section__3-text,
    #system-crm .section__4-text,
    #system-crm .section__5-text,
    #system-crm .section__6-text,
    #system-crm .section__7-text,
    #system-crm .section__8-text,
    #system-crm .section__9-text,
    #system-crm .section__10-text {
        margin-bottom: 0px;
    }

    #system-crm .section__11-box-line {
        display: none;
    }

    #system-crm .section__11 {
        margin-top: 100px;
        margin-bottom: 50px;
    }
}

@media (max-width: 500px) {
    #system-crm .section__text-h1 h1,
    #system-crm .section__text-h1 span {
        font-size: 25px;
    }
    #system-crm .baner__system-crm h2 {
        text-align: center;
    }

    #system-crm .section__11-text h3 {
        text-align: center;
    }

    #system-crm p,
    #system-crm h2,
    #system-crm h3 {
        text-align: left;
    }

    #system-crm h2,
    #system-crm h3 {
        line-height: 35px;
    }

    #system-crm .section__10-b-box-1 {
        flex: 1 1 auto;
    }
}

/*! publikacja-ofert */

@media (max-width: 1399px) {
    #publikacja-ofert .section__text-h1 {
        top: 100px;
    }
}

@media (max-width: 1200px) {
    #publikacja-ofert .section__3-box-item {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    #publikacja-ofert .section__text-h1 {
        top: 220px;
    }

    .baner__publikacja-ofert {
        height: 400px;
        padding-top: 0px;
        margin-bottom: 0px;
    }

    #publikacja-ofert .section__1 {
        margin-top: 50px;
    }

    #publikacja-ofert .section__1-box-item {
        padding: 50px 20px 50px 20px;
    }

    #publikacja-ofert .section__3-box-item {
        gap: 0px;
    }

    #publikacja-ofert .section__5-b-box-1 {
        padding: 70px 20px 20px 20px;
        flex-basis: 50%;
    }

    #publikacja-ofert .section__4 {
        margin-bottom: 50px;
    }

}

@media (max-width: 768px) {

    #publikacja-ofert .section__text-h1 {
        top: 150px;
    }

    #publikacja-ofert .section__1-text h3,
    #publikacja-ofert .section__1-text span {
        font-size: 30px;
    }

    #publikacja-ofert .section__4-items {
        margin: 0px 0px 20px 0px;
    }

    .animate__slide-1 {
        display: none;
    }

    #publikacja-ofert .section__5-b-box-1 {
        flex-basis: 48%;
    }

    #publikacja-ofert .section__5-b-box-1:nth-child(3) {
        flex-basis: 100%;
    }

    #publikacja-ofert .section__11-box-line {
        height: 150px;
        top: -190px;
    }

    #publikacja-ofert .section__11 {
        margin-bottom: 65px;
        margin-top: 100px;
    }
}

@media (max-width: 700px) {
    .baner__publikacja-ofert {
        height: 300px;
    }

    #publikacja-ofert .section__text-h1 {
        top: 152px;
    }

    #publikacja-ofert .section__2-a-text-line,
    #publikacja-ofert .section__3-a-text-line,
    #publikacja-ofert .section__5-a-text-line,
    #publikacja-ofert .section__5-a-a-text-line {
        display: flex;
        min-width: 2px;
        background-color: var(--color-red);
        height: 100%;
        border-radius: 100px;
    }

    #publikacja-ofert .section__2-a-text-line_end,
    #publikacja-ofert .section__3-a-text-line_end,
    #publikacja-ofert .section__5-a-text-line_end,
    #publikacja-ofert .section__5-a-text-line_end {
        display: none;
    }

    #publikacja-ofert .section__3-a-text {
        margin-bottom: 50px;
        margin-top: 50px;
    }

    #publikacja-ofert .section__6 {
        margin-top: 100px;
        margin-bottom: 50px;
    }

    #publikacja-ofert .section__6-box-line {
        height: 100px;
        top: -125px;
    }
}

@media (max-width: 576px) {

    #publikacja-ofert .section__text-h1 {
        top: 0;
    }

    #publikacja-ofert .section__text-h1 span {
        font-size: 30px;
    }

    #publikacja-ofert lottie-player {
        display: none !important;
    }

    #publikacja-ofert .section__1 {
        margin-top: 0px;
    }

    #publikacja-ofert .section__2-a-text p,
    #publikacja-ofert .section__2-a-text p span,
    #publikacja-ofert .section__3-a-text p,
    #publikacja-ofert .section__5-a-text p,
    #publikacja-ofert .section__5-a-a-text p,
    #publikacja-ofert .section__5-a-a-text p span,
    #publikacja-ofert .section__5-a-text p span,
    #publikacja-ofert .section__11-text h3,
    #publikacja-ofert .section__11-text span {
        font-size: 25px;
    }

    #publikacja-ofert .section__4 {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-bottom: 0px;
    }

    #publikacja-ofert .section__4-title h2 {
        margin-bottom: 40px;
    }

    #publikacja-ofert .section__4-items {
        margin: 0px 0px 20px 0px;
        display: flex;
        gap: 10px;
    }
}

@media (max-width: 500px) {
    #publikacja-ofert .section__4-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 451px) {

    #publikacja-ofert .section__baner-box-line,
    #publikacja-ofert .section__1-text h3 {
        margin-bottom: 20px;
    }

    #publikacja-ofert .section__2-a-text,
    #publikacja-ofert .section__3-a-text {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    #publikacja-ofert .section__3-box-item {
        margin-bottom: 0px;
        padding-bottom: 50px;
    }

    #publikacja-ofert .section__2-a-partners {
        margin-bottom: 50px;
    }

    #publikacja-ofert .section__5-b-box-1 {
        flex-basis: 100%;
    }

    #publikacja-ofert .section__5-a-text {
        margin-bottom: 50px;
        margin-top: 50px;
    }

    #publikacja-ofert .section__5 .section__5-a-description p {
        margin: 0px 0px 20px 10px;
    }
}

/*! strona www */

@media (max-width: 1200px) {
    #strona-www .section__3-box {
        padding: 70px 40px 40px 40px;
    }
}

@media (max-width: 992px) {
    #strona-www .section__4-b-box-1 {
        padding: 70px 30px 20px 30px;
        flex-basis: 32%;
    }

    #strona-www .section__1 .section__1-box {
        padding: 50px 20px 50px 20px;
    }

    #strona-www .section__1-ikony {
        justify-content: space-around;
        row-gap: 10px;
    }
}

@media (max-width: 700px) {

    #strona-www .section__3-standard-box {
        flex: 1 1 auto;
    }

    #strona-www .section__3-a-text-line,
    #strona-www .section__4-a-text-line {
        display: flex;
        min-width: 2px;
        background-color: var(--color-red);
        height: 100%;
        border-radius: 100px;
    }

    #strona-www .section__3-a-text-line_end,
    #strona-www .section__4-a-text-line_end {
        display: none;
    }

    #strona-www .section__3-box:after {
        display: none;
    }

    #strona-www .section__5 {
        margin-top: 100px;
        margin-bottom: 50px;
    }

    #strona-www .section__5-box-line {
        height: 100px;
        top: -125px;
    }
}

@media (max-width: 768px) {

    #strona-www .section__text-baner {
        padding: 0px;
    }

    #strona-www .section__text-h2 span {
        font-size: 35px;
    }

    #strona-www .baner__strona-www {
        height: 350px;
    }

    #strona-www .section__1 .section__1-image img {
        width: 100%;
    }

    #strona-www .section__3-box {
        padding: 70px 20px 40px 20px;
        gap: 20px;
    }

    #strona-www .section__baner-box-line {
        display: none;
    }

    #strona-www .button__baner {
        margin: 0px;
    }

    #strona-www .section__4-b-box-1 {
        flex-basis: 100%;
    }
}

@media (max-width: 576px) {
    .baner__strona-www {
        height: 400px;
    }

    #strona-www .section__baner-box-line {
        display: none;
    }

    #strona-www .section__3-a-text p,
    #strona-www .section__4-a-text p,
    #strona-www .section__11-text h3 {
        font-size: 25px;
    }

    #strona-www .section__3-a-text p span,
    #strona-www .section__4-a-text p span,
    #strona-www .section__11-text span {
        font-size: 25px;
    }

    #strona-www .section__11 {
        margin-bottom: 65px;
        margin-top: 100px;
    }

    #strona-www .section__11-box-line {
        height: 150px;
        top: -190px;
    }

    #strona-www .section__2 {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-bottom: 0px;
    }

    #strona-www .section__2-title h2 {
        margin-bottom: 40px;
    }

    #strona-www .section__2-items {
        margin: 0px 0px 20px 0px;
        display: flex;
        gap: 10px;
    }
}

@media (max-width: 500px) {

    #strona-www .section__text-h1 span {
        font-size: 35px;
    }
    #strona-www .section__text-h1 h1 {
        font-size: 25px;
    }
    #strona-www .section__2-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 450px) {

    #strona-www .section__text-h2 {
        margin-bottom: 0px;
    }

    #strona-www .section__1-ikony {
        justify-content: space-around;
    }

    #strona-www .col-md-12.section__1-ikony>div {
        flex: 0 1 auto;
        width: 100px;
    }
}

/*! wirtualny-spacer */

#wirtualny-spacer .section__8-a-baner-text {
    column-gap: 20px;
}

@media (max-width: 1200px) {

    .row.section__2>div:nth-child(3) {
        margin-top: 0px;
    }

    #wirtualny-spacer .section__2-box:nth-child(2):before {
        display: none;
    }
}

@media (max-width: 992px) {
    #wirtualny-spacer .section__1-baner img.ricoh {
        width: 350px;
        right: 0;
    }

    #wirtualny-spacer .section__1-baner {
        height: 550px;
    }

    #wirtualny-spacer .section__8-a-box {
        flex: 1 1 40%;
    }
}

@media (max-width: 768px) {

    #wirtualny-spacer .section__text-h1 h1,
    #wirtualny-spacer .section__text-h1 span {
        font-size: 30px;
    }

    #wirtualny-spacer .section__text-baner {
        padding: 0px;
    }

    #wirtualny-spacer .section__1-baner img.ricoh {
        width: 320px;
        right: -70px;
    }

    #wirtualny-spacer .baner__wirtualny-spacer {
        height: 400px;
        padding-top: 0px;
    }

    #wirtualny-spacer .section__1 {
        margin-top: 0px;
    }

    #wirtualny-spacer .section__1-baner {
        height: 500px;
    }

    #wirtualny-spacer .row.section__2 .section__2-box {
        padding: 30px;
    }

    #wirtualny-spacer .section__2-title {
        color: var(--color-text-white);
        font-weight: 600;
        font-size: 22px;
        line-height: 27px;
        margin-top: 30px;
    }

    #wirtualny-spacer .section__2-box:after {
        bottom: 30px;
        left: 30px;
    }

    #wirtualny-spacer .section__3-box-item {
        padding: 30px 30px 30px 30px;
    }

    #wirtualny-spacer .section__6-box-item {
        padding: 30px 30px 30px 30px;
    }

    #wirtualny-spacer .section__6-box-item-1 div:nth-child(2) {
        padding-left: 0px;
    }

    #wirtualny-spacer button.button__baner {
        margin: 20px 0 0px 0;
    }

    #wirtualny-spacer .section__8-a-baner-img {
        display: none;
    }

    #wirtualny-spacer .section__8-a-box {
        flex: 1 1 40%;
    }
}

@media (max-width: 700px) {

    #wirtualny-spacer .section__3-a-text-line,
    #wirtualny-spacer .section__4-a-text-line,
    #wirtualny-spacer .section__5-a-text-line,
    #wirtualny-spacer .section__6-a-text-line,
    #wirtualny-spacer .section__7-a-text-line {
        display: flex;
        min-width: 2px;
        background-color: var(--color-red);
        height: 100%;
        border-radius: 100px;
    }

    #wirtualny-spacer .section__3-a-text-line_end,
    #wirtualny-spacer .section__4-a-text-line_end,
    #wirtualny-spacer .section__5-a-text-line_end,
    #wirtualny-spacer .section__6-a-text-line_end,
    #wirtualny-spacer .section__7-a-text-line_end {
        display: none;
    }

    #wirtualny-spacer .section__9 {
        margin-bottom: 50px;
    }
}

@media (max-width: 600px) {
    #wirtualny-spacer .section__1-baner img.ricoh {
        display: none;
    }

    #wirtualny-spacer .section__1-baner-text .box-text {
        flex: 1 1 auto;
    }

    #wirtualny-spacer .section__8-a-box {
        flex: 1 1 auto;
    }
}

@media (max-width:576px) {

    #wirtualny-spacer .section__3-box-item div,
    #wirtualny-spacer .section__6-box-item div {
        margin: 0px 0px 20px 0px;
        display: flex;
        gap: 10px;
    }

    #wirtualny-spacer .section__1 {
        margin-top: 50px;
    }
    #wirtualny-spacer .section__1-baner-text .box-ikona {
        left: 0%;
        right: 0;
        margin: 0 auto;
    }
}

@media (max-width: 500px) {
    #wirtualny-spacer .section__text-h1 h1,
    #wirtualny-spacer .section__text-h1 span {
        font-size: 25px;
    }
}

/*! smart-mls */

@media (max-width: 900px) {

    #smart-mls .section__counter .section__counter-mls-image img {
        width: 100%;
    }

    #smart-mls .section__text-h1 span {
        font-size: 40px;
    }

    #smart-mls .section__text-h1 h1 {
        font-size: 30px;
    }

    .section__counter__mls {
        font-size: 60px;
    }

    #smart-mls .section__1-box {
        padding: 50px 20px 50px 20px;
    }

    #smart-mls .section__1-ikony {
        justify-content: center;
        row-gap: 10px;
    }
}

@media (max-width: 768px) {
    #smart-mls .baner__smart-mls {
        height: 350px;
    }

    #smart-mls .section__text-baner {
        padding: 0px;
    }
}

@media (max-width: 700px) {

    #smart-mls .section__text-baner {
        padding: 0px;
    }

    #smart-mls .section__3-a-text-line {
        display: flex;
        min-width: 2px;
        background-color: var(--color-blue-mls);
        height: 100%;
        border-radius: 100px;
    }

    #smart-mls .section__3-a-text-line_end {
        display: none;
    }

    .section__counter__mls {
        font-size: 40px;
    }

    #smart-mls .section__1-ikony {
        justify-content: space-around;
    }

    #smart-mls .section__4 {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    #smart-mls .section__2-items {
        margin: 0px 0px 20px 0px;
        display: flex;
        gap: 10px;
    }

    #smart-mls .section__3-a-text p,
    #smart-mls .section__3-a-text p span {
        font-size: 25px;
    }

    #smart-mls .section__2 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 500px) {

    #smart-mls .section__2-title h2 {
        font-size: 30px;
    }

    #smart-mls .section__1-ikony div {
        width: 100px;
    }

    #smart-mls .section__text-h1 span {
        font-size: 35px;
    }

    #smart-mls .section__text-h1 h1 {
        font-size: 25px;
    }

    #smart-mls .section__4-box-line {
        height: 100px;
        top: -200px;
    }
}

@media (max-width: 400px) {
    #smart-mls .section__3 {
        padding-bottom: 0px;
    }

    #smart-mls .section__4 {
        margin-bottom: 50px;
    }

    #smart-mls .section__4-box-line {
        height: 100px;
        top: -150px;
    }
}

/*! cennik */

@media (max-width: 1200px) {
    #cennik .row.section__2-box {
        column-gap: 20px;
    }

    #cennik .section__2-one {
        width: 300px;
        padding: 40px 20px;
    }
}

@media (max-width: 992px) {

    #cennik .section__1-text {
        justify-content: center;
        gap: 20px;
    }

    #cennik .row.section__2-box {
        row-gap: 80px;
    }

    #cennik .section__2-one {
        width: 100%;
        padding: 50px;
    }

    #cennik .section__2-one.one,
    #cennik .section__2-one.vip,
    #cennik .section__2-one.premium {
        min-height: auto;
    }

    .tab-content::before {
        opacity: 1;
        top: 195px;
    }

    #myTab li:nth-child(1) {
        padding-right: 0px;
    }

    #myTab li {
        padding-left: 0px;
    }

    #myTabContent {
        overflow-x: scroll;
    }

    .tab-content>.active {
        width: 800px;
    }

    .global {
        padding: 20px 0px 0px 20px;
    }

    .business {
        padding: 20px 0px 0px 20px;
    }
}

@media (max-width:768px) {

    .tab-content::before {
        top: 345px;
    }

    #cennik .baner__cennik {
        height: 400px;
        padding-top: 0px;
    }

    #cennik .section__text-baner {
        padding: 0px;
    }

    #cennik .section__text-h1 h1,
    #cennik .section__text-h1 span {
        font-size: 30px;
    }

    #myTab {
        /* flex-direction: column; */
        gap: 20px;
        /* align-items: stretch; */
        justify-content: center;
    }

    #myTab li.nav-item button {
        max-width: inherit;
    }
    .myTab-text-1 span,
    .myTab-text-2 span,
    .myTab-text-2 span:nth-child(5) {
        font-size: 16px;
    }
}

@media (max-width: 550px) {

    #cennik .section__2-one.premium .section__2-one-img {
        width: 80px;
        height: 80px;
        top: -50px;
    }

    #cennik .section__2-one {
        padding: 40px 30px;
    }

    .tab-content>.active {
        justify-content: initial;
        overflow-x: scroll;
    }

    #cennik .section__3 {
        margin-top: 100px;
    }

    #cennik .section__3-box-line {
        margin-bottom: 0px;
        height: 50px;
        top: -50px;
    }
}

@media (max-width: 500px) {
    #cennik .section__text-h1 h1,
    #cennik .section__text-h1 span {
        font-size: 25px;
    }
}

/*! kontakt */

@media (max-width: 768px) {
    #kontakt .baner__kontakt {
        height: 600px;
        padding-top: 0px;
    }

    #kontakt .section__text-baner {
        padding: 0px;
    }

    #kontakt .section__text-h1 h1,
    #kontakt .section__text-h1 span {
        font-size: 30px;
    }
}

@media (max-width: 500px) {
    #kontakt .section__text-h1 h1,
    #kontakt .section__text-h1 span {
        font-size: 25px;
    }
}

/*! bonusy portalowe */

@media (max-width: 992px) {
    #bonusy .baner__bonusy {
        height: 550px;
        padding-top: 50px;
    }

    #bonusy .section__text-h1 h1,
    #bonusy .section__text-h1 span {
        font-size: 30px;
    }

    #bonusy .section__text-baner {
        padding: 0px;
    }

    #bonusy .section__1-box {
        padding: 50px 20px 50px 20px;
    }
}

@media (max-width: 700px) {

    #bonusy .section__pro-agent-text-line {
        display: flex;
        min-width: 2px;
        background-color: #404458;
        height: 100%;
        border-radius: 100px;
    }

    #bonusy .section__1-a-text-line {
        display: flex;
        min-width: 2px;
        background-color: var(--color-red);
        height: 100%;
        border-radius: 100px;
    }

    #bonusy .section__1-a-text-line_end,
    #bonusy .section__pro-agent-text-line_end {
        display: none;
    }

    #bonusy .pro-agent-img {
        margin: 0px 0px 20px 0px;
    }
}

@media (max-width: 500px) {

    #bonusy .section__text-h1 h1,
    #bonusy .section__text-h1 span {
        font-size: 25px;
    }
    #bonusy .baner__bonusy {
        height: 450px;
        padding-top: 150px;
    }
    #bonusy .section__1 {
        margin-top: 125px;
    }
}

/*! e-podpis */

@media (max-width: 1200px) {
    #epodpis .section__5-img {
        right: 0%;
    }
}

@media (max-width: 992px) {

    #epodpis .baner__epodpis {
        height: 550px;
        padding-top: 50px;
    }

    #epodpis .section__text-h1 h1,
    #epodpis .section__text-h1 span {
        font-size: 30px;
    }

    #epodpis .section__4-img,
    #epodpis .section__5-img {
        display: none;
    }

    #epodpis .section__4-items {
        flex: 1 1 300px;
    }

    #epodpis .section__5-description {
        flex: 1 1 auto;
    }

    #epodpis .section__5-a-box {
        margin-top: 100px;
        row-gap: 50px;
    }
}

@media (max-width: 700px) {

    #epodpis .section__3-a-text-line,
    #epodpis .section__4-a-text-line,
    #epodpis .section__5-a-text-line {
        display: flex;
        min-width: 2px;
        background-color: var(--color-red);
        height: 100%;
        border-radius: 100px;
    }

    #epodpis .section__3-a-text-line_end,
    #epodpis .section__4-a-text-line_end,
    #epodpis .section__5-a-text-line_end {
        display: none;
    }
}

@media (max-width: 768px) {

    #epodpis .section__text-baner {
        padding: 0px;
    }

    #epodpis .section__epodpis-element-1 {
        top: 7vh;
        left: 20vw;
    }

    #epodpis .section__3-box {
        padding: 40px 50px 20px 50px;
    }

    #epodpis .section__epodpis-element-4 {
        top: -3vh;
        left: -9vw;
    }

    #epodpis .section__epodpis-element-1,
    #epodpis .section__epodpis-element-2,
    #epodpis .section__epodpis-element-4,
    #epodpis .section__epodpis-element-5 {
        display: none;
    }
}

@media (max-width: 576px) {
    #epodpis .section__6 {
        margin-bottom: 50px;
        margin-top: 100px;
    }

    #epodpis .section__6-box-line {
        height: 100px;
        margin-bottom: 50px;
        top: -100px;
    }
}

@media (max-width: 500px) {
    #epodpis .baner__epodpis {
    height: 450px;
}
#epodpis .section__text-h1 h1,
#epodpis .section__text-h1 span {
    font-size: 25px;
}
}

/*! uslugi */

@media (max-width: 992px) {
    #uslugi .baner__uslugi {
        height: 550px;
        padding-top: 50px;
    }

    #uslugi .section__text-h2 h2,
    #uslugi .section__text-h2 span {
        font-size: 30px;
    }
}

@media (max-width: 900px) {
    #uslugi .section__1-box {
        padding: 50px 20px 50px 20px;
    }

    #uslugi .section__1-ikony {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    #uslugi .section__text-baner {
        padding: 0px;
    }

    #uslugi .section__2-box-item {
        width: 100%;
    }

    #uslugi .section__4-box {
        margin: 50px 0px 0px 0px;
    }

    #uslugi .section__2,
    #uslugi .section__4 {
        margin-bottom: 50px;
    }

    #uslugi .section__2-box {
        margin-bottom: 40px;
        row-gap: 10px;
    }

    #uslugi .section__7 {
        margin-top: 100px;
    }

    #uslugi .section__7-box-line {
        height: 100px;
        margin-bottom: 50px;
        top: -73px;
    }

    #uslugi .section__7-text {
        margin-bottom: 0px;
    }
}

@media (max-width: 700px) {

    #uslugi .section__2-a-text-line,
    #uslugi .section__4-a-text-line {
        display: flex;
        min-width: 2px;
        background-color: var(--color-red);
        height: 100%;
        border-radius: 100px;
    }

    #uslugi .section__2-a-text-line_end,
    #uslugi .section__4-a-text-line_end {
        display: none;
    }
}

@media (max-width: 510px) {

    #uslugi button.button__uslugi-animation,
    #uslugi button.button__uslugi-animation-1 {
        margin-top: 0px;
    }

    #uslugi .section__5-button-animation {
        row-gap: 20px;
        margin-top: 50px;
        flex: 0 1 70%
    }
}

@media (max-width: 500px) {
    #uslugi .section__1 {
        margin-top: 90px;
    }
    #uslugi .section__1-ikony>div {
        width: 100px;
    }
    #uslugi .section__text-h1 h1,
    #uslugi .section__text-h1 h1 span {
        font-size: 25px;
    }
    #uslugi .baner__uslugi {
    height: 400px;
    padding-top: 110px;
}

/*! asgal */

@media (max-width: 992px) {
    #asgal .baner__asgal {
        height: 400px;
        padding-top: 50px;
    }

    #asgal .section__text-h1 h1,
    #asgal .section__text-h1 span {
        font-size: 30px;
    }

    #asgal .section__3-a-box-1 {
        padding: 70px 30px 20px 30px;
    }
}

@media (max-width: 768px) {
    #asgal .section__text-baner {
        padding: 0px;
    }
}

@media (max-width: 700px) {
    #asgal .section__2-a-text-line,
    #asgal .section__3-text-line {
        display: flex;
        min-width: 2px;
        background-color: var(--color-red);
        height: 100%;
        border-radius: 100px;
    }

    #asgal .section__2-a-text-line_end,
    #asgal .section__3-text-line_end {
        display: none;
    }
}

@media (max-width: 700px) {
    #asgal .section__2-box-item {
        display: flex;
    }
}

@media (max-width: 500px) {
    #asgal .section__text-h1 h1,
    #asgal .section__text-h1 span {
        font-size: 25px;
    }
}}

/* slidejs opinie str glowna */

@media (max-width: 992px) {
    .main #splide01-track:before,
    .main #splide01-track:after {
        width: 100px;
    }
}

@media (max-width: 500px) {
    .main #splide01-track:before,
    .main #splide01-track:after {
        width: 0px;
    }
}

/* cookie baner */

.cookie__baner {
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 999;
    margin: 0 auto;
    bottom: 30px;
    left: 0;
    right: 0;
    width: 90%;
    padding: 20px;
    color: #fff;
    background: #000000e0;
    font-size: 12px;
    line-height: 2;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    gap: 20px;
}

/* .cookie__baner:before {
    content: "cancel";
    position: absolute;
    font-family: "Material Symbols Outlined";
    font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;
    color: var(--color-red);
    right: 0;
    top: -28px;
    font-size: 25px;
    width: 50px;
    text-align: center;
    background: #000;
    border-radius: 100px 100px 0px 0px;
} */

.cookie__baner img {
    display: flex;
    place-self: flex-start;
    position: absolute;
    top: -27px;
    left: 0;
    background: #000;
    padding: 10px;
    border-radius: 100px 100px 0px 0px;
    z-index: -1;
}

.cookie__baner span {
    display: block;
}

.cookie__baner span a {
    color: var(--color-red);
    text-decoration: underline;
    font-weight: 600;
}

.cookie__button {
    color: #fff;
    font-size: 12px;
    line-height: 10px;
    border-radius: 8px;
    background-color: var(--color-gray);
    padding: 14px 20px 14px 20px;
    display: flex;
    flex: 1 0 auto;
    border: 0;
}

.cookie__button-cancel {
    color: var(--color-red);
    font-size: 12px;
    line-height: 10px;
    border-radius: 100px;
    padding: 0;
    display: flex;
    flex: 1 0 auto;
    background: none;
    border: 0;
    width: 24px;
}

@media (max-width: 500px) {
    .cookie__baner {
        flex-direction: column;
    }
}

/* nowa sekcja BLOG */

.baner__blog {
    display: flex;
    height: 500px;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    position: relative;
}

.baner__blog .section__text-h1 {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 20px;
    animation: fadeIn .5s ease;
}

.baner__blog .section__text-h1 h1 {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 100;
}

.baner__blog .section__text-h1 span {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 600;
}

.baner__blog .section__baner-box-line {
    display: flex;
    justify-content: center;
    width: 2px;
    background-color: var(--color-red);
    height: 50px;
    border-radius: 100px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
}

.section__blog {
    margin-bottom: 50px;
    position: relative;
}

.section__blog::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0px;
    background: transparent linear-gradient(0deg, #7B7B7B00 0%, #404040 100%) 0% 0% no-repeat padding-box;
    opacity: 0.33;
    z-index: -10;
}

.blogs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    top: -30px;
    position: relative;
}

.blog-item {
    flex: 1 1 auto;
    max-width: 418px;
    background: var(--color-text-white);
    border-radius: 20px;
    overflow: hidden;
}

.blog-text {
    padding: 20px;
    min-height: 270px;
    display: flex;
    flex-direction: column;
}

.blogs img {
    width: 100%;
    height: auto;
    max-width: 450px;
    object-fit: cover;
}

.blogs h1 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blogs p {
    margin-bottom: 20px;
    color: #505050;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.blogs a {
    color: #B90530;
    margin-top: auto;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.blogs a:hover {
    color: #202020;
}

/* do sekcji BLOG więcej */

.baner__blog-wiecej {
    display: flex;
    height: 350px;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    position: relative;
}

.blogs-wiecej strong {font-weight: bold;}

.baner__blog-wiecej .section__text-h1 {
    display: flex;
    text-align: left;
    flex-direction: column;
    animation: fadeIn .5s ease;
}

.baner__blog-wiecej .section__text-h1 h1 {
    color: var(--color-text-white);
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 0;
}

.section__blog-wiecej .blogs-wiecej {
    display: flex;
    flex-wrap: wrap;
    row-gap: 50px;
    column-gap: 50px;
    margin-bottom: 50px;
}

.section__blog-wiecej .blogs-wiecej h2 {
    color: var(--color-text-white);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 30px;
    margin-bottom: 1rem;
 }

 .section__blog-wiecej .blogs-wiecej h3 {color: var(--color-text-white);}

.section__blog-wiecej .blogs-wiecej img {
    /* float: left; */
    /* margin: 0 30px 0 0; */
    width: 100%;
    height: 100%;
    max-width: 450px;
    position: relative;
    border-radius: 20px;
}

.section__blog-wiecej .blogs-wiecej div {flex: 1 1 50%;}

.section__blog-wiecej .blogs-wiecej p {
    color: #cbcbcb;
    font-weight: 300;
    letter-spacing: normal;
    line-height: inherit;
    margin-bottom: 1rem;
}

.section__blog-wiecej .blogs-wiecej ul li {
    color: #cbcbcb;
    font-weight: 300;
    letter-spacing: normal;
    }

.section__blog-wiecej .blog-button-back {
    display: flex;
    margin: 50px 0;
    width: fit-content;
    background: #B90530;
    padding: 10px 20px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    gap: 7px;
}

.section__blog-wiecej .blog-button-back:hover {
    color: var(--color-text-white);
    background: #404040;
}



