:root {
    --default-space: 16px;
    --padding-section: 50px;
    --main-color: var(--color-accent, #2F4CC4);
    --color-link: #322949;
    --color-main: #d2b2fd;
    --ss-grid-width: 1440px;
    --ss-grid-width-wide: 1200px;
    --ss-grid-width-narrow: 1060px;
    --ss-container-width: calc(var(--ss-grid-width) + calc(var(--default-space) * 2));
    --ss-container-width-wide: calc(var(--ss-grid-width-wide) + calc(var(--default-space) * 2));
    --ss-container-width-narrow: calc(var(--ss-grid-width-narrow) + calc(var(--default-space) * 2));
    --main-font: "Inter";
    --heading-font: "Dk01";
}

@media only screen and (min-width: 768px) {
    :root {
        --default-space: 40px;
    }
}
/* Fonts */
@font-face {
    font-family: "Inter";
    src: url(../fonts/ss-Inter-VariableFont.ttf) format("truetype");
    font-weight: 100 900;
    font-display: swap;
}
@font-face {
    font-family: "Dk01";
    src: url(../fonts/DK01-Medium.otf) format("opentype");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "Dk01";
    src: url(../fonts/DK01-ExtraBold.otf) format("opentype");
    font-weight: 800;
    font-display: swap;
}
@font-face {
    font-family: "Dk01";
    src: url(../fonts/DK01-Black.otf) format("opentype");
    font-weight: 900;
    font-display: swap;
}

/* BASE MAIN */
a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    cursor: pointer;
}

a:hover,
a:focus {
    color: var(--color-link);
    text-decoration: none;
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    padding: 0;
    margin: 0;
    /* outline: none; */
}

img {
    max-width: 100%;
}

button {
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

a,
button,
input,
textarea,
select,
label {
    padding: 0;
    margin: 0;
    font-family: inherit;
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}
input,
textarea {
    background: transparent;
}
ul {
    list-style: none;
}

/* Defautl */
body {
    font-family: var(--main-font), "Segoe UI", Arial, Segoe, "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-link);
    background-color: var(--color-link);
    position: relative;
    margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
}
/* CONTAINER */
.ss-container,
.ss-container-wide,
.ss-container-narrow,
.ss-container-fluid {
    width: 100%;
    padding-right: var(--default-space);
    padding-left: var(--default-space);
    margin-right: auto;
    margin-left: auto;
}
.ss-container {
    max-width: var(--ss-container-width, 1440px);
}
.ss-container-wide {
    max-width: var(--ss-container-width-wide, 1200px);
}
.ss-container-narrow {
    max-width: var(--ss-container-width-narrow, 1060px);
}
.ss-container-fluid {
    max-width: 100%;
}

/* STICKY FOOTER */
#page-wrapper {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

#site-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
/* END STICKY FOOTER */

/* Paragraph's lines */
.text-truncate-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.text-truncate-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.text-truncate-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.text-truncate-6 {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

/* End paragraph's lines */
.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

/* Font Weight */
.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Text Transform */
.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.underline {
    text-decoration: underline !important;
}

.line-through {
    text-decoration: line-through !important;
}

.capitalize {
    text-transform: capitalize;
}

/* Whitespace */
.whitespace-normal {
    white-space: normal;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.whitespace-pre {
    white-space: pre;
}

.whitespace-pre-line {
    white-space: pre-line;
}

.whitespace-pre-wrap {
    white-space: pre-wrap;
}

/* Word Break */
.break-all {
    word-break: break-all;
}

/* thumb */
.ratio-thumb {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    display: block;
}

.ratio-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.ratio-1x1 {
    padding-bottom: 100%;
}

.ratio-2x1 {
    padding-bottom: 50%;
}

.ratio-3x2 {
    padding-bottom: 66%;
}

.ratio-4x3 {
    padding-bottom: 75%;
}

.ratio-16x9 {
    padding-bottom: 56.25%;
}

/* object fit */
.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.object-contain {
    -o-object-fit: contain;
    object-fit: contain;
}

/* overflow */
.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

/* Button */
.theme-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1.71;
    font-weight: 500;
    border-radius: 8px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    border-width: 2px;
    cursor: pointer;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.5 !important;
    border-style: solid;
    border-color: transparent;
    /* min-height: 50px; */
    text-decoration: none !important;
}

.theme-btn svg,
.theme-btn img {
    --icon-size: 20px;
    width: var(--icon-size);
    height: var(--icon-size);
    min-width: var(--icon-size);
}
.theme-btn.btn-sm svg,
.theme-btn.btn-sm img {
    --icon-size: 18px;
}
.theme-btn.btn-xs svg,
.theme-btn.btn-xs img {
    --icon-size: 16px;
}

.theme-btn img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.theme-btn svg *[fill] {
    fill: currentColor;
}

.theme-btn svg *[stroke] {
    stroke: currentColor;
}


.theme-btn.btn-sm {
    gap: 8px;
    padding: 10px 18px;
    min-height: 32px;
    min-width: 32px;
}
.theme-btn.btn-xs {
    gap: 5px;
    padding: 8px 16px;
    min-height: 28px;
    min-width: 28px;
}

/* btn-icon */
.theme-btn.btn-icon {
    padding: 12px;
}
.theme-btn.btn-icon.btn-sm {
    padding: 10px;
}
.theme-btn.btn-icon.btn-xs {
    padding: 8px;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #222;
    color: #fff;
}

.btn-secondary {
    background: var(--main-color);
    color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #4761cb;
    color: #fff;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid #000;
    color: var(--color-link);
    font-weight: 700;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: var(--color-link);
}

.btn-outline-secondary {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.125);
    color: var(--color-link);
    font-weight: 700;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    color: var(--color-link);
}

.btn-rounded {
    border-radius: 9999px;
}
.btn-block {
    width: 100%;
}

.theme-btn.btn-disabled,
.theme-btn.disabled,
.theme-btn[disabled] {
    opacity: 0.75;
    cursor: auto;
    pointer-events: none;
}

.btn-text {
    text-align: center;
}

.btn-float-icon .btn-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.btn-border-1{
    border-width: 1px;
}

/* custom-theme-btn */
.custom-theme-btn {
    background-color: var(--background-color);
    border-color: var(--border-color);
    color: var(--color);
    font-size: var(--font-size, 14px);
}
.custom-theme-btn:hover,
.custom-theme-btn:focus {
    background-color: var(--hover-background-color, var(--background-color));
    border-color: var(--hover-border-color, var(--border-color));
    color: var(--hover-color, var(--color));
}

/* Section heading */
.custom-section {
    padding: var(--padding-top) 0 var(--padding-bottom) 0;
    margin: var(--margin-top) 0 var(--margin-bottom) 0;
    display: block;
    position: relative;
    overflow: hidden;
    clear: both;
}
.section-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}
.section-heading {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 14px;
}
.section-heading-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}
@media (max-width: 1200px) {
    .section-title {
        font-size: 22px;
    }
}
@media (max-width: 991px) {
    .section-title {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .custom-section {
        padding: var(--padding-top-mobile, var(--padding-top)) 0 var(--padding-bottom-mobile, var(--padding-bottom)) 0;
        margin: var(--margin-top-mobile, var(--margin-top)) 0 var(--margin-bottom-mobile, var(--margin-bottom)) 0;
    }
}

.section-pagination {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    opacity: 0;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.section-pagination:has(.theme-btn:not(.swiper-button-disabled)) {
    opacity: 1;
    pointer-events: all;
}

/* Swipper */
.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 12px;
}

.swiper-button-prev,
.swiper-button-next {
    left: auto;
    right: auto;
    top: auto;
    margin-top: 0;
    min-height: 39px !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background: #000;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #fff;
    background: #222;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    color: var(--color-link);
    background: #ebebeb;
}


.swiper-button-prev.btn-outline-secondary,
.swiper-button-next.btn-outline-secondary {
    color: var(--color-link);
    background: #fff;
    border-color: #ebe6e7;
}
.swiper-button-prev.btn-outline-secondary:hover,
.swiper-button-next.btn-outline-secondary:hover {
    color: var(--color-link);
    background: rgba(244, 240, 240, 0.982);
}
.swiper-button-prev.btn-outline-secondary.swiper-button-disabled,
.swiper-button-next.btn-outline-secondary.swiper-button-disabled {
    opacity: 0.5;
}

.ss-swiper-button-item {
    position: relative;
    width: 32px;
    height: 32px;
}

.ss-swiper-button-item svg {
    -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(88%) saturate(7500%) hue-rotate(117deg) brightness(111%) contrast(111%);
    filter: brightness(0) saturate(100%) invert(0%) sepia(88%) saturate(7500%) hue-rotate(117deg) brightness(111%) contrast(111%);
}

.ss-swiper-button-item.active svg {
    -webkit-filter: brightness(0) saturate(100%) invert(97%) sepia(97%) saturate(0%) hue-rotate(74deg) brightness(104%) contrast(105%);
    filter: brightness(0) saturate(100%) invert(97%) sepia(97%) saturate(0%) hue-rotate(74deg) brightness(104%) contrast(105%);
}




/* scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    -webkit-appearance: none;
}

.custom-scrollbar::-webkit-scrollbar:vertical {
    width: 5px;
}

.custom-scrollbar::-webkit-scrollbar:horizontal {
    height: 5px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 0px solid #ffffff;
}

.custom-scrollbar::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #eee;
}


.title-large {
    margin: 0px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25em;
    letter-spacing: -0.01em;
}

@media (min-width: 640px) {
    .title-large {
        font-size: 40px;
        line-height: 1.2em;
    }
}

@media (min-width: 1024px) {
    .title-large {
        font-size: 51px;
    }
}

.title-small {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4em;
}

@media (min-width: 640px) {
    .title-small {
        font-size: 20px;
    }
}

.title-medium {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3em;
}

@media (min-width: 640px) {
    .title-medium {
        font-size: 25px;
    }
}

@media (min-width: 768px) {
    .title-medium {
        font-size: 32px;
    }
}
.sub-heading {
    font-size: 20px;
    line-height: 1.4em;
    color: rgb(255, 255, 255);
}

@media (min-width: 768px) {
    .sub-heading {
        font-size: 25px;
    }
}
.sub-heading-small {
    font-size: 14px;
    line-height: 1.4em;
}

@media (min-width: 768px) {
    .sub-heading-small {
        font-size: 16px;
    }
}
.content-short {
    width: 100%;
    max-width: 486px;
}
.margin-reset {
    margin: 0;
}
.gradient-underline-content a,
.gradient-underline {
    background: -o-linear-gradient(left, rgba(21, 79, 191, 0.3), rgba(21, 79, 191, 0.3));
    background: -webkit-gradient(linear, left top, right top, from(rgba(21, 79, 191, 0.3)), to(rgba(21, 79, 191, 0.3)));
    background: linear-gradient(90deg, rgba(21, 79, 191, 0.3), rgba(21, 79, 191, 0.3));
    background-position: bottom 5% center;
    background-size: 100% 30%;
    background-repeat: no-repeat;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.gradient-underline-content a:hover,
.gradient-underline:hover {
    background: -o-linear-gradient(left, rgba(21, 79, 191, 0.4), rgba(21, 79, 191, 0.4));
    background: -webkit-gradient(linear, left top, right top, from(rgba(21, 79, 191, 0.4)), to(rgba(21, 79, 191, 0.4)));
    background: linear-gradient(90deg, rgba(21, 79, 191, 0.4), rgba(21, 79, 191, 0.4));
    background-position: bottom 5% center;
    background-size: 100% 30%;
    background-repeat: no-repeat;
}

.section-label {
    opacity: 0.6;
    font-size: 16px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .section-label {
        font-size: 18px;
        line-height: 1.56;
    }
}

@media (min-width: 1280px) {
    .section-label {
        font-size: 20px;
        line-height: 1.4;
    }
}
.underline-hover {
    position: relative;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.underline-hover:before {
    content: "";
    text-decoration: none;
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.45, 0.4, 1);
    transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.45, 0.4, 1);
    -o-transition: transform 0.25s cubic-bezier(0.25, 0.45, 0.4, 1);
    transition: transform 0.25s cubic-bezier(0.25, 0.45, 0.4, 1);
    transition: transform 0.25s cubic-bezier(0.25, 0.45, 0.4, 1), -webkit-transform 0.25s cubic-bezier(0.25, 0.45, 0.4, 1);
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: calc(100% + 1px);
    left: 0;
    pointer-events: none;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
}
.underline-hover:hover:before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
}

/* FIX MAIN THEME */
.dialog-modal {
    margin-left: auto;
    margin-right: auto;
}


/* SS START */


/* SS: Block Image */
.block-img-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 72px;
    -moz-column-gap: 72px;
    column-gap: 72px;
    row-gap: 56px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.block-image-section[data-align-items="center"] .block-img-main {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.block-image-section[data-layout="image-right"] .block-img-info,
.block-image-section[data-layout="image-bottom"] .block-img-info,
.block-image-section[data-layout="image-background"] .block-img-info {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.block-image-section[data-layout="image-bottom"] .block-img-main {
    grid-template-columns: 1fr;
}

.block-image-section[data-layout="image-bottom"] .block-img-title,
.block-image-section[data-layout="image-bottom"] .block-img-content {
    max-width: 65%;
    position: relative;
    text-align: center;
    margin: 0 auto;
}
.block-img-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
}
.block-image-section[data-layout="image-bottom"] .block-img-btns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.block-image-section[data-layout="image-bottom"] .block-img-thumb {
    max-width: 85%;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.block-image-section[data-layout="image-background"] .block-img-thumb,
.block-image-section[data-layout="image-background-left"] .block-img-thumb {
    height: 100%;
}

.block-image-section[data-layout="image-background"] .block-img-thumb img,
.block-image-section[data-layout="image-background-left"] .block-img-thumb img  {
    height: 100%;
}

.block-image-section[data-object-fit="contain"] .block-img-thumb img {
    -o-object-fit: contain;
    object-fit: contain;
}

.block-image-section[data-object-fit="cover"] .block-img-thumb img {
    -o-object-fit: cover;
    object-fit: cover;
}

.block-image-section[data-layout="image-background"] .block-img-main,
.block-image-section[data-layout="image-background-left"] .block-img-main {
    background-color: var(--background-color);
    border-radius: 20px;
    overflow: hidden;
    gap: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.block-image-section[data-layout="image-background"][data-align-items="start"] .block-img-main {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.block-image-section[data-layout="image-background"] .block-img-info,
.block-image-section[data-layout="image-background-left"] .block-img-info {
    padding: 42px;
}

.block-img-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.block-img-content {
    color: var(--content-color);
}

.block-img-content>* {
    margin-bottom: 12px;
}

.block-img-content b,
.block-img-content strong {
    font-weight: bold;
}

.block-img-content ul {
    list-style: disc;
    padding-left: 18px;
}

.block-img-content ul li {
    margin-bottom: 8px;
}

.block-img-thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.block-image-section[data-layout="image-background"] .block-img-thumb,
.block-image-section[data-layout="image-background-left"] .block-img-thumb {
    border-radius: 0;
}

.block-img-title {
    font-size: var(--heading-title-font-size, 32px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
    color: var(--title-color);
    font-weight: var(--heading-title-font-weight, 700);
    font-family: var(--heading-font);
}
.block-img-title a:hover {
    color: unset;
}
.block-img-desc {
    margin: 24px 0 12px;
    color: #808080;
}


@media (min-width: 992px) {
    .block-image-section[data-layout="image-background"] .block-img-thumb img,
    .block-image-section[data-layout="image-background-left"] .block-img-thumb img  {
        min-height: 350px;
    }
}


@media (max-width: 1440px) {
    .block-img-main {
        grid-template-columns: 1fr 1fr;
        -webkit-column-gap: 56px;
        -moz-column-gap: 56px;
        column-gap: 56px;
        row-gap: 56px;
    }
}

@media (max-width: 991px) {
    .block-img-title {
        font-size: var(--heading-title-font-size-mobile, 24px);
    }

    .block-image-section {
        padding: calc(var(--padding-section) / 2) 0;
    }

    .block-img-main {
        grid-template-columns: 1fr;
        row-gap: 44px;
    }

    .block-image-section[data-layout="image-background"] .block-img-thumb,
    .block-image-section[data-layout="image-background-left"] .block-img-thumb,
    .block-image-section[data-layout="image-right"] .block-img-thumb {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .block-image-section[data-layout="image-bottom"] .block-img-title,
    .block-image-section[data-layout="image-bottom"] .block-img-content,
    .block-image-section[data-layout="image-bottom"] .block-img-thumb {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .block-img-main {
        row-gap: 36px;
    }

    .block-image-section[data-layout="image-background"] .block-img-info,
    .block-image-section[data-layout="image-background-left"] .block-img-info {
        padding: 32px;
    }

    .block-image-section[data-layout="image-bottom"] .block-img-main {
        row-gap: 24px;
    }
}

@media (max-width: 575px) {
    .block-image-section[data-layout="image-background"] .block-img-info,
    .block-image-section[data-layout="image-background-left"] .block-img-info {
        padding: 24px;
    }
}



/* SS: Image card slider */
.image-card-slider {
    display: grid;
    grid-template-columns: 1fr;
    --grid-x: calc(100% - var(--ss-grid-width));
    --space-x: max(calc(var(--grid-x) / 2), var(--default-space));
}
.image-card-slider-inner {
    width: 100%;
    min-width: 1px;
}
.image-card-swiper .swiper-wrapper {
    width: 100%;
    padding-left: var(--space-x);
    padding-right: var(--space-x);
}
.image-card-slider .swiper-slide {
    width: 320px;
    height: 440px;
}
.image-card-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    /* border: 1px solid #e4e4e780; */
}
.image-card-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.image-card-pagination {
    margin-top: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media (min-width: 768px) {
    .custom-section-heading-title p + p {
        margin-top: calc(var(--heading-title-font-size-mobile) * -0.15);
    }
}

/* SS: Logo Grid */
.logo-grid-section {
    background-color: var(--background-color);
}

.ss-logo-grid-box {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    padding: 12px 24px;
    background-color: var(--box-background);
}
.ss-logo-grid-title {
    margin-bottom: 0;
    color: var(--title-color);
    font-size: 32px;
    line-height: 1.2;
}
.ss-logo-grid-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100px;
    padding: 16px 24px;
    border-radius: 18px;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 4px #0000000d;
            box-shadow: 0 4px 4px #0000000d;
}
.ss-logo-grid-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 100%;
}

.ss-logo-grid-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 32px;
}
@media (max-width: 991px) {
    .ss-logo-grid-item {
        padding: 6px 12px;
    }
}
.ss-logo-grid-image {
    padding: 2px;
    max-width: 44px;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.ss-logo-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}
[data-center-box="true"] .ss-logo-grid {
    grid-template-columns: 195fr 195fr 270fr 195fr 195fr;
}
[data-center-box="true"] .ss-logo-grid-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-column: 3;
    grid-row: 1 / span 3;
}
[data-center-box="true"] .ss-logo-grid-item:nth-of-type(n+14) {
    display: none;
}

@media (max-width: 1200px) {
    [data-center-box="true"] .ss-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    [data-center-box="true"] .ss-logo-grid-box {
        grid-column: 1 / -1;
        grid-row: 1;
    }
}
@media (max-width: 991px) {
    [data-center-box="true"] .ss-logo-grid,
    .ss-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .ss-logo-grid-title {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    [data-center-box="true"] .ss-logo-grid,
    .ss-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .ss-logo-grid-title {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    [data-center-box="true"] .ss-logo-grid,
    .ss-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* SS: MODAL */
.modal {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.modal-window {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    transition:
        transform 1s cubic-bezier(0.4, 0, 0.2, 1),
        -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-box.is-active .modal-window {
    -webkit-transform: translate3d(0%, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
        rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform: translate3d(0%, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
        rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.modal.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.modal-overlay {
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
body.modal-open {
    overflow: hidden;
}
.error-message {
    color: oklch(57.7% 0.245 27.325);
}

.modal-z-999 {
    z-index: 999;
}
.modal-fullscreen {
    width: 100vw;
    height: 100svh;
}
.modal-fixed-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.modal-hidden {
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.modal-overlay-bg {
    background-color: rgba(0, 0, 0, 0.56);
}
.modal-backdrop-blur {
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
}
.modal-overlay-size {
    width: 100%;
    height: 100%;
    position: relative;
}
.modal-box {
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 16px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    color: var(--modal-color, #fff);
}
.modal-window-bg {
    background-color: #fff;
}
.modal-window-size {
    overflow: hidden;
    max-height: 100%;
    width: 100%;
}
.modal-window-responsive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 12px;
    pointer-events: auto;
    max-width: 508px;
    width: 100%;
}

.modal-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-height: 100%;
    padding: 32px 0;
    position: relative;
}
.headline-box {
    border-bottom: 1px dashed rgba(31, 31, 31, 0.25);
    padding-bottom: 20px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px;
}
.header-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
}
.modal-headline {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 1;
}
@media (min-width: 768px) {
    .modal-headline {
        font-size: 36px;
    }
}
@media (min-width: 1024px) {
    .modal-headline {
        font-size: 48px;
    }
}
.modal-subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.7;
}
@media (min-width: 1024px) {
    .modal-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
}
.close-modal {
    position: absolute;
    top: 32px;
    right: 24px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 32px;
    height: 32px;
    opacity: 0.45;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 2;
    color: var(--color-link);

}
@media (min-width: 640px) {
    .close-modal {
        width: 40px;
        height: 40px;
    }
}
.close-modal:hover {
    opacity: 1;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.close-modal svg {
    width: 100%;
    height: 100%;
}
.form-subscribe {
    /* margin-top: 42px; */
    padding: 0 24px;
    max-height: 100%;
    overflow: auto;
}

.form-container {
    height: 100%;
}
.contact-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
}
@media (min-width: 640px) {
    .contact-form {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.field-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    width: 100%;
}
.field-input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 1px;
    color: #fff;
    min-height: 54px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
    padding: 16px 20px;
    outline: none;
    font-size: 16px;
}
.field-input::-webkit-input-placeholder {
    color: #fff;
}
.field-input::-moz-placeholder {
    color: #fff;
}
.field-input::-ms-input-placeholder {
    color: #fff;
}
.field-input::placeholder {
    color: #fff;
}
.form-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.privacy-text {
    margin: 0;
    opacity: 0.6;
    font-size: 14px;
    text-align: center;
}
.success-message {
    display: none;
}
.error-message.hidden,
.success-message.hidden {
    display: none;
}


@media (max-width: 575px) {
    .field-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}

/* SS: Header 2 */
.nav-overlay {
    translate: -100%;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    height: calc(100svh - 70px);
    overflow: auto;
}
.nav-overlay.show {
    translate: 0;
}
body:has(.nav-overlay.show) {
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .header-2-navbar-backdrop {
        -webkit-backdrop-filter: blur(24px);
                backdrop-filter: blur(24px);
    }
    #header .button:hover {
        background: transparent;
    }
}
@media screen and (min-width: 1280px) {
    .header-2-nav-overlay {
        display: none;
    }
}
.industry-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header-2-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 1000;
    gap: 16px;
}
.header-2-logo-link {
    display: inline-block;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.header-2-logo-link img{
    display: block;
    height: var(--logo-height);
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: left center;
       object-position: left center;
}

.header-2-nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.header-2-navigation {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    -webkit-box-pack: var(--menu-align);
        -ms-flex-pack: var(--menu-align);
            justify-content: var(--menu-align);
}

@media (min-width: 991px) {
    .header-2-navigation {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 16px;
    }

    
    .industry-header:has([data-floating="true"]) {
        height: auto;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
    .industry-header [data-floating="true"] {
        padding-top: var(--floating-padding);
        padding-bottom: var(--floating-padding);
    }
    
    .industry-header:has([data-floating="true"]) .header-2-navbar-backdrop {
        display: none;
    }
    
    .industry-header:has([data-floating="true"]) .header-2-content {
         background: var(--color-main);
         padding: 10px;
        border-radius: 12px;
        -webkit-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
                box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
        max-width: var(--floating-max-width-desktop);
        margin-left: auto;
        margin-right: auto;
    }
    body:has([data-floating=true]) #MainContent .shopify-section:first-child {
        padding-top: var(--scroll-padding-top, 115px);
    }
    
    
    body:has([data-floating=true]) #MainContent .shopify-section:first-child:has(.custom-section) {
        padding-top: 0;
    }
    
    body:has([data-floating=true]) #MainContent .shopify-section:first-child .custom-section {
        padding: calc(var(--padding-top) + var(--scroll-padding-top, 115px)) 0 var(--padding-bottom) 0;
    }
}

@media (min-width: 1536px) {
    .header-2-navigation {
        gap: 20px;
    }
}

.header-2-nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 4px;
    -webkit-transition: background-color 0.15s;
    -o-transition: background-color 0.15s;
    transition: background-color 0.15s;
}
.header-2-nav-link-mobile a,
.header-2-nav-link a {
    font-family: var(--heading-font);
    font-weight: 800;
}
@media (min-width: 1280px) {
    .header-2-nav-link {
        padding: 10px 8px;
    }
}

@media (min-width: 1536px) {
    .header-2-nav-link {
        padding: 10px 16px;
    }
}

.header-2-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.17);
}

.header-2-menu-icon-button {
    padding: 9px;
    display: block;
    cursor: pointer;
}

@media (min-width: 991px) {
    .header-2-menu-icon-button {
        display: none;
    }
}

.header-2-menu-icon-wrap {
    width: 24px;
    height: 24px;
}

.header-2-close-menu.hidden {
    display: none;
}

[data-menu-align="flex-end"] .header-2-button-navigation {
    margin-left: 12px;
}

@media (min-width: 1280px) {
    [data-menu-align="flex-end"] .header-2-button-navigation {
        margin-left: 32px;
    }
}

.header-2-button-text {
    white-space: nowrap;
}

.header-2-button-icon {
    width: 20px;
    height: 20px;
}

.header-2-navbar-backdrop {
    background-color: var(--color-main);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@media (min-width: 1024px) {
    .header-2-navbar-backdrop {
        background-color: rgba(255, 255, 255, 0.56);
    }
}


.header-2-nav-overlay {
    translate: -100%;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    height: calc(100svh - 70px);
    overflow: auto;
    /* background-color: #011536; */
    background-color: var(--color-main);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}
.header-2-nav-overlay.show {
    translate: 0;
}
body:has(.header-2-nav-overlay.show) {
    overflow: hidden;
}

.header-2-navigation-overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 12px;
    padding: 24px;
}

.header-2-nav-link-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    padding: 6px 0px;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.5em;
    -webkit-transition: background-color 0.15s;
    -o-transition: background-color 0.15s;
    transition: background-color 0.15s;
}

@media (min-width: 640px) {
    .header-2-nav-link-mobile {
        font-size: 20px;
        line-height: 1.4em;
    }
}

.header-2-nav-link-mobile:hover a{
    /* background-color: rgba(255, 255, 255, 0.17); */
}

.header-2-nav-link-flex {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
}

.header-2-button-overlay {
    width: 100%;
    display: none;
}

.header-2-hidden {
    display: none;
}
@media screen and (max-width: 639px) {
    .header-2-button-navigation {
        display: none;
    }
    .header-2-button-overlay {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media (max-width: 1280px) {
    .header-2-nav-menu {
     -webkit-box-pack: end;
         -ms-flex-pack: end;
             justify-content: flex-end;
    }
}
.ss-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
}

.ss-pagination-item {
    color: rgb(0, 0, 0);
    background: rgb(255, 255, 255);
    min-height: 44px;
    min-width: 44px;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    line-height: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 6px;
    border: 0;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

.ss-pagination-item:not(.ss-pagination-current):hover {
    color: rgb(0, 0, 0);
    background: rgba(255, 255, 255, 0.75);
}

.ss-pagination-item svg {
    width: 18px;
    height: 18px;
}
.ss-pagination-item.ss-pagination-current {
    background: var(--main-color);
    color: #fff;
}
@media (max-width: 575px) {
    .ss-pagination-item {
        min-height: 40px;
        min-width: 40px;
    }
}
/* DEMO 1 */

.custom-section-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    text-align: var(--heading-align, left);
    margin-bottom: var(--heading-margin-bottom, 32px);
    gap: var(--heading-gap, 12px);
    max-width: var(--heading-max-width-desktop, 100%);
}
.custom-section-heading-title {
    color: var(--heading-title-color, var(--color-link));
    font-size: var(--heading-title-font-size, 44px);
    font-weight: var(--heading-title-font-weight, 700);
    line-height: 1.1;
    font-family: var(--heading-font);
}
.custom-section-heading-description {
    color: var(--heading-description-color, var(--color-link));
    font-size: var(--heading-description-font-size, 16px);
    margin: 0;
}
[data-heading-align="center"] .custom-section-heading {
    margin-left: auto;
    margin-right: auto;
}
[data-heading-align="right"] .custom-section-heading {
    margin-left: auto;
}

.image-card-slider .custom-section-heading-title,
.logo-grid-section .custom-section-heading-title {
    font-style: italic;
}

@media (max-width: 1200px) {
    .custom-section-heading {
        margin-bottom: var(--heading-margin-bottom-tablet, var(--heading-margin-bottom-mobile));
        gap: var(--heading-gap-tablet, var(--heading-gap-mobile));
        max-width: var(--heading-max-width-tablet,var(--heading-max-width-mobile));
    }
    .custom-section-heading-title {
        font-size: var(--heading-title-font-size-tablet, var(--heading-title-font-size-mobile));
    }
    .custom-section-heading-description {
        font-size: var(--heading-description-font-size-tablet, var(--heading-description-font-size-mobile));
    }
}
@media (max-width: 767px) {
    .custom-section-heading {
        margin-bottom: var(--heading-margin-bottom-mobile, 24px);
        gap: var(--heading-gap-mobile, 6px);
        max-width: var(--heading-max-width-mobile, 100%);
    }
    .custom-section-heading-title {
        font-size: var(--heading-title-font-size-mobile, 32px);
    }
    .custom-section-heading-description {
        font-size: var(--heading-description-font-size-mobile, 16px);
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll-padding-top, 115px);
}

@media (max-width: 991px) {
    html {
        scroll-behavior: smooth;
        scroll-padding-top: calc(70px + 24px);
    }
}
/* Footer */
.ss-footer {
    background-color: var(--background-color);
}
.footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
                    padding: 40px 0;
                    gap: 20px;
}
@media (max-width:575px) {
    .footer-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
                -webkit-box-align: start;
                    -ms-flex-align: start;
                        align-items: flex-start;
                        gap: 30px;
    }
}
.footer-logo {
    display: inline-block;
}
.footer-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    max-height: 60px;
}
.footer-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
            gap: 4px;
}
.footer-link {
    font-size: 20px;
    font-weight: 700;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}
.footer-link:hover {
    opacity: 0.8;
}


.heading-badge {
    background-color: #FFD88A;
    color: var(--color-link);
    padding: 6px 14px;
    border-radius: 9999px;
    display: inline-block;
    text-align: center;
    font-size: 14px;
}

.stairs {
    position: absolute;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    height: 100px;
}
.stairs--top {
    top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.stairs--bottom {
    bottom: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.stairs .shape__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
    min-width: 110%;
}
.shape svg {
    width: 100%;
    height: auto;
}
.stairs .shape__inner svg {
    height: 100%;
    min-width: 100%;
    width: auto;
}
.stairs--purple svg path:not(.line), .shape--purple svg path:not(.line) {
    fill: var(--color-link);
}
.stairs--main svg path:not(.line), .shape--main svg path:not(.line) {
    fill: var(--color-main);
}
.celleazubi-opening {
    background-color: var(--background-color);
}