/* FONTS */

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

/* FONTS */

/* DEFAULTS */

html {
    height: 100%;
    scroll-behavior: smooth;
}

html[lang="de-DE"] body {
    hyphens: auto;
}

body {
    background-color: #fff;
    font-family: "Poppins", "Arial", sans-serif;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    overflow-x: hidden;
}

img,
object,
embed {
    max-width: 100%;
}

a:hover,
a:focus,
a:active {
    outline: none !important;
    color: #b087ff;
}

em {
    color: #5903ff;
    font-style: normal;
}

strong,
b {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Poppins", "Arial", sans-serif;
    color: #000000;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

h1,
.h1 {
    font-size: 82px;
}

h2,
.h2 {
    font-size: 52px;
}

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-size: 14px;
}

@media (max-width:1366px) {

    .h1,
    h1 {
        font-size: 56px;
    }

    .h2,
    h2 {
        font-size: 36px;
    }

    .h3,
    h3 {
        font-size: 24px;
    }
}

p {
    margin: 0;
}

a {
    color: #b087ff;
    text-decoration: none;
    transition: color .3s ease;
}

textarea {
    resize: vertical;
}

svg,
img {
    max-width: 100%;
    height: auto;
}

picture {
    display: flex;
    /* height: auto; */
    height: 100%;
}

button {
    outline: none !important;
    background-color: transparent;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.container {
    position: relative;
    max-width: 1630px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.container-fw {
    max-width: 100%;
}

main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
    transition: padding .3s ease;
}

.grecaptcha-badge {
    display: none !important;
}

/* btns */

.btn {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    padding: 15px 25px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border: 1px solid transparent;
    transition: color .3s ease, background .3s ease, border .3s ease;
    -webkit-clip-path: polygon(0 16px, 0 100%, 105% 100%, 100% 0, 20px 0);
    clip-path: polygon(0 16px, 0 100%, 105% 100%, 100% 0, 20px 0);
    position: relative;
}

.btn::before {
    content: '';
    width: 54px;
    height: 1px;
    background-color: #919191;
    left: -8px;
    top: -1px;
    position: absolute;
    transform: rotateZ(-38deg);
    transition: background .3s ease;
}

.btn svg {
    max-width: 16px;
}

.btn svg path {
    stroke: #000;
    transition: stroke .3s ease;
}

.btn-primary {
    background: #fff;
    border-color: #919191;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-within {
    background: #5903ff;
    border-color: #5903ff;
    color: #fff;
}

.btn-primary:hover::before,
.btn-primary:active::before,
.btn-primary:focus-within::before {
    background-color: #5903ff;
}

.btn-primary:hover svg path,
.btn-primary:active svg path,
.btn-primary:focus-within svg path {
    stroke: #fff;
}

.btn-secondary {
    background: #5903ff;
    border-color: #5903ff;
    color: #fff;
}

.btn-secondary::before {
    background-color: #5903ff;
}

.btn-secondary svg path {
    stroke: #fff;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus-within {
    background: #6a20ff;
    border-color: #6a20ff;
    color: #fff;
}

.btn-secondary:hover::before,
.btn-secondary:active::before,
.btn-secondary:focus-within::before {
    background-color: #6a20ff;
}

.btn-secondary:hover svg path,
.btn-secondary:active svg path,
.btn-secondary:focus-within svg path {
    stroke: #fff;
}


.btn-tertiary {
    background: #4a4157;
    border-color: #4a4157;
    color: #fff;
}

.btn-tertiary::before {
    background-color: #4a4157;
}

.btn-tertiary svg path {
    stroke: #fff;
}

.btn-tertiary:hover,
.btn-tertiary:active,
.btn-tertiary:focus-within {
    background: #6a20ff;
    border-color: #6a20ff;
    color: #fff;
}

.btn-tertiary:hover::before,
.btn-tertiary:active::before,
.btn-tertiary:focus-within::before {
    background-color: #6a20ff;
}

.btn-tertiary:hover svg path,
.btn-tertiary:active svg path,
.btn-tertiary:focus-within svg path {
    stroke: #fff;
}

/* btns */


/* nav sticky */

.navbar-default {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: top .3s ease, box-shadow .3s ease, background .3s ease;
    transition: top .3s ease, box-shadow .3s ease, background .3s ease;
    z-index: 1002;
}

body:not(.hero-active) .navbar-default {
    background-color: #5803ff;
}

.navbar-sticky .navbar-default {
    background-color: #5803ff;

}

.navbar-sticky .nav-wrapper {
    padding: 25px 0;
}

/* nav sticky */

/* nav */

.nav-wrapper {
    padding: 40px 0;
    transition: padding .3s ease;
}

.nav-wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-wrapper .main-logo {
    transition: transform .3s ease;
    position: relative;
    z-index: 9;
}

.nav-wrapper .main-logo img {
    transition: opacity .3s ease;
}

.nav-wrapper .main-logo:hover {
    transform: scale(0.95);
}

.nav-wrapper .hamburger {
    display: none;
}

.nav-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 40px;
    padding: 0;
    margin: 0;
    scrollbar-width: thin;
}

.navbar-nav a {
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    padding: 10px;
    font-weight: 600;
}

.navbar-nav li.active:not(.menu-item-object-custom) a,
.navbar-nav a:hover {
    color: #b087ff;
}

@media (min-width:1200px) {
    .navbar-nav {
        margin-left: -10px;
        margin-right: -10px;
    }

    .hamburger-logo {
        display: none;
    }

    body:not(.hero-active) .nav-buttons .btn-secondary,
    .navbar-sticky .nav-buttons .btn-secondary {
        background: #fff;
        border-color: transparent;
        color: #000;
    }

    body:not(.hero-active) .nav-buttons .btn-secondary svg path,
    .navbar-sticky .nav-buttons .btn-secondary svg path {
        stroke: #000;
    }

    body:not(.hero-active) .nav-buttons .btn-secondary:hover,
    .navbar-sticky .nav-buttons .btn-secondary:hover,
    .navbar-sticky .nav-buttons .btn-primary:hover {
        background: #000;
        color: #fff;
    }

    body:not(.hero-active) .nav-buttons .btn-secondary:hover svg path,
    .navbar-sticky .nav-buttons .btn-secondary:hover svg path {
        stroke: #fff;
    }
}

@media (max-width:1199px) {

    .navbar-sticky .nav-wrapper {
        padding: 10px 0;
    }

    .nav-primary {
        position: absolute;
        left: 0;
        top: -12px;
        width: 100%;
        transform: translateX(100%);
        transition: transform .3s ease;
        background-color: #343434;
        height: 100vh;
        padding: 25px;
    }

    .nav-primary.active {
        transform: translateX(0);
    }

    .navbar-nav li.active a,
    .navbar-nav a:hover {
        color: #fff;
    }

    .nav-wrapper {
        padding: 12px 0;
    }

    .nav-wrapper .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        z-index: 99;
    }

    .nav-wrapper .bar {
        width: 24px;
        height: 2px;
        background-color: #fff;
        margin: 4px 0;
        transition: 0.4s;
    }

    .nav-wrapper .hamburger {
        display: flex;
    }

    .hamburger-logo {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateY(100%) translateX(-50%);
        width: 100%;
        max-width: 75%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-primary {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 16px;
        height: 100%;
    }


    .nav-menu-wrapper {
        width: 100%;
        padding: 0;
    }

    .nav-menu-wrapper nav {
        transform: translateX(100%);
        transition: transform .3s ease;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 99;
        width: 100%;
    }

    .nav-menu-wrapper.active nav {
        transform: translateX(0);
    }

    .nav-wrapper .bar.active:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 6px);
    }

    .nav-wrapper .bar.active:nth-child(2) {
        opacity: 0;
    }

    .nav-wrapper .bar.active:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -6px);
    }

    .nav-menu-wrapper {
        border-bottom: 0;
    }

    .nav-buttons {
        flex-direction: column;
    }
}

.language-switcher {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.lang-btn {
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.lang-btn::after {
    content: "";
    background-image: url(../images/angle-bottom.png);
    background-repeat: no-repeat;
    margin-left: 5px;
    width: 16px;
    height: 9px;
    transition: transform .3s ease;
}

body:not(.hero-active) .lang-btn::after,
.navbar-sticky .lang-btn::after {
    filter: grayscale(1) brightness(100);
}

.language-switcher:hover .lang-btn::after {
    transform: rotateZ(180deg);
}

.lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    z-index: 100;
    background-color: #5903ff;
}

.lang-menu a {
    display: block;
    padding: 6px 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.language-switcher:hover .lang-menu {
    display: block;
}

/* nav */

/* features */

.features {
    background-color: #f9f7f7;
    padding: 120px 0 140px;
    position: relative;
}

.features::before {
    content: '';
    clip-path: polygon(100% 0, 100% 25%, 0 100%, 0 75%);
    position: absolute;
    left: 0;
    top: 75%;
    background-color: #5903ff;
    width: 21vw;
    height: auto;
    aspect-ratio: 1;
    transform: translateY(-50%);
}

.features::after {
    content: '';
    clip-path: polygon(100% 0, 100% 25%, 0 100%, 0 75%);
    position: absolute;
    right: 0;
    top: 50%;
    background-color: #5903ff;
    width: 21vw;
    height: auto;
    aspect-ratio: 1;
    transform: translateY(-50%);
}

.features .container {
    z-index: 4;
}

.features .block-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features .block-title p {
    font-weight: 200;
    font-size: 30px;
}

.features .block-title h2 {
    font-weight: 800;
    font-size: 52px;
}

.features .features-wrapper {
    padding-top: 130px;
    display: flex;
}

.features .feature-single {
    width: 25%;
    border: 1px solid #dfdfdf;
    background-color: #fff;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.features .feature-single::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background-color: #5903ff;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 43;
}

.features .feature-single:hover::before {
    opacity: 1;
}

.features .feature-icon {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 22px;
    margin-bottom: 15px;
}

.features .feature-icon::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/icon-shape.png);
    width: 70px;
    height: auto;
    aspect-ratio: 1;
    z-index: 0;
    transform: translateX(-22px) translateY(-5px);
}

.features .feature-icon::after {
    content: '';
    width: 20px;
    height: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    background-color: #000;
}

.features .feature-icon img {
    z-index: 1;
    position: relative;
    /* transition: filter .3s ease; */
}

.features .feauture-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease;
}

.features .feauture-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #554a67;
    z-index: 0;
    opacity: 0.7;
}

.features .feauture-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.features .feature-single>*:not(.feauture-image) {
    z-index: 1;
    position: relative;
}

.features .feature-single.has-image:hover .feauture-image {
    opacity: 1;
}

.features .feature-single.has-image:hover .feature-icon img {
    filter: brightness(100) grayscale(1);
}

.features .feature-single .feature-description *,
.features .feature-single .feature-title * {
    transition: color .3s ease;
}

.features .feature-single.has-image:hover .feature-description *,
.features .feature-single.has-image:hover .feature-title * {
    color: #fff;
}

@media (max-width:1366px) {
    .features {
        padding: 80px 0;
    }

    .features .feature-single {
        padding: 25px 20px;
    }

    .features .block-title h2 {
        font-size: 46px;
    }

    .features .block-title p {
        line-height: 1.25;
    }
}

@media (max-width:991px) {
    .features .features-wrapper {
        flex-wrap: wrap;
        padding-top: 60px;
    }

    .features .feature-single {
        width: 50%;
    }

    .features .block-title h2 {
        font-size: 36px;
    }

    .features .block-title p {
        font-size: 24px;
    }
}

@media (max-width:768px) {
    .features {
        padding: 50px 0;
    }

    .features .feature-single {
        width: 100%;
    }

    .features .block-title h2 {
        font-size: 28px;
    }

    .features .block-title p {
        font-size: 20px;
    }

    .features .feature-single .feature-description *,
    .features .feature-single .feature-title * {
        text-align: center;
    }
}

/* features */

/* pricing */

.pricing {
    padding: 90px 0 150px;
    position: relative;
    background-color: #fff;
    background-image: url(../images/pricing-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 50% 50%;
}

/* .pricing .blocked-btn {
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1001;
}

.pricing .blocked-btn .btn {
    background-color: #000;
    border-color: #000;
}

.pricing .blocked-btn .btn::before {
    background-color: #000;
}

.pricing.blocked::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    width: 100%;
    height: 75%;
    backdrop-filter: blur(10px);
    z-index: 9;
} 
 
@media (max-width:991px) {
    .pricing.blocked::before {
        top: 10%;
        height: 90%;
    }

    .pricing .blocked-btn {
        top: 15%;
        z-index: 999;
    }

    .pricing .blocked-btn .btn {
        width: 100%;
    }
}

@media (max-width:768px) {
    .pricing.blocked::before {
        top: 10%;
        height: 90%;
    }
}

@media (max-width:479px) {
    .pricing .blocked-btn {
        max-width: 90%;
        width: 100%;
    }
} */

.pricing .block-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 160px;
}

.pricing .block-title p {
    font-weight: 200;
    font-size: 30px;
}

.pricing .block-title h2 {
    font-weight: 800;
    font-size: 52px;
}

.pricing .pricing-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 30px;
}

.pricing .pricing-single {
    width: calc(20% - 25px);
    border: 1px solid #dfdfdf;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    background-color: #fff;
}

.pricing .pricing-single.featured::before {
    content: '';
    position: absolute;
    text-align: center;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    left: 0;
    transform: translateY(-8px) translateX(-8px);
    top: 0;
    border: 9px solid #5903ff;
}

.pricing .pricing-single.featured::after {
    content: attr(data-badge);
    position: absolute;
    text-align: center;
    width: calc(100% + 16px);
    height: 80px;
    left: 0;
    top: 0;
    background-color: #5903ff;
    transform: translateY(-100%) translateX(-8px);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}

.pricing .pricing-title span {
    font-size: 24px;
}

.pricing .pricing-title h3 {
    font-size: 36px;
}

.pricing .pricing-title * {
    font-weight: 800;
    color: #5903ff;
}

.pricing .btn {
    width: 100%;
    padding-block: 21px;
}

.pricing .pricing-description {
    font-weight: 600;
}

.pricing .pricing-price {
    margin: 20px 0;
}

.pricing .pricing-price div {
    display: flex;
    align-items: flex-end;
}

.pricing .pricing-price div span {
    font-size: 22px;
    color: #5903ff;
}

.pricing .pricing-price div .price {
    font-size: 68px;
    color: #5903ff;
    font-weight: 800;
    line-height: 1;
}

.pricing .pricing-price div .under-price {
    color: #9e9e9e;
    font-size: 14px;
    font-weight: 700;
}

.pricing .pricing-features {
    margin-top: 14px;
    border-top: 1px solid #dadada;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing .pricing-features ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing .pricing-features li {
    position: relative;
    padding-left: 17px;
    font-size: 14px;
}

.pricing .pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
}

.pricing .pricing-features ul.pricing-included li::before {
    content: '+';
    color: #34b236;
}

.pricing .pricing-features ul.pricing-excluded li::before {
    content: '-';
    color: #b8594b;
}

@media (max-width:1600px) {
    .pricing .pricing-single {
        padding: 40px 30px;
    }

    .pricing .pricing-price div .price {
        font-size: 48px;
    }
}

@media (max-width:1366px) {

    .pricing .block-title h2 {
        font-size: 46px;
    }

    .pricing .block-title p {
        line-height: 1.25;
    }
}

@media (max-width:1199px) {
    .pricing .pricing-wrapper {
        flex-wrap: wrap;
        gap: 40px;
    }

    .pricing .pricing-single {
        width: 100%;
        order: 1;
    }

    .pricing .pricing-single.featured {
        order: 0;
    }

    .pricing .block-title {
        padding-bottom: 120px;
    }

    .pricing .pricing-single {
        width: calc(32% - 40px);
    }
}

@media (max-width:991px) {
    .pricing .block-title h2 {
        font-size: 36px;
    }

    .pricing .block-title p {
        font-size: 24px;
    }

    .pricing .pricing-single {
        width: calc(50% - 40px);
    }
}

@media (max-width:768px) {
    .pricing {
        padding: 50px 0;
    }

    .pricing .block-title h2 {
        font-size: 28px;
    }

    .pricing .block-title p {
        font-size: 20px;
    }

    .pricing .pricing-single {
        width: 100%;
    }

}

@media (min-width:1199px) and (max-width:1500px) {
    .pricing .pricing-wrapper {
        gap: 60px 10px;
    }

    .pricing .pricing-single {
        width: calc(20% - 10px);
        gap: 15px;
        padding: 30px 20px;
    }

    .pricing .pricing-title span {
        font-size: 16px;
    }

    .pricing .pricing-title h3 {
        font-size: 24px;
    }

    .pricing .pricing-single.featured::after {
        font-size: 16px;
    }

    .pricing .pricing-price div .price {
        font-size: 36px;
    }

    .pricing .pricing-price {
        margin: 10px 0;
    }

    .pricing .btn {
        padding-block: 12px;
    }
}

/* pricing */

/* footer */

footer {
    background-color: #000;
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    color: #fff;
}

footer .footer-logo {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

footer .footer-wrapper {
    display: flex;
    align-items: center;
}

footer .footer-column {
    width: 50%;
    display: flex;
}

footer .footer-contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    font-size: 18px;
    font-weight: 300;
}

footer .footer-contact-wrapper a {
    color: #fff;
}

footer .footer-contact-wrapper a:hover {
    color: #5803ff;
}

footer .footer-contact-wrapper strong {
    font-size: 24px;
    font-weight: 900;
}

footer .contact-row {
    display: flex;
    gap: 100px;
}

footer .contact-single {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 50%;
}

footer .contact-data {
    line-height: 1.5;
}

footer .contact-icon {
    position: relative;
}

footer .contact-icon::before {
    -webkit-clip-path: polygon(100% 0%, 100% 40%, 0 100%, 0 60%);
    clip-path: polygon(100% 0%, 100% 40%, 0 100%, 0 60%);
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    background-color: #5803ff;
    width: 60px;
    height: 100px;
    transform: translateY(-50%) translateX(-50%);
    z-index: 0;
}

footer .contact-icon img {
    max-width: 66px;
    z-index: 4;
    position: relative;
    transition: transform .3s ease;
}

footer .contact-single:hover .contact-icon img {
    transform: scale(0.95);
}

@media (max-width:1366px) {
    footer .contact-row {
        gap: 50px;
        justify-content: center;
    }

    footer .footer-wrapper {
        flex-wrap: wrap;
        gap: 50px;
    }

    footer .footer-column {
        width: 100%;
    }

    footer .footer-contact-wrapper {
        width: 90%;
        margin: 0 auto;
    }
}

@media (max-width:991px) {
    footer {
        background-attachment: fixed;
    }

    footer .footer-contact-wrapper {
        width: 100%;
        gap: 60px;
    }

    footer .contact-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    footer .contact-single {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 25px;
    }

    footer .footer-logo {
        max-width: 300px;
    }
}

/* footer */

/* categories */

.categories {
    background-color: #020612;
    position: relative;
    background-image: url(../images/categories-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 130px;
    overflow: hidden;
}

.categories *:not(em) {
    color: #fff;
}

.categories .categories-wrapper {
    display: flex;
}

.categories .categories-column {
    width: 50%;
}

.categories .categories-column.cat-left {
    display: flex;
    gap: 30px;
}

.categories .categories-column.cat-right {
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.categories .categories-column-single.cat-title-wrapper {
    width: 47%;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.categories .categories-column-single.cat-title-wrapper .cat-desc {
    font-size: 18px;
    line-height: 1.5;
}

.categories .categories-column-single.cat-image-wrapper {
    width: 53%;
    background-color: #fff;
}

.categories .categories-column-single.cat-image-wrapper img {
    width: 100%;
}

.categories .categories-column-single.cat-image-wrapper * {
    color: #000000;
}

.categories .categories-column-single {
    display: flex;
    flex-direction: column;
}

.categories .categories-column-single h2 {
    font-size: 48px;
    font-weight: 800;
}

.categories .categories-column-single h2 em {
    font-size: 76px;
}

.categories .cat-numbers {
    padding: 50px 35px 50px 35px;
}

.categories .cat-numbers h2 {
    font-size: 90px;
}

.categories .number-desc-1 {
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
}

.categories .number-desc-2 {
    font-size: 24px;
    font-weight: 300;
    color: #5903ff !important;
    margin-top: 60px;
}

.categories .col-title {
    font-size: 48px;
    font-weight: 800;
    display: flex;
    align-items: flex-end;
}

.categories .cat-columns2 {
    display: flex;
    gap: 30px;
}

.categories .col-1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.categories .col-text ul {
    margin: 0;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.categories .cat-title2 h2 {
    font-size: 48px;
}

@media (max-width:1440px) {

    .categories .categories-column-single h2 em,
    .categories .categories-column-single h2 {
        font-size: 46px;
    }

    .categories .col-title,
    .categories .cat-title2 h2 {
        font-size: 36px;
    }

    .categories .cat-numbers {
        padding: 30px;
    }

    .categories .categories-column.cat-right {
        padding-left: 30px;
    }

    .categories .number-desc-2 {
        margin-top: 40px;
    }
}

@media (max-width:1199px) {

    .categories .categories-column-single h2 em,
    .categories .categories-column-single h2 {
        font-size: 36px;
    }

    .categories .col-title,
    .categories .cat-title2 h2 {
        font-size: 28px;
    }

    .categories .cat-numbers {
        padding: 20px;
    }

    .categories .categories-column.cat-right {
        padding-left: 20px;
    }

    .categories .number-desc-2 {
        margin-top: 30px;
        font-size: 18px;
    }
}

@media (max-width:991px) {
    .categories {
        padding: 60px 0;
    }

    .categories .categories-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .categories .categories-column {
        width: 100%;
    }
}

@media (max-width:768px) {
    .categories .categories-column.cat-left {
        flex-direction: column;
    }

    .categories .categories-column-single.cat-image-wrapper,
    .categories .categories-column-single.cat-title-wrapper {
        width: 100%;
    }

    .categories .cat-columns2 {
        flex-wrap: wrap;
    }

    .categories .col-title,
    .categories .cat-title2 h2 {
        line-height: 1.4;
    }

    .categories {
        background-attachment: fixed;
    }

}

/* categories */

/* blog post */

body.single-post .single-blog-post {
    margin-top: 140px;
    padding-bottom: 100px;
}

body.single-post .single-blog-post .container {
    max-width: 1200px;
    margin: 0 auto;
}

body.single-post h1 {
    font-size: 46px;
}

body.single-post h2 {
    font-size: 36px;
}

body.single-post h3 {
    font-size: 28px;
}

body.single-post h4,
body.single-post h5,
body.single-post h6 {
    font-size: 20px;
}

body.single-post h1,
body.single-post h2,
body.single-post h3,
body.single-post h4,
body.single-post h5,
body.single-post h6 {
    margin: 48px 0 16px;
}

body.single-post h1 {
    margin-top: 0;
}

body.single-post .single-blog-post-content * {
    margin-bottom: 20px;
}

body.single-post .single-blog-post-content h2,
body.single-post .single-blog-post-content h3,
body.single-post .single-blog-post-content h4,
body.single-post .single-blog-post-content h5,
body.single-post .single-blog-post-content h6 {
    color: #5803ff;
}

.single-post-wrapper {
    display: flex;
    gap: 50px;
}

.single-blog-post-content {
    width: 70%;
}

.single-blog-post-sidebar {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    top: 120px;
    position: sticky;
}

.single-post-new {
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 16px;
    transition: background .3s ease, color .3s ease;
}

.single-post-new:hover {
    background-color: #5903ff;
    color: #fff;
}

.single-post-new:hover h4 {
    color: #fff;
}

.single-post-new h4 {
    margin: 0 !important;
    font-size: 18px !important;
    transition: color .3s ease;
}

@media (max-width:1199px) {

    body.single-post h1 {
        font-size: 36px;
    }

    body.single-post h2 {
        font-size: 26px;
    }

    body.single-post h3 {
        font-size: 22px;
    }

    body.single-post h4,
    body.single-post h5,
    body.single-post h6 {
        font-size: 16px;
    }
}

@media (max-width:991px) {
    .single-post-wrapper {
        flex-wrap: wrap;
    }

    .single-blog-post-sidebar,
    .single-blog-post-content {
        width: 100%;
    }
}

/* blog post */

/* blog */

.blog-container {
    margin: 120px auto 0;
    padding: 20px 0 60px;
    width: 100%;
}

.blog-container .container {
    max-width: 1200px;
}

.blog-title h1 {
    margin-bottom: 60px;
    font-size: 42px;
}

.blog-categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.blog-categories li a {
    display: block;
    padding: 10px 15px;
    background: #fff;
    border: 2px solid #5803ff;
    color: #5803ff;
    border-radius: 0;
    text-decoration: none;
    transition: background .3s ease, border .3s ease, color .3s ease;
}

.blog-categories li a:hover {
    background: #6a20ff;
    color: #fff;
}

.blog-categories li a.active {
    background-color: #5803ff;
    color: #fff;
    border-color: #5803ff;
}

.posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.post-item {
    width: calc(50% - 20px);
    overflow: hidden;
    background: #fff;
}

.post-item:hover .post-thumbnail img {
    transform: scale(1.03);
}

.post-thumbnail img {
    width: 100%;
    aspect-ratio: 636 / 358;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-thumbnail {
    position: relative;
    line-height: 0.8;
    overflow: hidden;
    -webkit-clip-path: polygon(0 10%, 0 100%, 105% 100%, 100% 0, 7.5% 0);
    clip-path: polygon(0 10%, 0 100%, 105% 100%, 100% 0, 7.5% 0);
}

.post-thumbnail .post-category {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #5803ff;
    color: #fff;
    padding: 8px 16px;
    z-index: 99;
}

.single-post-thumbnail {
    aspect-ratio: 820 / 400;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: 50% 50%;
    -webkit-clip-path: polygon(0 10%, 0 100%, 105% 100%, 100% 0, 7.5% 0);
    clip-path: polygon(0 10%, 0 100%, 105% 100%, 100% 0, 7.5% 0);
}

.post-info {
    padding: 16px 0;
}

.post-date {
    font-size: 14px;
    color: #777;
}

.post-title {
    font-size: 18px;
    margin: 10px 0;
}

.post-excerpt {
    font-size: 16px;
    color: #555;
}

.single-blog-post-sidebar h5 {
    margin-top: 0 !important;
}

.pagination {
    text-align: left;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.pagination .page-numbers {
    padding: 8px;
    width: 32px;
    height: auto;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color .3s ease, background .3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: #5803ff;
    color: #fff;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    width: auto;
    aspect-ratio: auto;
}

.post-cat-date {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.post-cat-date a {
    color: #fff;
    background-color: #5903ff;
    padding: 8px;
}

.post-cat-date span {
    margin-left: 16px;
}

@media (max-width:768px) {
    .post-item {
        width: 100%;
    }
}

/* blog */

/* misc */

.scrollWrapper {
    position: relative;
    top: -120px;
}

/* misc */

/* hero */

.hero {
    padding: 230px 0 0;
    background-color: #343434;
    color: #fff;
    background-image: url(../images/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: 50% 50%;
}

.hero+script+.rich-text,
.hero+.rich-text {
    padding-top: 60px;
}

.hero .hero-parallax {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: auto;
    overflow: hidden;
}

.hero .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hero .hero-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero .hero-text {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}

.hero .hero-text>* {
    font-size: 48px;
    color: #fff;
}

.hero .hero-text-wrapper {
    width: 50%;
}

.hero .hero-image-wrapper {
    width: 50%;
}

.hero .hero-image-wrapper img {
    width: 100%;
}

.hero .scrollbottom {
    z-index: 99;
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: auto;
    align-items: center;
    padding: 120px 0 30px;
    font-size: 14px;
    color: #9099b0;
    width: auto;
    cursor: pointer;
}

.hero .scrollbottom p {
    position: absolute;
    transform: translateX(-100%);
}

.hero .scrollbottom img {
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: bounceKeyframes;
    animation-timing-function: cubic-bezier(0.280, 0.840, 0.420, 1);
}

@keyframes bounceKeyframes {
    0% {
        transform: scale(1, 1) translateY(0);
    }

    10% {
        transform: scale(1.1, .9) translateY(0);
    }

    30% {
        transform: scale(.9, 1.1) translateY(-20px);
    }

    50% {
        transform: scale(1.05, .95) translateY(0);
    }

    57% {
        transform: scale(1, 1) translateY(-4px);
    }

    84% {
        transform: scale(1, 1) translateY(0);
    }

    100% {
        transform: scale(1, 1) translateY(0);
    }
}

@media (min-width:1366px) {
    .hero .hero-text-wrapper {
        margin-top: 50px;
    }
}

@media (max-width:1199px) {
    .hero {
        padding: 150px 0 0;
    }

    .hero .scrollbottom {
        padding: 100px 0 20px;
    }

    .hero .hero-text {
        gap: 30px;
        margin-bottom: 30px;
    }

    .hero .hero-text>* {
        font-size: 36px;
        line-height: 1.4;
    }

    .hero .hero-wrapper {
        flex-wrap: wrap;
    }

    .hero .hero-text-wrapper,
    .hero .hero-image-wrapper {
        width: 100%;
    }
}

@media (max-width:768px) {
    .hero {
        padding: 100px 0 0;
        overflow: hidden;
    }

    .hero .scrollbottom {
        padding: 60px 0 20px;
    }

    .hero .scrollbottom p {
        display: none;
    }

    .hero .hero-text>* {
        font-size: 28px;
    }
}

/* hero */

/* modal */

body.modal-opened {
    overflow-y: hidden;
}

.modal {
    display: none;
    /* Ukryty na początku */
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    color: #000;
    background-color: #fff;
    /* background-color: #343434; */
    /* Ciemne tło dla modala */
    /* color: #fff; */
    margin: 5% auto;
    padding: 20px;
    border-radius: 0;
    width: 80%;
    max-width: 400px;
    position: relative;
    /* background-image: url(../images/categories-bg.png); */
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}

.modal-content h2 {
    color: #343434;
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 1.4;
    padding-right: 20px;
}

.close {
    color: #fff;
    background-color: #343434;
    border: none;
    padding: 10px;
    font-size: 42px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 0;
    aspect-ratio: 1;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.close span {
    transition: transform .3s ease;
}

.close:hover span {
    transform: rotateZ(90deg);
}

.modal-content .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 60svh;
    overflow-y: auto;
}

.modal-content .wpcf7-form textarea {
    min-height: 140px;
    height: 140px;
}

.modal-content .wpcf7-form textarea,
.modal-content .wpcf7-form input.wpcf7-text,
.modal-content .wpcf7-form input.wpcf7-mail {
    width: 100%;
    outline: 0;
    border-radius: 20px;
    border: 0;
    padding: 4px 8px;
    border: 1px solid #343434;
}

.modal-content .wpcf7-list-item {
    margin: 0;
}

.modal-content .wpcf7-submit {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    padding: 15px 25px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border: 1px solid transparent;
    transition: color .3s ease, background .3s ease, border .3s ease;
    -webkit-clip-path: polygon(0 16px, 0 100%, 105% 100%, 100% 0, 20px 0);
    clip-path: polygon(0 16px, 0 100%, 105% 100%, 100% 0, 20px 0);
    position: relative;
    cursor: pointer;
    background: #343434;
    border-color: #343434;
}

.modal-content .wpcf7-submit:hover,
.modal-content .wpcf7-submit:active,
.modal-content .wpcf7-submit:focus-within {
    background: #5903ff;
    border-color: #5903ff;
    color: #fff;
}

.modal-content .wpcf7 form .wpcf7-response-output {
    margin: 0;
}

@media (max-width:991px) {

    .modal-content {
        margin: 7.5% 15px;
        width: auto;
    }

    .modal-content h2 {
        color: #343434;
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* modal */

/* custom animations */

@media (min-width:991px) {
    footer .to-hover {
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    footer .to-hover span {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    footer .to-hover span:last-child {
        transform: translateY(100%);
    }

    footer .to-hover:hover span:first-child {
        top: -100%;
        transform: translateY(-100%);
    }

    footer .to-hover span:last-child {
        position: absolute;
    }

    footer .to-hover:hover span:last-child {
        transform: translateY(0%);
    }
}

@media (max-width:991px) {
    footer .to-hover span:last-child {
        display: none;
    }
}


/* custom animations */