/* .button-cedo {
    display: flex;
    background-color: aqua;
} */

/* NEW BUTTON  */

.button-property {
    background-color: #1d2123;
}

.button-wrap {
    background-color: aqua;
}

.button-text {
    background-color: #1d2123;
    padding: 10px 30px;
    font-weight: 500;
    font-size: 16px;
    color: white;
    border-radius: 4px;
    font-family: sans-serif;
}

/* GLOBAL  */

.sub-title {
    color: #1d2123;
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    padding: 0;
    margin: 0;
}

.sub-title-large {
    color: #1d2123;
    font-size: 27px;
    font-weight: 400;
    line-height: 35px;
    padding: 0;
    margin: 0;
}

.title {
    font-family: PlayFairDisplay;
    color: #1d2123;
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    padding: 0;
    margin: 0;
}

.card-title {
    color: #282828;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: none;
}

.card-sub-title {
    color: #1d2123;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.button-primary {
    font-size: 16px;
    line-height: 22px;
    border: 2px solid #1d2123;
    border-radius: 4px;
    background-color: #282828;
    padding: 10px 30px;
    color: #fff;
    font-weight: 500;
}

.button-primary-playfair {
    position: relative;
    font-size: 16px;
    line-height: 22px;
    border: 2px solid #1d2123;
    border-radius: 4px;
    background-color: #282828;
    padding: 10px 30px;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
    transition: background-color 0.6s ease;
}

.button-primary-playfair:hover {
    background-color: #6a6a6b;
    box-shadow: 0 12.5px 40px rgba(0, 0, 0, 0.15);
}

.button-primary-playfair::before,
.button-primary-playfair::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    background: #6a6a6b;
    transition: width 0.6s ease-out, opacity 0.6s ease-out;
}

.button-primary-playfair::before {
    left: 0;
    opacity: 0;
}

.button-primary-playfair::after {
    right: 0;
    opacity: 0;
}

.button-primary-playfair.animate::before,
.button-primary-playfair.animate::after {
    width: 50%;
    opacity: 0.3;
}

.button-primary-playfair.animate::before {
    animation: slideInLeft 0.6s forwards;
}

.button-primary-playfair.animate::after {
    animation: slideInRight 0.6s forwards;
}

.button-primary-playfair-secondary {
    position: relative;
    font-size: 16px;
    line-height: 22px;
    border: 2px solid #ebebeb;
    border-radius: 4px;
    background-color: #f2f2f2;
    padding: 10px 30px;
    color: #000;
    font-weight: 500;
    overflow: hidden;
    transition: background-color 0.6s ease;
}

.button-primary-playfair-secondary:hover {
    background-color: #dadada;
    box-shadow: 0 12.5px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid #000;
}

.button-primary-playfair-secondary::before,
.button-primary-playfair-secondary::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    background: #e4dede;
    transition: width 0.6s ease-out, opacity 0.6s ease-out;
}

.button-primary-playfair-secondary::before {
    left: 0;
    opacity: 0;
}

.button-primary-playfair-secondary::after {
    right: 0;
    opacity: 0;
}

.button-primary-playfair-secondary.animate::before,
.button-primary-playfair-secondary.animate::after {
    width: 50%;
    opacity: 0.3;
}

.button-primary-playfair-secondary.animate::before {
    animation: slideInLeft 0.6s forwards;
}

.button-primary-playfair-secondary.animate::after {
    animation: slideInRight 0.6s forwards;
}

@keyframes slideInLeft {
    0% {
        width: 0;
    }
    100% {
        width: 80%;
    }
}

@keyframes slideInRight {
    0% {
        width: 0;
    }
    100% {
        width: 20%;
    }
}

.button-secondary {
    font-size: 16px;
    line-height: 22px;
    border: 2px solid #ebebeb;
    border-radius: 4px;
    background-color: #f2f2f2;
    padding: 10px 30px;
    color: #000;
    font-weight: 500;
}

.icon-wrapper {
    color: #1d2123;
    width: 50px;
    height: 50px;
}

.icon-wrapper-cards {
    color: #1d2123;
    width: 45px;
    height: 45px;
}

/* UTIL  */

.translated-image {
    height: 100% !important;
    width: auto;
    object-fit: cover;
}

.flex-one {
    display: flex;
    flex: 1;
}

.flex-one-column {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.flex-one-end {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.flex-one-start {
    display: flex;
    justify-content: flex-start;
    flex: 1;
}

.padding-0 {
    padding: 0;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex-gap {
    display: flex;
    gap: 20px;
}

.flex-column-gap-60 {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.flex-column-gap-20 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flex-gap-10 {
    display: flex;
    gap: 10px;
}

.flex-gap-10-align {
    display: flex;
    gap: 10px;
    align-items: center;
}

.flex-gap-align {
    display: flex;
    gap: 20px;
    align-items: center;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
}

.margin-width-padding-50 {
    margin: auto;
    width: 1200px;
    padding: 50px 0;
}

.content-gap {
    margin-top: 40px;
}

.flex-1-column {
    display: flex;
    flex: 1;
    flex-direction: column;
}
.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-column-gap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flex-column-gap-10 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-between-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flex-between-gap-40 {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.flex-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-between-align-end {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.align-start {
    align-items: flex-start;
}
.flex-column-gap-margin {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 15%;
}

.flex-column-gap-margin-auto {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}

.padding-20 {
    padding: 20px;
}

.padding-30 {
    padding: 30px;
}

.normalize {
    margin: 0;
    padding: 0;
}

/* IMAGE  */

.image {
    object-fit: cover;
    width: 100%;
}

/* HERO  */

.icon-wrapper {
    width: 50px;
    height: 50px;
}

.icon-wrapper-small {
    width: 20px;
    height: 20px;
}

.button-text {
    font-family: "Graphik", sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
}

.button-text-card {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    background-color: transparent;
    align-items: center;
}

.button-text a {
    color: #1d2123 !important;
}

.svg-wrapper {
    width: 10px;
    height: 17px;
}

.single-element-wrapper {
    display: flex;
    width: 100%;
    gap: 40px;
    justify-content: space-between;
}

.single-element-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 185px;
    height: 100%;
    border-radius: 4px;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
}

.single-element-card-long {
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 150px;
    height: 100%;
    border-radius: 6px;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
    background-color: #f6f6f6;
}

.single-element-card-image {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    min-height: 310px;
    height: 100%;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
    background-color: #f6f6f6;
}

.hero-element-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
}

.hero-cards-wrapper2 {
    gap: 20px;
    display: grid;
    flex-direction: column;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.hero-option4-wrapper {
    width: 100%;
}

.hero-badge-text {
    color: #4a86e8;
    padding: 12px;
    border-radius: 28px;
    border: 1px solid #4a86e8;
    background-color: #eef7fe;
    font-size: 12px;
    display: flex;
    align-items: center;
    max-height: 35px;
}

.countries-text {
    word-spacing: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #282828 !important;
}

.properti-grid {
    display: grid;
    gap: 20px;
}

/* =============== CTA ================  */

.cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-card-title {
    color: #1d2123;
    font-size: 27px;
    font-weight: 500;
    line-height: 35px;
}

/* .cta-card-title-sticky {
    color: #1d2123;
    font-size: 27px;
    font-weight: 500;
    line-height: 35px;
    flex: 1;
    overflow: auto;
    height: 96px;
    align-items: center;
    display: flex;
} */

.cta-card-title-sticky {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-9a810da-font-family), Grapik;
    font-size: var(--e-global-typography-9a810da-font-size);
    font-weight: var(--e-global-typography-9a810da-font-weight);
    line-height: var(--e-global-typography-9a810da-line-height);
    width: 400px;
}

.cta-card-subtitle {
    color: #1d2123;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.cta-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    justify-content: space-between;
    max-width: 50%;
}

.cta-sticky {
    position: sticky;
    top: 0px;
    z-index: 999;
    height: 96px;
    width: 100%;
    background-color: #aaf2d4;
}

.cta-icon-text {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-bf16d31-font-family), Grapik;
    font-size: var(--e-global-typography-bf16d31-font-size);
    font-weight: var(--e-global-typography-bf16d31-font-weight);
    line-height: var(--e-global-typography-bf16d31-line-height);
}

.cta-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    border-radius: 50% !important;
}

.cta-text {
    color: #1d2123;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.cta-number-text {
    color: #1d2123;
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    height: 28px;
    width: 200px;
}

.callout {
    float: left;
    /* margin: 0 0 20px 0; */
    padding: 0 calc((100% - 1200px) / 2);
    /* color: #FFF; */
    background: #aaf2d4;
    border-radius: 3px;
    z-index: 999;
    height: 96px;
}

[data-sticky] {
    position: static;
    width: 100% !important;
}

[data-sticky].sticky {
    position: fixed;
    top: 0;
}

.small-icon {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: space-between;
    padding: 10px;
    background-color: #f8f8f8;
    gap: 30px;
}

/* VELIKA  */
@media only screen and (min-width: 1025px) {
    .properti-grid.desktop-1 {
        grid-template-columns: repeat(1, 1fr);
    }
    .properti-grid.desktop-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .properti-grid.desktop-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .properti-grid.desktop-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .properti-grid.desktop-5 {
        grid-template-columns: repeat(5, 1fr);
    }
    /* Add more classes as needed */

    .no-big-screen {
        display: none !important;
    }

    #hero-left-section {
        padding-left: max(calc((100% - 1200px) / 2), 20px);
        padding-top: 80px;
        padding-bottom: 80px;
        gap: 80px;
    }

    .comparison-wrapper {
        display: flex !important;
        gap: 20px !important;
    }
    .grid-container {
        width: 67% !important;
    }

    .hero-margin-bottom-40 {
        margin-bottom: 40px;
    }
    .big-screen-gap-50 {
        gap: 50px;
    }
    #hero-left-section {
        gap: 80px;
    }
    #hero-element-wrapper {
        gap: 100px;
    }
    .option-3-hero {
        margin-top: 60px;
    }
    .cta-80 {
        gap: 80px !important;
    }
    .padding-top-big {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 747px) {
    .hero-element-wrapper {
        flex-direction: column;
        gap: 0px !important;
    }

    .hero-video-wrapper {
        display: flex !important;
        width: 100% !important;
    }

    .hero-image-wrapper {
        display: flex;
        width: 100% !important;
    }

    .image {
        height: 250px !important;
    }

    .hero-left-section-center {
        padding: 20px 0;
    }

    #hero-left-section {
        padding: 20px;
    }

    .hero-title-wrapper .flex-column-gap-60 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .hero-cards-wrapper2 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .hero-option4-wrapper {
        width: 100%;
        padding: 0px !important;
    }

    #hero-option2 {
        width: 100%;
    }

    #card-option2-wrapper {
        width: 100%;
        padding: 20px;
        display: flex;
        flex-direction: row;
        flex: 1;
        border-radius: 12px;
        align-items: center;
        justify-content: flex-start;
        height: fit-content;
        border: 1px solid #e0e0e0;
        gap: 20px;
    }

    #long-cards-wrapper {
        display: flex;
        flex-direction: column;
        margin-top: 20;
        width: 100%;
    }

    #long-card {
        display: flex;
        gap: 20px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        height: fit-content;
        padding: 10px;
    }

    .properti-grid.mobile-1 {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
    .properti-grid.mobile-2 {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    .properti-grid.mobile-3 {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }
    .properti-grid.mobile-4 {
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
    }
    .properti-grid.mobile-5 {
        grid-template-columns: repeat(5, 1fr);
        width: 100%;
    }
    #cards-with-images {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #cards-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .flex-center {
        display: flex;
        align-items: flex-start;
    }

    #number-cards {
        overflow: auto;
        width: 100%;
    }

    .comparison-wrapper {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        grid-gap: 0px !important;
    }

    .no-mobile {
        display: none !important;
    }

    .column1-wrapper {
        background-color: transparent !important;
    }

    .column2-wrapper {
        padding: 20px 0px !important;
        border: none !important;
    }

    .column3-wrapper {
        padding: 20px 0px !important;
        border: none !important;
    }

    .cta-wrapper {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .cta-title-wrapper {
        max-width: none;
        width: 100%;
        padding-left: 0;
    }

    #cta-title a {
        width: 100%;
    }

    #cta-title {
        width: 100%;
    }

    .button-primary {
        text-align: center !important;
    }

    .button-secondary {
        text-align: center !important;
    }

    .cta-column {
        flex-direction: column;
    }

    .cta-column-reverse {
        flex-direction: column-reverse;
    }

    .comparison-image {
        display: none;
    }
    .comparison-small {
        display: block !important;
    }

    .four-cards-wrapper {
        display: flex;
        flex-direction: column !important;
        gap: 20px;
    }

    .video-container-wrapper {
        flex-direction: column !important;
    }

    .slider-container {
        position: relative;
        height: 500px;
        overflow: hidden;
        padding-left: 0px !important;
    }
    .slides {
        display: none !important;
    }
    #slider-cardd {
        width: 100% !important;
    }

    .image-wrapper-numbers {
        width: 100% !important;
        position: relative;
    }

    #dropdown-wrapper {
        flex-direction: column !important;
        gap: 0px !important;
    }

    #dropdown-image-wrapper {
        width: 100% !important;
    }

    .three-cards-new-wrapper {
        flex-direction: column;
    }

    #cards-column {
        width: 100% !important;
        flex-direction: column !important;
    }

    .callout {
        height: 90px !important;
    }

    .properti-align-cta-4 {
        padding: 0 !important;
    }

    .calculated-padding {
        padding-left: max(calc((100% - 1200px) / 2), 20px);
    }
}

/* SREDNJA  */
@media only screen and (min-width: 748px) and (max-width: 1024px) {
    .no-tablet {
        display: none !important;
    }
    .hero-element-wrapper {
        flex-direction: column;
        gap: 0px !important;
    }

    .hero-video-wrapper {
        display: flex !important;
        width: 100% !important;
    }

    .hero-image-wrapper {
        display: flex;
        width: 100% !important;
    }

    .hero-cards-wrapper2 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    #hero-option2 {
        width: 100%;
    }

    .hero-option4-wrapper {
        width: 100%;
        padding: 0px !important;
    }

    #hero-left-section {
        padding: 50px;
    }

    #card-option2-wrapper {
        width: 100%;
        padding: 20px;
        display: flex;
        flex-direction: row;
        flex: 1;
        border-radius: 12px;
        align-items: center;
        justify-content: flex-start;
        height: fit-content;
        border: 1px solid #e0e0e0;
        gap: 20px;
    }

    .image {
        height: 350px !important;
    }

    .hero-left-section-center {
        padding: 50px;
    }

    .hero-title-wrapper .flex-column-gap-60 {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .properti-grid.tablet-1 {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
    .properti-grid.tablet-2 {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    .properti-grid.tablet-3 {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }
    .properti-grid.tablet-4 {
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
    }
    .properti-grid.tablet-5 {
        grid-template-columns: repeat(5, 1fr);
        width: 100%;
    }

    #cards-with-images {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    #cards-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .flex-center {
        display: flex;
        align-items: flex-start;
    }

    #number-cards {
        overflow: auto;
        width: 100%;
    }

    .comparison-wrapper {
        grid-template-columns: 1fr 1fr !important; /* Two columns */
        grid-template-rows: auto auto; /* Two rows */
        grid-template-areas:
            "item1 item1" /* First row spans two columns */
            "item2 item2"; /* Second row has two columns */
    }

    .comparison-item1 {
        grid-area: item1; /* Span the entire first row */
    }

    .comparison-item2 {
        grid-area: item2; /* First column of the second row */
    }

    .comparison-item3 {
        grid-area: item3; /* Second column of the second row */
    }

    .cta-wrapper {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .cta-title-wrapper {
        max-width: none;
        width: 100%;
        padding-left: 0;
    }

    #cta-title a {
        width: 100%;
    }

    .button-primary {
        text-align: center !important;
    }

    .button-secondary {
        text-align: center !important;
    }

    #cta-title {
        width: 100%;
    }

    .cta-column {
        flex-direction: column;
    }

    .cta-column-reverse {
        flex-direction: column-reverse;
    }

    .comparison-small {
        display: none;
    }

    .four-cards-wrapper {
        display: flex;
        flex-direction: column !important;
        gap: 20px;
    }

    .video-container-wrapper {
        flex-direction: column !important;
    }

    .slider-container {
        position: relative;
        height: 500px;
        overflow: hidden;
        padding-left: 0px !important;
    }

    .image-wrapper-numbers {
        width: 100% !important;
        position: relative;
    }

    #dropdown-wrapper {
        flex-direction: column !important;
        gap: 0px !important;
    }

    #dropdown-image-wrapper {
        width: 100% !important;
    }

    .three-cards-new-wrapper {
        flex-direction: column;
    }

    #cards-column {
        width: 100% !important;
        flex-direction: column !important;
    }

    .callout {
        height: 150px !important;
    }

    .properti-align-cta-4 {
        padding: 0 !important;
    }

    .calculated-padding {
        padding-left: max(calc((100% - 1200px) / 2), 50px);
    }

    .carousel {
        padding-left: max(calc((100% - 1200px) / 2), 50px) !important;
        padding-right: max(calc((100% - 1200px) / 2), 50px) !important;
    }

    .carousel-title {
        padding-left: max(calc((100% - 1200px) / 2), 50px) !important;
    }

    .padding-top-big {
        padding-top: 40px;
    }
}

.hero-left-section-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.hero-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.hero-icon {
    display: inline-block;
    font-size: 24px;
    color: #333;
    width: 1em;
    height: 1em;
}

.card {
    border-radius: 20px;
}

.some-icon {
    display: flex;
    width: 160px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #e0e0e0;
    padding: 20px;
    gap: 30px;
    border-radius: 4px;
}

.global-heading {
    color: #1d2123;
    font-family: "Graphik", sans-serif;
    font-size: 27px;
    font-weight: 600;
    line-height: 35px;
}

.global-sub-heading {
    color: #1d2123;
    font-family: "Graphik", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.global-description {
    color: #1d2123;
    font-family: "Graphik", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

/*--------------------------------------------------------------
  == Button
  --------------------------------------------------------------*/

.wpr-button-wrap {
    position: relative;
    display: inline-table;
    z-index: 1;
    width: 100%;
}

.wpr-button {
    display: block;
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.elementor .elementor-widget-wpr-button .wpr-button-text {
    font-size: 15px;
    font-weight: 500;
}

.wpr-button-icon-style-block .wpr-button-text,
.wpr-button-icon-style-inline-block .wpr-button-text {
    width: 100%;
}

.wpr-button-icon-style-block .wpr-button-icon,
.wpr-button-icon-style-inline-block .wpr-button-icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wpr-button-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.wpr-button-text,
.wpr-button-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wpr-button-icon-position-left .wpr-button-icon {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.wpr-button-icon-position-left .wpr-button-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

/* TWO CARDS  */

.two-cards-wrapper {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: center;
}

.two-cards-title {
    font-size: 18px;
    line-height: 22px;
    font-size: 20px;
    font-weight: 600;
}

.two-cards-single-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    background-color: #f8f8f8;
    border-radius: 12px;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

.two-cards-text {
    font-size: 18px;
}

/* THREE CARDS  */

.three-cards-card-wrapper {
    padding: 30px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.three-cards-card-wrapper-image {
    gap: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.three-cards-card-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    color: #1d2123;
}

.three-cards-number {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    min-width: 52px;
    min-height: 52px;
    background-color: #f2f2f2;
    color: #1d2123;
    font-weight: 500;
}

.three-cards-description {
    font-size: 16px;
    line-height: 18.4px;
    color: #1d2123;
}

.three-cards-title-bg {
    padding: 20px;
    background-color: #f6f6f6;
}

.three-cards-small-icon {
    display: flex;
    width: 160px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #e0e0e0;
    padding: 20px;
    gap: 30px;
    border-radius: 4px;
}
/* 

.three-cards-text {
    font-weight: 600;
    font-size: 25px;
    line-height: 28.75px;
    font-family: "Graphik", sans-serif;
}



.three-cards-single-card {
    min-width: 386px;
    padding: 30px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}



.three-cards-wrapper {
    display: flex;
    gap: 20px;
}

.three-cards-image-wrapper {
    min-height: 205px;
    width: 326px;
}

.three-cards-icon {
    min-width: 40px;
    min-height: 40px;
}

.three-cards-small-image-wrapper {
    width: 220px;
}

.three-cards-title-bg {
    padding: 20px;
    background-color: #f6f6f6;
}

.three-cards-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.three-cards-right-title {
    color: #1d2123;
    font-family: "Graphik", sans-serif;
    font-size: 27px;
    font-weight: 600;
    line-height: 35px;
}

.three-cards-image-icon-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
} */

/* =============== DROPDOWN ================  */

.dropdown-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.dropdown-icon {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.dropdown-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#dropdown-image-wrapper {
    width: 49%;
}

.accordion {
    /* max-width: 300px; */
    /* background: linear-gradient(to bottom right, #FFF, #f7f7f7); */
    /* background: #0097a7; */
    /* margin: 0 auto; */
    /* border-radius: 3px; */
    /* box-shadow: 0 10px 15px -20px rgba(0, 0, 0, 0.3), 0 30px 45px -30px rgba(0, 0, 0, 0.3), 0 80px 55px -30px rgba(0, 0, 0, 0.1); */

    display: flex;
    flex: 1;
    flex-direction: column;
    /* gap: 15px; */
}
.heading {
    /* color: #FFF; */
    font-size: 14px;
    /* border-bottom: 1px solid black; */
    letter-spacing: 0.8px;
    padding: 15px;
    cursor: pointer;
    background-color: #fff;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 4px;
}
.heading:nth-last-child(2) {
    border-bottom: 0;
}
.heading:hover {
    /* background: #00838f; */
    border-radius: 0;
}
.heading:first-child:hover {
    /* border-radius: 3px 3px 0 0; */
}
.heading:nth-last-child(2):hover {
    /* border-radius:0 0 3px 3px; */
}
.heading::before {
    content: "+";
    vertical-align: middle;
    display: inline-block;
    /* border-top: 7px solid #f5f5f5;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent; */
    float: right;
    transform: rotate(0);
    transition: all 0.5s;
    scale: 1.7;
    margin-top: 10px;
}
.active.heading::before {
    transform: rotate(180deg);
}
.not-active.heading::before {
    transform: rotate(0deg);
}

.contents {
    display: none;
    background: #fff;
    padding: 15px;
    /* color: #7f8fa4; */
    font-size: 14px;
}

.dropdown-title {
    font-family: var(--e-global-typography-f07b25b-font-family), Grapik;
    font-size: var(--e-global-typography-f07b25b-font-size);
    font-weight: var(--e-global-typography-f07b25b-font-weight);
    line-height: var(--e-global-typography-f07b25b-line-height);
    color: var(--e-global-color-9c64c26);
}

.hero-icon {
    display: inline-block;
    font-size: 24px;
    color: #333;
    width: 1em;
    height: 1em;
}

.hero-video-wrapper {
    display: flex;
    width: 45%;
}

.hero-image-wrapper {
    display: flex;
    width: 50%;
}
/* =========================== NUMBERS =========================== */

.numbers-wrapper {
    display: flex;
    justify-content: center;
}

.image-wrapper-numbers {
    width: 580px;
    position: relative;
}

.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.image-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.image-background-cover {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    border-radius: 4px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.image-card-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.image-wrapper {
    width: 100%;
    position: relative;
}

#long-cards-images-wrapper {
    display: flex;
    /* grid-template-columns: 1fr 1fr 1fr; */
    gap: 20px;
}

.grid-item {
    width: 100%;
}

.numbers-title {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-96e7950-font-family), Grapik;
    font-size: var(--e-global-typography-96e7950-font-size);
    font-weight: var(--e-global-typography-96e7950-font-weight);
    line-height: var(--e-global-typography-96e7950-line-height);
}
.numbers-label {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-9a810da-font-family), Grapik;
    font-size: var(--e-global-typography-9a810da-font-size);
    font-weight: var(--e-global-typography-9a810da-font-weight);
    line-height: var(--e-global-typography-9a810da-line-height);
}
.numbers-card-title {
    font-family: var(--e-global-typography-804d07d-font-family), Grapik;
    font-size: var(--e-global-typography-804d07d-font-size);
    font-weight: var(--e-global-typography-804d07d-font-weight);
    line-height: var(--e-global-typography-804d07d-line-height);
}

/* ============================================== comparison-table ===================================== */

.comparison-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.comparison-title {
    color: #1d2123;
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    word-break: break-word;
}

.comparison-title-left {
    text-align: left;
}

.comparison-column {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 20px;
}

.column1-wrapper {
    display: flex;
    flex-direction: column;
    background-color: #f6f6f6;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 400;
    padding: 20px;
    border-radius: 6px;
    gap: 30px;
    flex: 1;
}

.column2-wrapper {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    padding: 20px;
    gap: 30px;
}

.column3-wrapper {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    border: 1px solid #5f00fd;
    padding: 20px;
    gap: 30px;
}

.column23-item {
    position: relative;
}
.column23-item::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 5%;
    width: 90%;
    border-bottom: 1px solid #e0e0e0;
}

.column23-item:last-child::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 5%;
    width: 90%;
    border-bottom: none;
}
.column23-item:nth-last-child(2)::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 5%;
    width: 90%;
    border-bottom: none;
}
.column23-item:not(:nth-child(3)):not(:nth-child(4)) {
    /* border-top: 1px solid #e0e0e0; */
}

.column23-item:last-child {
    border-bottom: 1px solid #5f00fd;
    border-end-end-radius: 4px;
    border-end-start-radius: 4px;
}

.column23-item:nth-last-child(2) {
    border-bottom: 1px solid #e0e0e0;
    border-end-end-radius: 4px;
    border-end-start-radius: 4px;
}

.question-text {
    color: #6a6a6b;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    word-break: break-word;
}

.question-answer {
    color: #282828;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    word-break: break-word;
}

.question2-answer {
    color: #5f00fd;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    max-height: 28px;
    word-break: break-word;
}

.comparison-wrapper2 {
    display: flex;
    gap: 20px;
}

.comparison-row {
    display: flex;
    flex: 1;
}

.comparison-small {
    display: none;
}

.column1-text-item {
    color: #1d2123;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* grid-template-rows: auto repeat(3, fit-content(1px)); */
    grid-auto-rows: fit-content(1px);
    column-gap: 20px;
    justify-content: space-around;
    align-content: flex;
    align-items: stretch;
    /* padding: 20px; */
}

.grid-container2 {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(3, minmax(50px, 1fr));
    grid-auto-rows: fit-content(1px);
    /* column-gap: 10px; */
    justify-content: space-around;
    align-content: flex;
    align-items: stretch;
    /* grid-template-columns: 1fr 1fr 1fr; */
}

.column23-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 67%;
}

/* ============================================================== CAROUSEL ===================================================== */

.carousel::-webkit-scrollbar {
    display: none;
}
.carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-left: max(calc((100% - 1200px) / 2), 20px);
    padding-right: max(calc((100% - 1200px) / 2), 20px);
    overflow: auto;
}

.carousel-title {
    padding-left: max(calc((100% - 1200px) / 2), 20px);
    color: #1d2123;
    font-size: 27px;
    font-weight: 500;
    line-height: 35px;
}

#parallax-carousel {
    width: 1200px;
    display: flex;
    gap: 20px;
}

.carousel-card {
    display: flex;
    width: 478px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
}

.card-shritt {
    letter-spacing: 5px;
    color: #7a7a7a;
    line-height: 15px;
    font-weight: 500;
    font-size: 13px;
}

.carousel-card-title {
    color: #1d2123;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}

.card-sub-title {
    color: #1d2123;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

.carousel-column {
    flex-direction: column;
}

.carousel-column-reverse {
    flex-direction: column-reverse;
}

.mehr-lesen {
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    color: #1d2123;
}

/* ============================================================== 4 CARDS ===================================================== */

.four-cards-wrapper {
    display: flex;
    gap: 20px;
}

.four-cards-single-card {
    display: flex;
    flex: 1;
    flex-direction: column;
    border-radius: 4px;
    border: 1px solid #ebebeb;
}

/* ============================================================== Video ===================================================== */

.video-container-wrapper {
    display: flex;
    gap: 20px;
}

/* ============================================================ SLIDER ===================================================== */

.slider-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    /* padding-left: 150px; */
}

.slides li {
    position: absolute;
    display: table;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

.slides li.selected {
    z-index: 2;
    transform: translateX(0);
}

.slides li.move-left {
    transform: translateX(-100%);
}

.slides li.visible {
    z-index: 2;
}

/* .slides li:nth-child(1) {
    background: url(https://unsplash.it/1200/800?image=1067) no-repeat center center;
    background-size: 70% 90%;
    margin-left: 100px;
}
.slides li:nth-child(2) {
    background: url(https://unsplash.it/1200/800?image=1068) no-repeat center center;
    background-size: 70% 90%;
    margin-left: 100px;

}
.slides li:nth-child(3) {
    background: url(https://unsplash.it/1200/800?image=1069) no-repeat center center;
    background-size: 70% 90%;
    margin-left: 100px;

}
.slides li:nth-child(4) {
    background: url(https://unsplash.it/1200/800?image=1070) no-repeat center center;
    background-size: 70% 90%;
    margin-left: 100px;

}
   */
.slides li > div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #fff;
}

.slides h2 {
    margin-top: 0;
}
.slider-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.slider-nav a {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}
.slider-nav a.next {
    left: auto;
    right: 10px;
}
.slider-dot-nav {
    /* position: absolute; */
    z-index: 3;
    margin: 0;
    margin-top: 15px;
    padding: 0;
    text-align: center;
    /* bottom: 20px; */
    /* left: 30%; */
    /* bottom: 5%; */
    /* transform: translateX(-50%); */
}

.slider-dot-nav li {
    display: inline-block;
    margin-left: -4px;
}

.slider-dot-nav a {
    display: block;
    width: 15px;
    height: 15px;
    background: lightgray;
    border: 1px solid lightgray;
    border-radius: 50%;
    transition: background 0.1s ease;
    scale: 0.4;
}

.slider-dot-nav a.selected {
    background: gray;
    border: 1px solid gray;
    scale: 0.8;
}

#next-dot {
    list-style-type: none;
}

/* ================================================ THREE CARDS NEW ========================================== */

.three-cards-new-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    flex: 1;
}

.three-cards-new-wrapper-card {
    display: flex;
    gap: 20px;
    width: 100%;
    flex: 1;
}

/* NEW BUTTON  */

.new-button-primary,
.new-button-secondary,
.new-button-color,
.new-button-outline {
    padding: 14px 28px;
    border-radius: 4px;
    transition: background-color 0.3s ease-out;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Primary Button */
.new-button-primary {
    background-color: #000;
    color: white;
}

.new-button-primary:hover {
    background-color: #424242;
}

/* Secondary Button */
.new-button-secondary {
    background-color: #f2f2f2;
    color: #000;
}

.new-button-secondary:hover {
    background-color: #e0e0e0;
}

/* Color Button */
.new-button-color {
    background-color: #84f0c3;
    color: #000;
}

.new-button-color:hover {
    background-color: #69c229;
}

/* Outline Button */
.new-button-outline {
    background-color: #fff; /* Transparent background */
    color: #000;
    border: 2px solid #000;
}

.new-button-outline:hover {
    background-color: #f6f6f6;
}

/* ================================================ MISC FONTS ========================================== */

.hero-person-sub {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-b4c65d5-font-family), Grapik;
    font-size: var(--e-global-typography-b4c65d5-font-size);
    font-weight: var(--e-global-typography-b4c65d5-font-weight);
    line-height: var(--e-global-typography-b4c65d5-line-height);
}

.hero-person-title {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-96e7950-font-family), Grapik;
    font-size: var(--e-global-typography-96e7950-font-size);
    font-weight: var(--e-global-typography-96e7950-font-weight);
    line-height: var(--e-global-typography-96e7950-line-height);
}

.hero-cards-title {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-bf16d31-font-family), Grapik;
    font-size: var(--e-global-typography-bf16d31-font-size);
    font-weight: var(--e-global-typography-bf16d31-font-weight);
    line-height: var(--e-global-typography-bf16d31-line-height);
}

.cta-4-sub {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-b4c65d5-font-family), Grapik;
    font-size: var(--e-global-typography-b4c65d5-font-size);
    font-weight: var(--e-global-typography-b4c65d5-font-weight);
    line-height: var(--e-global-typography-b4c65d5-line-height);
}

.hero-cards-person-title {
    padding-top: 40px;
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-9a810da-font-family), Grapik;
    font-size: var(--e-global-typography-bf16d31-font-size);
    font-weight: var(--e-global-typography-bf16d31-font-weight);
    line-height: var(--e-global-typography-bf16d31-line-height);
}

.hero-description-32 {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-9a810da-font-family), Grapik;
    font-size: var(--e-global-typography-9a810da-font-size);
    font-weight: var(--e-global-typography-9a810da-font-weight);
    line-height: var(--e-global-typography-9a810da-line-height);
}

.card-title-option-2 {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-bf16d31-font-family), Grapik;
    font-size: var(--e-global-typography-bf16d31-font-size);
    font-weight: var(--e-global-typography-bf16d31-font-weight);
    line-height: var(--e-global-typography-bf16d31-line-height);
}

.option-icon-list {
    font-family: var(--e-global-typography-804d07d-font-family), Grapik;
    font-size: var(--e-global-typography-804d07d-font-size);
    font-weight: var(--e-global-typography-804d07d-font-weight);
    line-height: var(--e-global-typography-804d07d-line-height);
}

.option-5-title {
    color: var(--e-global-color-9c64c26);
    font-family: PlayFairDisplay;
    font-size: var(--e-global-typography-e2e77d3-font-size);
    font-weight: var(--e-global-typography-e2e77d3-font-weight);
    line-height: var(--e-global-typography-e2e77d3-line-height);
}

.hero-option-5-title {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-96e7950-font-family), Grapik;
    font-size: var(--e-global-typography-96e7950-font-size);
    font-weight: var(--e-global-typography-96e7950-font-weight);
    line-height: var(--e-global-typography-96e7950-line-height);
}

.properti-align-cta-4 {
    align-items: center;
    padding: 50px 0;
}

.calculated-padding {
    padding-left: max(calc((100% - 1200px) / 2), 20px);
}

.dropdown-text {
    color: var(--e-global-color-9c64c26);
    font-family: "Graphik", Grapik;
    font-size: 18px;
    border-style: none;
    line-height: 25px;
}

.three-cards-new-title {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-96e7950-font-family), Grapik;
    font-size: var(--e-global-typography-96e7950-font-size);
    font-weight: var(--e-global-typography-96e7950-font-weight);
    line-height: var(--e-global-typography-96e7950-line-height);
}

.thee-cards-new-title-card {
    color: var(--e-global-color-6807505);
    font-family: "Graphik", Grapik;
    font-size: 20px;
    font-weight: 500;
    text-transform: none;
    line-height: 28px;
    letter-spacing: 0px;
}

.slider-text {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-b4c65d5-font-family), Grapik;
    font-size: var(--e-global-typography-b4c65d5-font-size);
    font-weight: var(--e-global-typography-b4c65d5-font-weight);
    line-height: var(--e-global-typography-b4c65d5-line-height);
}

.slider-position {
    color: var(--e-global-color-text);
    font-family: var(--e-global-typography-b4c65d5-font-family), Grapik;
    font-size: var(--e-global-typography-b4c65d5-font-size);
    font-weight: var(--e-global-typography-b4c65d5-font-weight);
    line-height: var(--e-global-typography-b4c65d5-line-height);
}

.slider-name {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-f07b25b-font-family), Grapik;
    font-size: var(--e-global-typography-f07b25b-font-size);
    font-weight: var(--e-global-typography-f07b25b-font-weight);
    line-height: var(--e-global-typography-f07b25b-line-height);
}

.numbers-number {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-56678ce-font-family), Grapik;
    font-size: var(--e-global-typography-56678ce-font-size);
    font-weight: var(--e-global-typography-56678ce-font-weight);
    line-height: var(--e-global-typography-56678ce-line-height);
    word-spacing: var(--e-global-typography-56678ce-word-spacing);
}

.image-border-carousel:first-child {
    border-top-left-radius: 4px !important;
    border-top-right-radius: 4px !important;
}

.small-text-comparison {
    color: var(--e-global-color-9c64c26);
    font-family: var(--e-global-typography-56678ce-font-family), Grapik;
    font-size: var(--e-global-typography-b4c65d5-font-size);
    font-weight: var(--e-global-typography-b4c65d5-font-weight);
    line-height: var(--e-global-typography-b4c65d5-line-height);
}

.small-text-comparison-answer1 {
    color: var(--e-global-color-6807505);
    font-family: var(--e-global-typography-804d07d-font-family), Grapik;
    font-size: var(--e-global-typography-804d07d-font-size);
    font-weight: var(--e-global-typography-804d07d-font-weight);
    line-height: var(--e-global-typography-804d07d-line-height);
    min-height: 80px;
}

.small-text-comparison-answer2 {
    color: var(--e-global-color-5969ed5);
    font-family: var(--e-global-typography-804d07d-font-family), Grapik;
    font-size: var(--e-global-typography-804d07d-font-size);
    font-weight: var(--e-global-typography-804d07d-font-weight);
    line-height: var(--e-global-typography-804d07d-line-height);
    min-height: 80px;

}


