* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    color: var(--color-foreground);
    background: var(--color-background);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;598
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    min-height: 100svh;
}

html {
    /* Firefox */
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.scroll-lock {
    overflow: hidden;
}

#drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.3);
}

#drawer-overlay:not(.show) {
    display: none;
}

@media (max-width: 991px) {
    #drawer-overlay {
        display: none;
    }
}

img,
picture,
video,
canvas,
iframe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    aspect-ratio: attr(width)/attr(height);
}

svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
}

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

input,
textarea,
select {
    font: inherit;
    /*    border-radius: var(--style-border-radius-inputs);*/
}

textarea,
input {
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    outline: none;
}

textarea:focus,
textarea:hover,
input:focus,
input:hover {
    color: var(--color-input-hover-text);
    background-color: var(--color-input-hover-background);
    border-color: var(--color-input-hover-border);
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
    color: var(--color-input-text);
}

textarea::-moz-placeholder,
input::-moz-placeholder {
    color: var(--color-input-text);
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
    color: var(--color-input-text);
}

textarea:-moz-placeholder,
input:-moz-placeholder {
    color: var(--color-input-text);
}

/* override ios and firefox defaults */
select {
    background-color: var(--color-background);
    color: currentcolor;
}

dialog {
    background-color: var(--color-background);
    color: var(--color-foreground);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    margin: 0;
    padding: 0;
}

p:empty {
    display: none;
}

:is(p, h1, h2, h3, h4, h5, h6):first-child,
:empty:first-child+ :where(p, h1, h2, h3, h4, h5, h6) {
    -webkit-margin-before: 0;
    margin-block-start: 0;
}

:is(p, h1, h2, h3, h4, h5, h6):last-child,
:where(p, h1, h2, h3, h4, h5, h6)+ :has(+ :empty:last-child) {
    -webkit-margin-after: 0;
    margin-block-end: 0;
}

/* Focus */
.focus-inset {
    outline-offset: calc(var(--focus-outline-width) * -1);
}

.svg-wrapper {
    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;
}

/* Typography */
.heading {
    color: var(--color-foreground-heading);
    font-weight: var(--font-heading--weight);
    font-family: var(--font-heading--family);
    font-style: var(--font-heading--style);
    letter-spacing: normal;
}

.heading-color {
    color: var(--color-foreground-heading);
}

.subheading {
    color: var(--color-foreground-subheading);
    font-weight: 500;
    font-family: var(--font-heading--family);
    font-style: normal;
    letter-spacing: normal;
}

.subheading-bg {
    background-color: var(--color-background-subheading);
    letter-spacing: normal;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*    padding: 7px 20px;*/
    /*    border-radius: 40px;*/
    /*    border: 1px solid var(--color-border-subheading-bg);*/
    gap: 5px;
}

.text {
    letter-spacing: normal;
    font-weight: var(--font-body--weight);
    color: var(--color-foreground);
    font-family: var(--font-body--family);
    font-style: var(--font-body--style);
}

h1,
.h1 {
    font-size: var(--font-h1--size);
    line-height: 1.16;
}

h2,
.h2 {
    font-size: var(--font-h2--size);
    line-height: 1;
}

h3,
.h3 {
    font-size: var(--font-h3--size);
    line-height: 1;
}

h4,
.h4 {
    font-size: var(--font-h4--size);
    line-height: 1.2;
}

h5,
.h5 {
    font-size: var(--font-h5--size);
    line-height: 1.3;
}

h6,
.h6 {
    font-size: var(--font-h6--size);
    line-height: 1.4;
}

.text-90 {
    font-size: 90px;
    line-height: 1.15;
}

.text-80 {
    font-size: 65px;
    line-height: 1.17;
}

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

.text-36 {
    font-size: 36px;
    line-height: 1.2;
}

.text-32 {
    font-size: 32px;
    line-height: 1.2;
}

.text-30 {
    font-size: 30px;
    line-height: 1.2;
}

.text-28 {
    font-size: 25px;
    line-height: 1.2;
}

.text-24 {
    font-size: 24px;
    line-height: 1.25;
}

.text-22 {
    font-size: 22px;
    line-height: 1.3;
}

.text-20 {
    font-size: 20px;
    line-height: 1.3;
}

.text-18 {
    font-size: 18px;
    line-height: 1.55;
}

.text-16 {
    font-size: 16px;
    line-height: 1.62;
}

.text-14 {
    font-size: 14px;
    line-height: 1.62;
}

.text-12 {
    font-size: 12px;
    line-height: 1;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

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

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

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

@media (max-width: 1399px) {
    .text-90 {
        font-size: 70px;
    }

    .text-80 {
        font-size: 60px;
    }

    .text-50 {
        font-size: 44px;
    }
}

@media (max-width: 991px) {

    .text-90,
    .text-80 {
        font-size: 60px;
    }

    .text-50 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {

    .text-90,
    .text-80 {
        font-size: 50px;
    }

    .text-50 {
        font-size: 38px;
    }

    .text-36 {
        font-size: 32px;
    }

    .text-32 {
        font-size: 30px;
    }

    .text-30 {
        font-size: 28px;
    }

    .text-28 {
        font-size: 24px;
    }

    .text-24 {
        font-size: 22px;
    }

    .text-22 {
        font-size: 20px;
    }

    .text-20 {
        font-size: 18px;
    }

    .text-18 {
        font-size: 16px;
    }
}

/* Icons */
.icon-80 {
    min-width: 80px;
    height: 80px;
}

.icon-62 {
    min-width: 62px;
    height: 62px;
}

.icon-50 {
    min-width: 50px;
    height: 50px;
}

.icon-32 {
    min-width: 32px;
    height: 32px;
}

.icon-28 {
    min-width: 28px;
    height: 28px;
}

.icon-24 {
    min-width: 24px;
    height: 24px;
}

.icon-20 {
    min-width: 20px;
    height: 20px;
}

.icon-18 {
    min-width: 18px;
    height: 18px;
}

.icon-14 {
    min-width: 14px;
    height: 14px;
}

@media (max-width: 767px) {
    .icon-80 {
        min-width: 60px;
        height: 60px;
    }

    .icon-62 {
        min-width: 48px;
        height: 48px;
    }
}

/* Buttons */
.button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-height: var(--style-button-height);
    font-size: var(--font-button-size);
    font-weight: var(--font-button--weight);
    font-family: var(--font-button--family);
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    padding: 15px 15px 15px 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.button-without-icon {
    padding: 10px 30px;
}

.button-without-icon.button--slim {
    padding: 10px 15px;
}

.button--slim {
    height: var(--style-button-slim-height);
    min-height: var(--style-button-slim-height);
}

.button--primary {
    color: var(--color-primary-button-text);
    background-color: var(--color-primary-button-background);
    border: var(--style-border-width-buttons-primary) solid var(--color-primary-button-border);
    /*    border-radius: var(--style-border-radius-buttons-primary);*/
}

.button--primary:focus,
.button--primary:hover {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--color-primary-button-hover-text);
    background-color: var(--color-primary-button-hover-background);
    border: var(--style-border-width-buttons-primary) solid var(--color-primary-button-hover-border);
}

.button--secondary {
    color: var(--color-secondary-button-text);
    background-color: var(--color-secondary-button-background);
    border: var(--style-border-width-buttons-secondary) solid var(--color-secondary-button-border);
    /*    border-radius: var(--style-border-radius-buttons-secondary);*/
}

.button--secondary:focus,
.button--secondary:hover {
    color: var(--color-secondary-button-hover-text);
    background-color: var(--color-secondary-button-hover-background);
    border: var(--style-border-width-buttons-secondary) solid var(--color-secondary-button-hover-border);
}

.button .svg-wrapper {
    color: var(--color-primary-button-icon);
    background-color: var(--color-primary-button-icon-background);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    min-width: 36px;
    height: 36px;
    /*    border-radius: 100%;*/
}

.button:focus .svg-wrapper,
.button:hover .svg-wrapper {
    color: var(--color-primary-button-hover-icon);
    background-color: var(--color-primary-button-hover-icon-background);
}

.button--secondary .svg-wrapper {
    color: var(--color-secondary-button-icon);
    background-color: var(--color-secondary-button-icon-background);
}

.button--secondary:focus .svg-wrapper,
.button--secondary:hover .svg-wrapper {
    color: var(--color-secondary-button-hover-icon);
    background-color: var(--color-secondary-button-hover-icon-background);
}

.button--cta {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-button--family);
    font-style: normal;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: var(--style-cta-underline-thickness) solid var(--color-primary);
    -webkit-padding-after: var(--style-cta-underline-offset);
    padding-block-end: var(--style-cta-underline-offset);
}

.button--cta svg {
    --size: 12px;
    width: var(--size);
    height: var(--size);
}

.button--cta:hover {
    color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

@media (max-width: 767px) {
    .button {
        min-height: var(--style-button-height-mobile);
        font-size: var(--font-button-size-mobile);
    }

    .button--slim {
        height: var(--style-button-slim-height-mobile);
        min-height: var(--style-button-slim-height-mobile);
    }
}

.content-absolute {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999;
}

.overlay:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--color-overlay);
}

.list-unstyled {
    padding: 0;
    list-style: none;
    margin: 0;
}

.border-bottom--theme {
    border-bottom: var(--style-border-width) solid var(--color-border);
}

.height-100 {
    height: 100%;
}

.mt-100 {
    margin-top: 100px;
}

.section-content {
    display: block;
    -webkit-margin-before: 60px;
    margin-block-start: 30px;
}

.section-headings-horizontal {
    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;
    gap: 20px;
}

.section-headings-right {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
}

.headings-width,
.section-headings-left {
    max-width: 950px;
}

.headings-width {
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
}

.section-headings .subheading+.heading {
    -webkit-margin-before: 30px;
    margin-block-start: 10px;
}

.section-headings .promotion-lists,
.section-headings .text-lists,
.section-headings .list-block,
.section-headings .heading+.text {
    -webkit-margin-before: 40px;
    margin-block-start: 20px;
}

.section-headings:not(.section-headings-horizontal) .buttons {
    -webkit-margin-before: 50px;
    margin-block-start: 25px;
}

.section-headings-sticky {
    --position: calc(var(--header-height) + 40px);
    position: -webkit-sticky;
    position: sticky;
    top: var(--position, 0px);
}

.section-padding {
    --padding-top: 80px;
    --padding-bottom: 80px;
    -webkit-padding-before: var(--padding-top);
    padding-block-start: var(--padding-top);
    -webkit-padding-after: var(--padding-bottom);
    padding-block-end: var(--padding-bottom);
}

.scroll-margin {
    --scroll-top: calc(var(--header-height) + 40px);
    scroll-margin-block-start: var(--scroll-top, 100px);
}

@media (max-width: 991px) {
    .mt-100 {
        margin-top: 80px;
    }

    .section-padding {
        --padding-top: 80px;
        --padding-bottom: 80px;
    }

    .section-content {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }
}

@media (max-width: 767px) {
    .mt-100 {
        margin-top: 60px;
    }

    .section-headings .subheading+.heading {
        -webkit-margin-before: 20px;
        margin-block-start: 20px;
    }

    .section-headings .promotion-lists,
    .section-headings .text-lists,
    .section-headings .list-block,
    .section-headings .heading+.text {
        -webkit-margin-before: 30px;
        margin-block-start: 30px;
    }

    .section-headings:not(.section-headings-horizontal) .buttons,
    .section-headings .buttons {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }

    .section-headings-horizontal {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 24px;
    }

    .section-headings-horizontal .buttons {
        width: 100%;
    }

    .section-padding {
        --padding-top: 60px;
        --padding-bottom: 60px;
    }
}

/* drawer opener */
drawer-opener {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

drawer-opener svg {
    width: 100%;
    height: 100%;
}

drawer-opener.menu-close svg {
    width: 30px;
    height: 30px;
}

drawer-opener * {
    pointer-events: none;
}

.open-sidebar {
    --color-foreground: rgba(255, 255, 255, 1);
    --color-background: rgba(32, 40, 45, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 9px 20px;
    border-radius: 8px;
    gap: 6px;
    color: var(--color-foreground);
    background-color: var(--color-background);
    -webkit-margin-after: 30px;
    margin-block-end: 30px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
}

.open-sidebar svg {
    --size: 20px;
    width: var(--size);
    height: var(--size);
}

.menu-open {
    width: 36px;
    height: 36px;
    color: var(--color-foreground);
}

.social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}

.social-link {
    text-decoration: none;
    width: var(--size-social, 44px);
    height: var(--size-social, 44px);
    border-radius: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    word-wrap: normal;
}

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-contain {
    background-repeat: repeat;
    background-size: contain;
}

.radius18 {
    border-radius: 18px;
    overflow: hidden;
}

.card-icon-text .svg-wrapper {
    --size: 170px;
    min-width: var(--size, 70px);
    width: var(--size, 70px);
    height: var(--size, 70px);
}

.card-icon-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}

.card-icon-text .heading+.text {
    -webkit-margin-before: 10px;
    margin-block-start: 10px;
}

.card-icon-text-horizontal {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

@media (max-width: 1279px) {
    .card-icon-text .svg-wrapper {
        --size: 60px;
    }
}

@media (max-width: 767px) {
    .radius18 {
        border-radius: 10px;
    }
}

@media (min-width: 2000px) {
    .bg-contain {
        background-repeat: no-repeat;
        background-size: cover;
    }
}

.infinite-rotate {
    -webkit-animation: inifinte-rotation 20s infinite linear;
    animation: inifinte-rotation 20s infinite linear;
}

@-webkit-keyframes inifinte-rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes inifinte-rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.overflow-hidden {
    overflow: hidden;
}

.media-wrapper {
    position: relative;
    height: 100%;
}

.iframe-wrapper,
.media {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.media-bg {
    z-index: -1;
}

.iframe-wrapper iframe,
.media img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.scroll-to-top {
    --size: 50px;
    position: fixed;
    width: var(--size);
    height: var(--size);
    bottom: 20px;
    right: 20px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease-in-out,
        -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out,
        -webkit-transform 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out,
        transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out,
        transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out,
        transform 0.3s ease-in-out,
        -webkit-transform 0.3s ease-in-out;
    z-index: 10;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #1c2539;
    /*    border-radius: 50%;*/
    -webkit-box-shadow: 0px 4px 22px rgba(255, 255, 255, 0.5);
    box-shadow: 0px 4px 22px rgba(255, 255, 255, 0.5);
}

.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-lock .scroll-to-top {
    display: none;
}

.scroll-to-top svg {
    --size: 22px;
    color: #fff;
    width: var(--size);
    height: var(--size);
}

@media (max-width: 767px) {
    .scroll-to-top {
        --size: 40px;
    }

    .scroll-to-top svg {
        --size: 20px;
    }
}

/* Swiper Slider */
.swiper-button-prev:after,
.swiper-button-next:after {
    content: none;
}

.swiper:not(.swiper-initialized) {
    opacity: 0;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--swiper-navigation-color);
    background-color: var(--swiper-navigation-background-color);
}

.swiper-button-prev:focus,
.swiper-button-prev:hover,
.swiper-button-next:focus,
.swiper-button-next:hover {
    color: var(--swiper-navigation-hover-color);
    background-color: var(--swiper-navigation-hover-background-color);
}

.swiper-nav-inner>* {
    --size: 44px;
    --color-border: rgba(28, 37, 57, 0);
    --style-border-width: 1px;
    position: static;
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    border: var(--style-border-width) solid var(--color-border);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin: 0;
}

.swiper-nav-inner>*:focus,
.swiper-nav-inner>*:hover {
    --color-border: rgba(28, 37, 57, 1);
}

.swiper-nav-inner svg {
    width: var(--swiper-navigation-size);
    height: var(--swiper-navigation-size);
}

.swiper-nav-border {
    --margin-top: 60px;
    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;
    -webkit-margin-before: var(--margin-top);
    margin-block-start: var(--margin-top);
    position: relative;
}

.swiper-nav-inner {
    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;
    gap: 24px;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 20px;
}

.swiper-nav-border:after {
    --color-border: rgba(93, 102, 111, 1);
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 1px;
    background: var(--color-border);
    width: 90%;
}

@media (max-width: 767px) {
    .swiper-nav-border {
        --margin-top: 40px;
    }

    .swiper-nav-inner>* {
        --size: 36px;
    }

    .swiper-nav-inner {
        gap: 16px;
    }
}

/* container */
.product-grid {
    row-gap: 30px;
}

.container-narrow {
    max-width: 1000px;
}

@media (min-width: 1280px) {
    .container-fluid {
        max-width: 1680px;
        -webkit-padding-start: 3rem;
        padding-inline-start: 3rem;
        -webkit-padding-end: 3rem;
        padding-inline-end: 3rem;
    }
}

@media (max-width: 991px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --bs-gutter-x: 3rem;
    }
}

@media (max-width: 767px) {
    .product-grid {
        row-gap: 24px;
    }
}

.decorated-text {
    position: relative;
    display: inline-block;
    padding: 6px 12px;
    outline: 1.5px solid var(--color-foreground-heading);
    outline-offset: -9px;
}

.decorated-text::before,
.decorated-text::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-foreground-heading);
}

.decorated-text::before {
    top: 0;
    left: 0;
}

.decorated-text::after {
    bottom: 0;
    right: 0;
}

.decorated-text span::before,
.decorated-text span::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-foreground-heading);
}

.decorated-text span::before {
    top: 0;
    right: 0;
}

.decorated-text span::after {
    bottom: 0;
    left: 0;
}

.accordion-block {
    --color-background: rgba(242, 242, 242, 1);
    border-radius: 10px;
    background-color: var(--color-background);
    overflow: hidden;
}

.accordion-opener {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 32px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 24px 20px;
    cursor: pointer;
}

.accordion-block.active .accordion-opener {
    --color-background: rgba(28, 37, 57, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    background-color: var(--color-background);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.accordion-content {
    max-height: 0;
    -webkit-transition: max-height 0.3s ease-in-out;
    -o-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
}

.accordion-content-inner {
    padding: 24px 20px;
}

.accordion-opener .svg-wrapper {
    --color-background: rgba(32, 40, 45, 1);
    min-width: 30px;
    height: 30px;
    background-color: var(--color-background);
    border-radius: 100%;
    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;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.accordion-block.active .accordion-opener .svg-wrapper {
    --color-background: rgba(255, 255, 255, 1);
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.accordion-opener .svg-wrapper svg {
    --color-foreground: rgba(255, 255, 255, 1);
    color: var(--color-foreground);
}

.accordion-block.active .accordion-opener .svg-wrapper svg {
    --color-foreground: rgba(32, 40, 45, 1);
    color: var(--color-foreground);
}

@media (max-width: 767px) {
    .accordion-opener {
        gap: 24px;
        padding: 24px 15px;
    }

    .accordion-content-inner {
        padding: 24px 15px;
    }
}

.hero-slider {
    --color-foreground: rgba(255, 255, 255, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    --color-foreground-subheading: rgba(255, 255, 255, 1);
    --slider-nav-height: 120px;
    min-height: 100vh;
}

.hero-slider-wrapper {
    display: block;
}

.slider-card {
    position: relative;
    -webkit-padding-before: var(--slider-nav-height);
    padding-block-start: var(--slider-nav-height);
    -webkit-padding-after: var(--slider-nav-height);
    padding-block-end: var(--slider-nav-height);
}

.with-floating-header .slider-card {
    -webkit-padding-before: calc(var(--header-height) + 60px);
    padding-block-start: calc(var(--header-height) + 60px);
    -webkit-padding-after: calc(var(--header-height) + 60px);
    padding-block-end: calc(var(--header-height) + 60px);
}

.slider-card .content-box {
    max-width: 80%;
}

.slider-card .content-box .heading {
    font-size: 65px;
}

.slider-card-4 .content-box {
    max-width: 1000px;
}

.slider-card-4 .heading-color {
    --color-foreground-heading: rgba(130, 180, 255, 1);
}

.slider-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.slider-media img {
    /*    -o-object-fit: cover;*/
    /*    object-fit: cover;*/
    width: 100%;
    height: 100%;
}

.slider-nav {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: var(--slider-nav-height);
}

.slider-nav .swiper-button-next,
.slider-nav .swiper-button-prev {
    position: static;
    z-index: 10;
    cursor: pointer;
    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;
    margin: 0;
    width: 50%;
    height: inherit;
    color: var(--swiper-navigation-color);
    background-color: var(--swiper-navigation-background-color);
    border: none;
    outline: none;
    border-top: 1px solid var(--color-border);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.slider-nav .swiper-button-next:hover,
.slider-nav .swiper-button-prev:hover {
    color: var(--swiper-navigation-hover-color);
    background-color: var(--swiper-navigation-hover-background-color);
    border-top: 1px solid var(--color-border-hover);
}

.slider-nav .swiper-button-next svg,
.slider-nav .swiper-button-prev svg {
    width: 32px;
    height: 32px;
}

hero-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slider-card {
    height: 100%;
}

.slider-animation>* {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: 1.5s;
    -o-transition-duration: 1.5s;
    transition-duration: 1.5s;
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.slider-animation>*:nth-child(2) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.slider-animation>*:nth-child(3) {
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.slider-animation>*:nth-child(4) {
    -webkit-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.swiper-slide-active .slider-animation>* {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.slider-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

@media (max-width: 1600px) {
    .hero-slider {
        --slider-nav-height: 80px;
    }
}

@media (max-width: 1280px) {
    .hero-slider {
        --slider-nav-height: 60px;
    }

    .hero-slider-3 {
        min-height: 640px;
    }
}

@media (max-width: 767px) {

    .slider-nav .swiper-button-next svg,
    .slider-nav .swiper-button-prev svg {
        width: 28px;
        height: 28px;
    }

    .with-floating-header .slider-card {
        -webkit-padding-before: calc(var(--header-height) + 40px);
        padding-block-start: calc(var(--header-height) + 40px);
        -webkit-padding-after: calc(var(--header-height) + 40px);
        padding-block-end: calc(var(--header-height) + 40px);
    }
}

.header-1 {
    --header-radius: 0;
    --color-background: rgba(28, 37, 57, 0);
    --color-foreground: rgba(255, 255, 255, 1);
    --color-primary-hover: rgba(255, 255, 255, 0.6);
    --color-border: rgba(255, 255, 255, 0.2);
    --style-border-width: 1px;
    background: var(--color-background);
    border-bottom: var(--style-border-width) solid var(--color-border);
}

.header-2 {
    --top: 30px;
    --header-radius: 15px;
    --header-padding: 0 24px;
    --color-background: rgba(255, 255, 255, 1);
    --color-foreground: rgba(28, 37, 57, 1);
    --color-primary-hover: rgba(28, 37, 57, 0.6);
    --color-border: rgba(0, 0, 0, 0.06);
}

.header-4 {
    border-bottom: none;
}

.header-1 .menu-open {
    --color-foreground: rgba(28, 37, 57, 1);
}

.header-1.header-floating:hover,
.header-1.header-sticky.scrolled-past-header {
    --color-secondary-button-hover-border: rgba(255, 255, 255, 0.3);
    --color-background: rgba(28, 37, 57, 1);
    border-bottom: var(--style-border-width) solid rgba(255, 255, 255, 0);
}

.header-1.header-floating:hover .header-menu .nav-item .menu-link,
.header-1.header-sticky.scrolled-past-header .header-menu .nav-item .menu-link {
    color: #fff;
}

.header-1.header-floating:hover .header-menu .header-submenu .list-unstyled .nav-item .menu-link,
.header-1.header-sticky.scrolled-past-header .header-menu .header-submenu .list-unstyled .nav-item .menu-link {
    color: #1c2539;
}

.header-floating {
    position: fixed;
    top: var(--top, 0);
    left: 0;
    width: 100%;
    z-index: 9;
}

sticky-header[data-sticky-type="always"] {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9;
}

.header-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 290px 1fr 290px;
    grid-template-columns: 290px 1fr 290px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    background: var(--color-background);
    border-radius: var(--header-radius);
    padding: var(--header-padding);
}

.header-2 .header-grid {
    -ms-grid-columns: 260px 1fr 260px;
    grid-template-columns: 260px 1fr 260px;
    border: var(--style-border-width) solid var(--color-border);
}

.header-2.header-floating:hover .header-grid,
.header-2.header-sticky.scrolled-past-header .header-grid {
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.header-logo {
    max-width: 188px;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-actions {
    justify-self: flex-end;
    gap: 24px;
    color: var(--color-foreground);
}

.header-search {
    --color-border: rgba(255, 255, 255, 1);
    --style-border-width: 2px;
    min-width: 52px;
    width: 52px;
    height: 52px;
    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: var(--style-border-width) dotted var(--color-border);
    border-radius: 50%;
    opacity: 0.6;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
}

.header-search:focus,
.header-search:hover {
    opacity: 1;
}

.header-separator {
    --color-border: rgba(255, 255, 255, 1);
    color: var(--color-border);
}

.header-actions .header-search svg {
    width: 24px;
    height: 24px;
}

.header-2 .header-actions>.button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

@media (min-width: 992px) {
    .header-1 .header-nav {
        border-left: 1px solid var(--color-border);
        border-right: 1px solid var(--color-border);
    }

    .header-4 .header-nav {
        border-left: none;
        border-right: none;
    }

    .header-nav {
        position: relative;
    }
}

@media (max-width: 1365px) {
    .header-grid {
        -ms-grid-columns: 240px 1fr 240px;
        grid-template-columns: 240px 1fr 240px;
    }

    .header-2 .header-grid {
        -ms-grid-columns: (auto)[3];
        grid-template-columns: repeat(3, auto);
    }

    .header-actions {
        gap: 20px;
    }

    .header-2 .header-actions>.button {
        display: none;
    }

    .header-separator {
        display: none;
    }
}

@media (max-width: 1279px) {
    .header-grid {
        -ms-grid-columns: 200px 1fr 200px;
        grid-template-columns: 200px 1fr 200px;
    }

    .header-2 .header-grid {
        -ms-grid-columns: (auto)[3];
        grid-template-columns: repeat(3, auto);
    }

    .header-actions .header-search {
        min-width: 36px;
        width: 36px;
        height: 36px;
    }

    .header-actions .header-search svg {
        width: 18px;
        height: 18px;
    }

    .header-actions .button--slim {
        -webkit-padding-start: 18px;
        padding-inline-start: 18px;
        gap: 8px;
    }

    .header-actions .button--slim .svg-wrapper {
        min-width: 30px;
        height: 30px;
    }

    .header-logo {
        max-width: 160px;
    }
}

@media (max-width: 991px) {
    .header-grid {
        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;
        padding: 12px 0;
    }

    .header-2 .header-grid {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .header-logo {
        max-width: 130px;
    }

    .header-2 {
        --top: 20px;
    }
}

.submenu-color {
    --submenu-radius: 8px;
    --submenu-padding: 10px;
    --color-background: rgba(255, 255, 255, 1);
    --color-foreground: rgba(32, 40, 45, 1);
    --color-foreground-heading: rgba(28, 37, 57, 1);
    --color-primary: rgba(32, 40, 45, 1);
    --color-primary-background: rgba(240, 237, 239, 0);
    --color-primary-hover: rgba(32, 40, 45, 1);
    --color-primary-background-hover: rgba(233, 233, 233, 1);
}

.menu-link {
    color: #fff;
    padding: 0;
    font-size: var(--font-nav-main);
    font-weight: 500;
    border: none;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-item:focus>.menu-link,
.nav-item:hover>.menu-link {
    color: var(--color-primary-hover);
}

.menu-link-main>svg {
    position: relative;
    top: 1px;
}

.menu-link-main {
    padding: 37.5px 20px;
}

.nav-item {
    position: relative;
}

.header-submenu {
    background: var(--color-background);
    width: 100%;
}

.header-submenu>* {
    padding: var(--submenu-padding) 0;
}

.nav-item-static {
    position: static;
}

.header-submenu .nav-item {
    display: block;
    position: relative;
    padding: 0 var(--submenu-padding);
}

.header-submenu .menu-link {
    color: var(--color-primary);
    background: var(--color-primary-background);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding: 7px 17px;
    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;
    border-radius: var(--submenu-radius);
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*.header-megamenu .nav-item .menu-link {
    padding: 15px 17px;
}
*/
.header-megamenu .nav-item .submenu-lists .menu-link {
    padding: 7px 17px;
}

.header-submenu .menu-link>svg {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.menu-link.megamenu-image-wrap,
.header-submenu .nav-item.megamenu-links .menu-link,
.header-submenu .nav-item:focus>.menu-link,
.header-submenu .nav-item:hover>.menu-link {
    color: var(--color-primary-hover);
    /*  background: var(--color-primary-background-hover);*/
}

.reset-submenu {
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    width: auto;
}

.header-megamenu>*>.nav-item {
    padding: 15px 5px 15px;
}

.megamenu-links .menu-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.menu-link .heading+.text {
    -webkit-margin-before: 4px;
    margin-block-start: 4px;
    opacity: 0.75;
}

.menu-link.heading {
    background: transparent !important;
    letter-spacing: 2.5px;
}

.header-submenu .nav-item.megamenu-links .menu-link {
    padding: 5px 15px 7px;
}

.header-submenu .nav-item.megamenu-links .menu-link>svg {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    position: relative;
    top: 1px;
}

.header-megamenu .nav-item.megamenu-links>* {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
}

.megamenu-image-wrap .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-margin-before: 15px;
    margin-block-start: 15px;
    margin-top: 0;
}

.megamenu-image-wrap .content .button {
    --color-primary-button-icon: rgba(255, 255, 255, 1);
    --color-primary-button-icon-background: rgba(28, 37, 57, 1);
    --color-primary-button-hover-icon: rgba(28, 37, 57, 1);
    --color-primary-button-hover-icon-background: rgba(255, 255, 255, 1);
    padding: 0;
    min-height: 1px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.megamenu-image-wrap:focus .content .button .svg-wrapper,
.megamenu-image-wrap:hover .content .button .svg-wrapper {
    color: var(--color-primary-button-hover-icon);
    background: var(--color-primary-button-hover-icon-background);
}

.submenu-lists .menu-link {
    letter-spacing: normal;
}

.header-submenu.submenu-lists .nav-item .menu-link {
    padding: 7px 17px;
}

.megamenu-image-wrap img {
    border-radius: 6px;
}

@media (min-width: 992px) {
    .menu-absolute {
        position: absolute;
        top: 100%;
        left: 0;
    }

    .header-grandmenu {
        left: 100%;
        top: 0;
    }

    .header-submenu {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        border-radius: var(--submenu-radius);
        -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        min-width: 160px;
        opacity: 0;
        visibility: hidden;
    }

    .header-megamenu {
        width: 100%;
    }

    .nav-item:hover>.menu-absolute {
        opacity: 1;
        visibility: visible;
    }

    .reset-submenu>.nav-item {
        padding: 0;
    }

    .header-megamenu>* {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .header-megamenu>*>.nav-item {
        width: calc(50% - var(--submenu-padding) / 2);
        max-width: calc(50% - var(--submenu-padding) / 2);
    }

    .header-megamenu .menu-link {
        display: inline-block;
    }

    .nav-item.megamenu-links {
        width: 100%;
        max-width: 100%;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        -webkit-margin-before: 24px;
        margin-block-start: 24px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        gap: 24px;
        padding: 20px;
    }

    .header-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 1600px) {
    .menu-link-main {
        padding: 28px 25px;
    }
}

@media (max-width: 1365px) {
    .menu-link-main {
        padding: 28px 12px;
    }
}

@media (max-width: 991px) {
    .header-nav {
        /*        --color-background: rgba(242, 242, 242, 1);*/
        --color-foreground: rgba(32, 40, 45, 1);
        --color-foreground-heading: rgba(28, 37, 57, 1);
        --color-primary: rgba(32, 40, 45, 1);
        --color-primary-background: rgba(240, 237, 239, 0);
        --color-primary-hover: rgba(32, 40, 45, 1);
        --color-primary-background-hover: rgba(233, 233, 233, 1);
        position: fixed;
        right: 0;
        top: 0;
        background: var(--color-background);
        z-index: 10;
        width: 100%;
        height: 100%;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        overflow-y: auto;
    }

    .header-nav.show {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .header-menu>* {
        width: 100%;
    }

    .menu-link-main {
        padding: 12px 15px;
        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;
    }

    .header-menu>.nav-item .menu-link-main {
        border-top: 1px solid rgba(0, 0, 0, 0.15);
    }

    .menu-link {
        border-bottom: 1px solid rgba(0, 0, 0, 0);
    }

    .menu-link.active {
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    }

    .menu-link>svg {
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .menu-link.active>svg {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .header-megamenu>*>.nav-item {
        padding: 0 15px 20px;
    }

    .header-submenu .nav-item.megamenu-links {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        gap: 12px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .nav-item>.header-submenu:not(.reset-submenu) {
        max-height: 0;
        overflow: hidden;
        -webkit-transition: max-height 0.3s ease-in-out;
        -o-transition: max-height 0.3s ease-in-out;
        transition: max-height 0.3s ease-in-out;
    }

    .header-submenu {
        background: inherit;
    }

    .header-nav-headings {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 15px;
    }

    .header-nav-headings .svg-wrapper {
        color: #fff;
        width: 44px;
        height: 44px;
        margin-right: -10px;
    }

    .menu-link * {
        pointer-events: none;
    }

    .header-megamenu .nav-item .menu-link>.heading {
        width: 100%;
    }
}

.modal-search {
    --modal-input-height: 50px;
    --color-background: linear-gradient(184.15deg,
            rgba(28, 37, 57, 40%) -187.51%,
            #1c2539 96.62%);
    --color-foreground: rgba(255, 255, 255, 1);
    --color-input-background: rgba(255, 255, 255, 0);
    --color-input-text: rgba(255, 255, 255, 1);
    --color-input-border: rgba(255, 255, 255, 1);
    --color-input-hover-background: rgba(255, 255, 255, 0);
    --color-input-hover-text: rgba(255, 255, 255, 1);
    --color-input-hover-border: rgba(255, 255, 255, 1);
    --color-primary-button-background: rgba(255, 255, 255, 0);
    --color-primary-button-hover-background: rgba(255, 255, 255, 0);
    --color-primary-button-icon: rgba(255, 255, 255, 1);
    --color-primary-button-icon-background: rgba(255, 255, 255, 0);
    --color-primary-button-hover-icon: rgba(255, 255, 255, 1);
    --color-primary-button-hover-icon-background: rgba(255, 255, 255, 0);
}

.theme-modal {
    --modal-header-height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-background);
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 9;
}

.theme-modal.show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.theme-drawer {
    --padding-drawer: 24px;
    position: fixed;
    top: 0;
    background: var(--color-background);
    z-index: 10;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.drawer-additional {
    --color-background: rgba(242, 242, 242, 1);
    --color-foreground: rgba(32, 40, 45, 1);
    --color-foreground-heading: rgba(28, 37, 57, 1);
    --color-primary: rgba(32, 40, 45, 1);
    --color-primary-background: rgba(240, 237, 239, 0);
    --color-primary-hover: rgba(32, 40, 45, 1);
    --color-primary-background-hover: rgba(233, 233, 233, 1);
    background: var(--color-background);
}

.drawer-headings {
    --color-border: rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: var(--padding-drawer, 15px);
    border-bottom: var(--style-border-width) solid var(--color-border);
}

.drawer-content {
    padding: var(--padding-drawer, 15px);
}

.drawer-content .drawer-heading {
    -webkit-margin-after: 10px;
    margin-block-end: 10px;
}

.drawer-additional .drawer-content .drawer-heading {
    -webkit-margin-before: 20px;
    margin-block-start: 20px;
}

.drawer-additional-menu .menu-link {
    padding: 5px 0;
    font-size: 22px;
}

.drawer-additional-menu .menu-link:not(.no-hover):focus,
.drawer-additional-menu .menu-link:not(.no-hover):hover {
    opacity: 0.75;
}

.drawer-additional-menu .menu-link svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    -webkit-margin-end: 7px;
    margin-inline-end: 7px;
}

.drawer-block-contact {
    -webkit-margin-before: 80px;
    margin-block-start: 80px;
}

.drawer-block-contact .menu-link {
    font-size: 18px;
}

.theme-drawer[data-position="right"] {
    right: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.theme-drawer.show[data-position="right"],
.header-nav.show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.modal-container {
    width: 100%;
    height: 100%;
    padding: 15px;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: var(--modal-header-height);
}

.modal-header .svg-wrapper {
    width: 36px;
    height: 36px;
}

.modal-header .svg-wrapper svg {
    width: 30px;
    height: 30px;
}

.modal-main {
    width: 100%;
    height: calc(100% - var(--modal-header-height));
}

.theme-modal .form-search label {
    display: block;
    text-align: center;
    width: 100%;
    -webkit-margin-after: 30px;
    margin-block-end: 30px;
}

.theme-modal .search-close {
    -webkit-transform: scale(0.2);
    -ms-transform: scale(0.2);
    transform: scale(0.2);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.theme-modal.show .search-close {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.form-search {
    width: 0%;
    max-width: 900px;
    margin: 0 auto;
    border-bottom: var(--style-border-width) solid var(--color-border);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.theme-modal.show .form-search {
    width: 100%;
}

.form-search .button {
    padding: 0;
    width: var(--modal-input-height);
    height: var(--modal-input-height);
    min-height: var(--modal-input-height);
    border: none;
}

.form-search input {
    border: none;
    outline: none;
    height: var(--modal-input-height);
    width: calc(100% - var(--modal-input-height));
    -webkit-padding-end: 15px;
    padding-inline-end: 15px;
}

.form-search input::-webkit-input-placeholder {
    color: var(--color-input-text);
}

.form-search input::-moz-placeholder {
    color: var(--color-input-text);
}

.form-search input:-ms-input-placeholder {
    color: var(--color-input-text);
}

.form-search input:-moz-placeholder {
    color: var(--color-input-text);
}

@media (min-width: 768px) {
    .modal-header .svg-wrapper {
        -webkit-margin-end: 5px;
        margin-inline-end: 5px;
    }

    .theme-drawer {
        max-width: 480px;
    }

    .form-search {
        -webkit-transition: 2s;
        -o-transition: 2s;
        transition: 2s;
    }
}

@media (max-width: 991px) {
    .form-search {
        max-width: 700px;
    }

    .drawer-block {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }

    .drawer-additional-menu .menu-link {
        font-size: 16px;
    }
}

.accordion-title {
    cursor: pointer;
}

.accordion-title * {
    pointer-events: none;
}

.accordion-li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.accordion-contents {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-in-out;
    -o-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
}

@media (min-width: 992px) {
    .accordion-horizontal .accordion-li {
        min-width: var(--width);
        width: var(--width);
        overflow: hidden;
        -webkit-transition: width 0.4s ease, min-width 0.4s ease;
        -o-transition: width 0.4s ease, min-width 0.4s ease;
        transition: width 0.4s ease, min-width 0.4s ease;
    }

    .accordion-horizontal .accordion-li.active {
        width: 100%;
        min-width: 420px;
    }
}

@media (max-width: 991px) {
    .accordion-title {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

form textarea,
form input {
    width: 100%;
    padding: 0 15px;
    min-height: 54px;
}

form textarea {
    padding: 20px 15px;
}

.form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.form>* {
    width: 100%;
}

.contact-box-headings+form {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}

.contact-box {
    background: #fff;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.contact-form-wrap {
    padding: 40px;
}

.contact-media {
    height: 400px;
}

.contact-media img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.contact-form .form-button {
    -webkit-margin-before: 20px;
    margin-block-start: 20px;
}

.form-newsletter {
    --width-button: 54px;
    position: relative;
}

.newsletter-button {
    position: absolute;
    right: 4px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 0px;
    height: calc(100% - 8px);
    min-height: calc(100% - 8px);
    width: var(--width-button);
    min-width: var(--width-button);
    padding: 0;
}

.newsletter-button .svg-wrapper {
    --color-primary-button-icon: rgba(255, 255, 255, 1);
    --color-primary-button-icon-background: rgba(28, 37, 57, 0);
    --color-primary-button-hover-icon: rgba(32, 40, 45, 1);
    --color-primary-button-hover-icon-background: rgba(28, 37, 57, 0);
    min-width: 24px;
    height: 24px;
}

.form-newsletter input {
    -webkit-padding-end: calc(var(--width-button) + 10px);
    padding-inline-end: calc(var(--width-button) + 10px);
}

@media (min-width: 768px) {
    .form {
        gap: 24px;
    }

    .form>.w-half {
        width: calc(50% - 24px / 2);
    }
}

@media (min-width: 992px) {
    .contact-media {
        height: 100%;
    }
}

@media (max-width: 767px) {

    form textarea,
    form input {
        min-height: 48px;
    }

    .contact-box-headings+form {
        -webkit-margin-before: 30px;
        margin-block-start: 30px;
    }

    .contact-form-wrap {
        padding: 30px 15px;
    }

    .contact-media {
        height: 300px;
    }
}

.text-lists .text-item {
    --color-foreground: rgba(28, 37, 57, 1);
}

.text-lists .text-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
}

.text-lists .text-item svg {
    min-width: 28px;
    height: 28px;
}

.text-lists .text-item:not(:first-child) {
    -webkit-margin-before: 18px;
    margin-block-start: 18px;
}

.image-text .media-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: relative;
}

.image-text .media-wrap img {
    -o-object-fit: contain;
    object-fit: contain;
}

.list-block .text-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 225px;
    margin: 0;
}

.list-block .text-item svg {
    min-width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-block .title {
    -webkit-margin-before: 32px;
    margin-block-start: 20px;
}

.list-block .text {
    -webkit-margin-before: 20px;
    margin-block-start: 20px;
}

.list-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.list-block .text-item {
    -webkit-margin-before: 0;
    margin-block-start: 0;
}

.image-small {
    position: absolute;
    right: 0;
    bottom: 30px;
    z-index: 2;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(60px);
    backdrop-filter: blur(60px);
    -webkit-box-shadow: 0px 30px 90px 0px #041f1f4d;
    box-shadow: 0px 30px 90px 0px #041f1f4d;
}

.image-small img {
    border-radius: inherit;
}

.text-image-sticky .section-headings-right {
    min-width: auto;
}

.text-image-sticky .image-text-card {
    position: -webkit-sticky;
    position: sticky;
    padding: 60px 40px;
    background-color: var(--color-background);
}

.text-image-sticky .image-text-card {
    --position: calc(var(--header-height) + var(--top, 40px));
    background-color: var(--color-background);
    top: var(--position);
}

.text-image-sticky .image-text-card:nth-child(1) {
    --color-background: #efeefb7d;
    --top: 40px;
}

.text-image-sticky .image-text-card:nth-child(2) {
    --color-background: rgb(236 236 232);
    --top: 100px;
}

.text-image-sticky .image-text-card:nth-child(3) {
    --color-background: rgb(226 232 234);
    --top: 160px;
}

@media (min-width: 992px) {
    .image-text .content {
        -webkit-padding-start: 32px;
        padding-inline-start: 32px;
    }
}

@media (min-width: 1400px) {
    .image-text .content {
        -webkit-padding-start: 55px;
        padding-inline-start: 0;
    }
}

@media (max-width: 991px) {
    .image-text .content {
        -webkit-padding-before: 60px;
        padding-block-start: 60px;
    }

    .list-block .text-item svg {
        min-width: 48px;
        height: 48px;
    }

    .text-image-sticky .image-text-card {
        padding: 48px 24px;
    }
}

@media (max-width: 767px) {
    .image-text .content {
        -webkit-padding-before: 40px;
        padding-block-start: 40px;
    }

    .text-image-sticky .image-text-card {
        padding: 32px 16px;
    }
}

@media (max-width: 575px) {
    .image-small img {
        max-width: 140px;
    }
}

.hero-banner .swiper-button-prev,
.hero-banner .swiper-button-next {
    --swiper-navigation-size: 44px;
    --swiper-navigation-color: rgba(28, 37, 57, 1);
    --swiper-navigation-background-color: rgba(255, 255, 255, 1);
    --swiper-navigation-hover-color: rgba(255, 255, 255, 1);
    --swiper-navigation-hover-background-color: rgba(28, 37, 57, 1);
}

.hero-banner {
    --padding-block-start: 100px;
    --padding-block-bottom: 100px;
    min-height: 100vh;
    -webkit-padding-before: var(--padding-block-start);
    padding-block-start: var(--padding-block-start);
    -webkit-padding-after: var(--padding-block-bottom);
    padding-block-end: var(--padding-block-bottom);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-banner.with-floating-header {
    --padding-block-start: calc(var(--header-height) + 20px + 0px);
    --padding-block-bottom: calc(var(--header-height));
}

.hero-banner .content>.buttons {
    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: 30px;
}

.hero-phone-call {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--color-foreground);
}

.hero-phone-call svg {
    min-width: 44px;
    height: 44px;
}

.banner-slider {
    display: block;
    position: relative;
}

.hero-banner .main-img {
    position: relative;
    border-radius: 10px;
}

.thumb-slider {
    -webkit-padding-start: 12%;
    padding-inline-start: 12%;
    -webkit-padding-end: 12%;
    padding-inline-end: 12%;
    position: relative;
    -webkit-margin-before: -12%;
    margin-block-start: -12%;
    z-index: 2;
}

.hero-banner .thumb-img {
    border-radius: 10px;
    overflow: hidden;
}

.hero-banner .thumb-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
    border-radius: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

.hero-banner .swiper-slide-thumb-active .thumb-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--color-overlay);
    border-radius: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.hero-banner .thumb-img,
.hero-banner .main-img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.hero-banner .main-img img {
    -webkit-mask-image: url(../img/slider/subtract.png);
    mask-image: url(../img/slider/subtract.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.hero-banner .banner-badge {
    position: absolute;
    top: 12px;
    left: 0;
    z-index: 2;
    width: 24%;
    height: 24%;
    border-radius: 100%;
}

.hero-banner .banner-badge img {
    border-radius: inherit;
}

.hero-banner .swiper-button-prev,
.hero-banner .swiper-button-next {
    width: var(--swiper-navigation-size);
    height: var(--swiper-navigation-size);
    color: var(--swiper-navigation-color);
    background: var(--swiper-navigation-background-color);
    border-radius: 100%;
    z-index: 9;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.hero-banner .swiper-button-prev:focus,
.hero-banner .swiper-button-prev:hover,
.hero-banner .swiper-button-next:focus,
.hero-banner .swiper-button-next:hover {
    color: var(--swiper-navigation-hover-color);
    background-color: var(--swiper-navigation-hover-background-color);
}

.hero-banner .swiper-button-prev svg,
.hero-banner .swiper-button-next svg {
    width: 16px;
    height: 16px;
}

.hero-banner .swiper-button-prev {
    left: 8.5%;
    right: auto;
}

.hero-banner .swiper-button-next {
    right: 8.5%;
    left: auto;
}

.with-fixed-bg .slider-card {
    height: 100vh;
    min-height: inherit;
}

.with-fixed-bg .slider-media {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}

.with-fixed-bg .slider-media img {
    position: fixed;
}

.text-banner {
    --color-background: rgba(28, 37, 57, 1);
    --color-foreground: rgba(255, 255, 255, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    --color-foreground-subheading: rgba(255, 255, 255, 1);
    --color-secondary-button-hover-border: rgb(255, 255, 255, 0.3);
}

.text-banner-inner {
    --padding: 60px;
    background-color: var(--color-background);
    padding: var(--padding);
}

/*.text-banner .section-headings .text {
  max-width: 800px; }*/

@media (max-width: 991px) {
    .banner-slider {
        -webkit-margin-before: 50px;
        margin-block-start: 50px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        --padding-block-start: 60px;
        --padding-block-bottom: 60px;
    }

    .text-banner-inner {
        --padding: 40px 15px;
    }

    .hero-banner.with-floating-header {
        --padding-block-start: calc(var(--header-height) + 40px);
    }

    .hero-banner .swiper-button-prev,
    .hero-banner .swiper-button-next {
        --swiper-navigation-size: 36px;
    }

    .hero-banner .swiper-button-prev svg,
    .hero-banner .swiper-button-next svg {
        width: 14px;
        height: 14px;
    }

    .hero-banner .content>.buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.running-content .content-inner {
    overflow: hidden;
    background-color: var(--color-background, rgba(255, 255, 255, 0));
}

.running-content-bg {
    --color-background: rgba(28, 37, 57, 0.1);
}

.running-content .logos-background {
    background-image: -webkit-gradient(linear, left top, right top, from(#e1e2ee), color-stop(15%, #1c253900), to(#e3e1ee));
    background-image: -webkit-linear-gradient(left, #e1e2ee, #1c253900 15% 85%, #e3e1ee);
    background-image: -o-linear-gradient(left, #e1e2ee, #1c253900 15% 85%, #e3e1ee);
    background-image: linear-gradient(90deg, #e1e2ee, #1c253900 15% 85%, #e3e1ee);
    inset: 0%;
}

.running-content .content-lists {
    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;
    white-space: nowrap;
    gap: 80px;
}

.running-content .content-lists:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.running-content .content-item {
    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;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    gap: 80px;
}

.running-content .content-link {
    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;
    text-decoration: none;
}

.running-animation {
    will-change: transform;
    -webkit-animation: scroll 20s linear infinite;
    animation: scroll 20s linear infinite;
}

.running-content .content-link img {
    -o-object-fit: contain;
    object-fit: contain;
}

@-webkit-keyframes scroll {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes scroll {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@media (max-width: 991px) {

    .running-content .content-item,
    .running-content .content-lists {
        gap: 60px;
    }
}

@media (max-width: 991px) {

    .running-content .content-item,
    .running-content .content-lists {
        gap: 48px;
    }
}

.multicolumn {
    position: relative;
    overflow: hidden;
}

.multicolumn.with-bg-color {
    --color-background: rgba(242, 242, 242, 1);
    background-color: var(--color-background);
}

.multicolumn.with-bg-color .multicolumn-inner {
    -webkit-margin-before: 60px;
    margin-block-start: 60px;
}

.multicolumn-card {
    --color-background: rgba(255, 255, 255, 1);
}

.multicolumn-page .multicolumn-card {
    --color-background: rgba(242, 242, 242, 1);
}

.multicolumn-card .card-icon {
    --color-background: rgba(242, 242, 242, 1);
}

.multicolumn-page .multicolumn-card .card-icon {
    --color-background: rgba(255, 255, 255, 1);
}

.multicolumn-header {
    text-align: center;
    max-width: 638px;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
}

.multi-col {
    -webkit-margin-before: 60px;
    margin-block-start: 60px;
}

.multicolumn .multicolumn-card {
    padding: 30px 20px;
    background-color: var(--color-background);
    /*    border-radius: 10px;*/
    overflow: hidden;
    /*    height: 100%;*/
    text-decoration: none;
    display: block;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.multicolumn .multicolumn-card:focus,
.multicolumn .multicolumn-card:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.multicolumn .card-icon {
    width: 100px;
    /*    height: 100px;*/
    color: var(--color-foreground);
    /*    background-color: var(--color-background);*/
    border-radius: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.multicolumn .multicolumn-card:focus .card-icon,
.multicolumn .multicolumn-card:hover .card-icon {
    --color-foreground: rgba(32, 40, 45, 1);
    --color-background: rgba(255, 255, 255, 1);
}

.multicolumn-card:focus .text-lists .text-item,
.multicolumn-card:hover .text-lists .text-item {
    --color-foreground: rgba(255, 255, 255, 1);
}

.multicolumn-card>.card-icon+.heading {
    -webkit-margin-before: 44px;
    margin-block-start: 15px;
}

.multicolumn-card>.text {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
}

.multicolumn-card>.text-lists {
    -webkit-margin-before: 32px;
    margin-block-start: 32px;
}

.multicolumn-card>.text-lists>li+li {
    -webkit-margin-before: 18px;
    margin-block-start: 18px;
}

.multicolumn-card .text-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
}

.multicolumn-card .text-item svg {
    min-width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1279px) {
    .multicolumn .multicolumn-card {
        padding: 36px 24px;
    }
}

@media (max-width: 991px) {
    .multi-col {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }
}

@media (max-width: 767px) {
    .multicolumn .multicolumn-card {
        padding: 24px 16px;
    }

    .multicolumn-card>.card-icon+.heading {
        -webkit-margin-before: 32px;
        margin-block-start: 32px;
    }

    .multicolumn.with-bg-color .multicolumn-inner {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }
}

.recent-project {
    overflow: hidden;
}

.project-media-button {
    --style-border-width-buttons-primary: 2px;
    --color-primary-button-border: rgba(255, 255, 255, 1);
    --color-background: rgba(32, 40, 45, 1);
}

.project-content {
    --color-background: rgba(32, 40, 45, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    --color-foreground: rgba(242, 242, 242, 1);
}

.project-button .button--secondary:focus,
.project-button .button--secondary:hover {
    --color-secondary-button-hover-border: rgba(255, 255, 255, 0.3);
}

.recent-project .section-headings-right {
    min-width: 450px;
    width: 450px;
}

.project-media {
    -webkit-margin-before: 60px;
    margin-block-start: 60px;
}

.project-img-large {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.project-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: relative;
}

.project-img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: auto;
}

.project-media-button {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    text-decoration: none;
    position: absolute;
    bottom: -30px;
    z-index: 2;
    padding: 0;
}

.project-button .button--secondary:focus,
.project-button .button--secondary:hover {
    color: var(--color-secondary-button-hover-text);
    background-color: var(--color-secondary-button-hover-background);
    border: var(--style-border-width-buttons-secondary) solid var(--color-secondary-button-hover-border);
}

.project-media-button svg {
    min-width: 28px;
    height: 28px;
}

.project-content {
    max-width: 645px;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    background-color: var(--color-background);
    padding: 40px;
    -webkit-margin-before: -160px;
    margin-block-start: -160px;
    z-index: 3;
    position: relative;
}

@media (max-width: 1199px) {
    .project-content {
        max-width: 510px;
        padding: 32px 24px;
    }
}

@media (max-width: 991px) {
    .recent-project .section-headings-horizontal {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .recent-project .section-headings-right {
        min-width: 100%;
    }

    .project-media {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }

    .project-img-small {
        -webkit-margin-before: 48px;
        margin-block-start: 48px;
    }

    .project-content {
        max-width: 100%;
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }
}

@media (max-width: 767px) {
    .project-media-button {
        width: 48px;
        height: 48px;
        bottom: -24px;
    }

    .project-media-button svg {
        min-width: 20px;
        height: 20px;
    }

    .project-content {
        padding: 24px 16px 30px;
    }
}

.our-services {
    --color-background: rgba(32, 40, 45, 1);
    --color-foreground: rgba(255, 255, 255, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    --color-foreground-subheading: rgba(242, 242, 242, 1);
    --color-background-subheading: rgba(255, 255, 255, 0);
    --color-border-subheading-bg: rgba(255, 255, 255, 0.3);
    --color-secondary-button-hover-border: rgba(255, 255, 255, 0.3);
    background: var(--color-background);
    overflow: hidden;
}

.our-services-2 {
    --color-background: rgba(228, 226, 239, 0);
    --color-foreground: rgba(28, 37, 57, 1);
    --color-foreground-heading: rgba(28, 37, 57, 1);
    --color-foreground-subheading: rgba(93, 102, 111, 1);
    --color-background-subheading: rgba(255, 255, 255, 0.1);
    --color-border-subheading-bg: rgba(32, 40, 45, 0.1);
}

.our-services-2 .multicolumn .multicolumn-card:not(:focus):not(:hover) {
    --color-background: #cccccc36;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.our-services .service-list {
    --color-background: #3e484e;
    --color-primary-button-background: rgb(255, 255, 255, 0);
    --color-primary-button-border: rgba(255, 255, 255, 1);
    background: var(--color-background);
    padding: 40px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.our-services .service-content-inner .button {
    padding: 10px;
    min-height: 44px;
    font-size: 16px;
    -webkit-margin-before: 80px;
    margin-block-start: 20px;
}

.our-services .service-content-inner .heading {
    -webkit-margin-before: 50px;
    margin-block-start: 50px;
}

.our-services .service-content-inner .heading+.text {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
}

.service-list .accordion-li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.service-list .accordion-li svg {
    --size: 70px;
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
}

.service-list .accordion-li .icon {
    --size: 44px;
    color: var(--color-foreground);
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
}

.service-list .accordion-li .accordion-title-icon,
.service-list .accordion-li .accordion-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.service-list .accordion-content {
    --padding: 36px;
    padding: 0 var(--padding);
}

.service-list .accordion-li .icon+.icon {
    display: none;
}

@media (min-width: 992px) {
    .service-list .service-content-inner {
        /*    max-width: 360px;*/
        min-width: 360px;
        height: 100%;
        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: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .service-list .accordion-content {
        height: 100%;
        max-height: unset;
    }

    .our-services .accordion-li {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .our-services .service-list {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .service-list .accordion-li .accordion-title-icon,
    .service-list .accordion-li .accordion-title {
        gap: 20px;
        padding: 0 50px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
    }

    .service-list .accordion-li .accordion-title-icon {
        padding: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .service-list .accordion-li:first-child .accordion-title {
        -webkit-padding-start: 0;
        padding-inline-start: 0;
    }

    .service-list .accordion-li:last-child .accordion-title {
        -webkit-padding-end: 0;
        padding-inline-end: 0;
    }

    .service-list .accordion-li.active .accordion-title {
        display: none;
    }

    .service-list .accordion-li:not(:first-child) {
        border-left: var(--style-border-width) solid var(--color-border);
    }

    .service-list .accordion-li:first-child .accordion-content {
        -webkit-padding-start: 0;
        padding-inline-start: 0;
    }

    .service-list .accordion-li:last-child .accordion-content {
        -webkit-padding-end: 0;
        padding-inline-end: 0;
    }

    .service-list .text-rotate {
        text-orientation: mixed;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        max-height: 240px;
    }
}

@media (max-width: 991px) {
    .service-list .accordion-li {
        width: 100%;
    }

    .service-list .accordion-content {
        --padding: 0;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: max-height 0.3s ease-in-out;
        -o-transition: max-height 0.3s ease-in-out;
        transition: max-height 0.3s ease-in-out;
    }

    .service-list .accordion-li.active .icon {
        display: none;
    }

    .service-list .accordion-li.active .icon+.icon {
        display: block;
    }

    .service-list .accordion-li svg {
        --size: 60px;
    }

    .service-list .accordion-li .icon {
        --size: 36px;
    }

    .our-services .service-content-inner .button {
        -webkit-margin-before: 35px;
        margin-block-start: 35px;
    }

    .our-services .service-content-inner svg,
    .our-services .service-content-inner .heading {
        display: none;
    }

    .service-list .accordion-li {
        --padding: 24px;
    }

    .service-list .accordion-li .accordion-title {
        --padding: 24px;
        padding: var(--padding) 0;
        border-top: var(--style-border-width) solid var(--color-border);
    }

    .service-list .accordion-li:first-child .accordion-title {
        -webkit-padding-before: 0;
        padding-block-start: 0;
        border-top: none;
    }

    .service-content-inner {
        --padding: 24px;
        -webkit-padding-after: var(--padding);
        padding-block-end: var(--padding);
    }

    .our-services .service-content-inner .heading+.text {
        -webkit-margin-before: 0;
        margin-block-start: 0;
    }

    .our-services .service-list {
        -webkit-padding-after: 12px;
        padding-block-end: 12px;
    }
}

@media (max-width: 767px) {
    .our-services .service-list {
        padding: 30px 15px;
    }

    .service-list .accordion-li svg {
        --size: 50px;
    }

    .service-list .accordion-li .icon {
        --size: 30px;
    }

    .our-services .accordion-title-icon .heading {
        font-size: 20px;
    }

    .our-services .service-list {
        -webkit-padding-after: 6px;
        padding-block-end: 6px;
    }
}

.secvice-categories>li+li {
    -webkit-margin-before: 14px;
    margin-block-start: 14px;
}

.secvice-category {
    text-decoration: none;
    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;
    border-radius: 8px;
    padding: 10px 20px;
}

.secvice-category svg {
    --size: 18px;
    width: var(--size);
    height: var(--size);
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
}

.secvice-category.active svg,
.secvice-category:focus svg,
.secvice-category:hover svg {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.service-contact {
    position: relative;
}

.sidebar-widget.service-contact {
    --color-foreground: rgba(255, 255, 255, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    --color-overlay: rgba(28, 37, 57, 0.8);
    --padding: 60px 36px;
    text-align: center;
}

.sidebar-widget.service-contact .contact-text {
    -webkit-margin-before: 30px;
    margin-block-start: 30px;
}

.sidebar-widget.service-contact .contact-number {
    display: inline-block;
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
}

.service-sidebar .icon-contact {
    --color-background: rgba(255, 255, 255, 1);
    min-width: 80px;
    height: 80px;
    background: var(--color-background);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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: 100%;
    -webkit-margin-before: 36px;
    margin-block-start: 36px;
}

.service-sidebar .icon-contact svg {
    min-width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.service-download .service-download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
}

.service-download .download-button {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
    display: block;
    text-underline-offset: 4px;
}

.service-details-content>.service-choose-us,
.service-details-content>p.text,
.service-details-content>.heading {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}

.service-details-content .choose-us-desc>.text-lists,
.service-details-content .choose-us-desc>.heading+.text {
    -webkit-margin-before: 30px;
    margin-block-start: 30px;
}

.service-details-content .choose-us-desc .text-lists .text-item svg {
    --size: 24px;
    min-width: var(--size);
    width: var(--size);
    height: var(--size);
}

.service-details-content .choose-us-desc .text-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

.service-details-content .choose-us-desc>.text-item+.text-item {
    -webkit-margin-before: 18px;
    margin-block-start: 18px;
}

.service-details-content .choose-us-img {
    height: 100%;
}

.service-details-content .choose-us-img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.service-details-content .service-row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.service-details-content .service-row>* {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
}

.service-details-content .choose-us-desc {
    -webkit-padding-start: 24px;
    padding-inline-start: 24px;
}

.service-faq {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
    display: block;
}

.service-faq>div+div {
    -webkit-margin-before: 30px;
    margin-block-start: 30px;
}

.service-faq .accordion-block .accordion-opener svg {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.service-faq .accordion-block.active .accordion-opener svg {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.service-faq .accordion-block.active .accordion-opener {
    --color-background: rgba(242, 242, 242, 1);
    --color-foreground-heading: rgba(28, 37, 57, 1);
}

.service-contact-content a {
    text-decoration: none;
}

@media (min-width: 992px) {
    .service-sidebar {
        -webkit-padding-end: 20px;
        padding-inline-end: 20px;
    }
}

@media (min-width: 1280px) {
    .service-sidebar {
        -webkit-padding-end: 45px;
        padding-inline-end: 45px;
    }
}

@media (max-width: 1199px) {
    .service-details-content .choose-us-desc {
        -webkit-padding-start: 0;
        padding-inline-start: 0;
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }
}

@media (max-width: 991px) {
    .service-details-content .choose-us-desc {
        -webkit-padding-start: 24px;
        padding-inline-start: 24px;
        -webkit-margin-before: 0;
        margin-block-start: 0;
    }
}

@media (max-width: 767px) {
    .service-sidebar .icon-contact {
        min-width: 60px;
        height: 60px;
    }

    .service-sidebar .icon-contact svg {
        min-width: 30px;
        height: 30px;
    }

    .sidebar-widget.service-contact {
        --padding: 30px 20px;
    }

    .service-details-content .choose-us-desc {
        -webkit-padding-start: 0;
        padding-inline-start: 0;
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }
}

.promotion {
    --color-background: rgba(32, 40, 45, 1);
    --color-foreground: rgba(255, 255, 255, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    --color-foreground-subheading: rgba(255, 255, 255, 1);
}

.promotion .counter-item {
    --offset: -30px;
    --size: 220px;
    --color-background: rgba(62, 72, 78, 1);
}

.promotion .counter-item:nth-child(2) {
    --color-background: #1c2539;
    --color-foreground: #1c2539;
    --color-foreground-heading: #1c2539;
}

.promtion-content .subheading.subheading-bg {
    --color-border: rgba(255, 255, 255, 0.2);
}

.promotion .button--secondary:focus,
.promotion .button--secondary:hover {
    --color-secondary-button-hover-border: rgba(255, 255, 255, 0.3);
}

.promotion {
    background-color: #fff;
}

.promtion-content .subheading.subheading-bg {
    border: 1px solid rgb(28 37 57);
}

.promotion-lists {
    --color-background: rgba(62, 72, 78, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*    border-radius: 10px;*/
    overflow: hidden;
    background-color: var(--color-background);
}

.promotion-item {
    --color-border: rgba(32, 40, 45, 1);
    padding: 30px 24px;
    width: 50%;
}

.promotion-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.promotion-text {
    -webkit-margin-before: 18px;
    margin-block-start: 18px;
}

.promotion-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.promotion-img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: auto;
}

.promotion .counter-item {
    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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: calc(var(--offset) * -1);
    width: var(--size);
    height: var(--size);
    background-color: var(--color-background);
    border-radius: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.promotion .counter-item:first-child {
    z-index: 3;
}

.promotion .counter-item:last-child {
    z-index: 1;
}

.promotion .counter-up .heading+.text {
    -webkit-margin-before: 4px;
    margin-block-start: 4px;
}

.counter-up-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.promotion-container {
    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: 60px;
}

.counter-up-box {
    --color-background: rgba(242, 242, 242, 1);
    --color-border: rgba(0, 0, 0, 0.1);
    border: var(--style-border-width) solid var(--color-border);
    padding: 40px 20px;
    background: var(--color-background);
}

@media (min-width: 768px) {
    .promotion-item:nth-child(even) {
        border-left: 2px solid var(--color-border);
    }

    .promotion-item:nth-child(n + 3) {
        border-top: 2px solid var(--color-border);
    }
}

@media (min-width: 992px) {
    .promotion-img {
        height: 100%;
    }

    .promtion-content {
        -webkit-padding-end: 15px;
        padding-inline-end: 15px;
    }
}

@media (min-width: 1400px) {
    .promotion .counter-item:first-child {
        -webkit-margin-after: var(--offset);
        margin-block-end: var(--offset);
    }

    .promotion .counter-item:last-child {
        -webkit-margin-before: var(--offset);
        margin-block-start: var(--offset);
    }

    .promotion-img {
        height: 100%;
    }
}

@media (max-width: 1399px) {
    .promotion-container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .counter-up-wrap {
        width: 100%;
    }

    .promotion .counter-item:first-child {
        -webkit-margin-end: var(--offset);
        margin-inline-end: var(--offset);
    }

    .promotion .counter-item:last-child {
        -webkit-margin-start: var(--offset);
        margin-inline-start: var(--offset);
    }

    .promotion .counter-item {
        padding: calc(var(--offset) * -1 + 10px);
    }

    .counter-up {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .promotion-img {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }

    .promotion-title br {
        display: none;
    }
}

@media (max-width: 767px) {
    .promotion .counter-item {
        --size: 200px;
        padding: calc(var(--offset) * -1);
    }

    .promotion .counter-item:first-child {
        -webkit-margin-end: 0;
        margin-inline-end: 0;
        -webkit-margin-after: var(--offset);
        margin-block-end: var(--offset);
    }

    .promotion .counter-item:last-child {
        -webkit-margin-start: 0;
        margin-inline-start: 0;
        -webkit-margin-before: var(--offset);
        margin-block-start: var(--offset);
    }

    .counter-up {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .promotion-item {
        width: 100%;
        padding: 24px 15px;
    }

    .promotion-item+.promotion-item {
        border-top: 2px solid var(--color-border);
    }
}

project-slider {
    display: block;
    overflow: hidden;
}

project-slider .swiper-slide {
    height: auto;
}

.card-project {
    --color-foreground: rgba(255, 255, 255, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    text-decoration: none;
    position: relative;
    display: block;
    overflow: hidden;
    height: 100%;
}

.card-project:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 37, 57, 0)), to(#1c2539));
    background: -webkit-linear-gradient(top, rgba(28, 37, 57, 0) 0%, #1c2539 100%);
    background: -o-linear-gradient(top, rgba(28, 37, 57, 0) 0%, #1c2539 100%);
    background: linear-gradient(180deg, rgba(28, 37, 57, 0) 0%, #1c2539 100%);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
}

.card-project:hover:after {
    opacity: 1;
}

.card-project img {
    border-radius: inherit;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.card-project-content-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 1;
    padding: 35px;
}

.card-project-content .heading+.text {
    -webkit-margin-before: 10px;
    margin-block-start: 10px;
}

.card-project-content {
    opacity: 0;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.card-project:hover .card-project-content {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.icon-project-link {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
    opacity: 0;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.card-project:hover .icon-project-link {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.icon-project-link svg {
    --size: 52px;
    width: var(--size);
    height: var(--size);
}

@media (max-width: 767px) {
    .card-project-content-absolute {
        padding: 24px;
    }

    .slider-container .swiper {
        overflow: visible;
    }
}

.project-details-content {
    -webkit-margin-before: 60px;
    margin-block-start: 60px;
}

.content-details-inner>.project-image-block,
.content-details-inner>.text {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}

.project-details-content .project-challenge {
    -webkit-margin-before: 60px;
    margin-block-start: 60px;
    max-width: 548px;
}

.project-challenge .challenge-list {
    -webkit-margin-before: 34px;
    margin-block-start: 34px;
}

.project-challenge .challenge-list>li+li {
    -webkit-margin-before: 32px;
    margin-block-start: 32px;
}

.project-challenge .challenge-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
}

.project-info-list {
    -webkit-margin-before: 30px;
    margin-block-start: 30px;
}

.project-info-item {
    --color-border: rgba(28, 37, 57, 0.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: dotted var(--style-border-width) var(--color-border);
    -webkit-margin-after: 40px;
    margin-block-end: 40px;
    -webkit-padding-after: 20px;
    padding-block-end: 20px;
}

.project-info-item:last-child {
    -webkit-margin-after: 0;
    margin-block-end: 0;
}

.project-info-item .info-data {
    text-align: end;
}

.project-sidebar {
    -webkit-padding-start: 60px;
    padding-inline-start: 60px;
}

.project-sidebar>div+div {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}

.project-sidebar .icon-contact {
    --color-background: rgba(255, 255, 255, 1);
    min-width: 80px;
    height: 80px;
    background: var(--color-background);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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: 100%;
    -webkit-margin-before: 36px;
    margin-block-start: 36px;
}

@media (max-width: 1366px) {
    .project-sidebar {
        -webkit-padding-start: 40px;
        padding-inline-start: 40px;
    }
}

@media (max-width: 1199px) {
    .project-sidebar {
        -webkit-padding-start: 20px;
        padding-inline-start: 20px;
    }
}

@media (max-width: 991px) {
    .project-sidebar {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
        -webkit-padding-start: 0px;
        padding-inline-start: 0px;
    }

    .project-details-content .project-challenge {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .project-details-content {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }

    .project-details-content .project-challenge {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }
}

.page-banner {
    --height: 300px;
    --color-overlay: linear-gradient(184.15deg,
            rgba(28, 37, 57, 0) -187.51%,
            #1c2539 96.62%);
    --color-foreground: rgba(255, 255, 255, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    height: var(--height);
}

.page-banner-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    -webkit-margin-before: 20px;
    margin-block-start: 20px;
}

.breadcrumb svg {
    color: var(--color-foreground);
    width: 12px;
    height: 12px;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb a:not(.active),
.breadcrumb li svg {
    opacity: 0.75;
}

@media (max-width: 767px) {
    .page-banner {
        --height: 340px;
    }
}

.pagintaion-list {
    --margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    gap: 12px;
    -webkit-margin-before: var(--margin-top);
    margin-block-start: var(--margin-top);
}

.pagination-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.pagination-link {
    --size: 44px;
    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;
    text-decoration: none;
    font-size: 18px;
    color: var(--pagination-item-foreground);
    background-color: var(--pagination-item-background);
    border: var(--style-pagination-border-width) solid var(--pagination-item-border);
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.pagination-link svg {
    --size: 14px;
    width: var(--size);
    height: var(--size);
}

.pagination-link:not([aria-disabled]):focus,
.pagination-link:not([aria-disabled]):hover,
.pagination-link.active {
    color: var(--pagination-item-active-foreground);
    background-color: var(--pagination-item-active-background);
    border-color: var(--pagination-item-active-border);
}

@media (max-width: 767px) {
    .pagintaion-list {
        --margin-top: 40px;
    }

    .pagination-link {
        --size: 36px;
    }

    .pagination-link svg {
        --size: 12px;
    }
}

.why-choose-us {
    --color-background: #f6f7f8;
    --color-foreground: rgba(93, 102, 111, 1);
    --color-foreground-heading: rgba(28, 37, 57, 1);
    --color-foreground-subheading: rgba(93, 102, 111, 1);
    --color-background-subheading: rgba(255, 255, 255, 0);
    --color-border-subheading-bg: rgba(93, 102, 111, 0.3);
    overflow: hidden;
    background-color: var(--color-background);
    position: relative;
}

.choose-media {
    height: 100%;
}

.choose-media img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.choose-logo {
    -webkit-margin-before: 50px;
    margin-block-start: 50px;
}

.choose-rotating-logo {
    position: relative;
}

.text-abs {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 48px;
    font-weight: 700;
}

.choose-rotating-logo.svg-wrapper {
    --size: 170px;
    min-width: var(--size);
    width: var(--size);
    height: var(--size);
}

.choose-bottom {
    --margin-block-start: 35px;
    -webkit-margin-before: var(--margin-block-start);
    margin-block-start: var(--margin-block-start);
    position: relative;
}

.choose-bottom-cards>* {
    row-gap: 24px;
}

@media (min-width: 768px) {
    /*.choose-bottom {
        --offset: 300px;
    }*/

    .choose-bottom-cards {
        -webkit-margin-end: var(--offset);
        margin-inline-end: var(--offset);
        -webkit-padding-end: 15px;
        padding-inline-end: 15px;
    }

    .choose-media-absolute {
        position: absolute;
        bottom: 0;
        right: 0;
        width: var(--offset);
    }
}

@media (min-width: 1280px) {
    .choose-us-content {
        -webkit-padding-start: 0px;
        padding-inline-start: 0px;
    }
}

@media (max-width: 991px) {
    .choose-top>* {
        row-gap: 40px;
    }

    .choose-logo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .choose-bottom {
        --margin-block-start: 40px;
    }

    .choose-media-absolute {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }
}

.team-slider {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
}

.team-slider .swiper-slide {
    height: auto;
}

.card-team .social-list .svg-wrapper .icon {
    --color-background: rgb(145, 52, 52);
}

.card-team {
    --color-foreground: rgba(255, 255, 255, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    text-decoration: none;
    position: relative;
    display: block;
    overflow: hidden;
    height: 100%;
}

.card-team:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 37, 57, 0)), to(#1c2539));
    background: -webkit-linear-gradient(top, rgba(28, 37, 57, 0) 0%, #1c2539 100%);
    background: -o-linear-gradient(top, rgba(28, 37, 57, 0) 0%, #1c2539 100%);
    background: linear-gradient(180deg, rgba(28, 37, 57, 0) 0%, #1c2539 100%);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
}

.card-team:hover:after {
    opacity: 1;
}

.card-team img {
    border-radius: inherit;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.card-team-content-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 1;
    padding: 35px;
}

.card-team-content .heading {
    text-decoration: none;
}

.card-team-content .heading+.text {
    -webkit-margin-before: 7px;
    margin-block-start: 7px;
}

.card-team-content {
    opacity: 0;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.card-team:hover .card-team-content {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.card-team .social-list .svg-wrapper {
    position: absolute;
    min-width: 44px;
    height: 44px;
    left: 0;
    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: 100%;
    background-color: var(--color-background);
    z-index: 2;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.card-team .social-list .svg-wrapper:first-child {
    top: 20px;
}

.card-team .social-list .svg-wrapper:nth-child(2) {
    top: 72px;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.card-team .social-list .svg-wrapper:nth-child(3) {
    top: 124px;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.card-team:hover .svg-wrapper {
    opacity: 1;
    -webkit-transform: translateX(21px);
    -ms-transform: translateX(21px);
    transform: translateX(21px);
}

.card-team .social-list .svg-wrapper svg {
    --color-foreground: rgba(32, 40, 45, 1);
    color: var(--color-foreground);
}

.team-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    position: static;
    -webkit-margin-before: 60px;
    margin-block-start: 60px;
}

.team-slider .swiper-pagination-bullet {
    width: 20px;
    height: 14px;
    display: inline-block;
    border-radius: 10px;
    background: var(--swiper-pagination-bullet-inactive-color);
    opacity: var(--swiper-pagination-bullet-inactive-opacity);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0 !important;
}

.team-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--swiper-pagination-color);
    width: 40px;
}

@media (max-width: 767px) {
    .card-team-content-absolute {
        padding: 24px;
    }

    .team-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }
}

@media (max-width: 575px) {
    .team-slider .swiper {
        overflow: visible;
    }
}

.pricing-plan {
    overflow: hidden;
}

.pricing-plan-page {
    position: relative;
}

.pricing-plan-page .card-pricing {
    --color-card-background: rgba(242, 242, 242, 1);
    --color-background: rgba(255, 255, 255, 1);
}

.card-pricing {
    --color-card-background: rgba(255, 255, 255, 1);
    --color-background: rgba(242, 242, 242, 1);
    --color-foreground: rgba(32, 40, 45, 1);
    --color-foreground-heading: rgba(32, 40, 45, 1);
    --color-foreground-subheading: rgba(0, 0, 0, 1);
    --color-border: rgba(93, 102, 111, 0.1);
    --style-border-width: 1px;
    background-color: var(--color-background);
    padding: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}

.card-pricing.active {
    --color-card-background: rgba(32, 40, 45, 1);
    --color-foreground: rgba(242, 242, 242, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    --color-foreground-subheading: rgba(255, 255, 255, 1);
    --color-border: rgba(255, 255, 255, 0.3);
}

.card-pricing-headings {
    background-color: var(--color-card-background);
    padding: 24px;
}

.card-pricing-headings .heading+.text {
    -webkit-margin-before: 10px;
    margin-block-start: 10px;
}

.pricing-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    border-top: var(--style-border-width) solid var(--color-border);
    -webkit-padding-before: 24px;
    padding-block-start: 15px;
    -webkit-margin-before: 20px;
    margin-block-start: 15px;
}

.pricing-box * {
    line-height: 1;
}

.pricing-box .subheading-monthly {
    position: relative;
    top: -10px;
    opacity: 0.75;
}

.card-pricing .button {
    padding: 15px;
    width: 100%;
}

.card-pricing .buttons svg {
    width: 12px;
    height: 12px;
}

.card-pricing .text-lists .text-item {
    --color-foreground: rgba(32, 40, 45, 1);
}

@media (max-width: 767px) {

    .card-pricing,
    .card-pricing-headings {
        padding: 20px 15px;
    }
}

.testimonial {
    --color-background: rgba(242, 242, 242, 1);
    background-color: var(--color-background);
}

.card-testimonial {
    --color-background: rgba(255, 255, 255, 1);
    background-color: var(--color-background);
    padding: 40px;
}

.testimonial-card-inner>div+div {
    -webkit-margin-before: 30px;
    margin-block-start: 30px;
}

.card-testimonial .rating-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2px;
}

.card-testimonial .rating-list .rating-icon svg[fill] {
    --color-background: rgba(236, 176, 20, 1);
    color: var(--color-background);
}

.card-testimonial .rating-list+.text {
    -webkit-margin-before: 16px;
    margin-block-start: 16px;
}

.card-testimonial .user-info-wrap {
    -webkit-margin-before: 32px;
    margin-block-start: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.card-testimonial .user-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.card-testimonial .user-img {
    --size: 80px;
    min-width: var(--size);
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.card-testimonial .user-img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.card-testimonial .user-info .user-desig {
    -webkit-margin-before: 7px;
    margin-block-start: 7px;
}

.card-testimonial .icon-quote {
    --color-background: rgba(28, 37, 57, 1);
    color: var(--color-background);
}

.testi-slider .card-testimonial {
    --color-background: rgba(242, 242, 242, 1);
}

@media (max-width: 991px) {
    .card-testimonial {
        padding: 24px 15px;
    }

    .testimonial-card-inner {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }
}

@media (max-width: 767px) {
    .card-testimonial .user-info {
        gap: 16px;
    }

    .card-testimonial .user-img {
        --size: 60px;
    }

    .card-testimonial .icon-quote svg {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
}

.testimonial-2 {
    position: relative;
}

.testimonial-slider {
    display: block;
}

.thumb-content {
    margin-top: 75px;
}

.thumb-card>svg+.text {
    -webkit-margin-before: 12px;
    margin-block-start: 12px;
}

.thumb-card .user-name {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}

.thumb-card .user-desig {
    -webkit-margin-before: 10px;
    margin-block-start: 10px;
    opacity: 0.75;
}

.thumb-content-wrapper {
    -webkit-padding-start: 100px;
    padding-inline-start: 100px;
}

.testimonial-2 .main-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
    height: 100%;
}

.testimonial-2 .main-img img {
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-2 .custom-bullet {
    width: 100px;
    height: 100px;
    display: inline-block;
    border-radius: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 !important;
}

.testimonial-2 .custom-bullet img {
    -o-object-fit: cover;
    object-fit: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.testimonial-2 .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: auto;
    top: 50%;
    left: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -50px;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

.testimonial-2 .swiper-pagination-bullet-active {
    --style-pagination-border-width: 2px;
    --pagination-item-active-border: rgba(32, 40, 45, 1);
    background: transparent;
    outline: var(--style-pagination-border-width) solid var(--pagination-item-active-border);
    outline-offset: 10px;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

@media (max-width: 1199px) {
    .thumb-content-wrapper {
        -webkit-padding-start: 60px;
        padding-inline-start: 60px;
    }
}

@media (max-width: 991px) {
    .testimonial-slider {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }

    .thumb-content-wrapper {
        -webkit-padding-start: 0;
        padding-inline-start: 0;
    }

    .testimonial-2 .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: -50px;
        top: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        right: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .testimonial-2 .custom-bullet {
        width: 80px;
        height: 80px;
    }

    .testimonial-2 .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: -40px;
        gap: 20px;
    }

    .testimonial-2 .swiper-pagination-bullet-active {
        outline-offset: 7px;
    }
}

@media (max-width: 575px) {
    .testimonial-2 .custom-bullet {
        width: 60px;
        height: 60px;
    }

    .testimonial-2 .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: -30px;
    }
}

.card-blog-list-horizontal,
.card-blog-list,
.card-blog {
    --color-background: rgba(242, 242, 242, 1);
    --color-foreground: rgba(93, 102, 111, 1);
    --color-foreground-heading: rgba(28, 37, 57, 1);
    --color-icon: rgba(28, 37, 57, 1);
    --color-primary-button-hover-text: rgba(255, 255, 255, 1);
    --color-primary-button-hover-background: rgba(32, 40, 45, 1);
    --color-foreground-subheading: rgba(242, 242, 242, 1);
    --color-background-subheading: rgba(28, 37, 57, 1);
    --color-border-subheading-bg: rgba(28, 37, 57, 1);
    background-color: var(--color-background);
}

.card-blog-list-horizontal,
.card-blog-list {
    --color-primary-hover: rgba(28, 37, 57, 0.75);
}

.card-blog-list {
    background-color: transparent;
}

.card-blog:hover {
    --color-foreground-subheading: rgba(28, 37, 57, 1);
    --color-background-subheading: rgba(242, 242, 242, 1);
    --color-border-subheading-bg: rgba(242, 242, 242, 1);
}

.featured-blog.blog-style-3 .card-blog-list-media {
    --height: 300px;
}

.card-blog-top {
    --padding: 30px 24px 36px;
    padding: var(--padding);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-blog-heading a {
    text-decoration: none;
    line-height: 1.45;
}

.card-blog-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px 28px;
}

.card-blog-list-horizontal .card-blog-meta {
    gap: 15px 20px;
}

.card-blog-meta-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.card-blog-meta-item svg {
    color: var(--color-icon);
}

.card-blog-bottom {
    position: relative;
    height: 300px;
    display: block;
    text-decoration: none;
}

.card-blog .buttons {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.card-blog .buttons .button {
    width: 100%;
    border-radius: 0;
    border: none;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.card-blog:focus .buttons .button,
.card-blog:hover .buttons .button {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.card-blog .buttons svg {
    width: 12px;
    height: 12px;
}

.card-blog .blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.card-blog-list-media {
    -webkit-margin-after: 24px;
    margin-block-end: 24px;
}

.card-blog-heading {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.card-blog-heading:hover {
    opacity: 0.75;
}

.card-blog-list .card-blog-heading {
    -webkit-margin-before: 15px;
    margin-block-start: 15px;
}

.card-blog-list-horizontal .card-blog-heading {
    -webkit-margin-before: 10px;
    margin-block-start: 10px;
}

.card-blog-list-horizontal .blog-excerpt,
.card-blog-list .blog-excerpt {
    -webkit-margin-before: 20px;
    margin-block-start: 20px;
}

.card-blog-list .buttons {
    -webkit-margin-before: 32px;
    margin-block-start: 32px;
}

.card-blog-list-horizontal .buttons {
    -webkit-margin-before: 20px;
    margin-block-start: 20px;
}

.card-blog-list-media {
    --height: 500px;
    height: var(--height);
    position: relative;
}

.card-blog-list-horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.card-blog-list-horizontal .card-blog-list-media {
    --height: 100%;
    width: 40%;
    min-width: 252px;
    height: inherit;
    -webkit-margin-after: 0;
    margin-block-end: 0;
}

.card-blog-list-horizontal .card-blog-content {
    padding: var(--padding);
}

.horizontal-blogs .card-blog-list-horizontal .card-blog-content {
    --padding: 20px 24px;
}

.horizontal-blogs .card-blog-list-horizontal+.card-blog-list-horizontal {
    -webkit-margin-before: 30px;
    margin-block-start: 30px;
}

.blog-list-wrapper .card-blog-list+.card-blog-list {
    -webkit-margin-before: 60px;
    margin-block-start: 60px;
}

form.form-blog-search input {
    min-height: 50px;
}

form.form-blog-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

form.form-blog-search .button {
    padding: 10px;
    min-width: 58px;
    border-radius: 8px;
}

.blog-category {
    text-decoration: none;
    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;
    border-radius: 8px;
    padding: 10px 20px;
}

.sidebar-widget .subheading-bg {
    --color-foreground-subheading: rgba(93, 102, 111, 1);
    --color-background-subheading: rgba(255, 255, 255, 1);
    --color-border-subheading-bg: rgba(255, 255, 255, 1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.sidebar-widget .subheading-bg.active,
.sidebar-widget .subheading-bg:focus,
.sidebar-widget .subheading-bg:hover {
    --color-foreground-subheading: rgba(255, 255, 255, 1);
    --color-background-subheading: rgba(32, 40, 45, 1);
    --color-border-subheading-bg: rgba(32, 40, 45, 1);
}

.blog-category svg {
    --size: 18px;
    width: var(--size);
    height: var(--size);
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
}

.blog-category.active svg,
.blog-category:focus svg,
.blog-category:hover svg {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.blog-categories>li+li {
    -webkit-margin-before: 14px;
    margin-block-start: 14px;
}

.recent-post .card-blog-list-media {
    --height: 160px;
    border-radius: 8px;
    overflow: hidden;
    -webkit-margin-after: 15px;
    margin-block-end: 15px;
}

.recent-post .card-blog-list .card-blog-heading {
    -webkit-margin-before: 5px;
    margin-block-start: 5px;
}

.recent-post>li+li {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
}

.sidebar-tags a {
    text-decoration: none;
    font-weight: 400;
}

.sidebar-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 14px 12px;
}

.sidebar-filter .sidebar-widget+.sidebar-widget {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}

.sidebar-heading {
    -webkit-margin-after: 24px;
    margin-block-end: 24px;
}

.sidebar-widget {
    --padding: 40px 36px;
    --color-background: rgba(242, 242, 242, 1);
    --color-foreground: rgba(32, 40, 45, 1);
    --color-foreground-heading: rgba(28, 37, 57, 1);
    background-color: var(--color-background);
    padding: var(--padding);
}

.sidebar-filter .drawer-headings {
    -webkit-margin-after: 24px;
    margin-block-end: 24px;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
    -webkit-padding-end: 0;
    padding-inline-end: 0;
    border: none;
}

@media (min-width: 992px) {
    .blog-sidebar {
        -webkit-padding-start: 20px;
        padding-inline-start: 20px;
    }
}

@media (min-width: 1280px) {
    .blog-sidebar {
        -webkit-padding-start: 45px;
        padding-inline-start: 45px;
    }
}

@media (max-width: 1199px) {
    .horizontal-blogs {
        -webkit-margin-before: 30px;
        margin-block-start: 30px;
    }
}

@media (max-width: 991px) {
    .sidebar-filter {
        --color-background: rgba(255, 255, 255, 1);
        position: fixed;
        top: 0;
        right: 0;
        background-color: var(--color-background);
        width: 100%;
        height: 100%;
        z-index: 999;
        padding: 24px 20px;
        overflow: hidden;
        overflow-y: auto;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .sidebar-filter.show {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .recent-post .card-blog-list-media {
        --height: 300px;
    }
}

@media (max-width: 767px) {
    .card-blog-top {
        --padding: 24px 20px 30px;
    }

    .card-blog-list-media {
        --height: 360px;
    }

    .blog-list-wrapper .card-blog-list+.card-blog-list {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }

    .sidebar-widget {
        --padding: 30px 20px;
    }

    .sidebar-filter .sidebar-widget+.sidebar-widget {
        -webkit-margin-before: 30px;
        margin-block-start: 30px;
    }

    .horizontal-blogs {
        -webkit-margin-before: 24px;
        margin-block-start: 24px;
    }

    .horizontal-blogs .card-blog-list-horizontal+.card-blog-list-horizontal {
        -webkit-margin-before: 24px;
        margin-block-start: 24px;
    }

    .horizontal-blogs {
        -webkit-margin-before: 10px;
        margin-block-start: 10px;
    }

    .card-blog-list-horizontal {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .card-blog-list-horizontal .card-blog-list-media {
        --height: 300px;
        width: 100%;
        min-width: 1px;
        height: var(--height);
    }

    .horizontal-blogs .card-blog-list-horizontal .card-blog-content {
        --padding: 24px 20px;
    }
}

.blog-details .card-blog-list-media {
    --height: 540px;
}

.blog-description * {
    margin: 0;
}

.blog-description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}

:is(.blog-description) :is(p, div, a, li, span) {
    font-size: 18px;
}

blockquote {
    --icon-size: 60px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(32, 40, 45, 0.1)), to(rgba(32, 40, 45, 0)));
    background: -webkit-linear-gradient(left, rgba(32, 40, 45, 0.1) 0%, rgba(32, 40, 45, 0) 100%);
    background: -o-linear-gradient(left, rgba(32, 40, 45, 0.1) 0%, rgba(32, 40, 45, 0) 100%);
    background: linear-gradient(90deg, rgba(32, 40, 45, 0.1) 0%, rgba(32, 40, 45, 0) 100%);
    font-size: 20px;
    padding: 28px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
}

blockquote:before {
    content: url("../img/icons/icon-quote.svg");
    min-width: var(--icon-size);
    width: var(--icon-size);
    height: var(--icon-size);
}

.blog-paired-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px 30px;
}

.blog-paired-image img {
    border-radius: 18px;
    width: 100%;
    max-width: calc(50% - 30px / 2);
}

.blog-share {
    --color-border: rgba(93, 102, 111, 0.3);
    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;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px 20px;
    padding: 18px 0;
    -webkit-margin-before: 60px;
    margin-block-start: 60px;
    border-top: var(--style-border-width) solid var(--color-border);
    border-bottom: var(--style-border-width) solid var(--color-border);
}

.blog-share-item {
    --item-padding: 7px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
}

.blog-share-item .label {
    padding: var(--item-padding);
}

.blog-share-item .social-link {
    --size-social: 20px;
    padding: var(--item-padding);
}

.blog-share-item .social-icons {
    gap: 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-share-item .subheading-bg {
    --color-foreground-subheading: rgba(28, 37, 57, 1);
    --color-background-subheading: rgba(255, 255, 255, 1);
    --color-border-subheading-bg: rgba(93, 102, 111, 0.3);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.blog-share-item .subheading-bg:focus,
.blog-share-item .subheading-bg:hover {
    --color-foreground-subheading: rgba(255, 255, 255, 1);
    --color-background-subheading: rgba(28, 37, 57, 1);
    --color-border-subheading-bg: rgba(28, 37, 57, 1);
}

@media (max-width: 767px) {
    .blog-details .card-blog-list-media {
        --height: 300px;
    }

    :is(.blog-description) :is(p, div, a, li, span) {
        font-size: 16px;
    }

    blockquote {
        --icon-size: 36px;
        font-size: 18px;
        gap: 16px;
        padding: 24px 20px;
    }

    .blog-paired-image img {
        border-radius: 10px;
        max-width: 100%;
    }
}

.featured-blog {
    --color-background: rgba(242, 242, 242, 1);
    --color-foreground: rgba(93, 102, 111, 1);
    --color-foreground-heading: rgba(28, 37, 57, 1);
    --color-foreground-subheading: rgba(93, 102, 111, 1);
    --color-background-subheading: rgba(255, 255, 255, 0);
    --color-border-subheading-bg: rgba(93, 102, 111, 0.3);
    background-color: var(--color-background);
    overflow: hidden;
}

.featured-blog .card-blog {
    --color-background: rgba(255, 255, 255, 1);
}

.featured-blog .buttons-discover {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-margin-before: 60px;
    margin-block-start: 60px;
}

@media (max-width: 767px) {
    .featured-blog .buttons-discover {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }
}

.comments-item {
    --radius: 12px;
    --image-size: 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
}

.commentator-img {
    min-width: var(--image-size);
    width: var(--image-size);
    height: var(--image-size);
    border-radius: var(--radius);
    overflow: hidden;
}

.commentator-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.button-reply svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
}

.button-reply {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}

.comments-top {
    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;
}

.comments-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7px;
}

.comment-bottom {
    -webkit-margin-before: 20px;
    margin-block-start: 20px;
}

.comments-section {
    -webkit-margin-before: 80px;
    margin-block-start: 80px;
}

.comment-section-heading {
    -webkit-margin-after: 40px;
    margin-block-end: 40px;
}

.comments-item+.comments-item {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}

.replied-item {
    -webkit-padding-start: calc(var(--image-size) - 10px);
    padding-inline-start: calc(var(--image-size) - 10px);
}

.comments-form-headings {
    -webkit-margin-after: 30px;
    margin-block-end: 30px;
}

.comments-form-headings .heading+.text {
    -webkit-margin-before: 10px;
    margin-block-start: 10px;
}

.comments-form {
    --color-input-text: rgba(93, 102, 111, 1);
    --color-input-background: rgba(242, 242, 242, 1);
    --color-input-border: rgba(242, 242, 242, 1);
    --color-input-hover-text: rgba(93, 102, 111, 1);
    --color-input-hover-background: rgba(242, 242, 242, 1);
    --color-input-hover-border: rgba(242, 242, 242, 1);
    -webkit-margin-before: 80px;
    margin-block-start: 80px;
}

@media (max-width: 767px) {
    .comments-item {
        --radius: 8px;
        --image-size: 60px;
        gap: 16px;
    }

    .comments-form,
    .comments-section {
        -webkit-margin-before: 60px;
        margin-block-start: 60px;
    }
}

.faq .section-headings {
    -webkit-padding-end: 100px;
    padding-inline-end: 100px;
    position: relative;
    height: 100%;
}

.faq .accordion-list>div+div {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
}

.faq .image-absolute {
    position: absolute;
    bottom: -85px;
    right: 25%;
}

.faq-row>* {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.faq-form-wrap {
    -webkit-margin-before: 50px;
    margin-block-start: 50px;
}

.faq-form {
    --color-background: rgba(242, 242, 242, 1);
    background-color: var(--color-background);
    padding: 40px 30px;
    display: block;
}

.faq-form>.field {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
}

.faq-form>.button {
    -webkit-margin-before: 36px;
    margin-block-start: 36px;
    width: 100%;
}

@media (max-width: 1199px) {
    .faq .section-headings {
        -webkit-padding-end: 0;
        padding-inline-end: 0;
    }

    .faq .image-absolute {
        right: 10%;
    }

    .faq-form {
        padding: 24px 20px;
    }
}

@media (max-width: 991px) {
    .faq .accordion-list {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }

    .faq .image-absolute {
        bottom: -40px;
        -webkit-padding-end: 0;
        padding-inline-end: 0;
    }
}

@media (max-width: 767px) {
    .image-absolute img {
        max-width: 90px;
        height: auto;
    }

    .faq .image-absolute {
        right: 0;
    }

    .faq-form {
        padding: 24px 15px;
    }
}

.section-contact-form {
    overflow: hidden;
}

.section-contact-form .card-icon-text-horizontal {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}

.contact-form-headings .heading+.text {
    -webkit-margin-before: 15px;
    margin-block-start: 15px;
}

.section-contact-form .contact-form {
    -webkit-margin-before: 32px;
    margin-block-start: 32px;
}

.section-contact-form .contact-form-wrap {
    --color-background: rgba(32, 40, 45, 1);
    --color-foreground: rgba(242, 242, 242, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    --color-input-text: rgba(93, 102, 111, 1);
    --color-input-background: rgba(255, 255, 255, 1);
    --color-input-border: rgba(255, 255, 255, 1);
    --color-input-hover-text: rgba(93, 102, 111, 1);
    --color-input-hover-background: rgba(255, 255, 255, 1);
    --color-input-hover-border: rgba(255, 255, 255, 1);
    --color-secondary-button-hover-border: rgba(255, 255, 255, 0.3);
    background-color: var(--color-background);
}

.section-contact-form .contact-box {
    --padding: 60px;
    -webkit-box-shadow: 5px 8px 30px 4px rgba(23, 36, 38, 0.08);
    box-shadow: 5px 8px 30px 4px rgba(23, 36, 38, 0.08);
    padding: var(--padding);
}

.section-contact-form.without-box-shadow .contact-box {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
}

@media (min-width: 992px) {
    .section-contact-form .section-headings {
        max-width: 100%;
    }

    .section-contact-form .card-icon-text-horizontal {
        -webkit-margin-before: 40px;
        margin-block-start: 0px;
        max-width: 400px;
    }
}

.d-b .content p {
    height: 100px;
}

@media (min-width: 1400px) {
    .section-contact-form .col-contact-form {
        width: 520px;
    }

    .section-contact-form .col-contact-content {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .section-contact-form .contact-form-wrap {
        -webkit-margin-before: 30px;
        margin-block-start: 30px;
    }
}

@media (max-width: 767px) {
    .section-contact-form .contact-box {
        --padding: 40px 15px;
    }

    .section-contact-form .contact-form-wrap {
        -webkit-margin-before: 20px;
        margin-block-start: 20px;
    }
}

.team-details .content-info {
    -webkit-padding-start: 80px;
    padding-inline-start: 80px;
}

.team-details .content-info .info-desig {
    -webkit-margin-before: 18px;
    margin-block-start: 18px;
}

.team-details .content-info .social-icons,
.team-details .content-info .info-desc {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}

.team-details .content-info .phn-number {
    -webkit-margin-before: 44px;
    margin-block-start: 44px;
}

.team-details .content-info .email {
    -webkit-margin-before: 18px;
    margin-block-start: 18px;
}

.team-details .content-info .email,
.team-details .content-info .phn-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.team-details .social-link {
    --color-background: rgba(242, 242, 242, 1);
    background-color: var(--color-background);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.team-details .social-link:hover {
    --color-background: rgba(28, 37, 57, 1);
    --color-foreground: rgba(255, 255, 255, 1);
}

.td-column {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    height: auto;
}

.td-media-wrap {
    height: 100%;
    position: relative;
}

.td-media {
    height: 100%;
}

.td-media img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.text-absolute {
    --color-foreground-heading: rgba(255, 255, 255, 1);
    --color-background: rgba(28, 37, 57, 1);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--color-background);
    color: var(--color-foreground-heading);
    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: 100px;
    position: absolute;
    z-index: 2;
    top: 50%;
    right: -40px;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    padding: 32px;
    height: 100%;
    max-height: 410px;
    text-align: center;
}

.team-progress>.heading+.text,
.team-about>.heading+.text,
.team-bio>.heading+.text {
    -webkit-margin-before: 36px;
    margin-block-start: 36px;
}

.progress-wrap {
    -webkit-margin-before: 32px;
    margin-block-start: 32px;
}

.progress-wrap>.progress-item:not(:first-child) {
    -webkit-margin-before: 28px;
    margin-block-start: 28px;
}

.progress-item>.heading+.progress-container {
    -webkit-margin-before: 16px;
    margin-block-start: 16px;
}

.progress-item .progress-container {
    --color-background: rgba(242, 242, 242, 1);
    position: relative;
    width: 100%;
    height: 14px;
    border-radius: 6px;
    background-color: var(--color-background);
}

.progress-item .progress--bar {
    --color-background: rgba(28, 37, 57, 1);
    position: absolute;
    left: 4px;
    top: 50%;
    width: 80%;
    height: 8px;
    border-radius: 6px;
    background-color: var(--color-background);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 1199px) {
    .team-details .content-info {
        -webkit-padding-start: 60px;
        padding-inline-start: 60px;
    }

    .text-absolute {
        padding: 25px;
    }
}

@media (max-width: 991px) {
    .team-details .content-info {
        -webkit-padding-start: 40px;
        padding-inline-start: 40px;
    }

    .team-progress {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }

    .text-absolute {
        padding: 20px;
        right: -35px;
    }
}

@media (max-width: 767px) {
    .team-details .content-info {
        -webkit-padding-start: 0;
        padding-inline-start: 0;
        -webkit-margin-before: 50px;
        margin-block-start: 50px;
    }

    .text-absolute {
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        top: auto;
        right: auto;
        left: 50%;
        bottom: -30px;
        width: calc(100% - 20%);
        max-height: 60px;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        padding: 16px;
    }
}

.google-map {
    --height: 700px;
    overflow: hidden;
    position: relative;
    height: var(--height);
}

@media (max-width: 992px) {
    .google-map {
        --height: 500px;
    }
}

@media (max-width: 767px) {
    .google-map {
        --height: 300px;
    }
}

.section-error {
    overflow: hidden;
}

.error-media img {
    -o-object-fit: contain;
    object-fit: contain;
    height: auto;
    width: auto;
    margin: 0 auto;
}

.section-error .section-headings .text {
    max-width: 570px;
    margin: 40px auto 0;
}

.secvice-categories>li+li {
    -webkit-margin-before: 14px;
    margin-block-start: 14px;
}

.secvice-category {
    text-decoration: none;
    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;
    border-radius: 8px;
    padding: 10px 20px;
}

.secvice-category svg {
    --size: 18px;
    width: var(--size);
    height: var(--size);
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
}

.secvice-category.active svg,
.secvice-category:focus svg,
.secvice-category:hover svg {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.service-contact {
    position: relative;
}

.sidebar-widget.service-contact {
    --color-foreground: rgba(255, 255, 255, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    --color-overlay: rgba(28, 37, 57, 0.8);
    --padding: 60px 36px;
    text-align: center;
}

.sidebar-widget.service-contact .contact-text {
    -webkit-margin-before: 30px;
    margin-block-start: 30px;
}

.sidebar-widget.service-contact .contact-number {
    display: inline-block;
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
}

.service-sidebar .icon-contact {
    --color-background: rgba(255, 255, 255, 1);
    min-width: 80px;
    height: 80px;
    background: var(--color-background);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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: 100%;
    -webkit-margin-before: 36px;
    margin-block-start: 36px;
}

.service-sidebar .icon-contact svg {
    min-width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.service-download .service-download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
}

.service-download .download-button {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
    display: block;
    text-underline-offset: 4px;
}

.service-details-content>.service-choose-us,
.service-details-content>p.text,
.service-details-content>.heading {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}

.service-details-content .choose-us-desc>.text-lists,
.service-details-content .choose-us-desc>.heading+.text {
    -webkit-margin-before: 30px;
    margin-block-start: 30px;
}

.service-details-content .choose-us-desc .text-lists .text-item svg {
    --size: 24px;
    min-width: var(--size);
    width: var(--size);
    height: var(--size);
}

.service-details-content .choose-us-desc .text-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

.service-details-content .choose-us-desc>.text-item+.text-item {
    -webkit-margin-before: 18px;
    margin-block-start: 18px;
}

.service-details-content .choose-us-img {
    height: 100%;
}

.service-details-content .choose-us-img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.service-details-content .service-row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.service-details-content .service-row>* {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
}

.service-details-content .choose-us-desc {
    -webkit-padding-start: 24px;
    padding-inline-start: 24px;
}

.service-faq {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
    display: block;
}

.service-faq>div+div {
    -webkit-margin-before: 30px;
    margin-block-start: 30px;
}

.service-faq .accordion-block .accordion-opener svg {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.service-faq .accordion-block.active .accordion-opener svg {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.service-faq .accordion-block.active .accordion-opener {
    --color-background: rgba(242, 242, 242, 1);
    --color-foreground-heading: rgba(28, 37, 57, 1);
}

.service-contact-content a {
    text-decoration: none;
}

@media (min-width: 992px) {
    .service-sidebar {
        -webkit-padding-end: 20px;
        padding-inline-end: 20px;
    }
}

@media (min-width: 1280px) {
    .service-sidebar {
        -webkit-padding-end: 45px;
        padding-inline-end: 45px;
    }
}

@media (max-width: 1199px) {
    .service-details-content .choose-us-desc {
        -webkit-padding-start: 0;
        padding-inline-start: 0;
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }
}

@media (max-width: 991px) {
    .service-details-content .choose-us-desc {
        -webkit-padding-start: 24px;
        padding-inline-start: 24px;
        -webkit-margin-before: 0;
        margin-block-start: 0;
    }
}

@media (max-width: 767px) {
    .service-sidebar .icon-contact {
        min-width: 60px;
        height: 60px;
    }

    .service-sidebar .icon-contact svg {
        min-width: 30px;
        height: 30px;
    }

    .sidebar-widget.service-contact {
        --padding: 30px 20px;
    }

    .service-details-content .choose-us-desc {
        -webkit-padding-start: 0;
        padding-inline-start: 0;
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
    }
}

.card-working-process .has-border {
    /*    --color-border: rgba(93, 102, 111, 0.3);*/
    /*    border-top: var(--style-border-width) solid var(--color-border);*/
    /*    border-bottom: var(--style-border-width) solid var(--color-border);*/
    padding-bottom: 30px;
    /*    -webkit-margin-before: 10px;*/
    margin-block-start: 10px;
}

.card-working-process .card-icon-text {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card-working-process .card-icon-text .svg-wrapper {
    --size: 54px;
    background-color: #0e1d31;
    padding: 10px;
    border-radius: 5px;
}

@media (min-width: 768px) {
    .working-process .product-grid {
        --bs-gutter-x: 50px;
        row-gap: 40px;
    }
}

@media (min-width: 992px) {
    .working-process .product-grid {
        --bs-gutter-x: 100px;
        row-gap: 50px;
    }
}

footer {
    --offset-contact-form: 300px;
}

.footer-main {
    --color-background: rgba(28, 35, 39, 1);
    --color-foreground: rgba(255, 255, 255, 1);
    --color-foreground-heading: rgba(255, 255, 255, 1);
    --color-primary-hover: rgba(255, 255, 255, 0.75);
    background-color: var(--color-background);
    position: relative;
}

.footer-logo {
    max-width: 188px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
}

footer .social-link {
    background-color: #1c2539;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

footer .social-link:focus,
footer .social-link:hover {
    background-color: #20325b;
}

.footer-widget-brand>.text {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
}

.footer-widget-brand .social-icons {
    -webkit-margin-before: 44px;
    margin-block-start: 20px;
}

.footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.footer-menu .link {
    text-decoration: none;
    display: inline-block;
    color: var(--color-foreground);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.footer-menu .link:focus,
.footer-menu .link:hover {
    opacity: 0.75;
}

.widget-heading {
    font-weight: 600;
}

.widget-heading+* {
    -webkit-margin-before: 28px;
    margin-block-start: 28px;
}

.footer-top {
    padding: 100px 0;
}

.footer-policies {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 12px 44px;
}

.footer-bottom {
    --color-background: rgba(28, 37, 57, 1);
    background: var(--color-background);
    padding: 20px 0;
}

.footer-contact {
    position: relative;
    -webkit-padding-before: 100px;
    padding-block-start: 100px;
}

.footer-contact .contact-box {
    -webkit-margin-after: calc(var(--offset-contact-form) * -1);
    margin-block-end: calc(var(--offset-contact-form) * -1);
}

.footer-contact+.footer-main {
    -webkit-padding-before: var(--offset-contact-form);
    padding-block-start: var(--offset-contact-form);
}

@media (min-width: 992px) {
    .footer-custom-row {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 250px 170px 175px 550px;
        grid-template-columns: 250px 250px 250px 250px;
        gap: 20px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .footer-custom-row>* {
        width: 100%;
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
    }
}

@media (min-width: 1601px) {
    .footer-custom-row {
        -ms-grid-columns: 250px 215px 175px 215px 175px;
        grid-template-columns: 250px 215px 175px 215px 175px;
    }
}

@media (max-width: 1279px) {
    .footer-logo {
        max-width: 160px;
    }
}

@media (max-width: 991px) {
    .footer-custom-row {
        row-gap: 48px;
    }

    .footer-top {
        padding: 80px 0;
    }

    .footer-contact {
        -webkit-padding-before: 80px;
        padding-block-start: 80px;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 60px 0;
    }

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

    .footer-policies {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 10px 30px;
    }

    .footer-bottom-row {
        gap: 24px;
    }

    .footer-widget-brand .social-icons {
        -webkit-margin-before: 30px;
        margin-block-start: 30px;
    }

    .footer-logo {
        max-width: 130px;
    }

    .footer-contact {
        -webkit-padding-before: 60px;
        padding-block-start: 60px;
    }
}

.accord {
    width: 80%;
    display: block;
    margin: auto;
}

.justify-content-between1 {
    justify-content: space-between !important;
}

.with-cry {
    padding: 30px;
    background-color: #1c2539;
    /*    border-radius: 50px;*/
    color: #fff;
}

.with-cry li {
    max-width: 100%;
    color: #fff;
}

.with-cry li svg {
    border: 1px solid #fff;
    border-radius: 50px;
}

.new-head-bottom {
    margin-bottom: 10px;
}

.mt-top {
    margin-top: 40px;
}

.mt-new-top {
    margin-top: 20px;
}

.new-li-fle {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 10px;
}

.hr-css {
    margin-bottom: 20px;
    margin-top: 20px;
    border-color: #ffffff0d;
}

.d-flex-new {
    display: flex;
    align-items: center;
    gap: 70px;
    justify-content: center;
}

.ret-mat {
    margin-top: 70px;
    margin-bottom: 0;
}

.content-link img {
    width: 250px;
}

.hero-pad {
    padding-bottom: 50px;
    background: #000 url(https://media.fxcm.com/fxpress/tradu/assets/backgrounds/background-1.webp) no-repeat 50%/cover;
}

.bg-mob {
    background-color: #f2f2f2;
    padding-top: 0px;
    padding-bottom: 0px;
}

.text-just {
    justify-content: center;
}

.text-just img {
    width: 70%;
}

.mt-blog {
    margin-top: 30px;
    text-align: center;
}

.header-1.header-floating:hover .dark-bl1,
.header-1.header-sticky.scrolled-past-header .dark-bl1 {
    display: block;
}

.header-1.header-floating:hover .dark-bl,
.header-1.header-sticky.scrolled-past-header .dark-bl {
    display: none;
}

.dark-bl1 {
    display: none;
}

.promotion .icon-14,
.promotion span,
.promotion h2,
.bg-contain .subheading-bg,
.bg-contain .with {
    color: #1c2539;
}

.promotion .counter-up h2,
.promotion .counter-up span,
.hapy {
    color: #fff;
}

.bg-contain {
    background-color: #fff;
}

.bg-contain .subheading-bg {
    border: 1px solid #ccc;
}

.one-just-new {
    justify-content: center !important;
    text-align: center;
}

.margin-top-start {
    margin-top: 20px;
}

.jo-start {
    width: 65%;
    margin: auto;
    margin-top: 20px;
}

.new-hero {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.ph {
    justify-content: center;
}

.new-hero i {
    background-color: #3dbb4d !important;
    color: #fff;
    padding: 9px;
    font-size: 20px;
    border-radius: 50%;
}

.new-hero .text-16 {
    color: #1c2539;
    text-decoration: underline;
}

.new-text-rex {
    width: 60%;
    margin: auto;
    margin-bottom: 30px;
}

.just-for-cy {
    justify-content: center;
}

.just-for-cy img {
    width: 70%;
}

.mb-bot {
    margin-bottom: 20px;
}

.bo {
    border-color: #ccc;
}

.ban-head h2 {
    color: #fff;
}

.new-pos {
    color: #fff;
}

.story {
    color: #1c2539;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
}

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

.new-cols {
    background-color: #fff;
    padding: 20px;
}

.d-flex-new-one {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}

.svg-wrapper1 {
    width: 40%;
}

.new-he {
    width: 60%;
}

.svg-wrapper1 img {
    width: 100%;
}

.new-cols:hover {
    border-bottom: 4px solid #0c51a3;
    box-shadow: 0 5px 6px -3px rgba(0, 0, 0, .3);
    /*    margin-top: -20px;*/
    /*    text-decoration: none;*/
    /*    transition: all 0s ease 0s;*/
}

.new-soc {
    color: #3dbb4d !important;
}
.enquiry-btn {
    background: #3dbb4d;
    border-color: #3dbb4d;
    color: #fff;
}

.new-wr svg {
    border-radius: 50%;
    width: 60%;
}

.new-wr {
    margin: auto;
}

.d-b {
    display: block;
    text-align: center;
}

.pro-tools {
    margin-bottom: 20px;
}

.detailed-02 {
    background: url("https://www.icmarkets.com/assets/images/mt-bg.webp");
    background-size: cover;
    padding: 0.75rem 0 3.75rem;
}

.detailed-02 h2,
.detailed-02 .h2 {
    color: #FFFFFF;
    margin-bottom: 0.9375rem;
    text-align: center;
}

.detailed-02 p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.875rem;
}

.featured-box {
    background: rgba(255, 255, 255, 0.14);
    padding: 3rem;
    border-radius: 0.5rem;
    width: 100%;
    height: 100%;
}

.featured-box ul li {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin: 0 0 1.25rem;
}

ul.list li:before {
    content: "";
    width: 1rem;
    height: 1rem;
    background-image: url("https://www.icmarkets.com/assets/images/check.svg");
    background-size: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.newfea {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.detailed-01 {
    padding: 80px 0px 350px;
}

.detailed-02 figure {
    margin: -17.5rem 0 2.5rem;
    text-align: center;
}

.container .row {
    margin: 0 -0.9375rem;
}

.detailed-01 h2 {
    margin-bottom: 15px !important;
    font-size: 50px;
    font-weight: bold;
    max-width: 60%;
    margin: auto;
}

.detailed-01 .lead-2 {
    max-width: 70%;
    margin: auto;
    margin-bottom: 15px !important;
}

.detailed-02 .container figure img {
    max-width: 70%;
    width: 100%;
    text-align: center;
    margin: auto;
}

.false {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px !important;
}

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

ul.list li {
    font-weight: 400;
    font-size: 19px;
    line-height: 1.625rem;
    padding: 0 0 0 1.875rem;
    margin: 0 0 10px;
    position: relative;
}

.es {
    margin-bottom: 30px !important;
}

.text-doll {
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
}

.op {
    margin-bottom: 20px;
}

.tv-widget-chart__head {
    height: 66px;
    margin-bottom: 16px;
}

.tv-widget-chart__head {
    display: flex;
    margin-bottom: 80px;
    gap: 30px;
    justify-content: space-between;
}

.tv-widget-chart__logo {
    align-self: center;
    min-width: 56px;
}

.tv-widget-chart__logo {
    margin-right: 12px;
    min-width: 36px;
}

.pair-ocURKVwI.xlarge-ocURKVwI {
    height: 56px;
    width: 56px;
}

.tv-widget-chart__icon--large {
    display: inline-block;
}

.tv-widget-chart__icon {
    display: inline-block;
    flex-shrink: 0;
    vertical-align: top;
}

.pair-ocURKVwI {
    display: inline-block;
    position: relative;
}

.logo-ocURKVwI.xlarge-ocURKVwI {
    height: 38px;
    width: 38px;
}

.logo-ocURKVwI:first-child,
.logo-ocURKVwI:last-child {
    position: absolute;
    right: 0;
    top: 0;
}

.logo-ocURKVwI {
    border-radius: 50%;
}

.logo-ocURKVwI.xlarge-ocURKVwI:first-child {
    clip-path: path("M38 0H0v16.02L1 16a21 21 0 0 1 20.98 22H38V0Z");
}

.tv-widget-chart__title {
    color: var(--widget-font-color, var(--color-text-primary));
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    --ui-lib-typography-font-size: 18px;
    font-size: var(--ui-lib-typography-font-size);
    font-weight: 600;
    --ui-lib-typography-line-height: 24px;
    font-family: inherit;
    line-height: var(--ui-lib-typography-line-height);
}

.statusItem-Lgtz1OtS.large-Lgtz1OtS {
    padding: 5px;
}

.marketStatusOpen-Lgtz1OtS {
    color: #089981;
}

.statusItem-Lgtz1OtS {
    direction: ltr;
    display: flex;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    align-items: center;
}

.statusesWrap-Lgtz1OtS {
    cursor: default;
    display: flex;
    pointer-events: auto;
    position: relative;
    z-index: 0;
}

.tv-widget-chart__name {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 8px;
    min-height: 36px;
}

.tv-widget-chart__indicators {
    display: flex;
    margin-left: 8px;
    background-color: #def2ef;
    border-radius: 9px;
}

.tv-widget-chart__status {
    z-index: 1;
}

.statuses-Lgtz1OtS.small-Lgtz1OtS {
    border-radius: 9px;
}

.statuses-Lgtz1OtS {
    align-self: center;
    background: none;
    border: none;
    border-radius: 9px;
    display: inline-flex;
    min-width: 6px;
    overflow: hidden;
    padding: 0;
}

.logo-ocURKVwI.xlarge-ocURKVwI:last-child {
    transform: translate(-18px, 18px);
}

.tv-widget-chart .tv-widget-chart__legend,
.tv-widget-chart .tv-widget-chart__price {
    align-items: baseline;
    flex-direction: row;
}

.tv-widget-chart__price-value {
    --ui-lib-typography-line-height: 36px;
    line-height: var(--ui-lib-typography-line-height);
    --ui-lib-typography-font-size: 28px;
    font-family: inherit;
    font-size: var(--ui-lib-typography-font-size);
    font-style: normal;
    font-weight: 700;
}

.tv-widget-chart__price-value-changes--growing {
    color: red;
}

.d-fle {
    display: flex;
    align-items: center;
}

.new-sec-for {
    padding: 80px 0px 0px 0px;
    background-image: url('https://www.thinkmarkets.com/getmedia/08b7bc5c-9832-4beb-9094-b795629c2ccb/ttbackgroundsection.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.new-sec-for .svg-wrapper svg {
    color: #fff;
}

.new-web-width {
    width: 33.33%;
}

/*.new-web-width .card-working-process{
    text-align: center;
}*/
/*.new-web-width .has-border{
    justify-content: center;
}*/
.new-web-width .col-span-12 {
    margin-bottom: 50px;
}

.d-s-section {
    display: flex;
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 75px;*/
/*    margin-top: 50px;*/
}

.large-view .three-cols-section-media-buttons.three-cols-section-media-buttons--animation--viewportEnter-30percent.three-cols-section-media-buttons--animation--triggered--1 .three-cols-section-media-buttons__media-container {
    transform: translateY(0);
    opacity: 1;
    transition: transform .1s ease-out, opacity .1s ease-out;
}

.smartphone-frame-with-media__frame {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 67.87%;
    margin: auto;
}

.large-view .smartphone-frame-with-media__frame {
    width: 380px;
}

.large-view .smartphone-frame-with-media .media-viewer {
    margin: 16px 24px 16px 16px;
    border-radius: 28px;
}

.smartphone-frame-with-media .media-viewer {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    margin: 4px 15px 10px 10px;
    border-radius: 30px;
}

.smartphone-frame-with-media__container {
    position: relative;
    display: inline-block;
}

.smartphone-frame-with-media {
    text-align: center;
}

.op1 {
    margin-top: 20px;
    /*    margin-bottom: 20px;*/
    width: 60%;
}

.mb-hed-50 {
    margin-bottom: 20px;
}

.bus {
    padding: 10px 30px;
    border-radius: 50px;
}

.new-pro {
    padding-top: 100px;
}

.blo-sup {
    color: #4c06b2;
    font-size: 25px;
    font-weight: bold;
}

.without-box-shadow {
    padding-top: 0;
}

.candle {
    width: 100%;
    height: 100%;
    max-width: 1000px;
    margin: auto;
}

.smartphone-frame-with-media__container .media-viewer video {
    max-width: 67.87%;
    margin: auto;
    border-radius: 50px;
}

.user-name {
    font-size: 19px;
}

.new-mt-blog {
    margin-top: 80px;
}

.blog-bg-new .multicolumn-card .card-icon img {
    mix-blend-mode: multiply;
}

.padding-top-bred {
    padding-top: 60px;
}

.back-pad {
    padding: 80px 0;
}

.rest {
    padding-right: 60px;
}

.new-card .svg-wrapper {
    --size: 70px !important;
    min-width: var(--size, 70px) !important;
    width: var(--size, 70px) !important;
    height: var(--size, 70px) !important;
}

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

.top-margin .col-span-12 {
    margin-bottom: 30px;
}

.width-new {
    width: 20%;
}

.width-new1 {
    width: 70%;
    border-left: 1px dashed #1c2539;
    padding-left: 40px;
}

.top-margin .choose-bottom-cards {
    display: flex;
    justify-content: center;
}

.width-img-sec {
    width: 100%;
    text-align: center;
    margin: auto;
}

.width-img-sec img {
    width: 100%;
    max-width: 60%;
    padding-top: 30px;
}
.mb-100 {
    margin-bottom: 100px;
}

.widthab {
    width: 80%;
    margin: auto;
}

.widthab h2 {
    font-size: 50px;
}

.widthab p {
    font-size: 20px;
}

.height-support {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-med {
    margin-top: 0;
}

.social {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.social .col-span-12 {
    width: 23%;
}

.social .multicolumn-card {
    height: 100%;
}

.come {
    margin-top: 20px;
}

.margin-left-new {
    background: #3dbb4d;
    margin-left: 20px;
    color: #fff;
}

.new-mb-bord {
    margin-bottom: 15px;
}

.new-mb-bord1 {
    margin-bottom: 10px;
}

.benefits {
    display: flex;
    margin-top: 45px;
    justify-content: space-between;
}

.benefits .heading {
    margin-bottom: 30px;
}

.benefits .text-lists li {
    color: #fff;
}

.see {
    color: #fff;
    margin-left: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 55px;
}

.bor-col {
    border-color: #ccc;
}

.card-widthy {
    width: 45%;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media(max-width:768px) {
    .cards-grid {
        grid-template-columns: 1fr
    }
}

.strategy-card {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(18, 24, 39, 0.08);
    display: grid;
    grid-template-columns: 96px 1fr 220px;
    gap: 18px;
    padding: 18px;
    overflow: hidden;
    font-weight: 500;
}

.thumb {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.12) inset;
    border: 1px solid rgba(16, 24, 40, 0.03)
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.info {
    min-width: 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px
}

.brand h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.1;
    color: #0b1220;
    font-weight: 700
}

.badge {
    font-size: 0.78rem;
    padding: 6px 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6c5ce7, #1dd1a1);
    color: #ffffff;
    font-weight: 700
}

.meta {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #667085;
    font-size: 0.88rem;
    margin-bottom: 10px
}

.meta .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #dbeafe;
    display: inline-block
}

.desc {
    margin-bottom: 25px;
/*    margin: 0;*/
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.38
}

.stats {
    background: linear-gradient(180deg, rgba(18, 24, 39, 0.02), rgba(18, 24, 39, 0.01));
    padding: 12px;
    border-radius: 12px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    justify-content: center
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700
}

.stat-val {
    font-size: 1.15rem
}

.stat-label {
    font-size: 0.8rem;
    color: #667085;
    font-weight: 600
}

.profit {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.12), rgba(99, 102, 241, 0.06));
    padding: 8px 12px;
    border-radius: 10px;
    color: #006400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800
}

.sparkline {
    width: 100%;
    height: 42px;
    background: linear-gradient(90deg, #eef2ff, transparent);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-top: 6px
}

.sparkline svg {
    width: 100%;
    height: 100%;
    display: block
}

.actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end
}

.btn {
    border: 0;
    padding: 9px 12px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem
}

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

.btn-ghost {
    background: #3dbb4d;
    color: #fff;
}
@media (max-width:860px) {
    .strategy-card {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
        gap: 12px;
        padding: 14px
    }

    .stats {
        grid-column: 1/-1;
        align-items: flex-start;
        text-align: left
    }

    .actions {
        justify-content: flex-start
    }
}

@media (max-width:420px) {
    .strategy-card {
        grid-template-columns: 72px 1fr;
        padding: 12px
    }

    .thumb {
        width: 72px;
        height: 72px
    }

    .brand h3 {
        font-size: 0.98rem
    }

    .stat-val {
        font-size: 1rem
    }
}

.strategy-card:hover {
    transform: translateY(-6px);
    transition: all 220ms cubic-bezier(.2, .9, .2, 1);
    box-shadow: 0 18px 50px rgba(18, 24, 39, 0.12)
}

.perf {
    padding-top: 0;
}

.cpoy-btn{
    margin-top: 30px;
}

.new-bots{
    margin-bottom: 40px;
    max-width: 100%;
}

.text-center-new{
    justify-content: center;
}

.unlimit{
    margin-top: 15px;
    display: block;
}
.font-size-new{
    font-size: 23px;
}
.mt-new-5{
    margin-top: 30px;
}
.heading-note{
    background-color: #4c06b2;
    color: #fff;
    border-radius: 5px;
    padding: 9px;
    text-align: center;
    font-size: 19px;
}
.new-features{
    margin-bottom: 30px !important;
}
.blog-bg-new{
    margin-top: 80px;
}
.back{
    background-color: #1c2539;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-align: center;
}
.bc-one{
    width: 80%;
}
.bc-one1{
    width: 260px;
}
.bc-one .heading:hover{
    background-color: #3dbb4d;
}
.bc-one1 .heading:hover{
    background-color: #3dbb4d;
}

@media (max-width:1280px) and (min-width:1200px){
    .header-actions .button {
    width: max-content !important;
}
}

@media (max-width:1200px) and (min-width:1025px){
        .footer-custom-row {
    grid-template-columns: repeat(3, 1fr) !important;
    display: grid !important;
}
.footer-widget-brand  img {
    width: 200px !important;
}
.accordion-title-icon .text-24 {
    font-size: 20px !important;
    line-height: 1.25;
}
.strategy-card {
    grid-template-columns: 1fr !important;
}
.stats {
    text-align: left !important;
    align-items: flex-start !important;
}
.header-actions .button {
    width: max-content !important;
}
}

@media (max-width:1024px) and (min-width:992px){
    .footer-custom-row {
    grid-template-columns: repeat(3, 1fr) !important;
    display: grid !important;
}
.footer-widget-brand  img {
    width: 200px !important;
}
.accordion-title-icon .text-24 {
    font-size: 20px !important;
    line-height: 1.25;
}
.strategy-card {
    grid-template-columns: 1fr 1fr !important;
}
.stats {
    text-align: left !important;
    align-items: flex-start !important;
}
.false, .detailed-01 h2, .text-50 {
    font-size: 38px !important;
}
.featured-box {
    padding: 20px !important;
}
.slider-card .content-box .heading {
    font-size: 48px !important;
}
.without-box-shadow .grid {
    display: block !important;
}
.without-box-shadow .section-contact-form .card-icon-text-horizontal {
    -webkit-margin-before: 40px;
    margin-block-start: 0px;
    max-width: 31% !important;
    padding-top: 30px !important;
}
.d-flex-new .card-icon-text-horizontal {
    width: 31% !important;
}
.tv-widget-chart__head {
    display: flex;
    margin-bottom: 59px !important;
    gap: 20px !important;
    justify-content:space-around !important;
}
.content-link img {
    width: 116px !important;
}
.header-actions .button {
    width: max-content !important;
}
.header-submenu .menu-link {
    padding: 0 0 12px 3px !important;
   
}
}

@media (max-width:991px) and (min-width:768px){
     .newfea {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.tv-widget-chart__head {
    display: flex !important;
    margin-bottom: 30px !important;
    gap: 30px;
    justify-content: space-between;
    height: auto !important;
    flex-wrap: wrap !important;
}
.multicolumn .multicolumn-card {
    height: 100% !important;
}
.new-cols {
    width: 48% !important;
}
.d-b {
    display: block;
    text-align: center;
    width: 47%;
}
.choose-bottom-cards .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content:center !important;
}
.newfea .col-md-6 {
    width: 48%;
}
.d-flex-new {
    display: flex;
    align-items: flex-start !important;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap !important;
}
.section-content.d-s-section {
    padding-top: 30px !important;
}
.slider-card .content-box .heading {
    font-size: 46px !important;
}
.text-50 {
    font-size: 26px !important;
}
.text-20 {
    font-size: 15px !important;
}
.d-s-section {
    display: grid !important;
}
.new-web-width {
    width: 100% !important;
    display: flex;
    gap: 20px;
}
.new-web-width .col-span-12 {
    margin-bottom: 20px !important;
}
.mob-dis{
    display:none !important;
}
.detailed-01 h2 {
    font-size: 28px !important;
    max-width: 100% !important;
}
.detailed-01 .lead-2 {
    max-width: 100% !important;
}
.container .row {
    margin: auto !important;
}
.detailed-01 {
    padding: 47px 0px 80px !important;
}
.detailed-02 figure {
    text-align: center;
    margin-top: -53px !important;
}
.false {
    font-size: 28px !important;
    margin-bottom: 20px !important;
}
.featured-box {
    padding: 1rem !important;
}
.image-text .content {
    -webkit-padding-before:0 !important;
    padding-block-start: 0 !important;
}
.jo-start {
    width: 100% !important;
    margin: auto;
    margin-top: 20px;
}
.d-b .content p {
    height: auto !important;
}
.section-content {
    -webkit-margin-before: 40px;
    margin-block-start: 0 !important;
}
.story {
    font-size: 20px !important;
    line-height: 28px !important;
    margin-top: 0 !important;
}
.new-mt-blog {
    margin-top: 0 !important;
}
.footer-widget-brand img {
    max-width: 200px !important;
}
.footer-custom-row {
    row-gap: 30px !important;
}
.ret-mat {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
}
.new-pro {
    padding-top: 55px !important;
}
.tv-widget-chart__price-value {
    font-size: 20px !important;
}
.tv-widget-chart__name {
    margin-bottom: 0 !important;
    min-height: 32px !important;
}
.tv-widget-chart__title {
    font-size: 17px !important;
}
.content-link img {
    width: 160px !important;
}
.logos-background.p-2 {
    padding: 20px !important;
}
.slider-content .height-100 {
    height: 300px !important;
}
.overlay:after {
    height: 500px !important;
}
.slider-media img {
    height: 500px !important;
    object-fit:cover !important;
    object-position:center !important;
}
.hero-slider {
    min-height: 500px !important;
    height: 500px !important;
}
.footer-top .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
}
.top-margin .choose-bottom-cards {
    justify-content: space-around !important;
}
.rest {
    padding-right: 0 !important;
    padding-bottom: 20px !important;
}
.widthab h2 {
    font-size: 32px !important;
}
.widthab {
    width: 100% !important;
    margin: auto;
}
.social .col-span-12 {
    width: 31% !important;
}
.multicolumn-card .text-28 {
    font-size: 20px !important;
}
.footer-custom-row {
    grid-template-columns: repeat(3, 1fr) !important;
    display: grid !important;
}
.footer-widget-brand  img {
    width: 200px !important;
}
.con-ser1 .cards-grid {
    grid-template-columns: 1fr 1fr !important;
}
.card-widthy {
    width: 100% !important;
}
.benefits {
    display: grid !important;
    margin-top: 21px;
    justify-content: space-between;
}
.page-banner .text-90, .page-banner .text-80 {
    font-size: 40px !important;
}
.multicolumn-header .text-50 {
    padding-bottom: 30px !important;
    font-size: 26px !important;
}
.section-headings-left .heading {
    padding-bottom: 30px !important;
}
.accordion-title-icon .text-24 {
    font-size: 20px;
    line-height: 1.25;
}
.flexboxnew {
    grid-template-columns: 1fr !important;
}
.newinmggs {
    display: none !important;
}
.popup-content {
    margin: 20px !important;
    padding:20px !important;
    width: 60% !important;
}
.new-card {
    flex-wrap: wrap !important;
    flex-direction: column !important;
}
.width-new1 h2 {
    font-size: 32px !important;
}
.width-img-sec {
    width: 100%;
    text-align: center;
    margin: auto;
    padding-top: 0px;
}
.recent-project .section-headings-left h2 {
    padding-bottom: 0 !important;
}
.multicolumn-card>.text {
    margin-block-start: 10px !important;
}
.header-megamenu>*>.nav-item {
    padding: 0 !important;
}
.back {
    padding: 0 0 15px 10px !important;
}
.text-banner{
    margin-bottom:60px !important;
}
.width-img-sec img {
    width: 100%;
    max-width: 72%;
    padding-top: 30px;
}
.new-mb-bord {
    margin-bottom: 10px !important;
}
.why-choose-us{
    padding:60px 0 !important;
}
}

@media (max-width:767px) and (min-width:599px){
    .section-headings-left .heading {
    padding-bottom: 30px !important;
}
      .newfea {
    display: grid !important;
    gap: 20px;
}
.tv-widget-chart__head {
    display: grid !important;
    margin-bottom: 30px !important;
    gap: 30px;
    justify-content: space-between;
    height: auto !important;
}
.d-flex-new {
    display: grid !important;
    align-items: center;
    gap: 0;
    justify-content: center;
}
.slider-card .content-box .heading {
    font-size: 28px !important;
}
.section-content.d-s-section {
    padding-top: 30px !important;
}
.text-50 {
    font-size: 26px !important;
}
.text-20 {
    font-size: 15px !important;
}
.d-s-section {
    display: grid !important;
}
.new-web-width {
    width: 100% !important;
}
.new-web-width .col-span-12 {
    margin-bottom: 20px !important;
}
.mob-dis{
    display:none !important;
}
.detailed-01 h2 {
    font-size: 28px !important;
    max-width: 100% !important;
}
.detailed-01 .lead-2 {
    max-width: 100% !important;
}
.container .row {
    margin: auto !important;
}
.detailed-01 {
    padding: 47px 0px 80px !important;
}
.detailed-02 figure {
    text-align: center;
    margin-top: -53px !important;
}
.false {
    font-size: 28px !important;
    margin-bottom: 20px !important;
}
.featured-box {
    padding: 1rem !important;
}
.image-text .content {
    -webkit-padding-before:0 !important;
    padding-block-start: 0 !important;
}
.jo-start {
    width: 100% !important;
    margin: auto;
    margin-top: 20px;
}
.d-b .content p {
    height: auto !important;
}
.section-content {
    -webkit-margin-before: 40px;
    margin-block-start: 0 !important;
}
.story {
    font-size: 20px !important;
    line-height: 28px !important;
    margin-top: 0 !important;
}
.new-mt-blog {
    margin-top: 0 !important;
}
.footer-widget-brand img {
    max-width: 200px !important;
}
.footer-custom-row {
    row-gap: 30px !important;
}
.ret-mat {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
}
.new-pro {
    padding-top: 55px !important;
}
.tv-widget-chart__price-value {
    font-size: 20px !important;
}
.tv-widget-chart__name {
    margin-bottom: 0 !important;
    min-height: 32px !important;
}
.tv-widget-chart__title {
    font-size: 17px !important;
}
.content-link img {
    width: 160px !important;
}
.logos-background.p-2 {
    padding: 20px !important;
}
.slider-content .height-100 {
    height: 300px !important;
}
.overlay:after {
    height: 500px !important;
}
.slider-media img {
    height: 500px !important;
    object-fit:cover !important;
    object-position:center !important;
}
.hero-slider {
    min-height: 500px !important;
    height: 500px !important;
}
.page-banner .heading {
    font-size: 32px !important;
}
.page-banner {
    --height: 230px;
}
.rest {
    padding-right: 0 !important;
    padding-bottom: 22px !important;
}
.width-new {
    width: 100% !important;
}
.top-margin .choose-bottom-cards {
    flex-wrap: wrap !important;
}
.width-new1 {
    width: 100% !important;
    border-left: 0 !important;
    padding-left: 20px !important;
}

.width-img-sec {
    width: 100% !important;
    text-align: center;
    margin: auto;
    padding-top: 0px !important;
}
.width-img-sec img {
    width: 100% ;
    max-width: 100%!important ;
    padding-top: 30px;
}
.widthab h2 {
    font-size: 28px !important;
}
.widthab {
    width: 100% !important;
    margin: auto;
}
.widthab p {
    font-size: 18px;
}

.text-banner {
    margin-bottom: 45px;
}
.social {
    display: grid !important;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.social .col-span-12 {
    width: 100% !important;
}
.flexboxnew {
    grid-template-columns: 1fr !important;
}
.newinmggs {
    display: none !important;
}
.popup-content {
    margin: 20px !important;
    padding:20px !important;
    width: 100% !important;
}
.header-megamenu>*>.nav-item {
    padding: 0 !important;
}
.back {
    padding: 0 0 15px 10px !important;
}
}

@media (max-width:598px) and (min-width:320px){
    .section-headings-left .heading {
    padding-bottom: 30px !important;
}
    .newfea {
    display: grid !important;
    gap: 20px;
}
.tv-widget-chart__head {
    display: grid !important;
    margin-bottom: 30px !important;
    gap: 30px;
    justify-content: space-between;
    height: auto !important;
}
.d-flex-new {
    display: grid !important;
    align-items: center;
    gap: 0;
    justify-content: center;
}
.section-content.d-s-section {
    padding-top: 30px !important;
}
.slider-card .content-box .heading {
    font-size: 28px !important;
}
.text-50 {
    font-size: 26px !important;
}
.text-20 {
    font-size: 15px !important;
}
.d-s-section {
    display: grid !important;
}
.new-web-width {
    width: 100% !important;
}
.new-web-width .col-span-12 {
    margin-bottom: 20px !important;
}
.mob-dis{
    display:none !important;
}
.detailed-01 h2 {
    font-size: 28px !important;
    max-width: 100% !important;
}
.detailed-01 .lead-2 {
    max-width: 100% !important;
}
.container .row {
    margin: auto !important;
}
.detailed-01 {
    padding: 47px 0px 80px !important;
}
.detailed-02 figure {
    text-align: center;
    margin-top: -53px !important;
}
.false {
    font-size: 28px !important;
    margin-bottom: 20px !important;
}
.featured-box {
    padding: 1rem !important;
}
.image-text .content {
    -webkit-padding-before:0 !important;
    padding-block-start: 0 !important;
}
.jo-start {
    width: 100% !important;
    margin: auto;
    margin-top: 20px;
}
.d-b .content p {
    height: auto !important;
}
.section-content {
    -webkit-margin-before: 40px;
    margin-block-start: 0 !important;
}
.story {
    font-size: 20px !important;
    line-height: 28px !important;
    margin-top: 0 !important;
}
.new-mt-blog {
    margin-top: 0 !important;
}
.footer-widget-brand img {
    max-width: 200px !important;
}
.footer-custom-row {
    row-gap: 30px !important;
}
.ret-mat {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
}
.new-pro {
    padding-top: 55px !important;
}
.tv-widget-chart__price-value {
    font-size: 20px !important;
}
.tv-widget-chart__name {
    margin-bottom: 0 !important;
    min-height: 32px !important;
}
.tv-widget-chart__title {
    font-size: 17px !important;
}
.content-link img {
    width: 160px !important;
}
.logos-background.p-2 {
    padding: 20px !important;
}
.slider-content .height-100 {
    height: 300px !important;
}
.overlay:after {
    height: 500px !important;
}
.slider-media img {
    height: 500px !important;
    object-fit:cover !important;
    object-position:center !important;
}
.hero-slider {
    min-height: 500px !important;
    height: 500px !important;
}
.page-banner .heading {
    font-size: 32px !important;
}
.page-banner {
    --height: 230px;
}
.rest {
    padding-right: 0 !important;
    padding-bottom: 22px !important;
}
.width-new {
    width: 100% !important;
}
.top-margin .choose-bottom-cards {
    flex-wrap: wrap !important;
}
.width-new1 {
    width: 100% !important;
    border-left: 0 !important;
    padding-left: 20px !important;
}

.width-img-sec {
    width: 100% !important;
    text-align: center;
    margin: auto;
    padding-top: 0px !important;
}
.why-choose-us .width-new1 .text {
    margin: 0 !important;
    padding: 15px 0 15px 0 !important;
}
.width-img-sec img {
    width: 100% ;
    max-width: 100%!important ;
    padding-top: 30px;
}
.new-mb-bord {
     margin-bottom: 0px !important; 
}
.widthab h2 {
    font-size: 28px !important;
}
.widthab {
    width: 100% !important;
    margin: auto;
}
.widthab p {
    font-size: 18px;
}

.text-banner {
    margin-bottom: 45px;
}
.social {
    display: grid !important;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.social .col-span-12 {
    width: 100% !important;
}
.multicolumn-header {
    padding-bottom: 25px !important;
}
.multicolumn-card>.text {
    margin-block-start: 10px !important;
}
.benefits {
    display: grid !important;
    margin-top: 35px !important;
}
.card-widthy {
    width: 100% !important;
    padding-bottom: 25px !important;
}
.new-sec-for .heading {
    padding-bottom: 0 !important;
}
.new-sec-for {
    padding: 55px 0px 0px 0px !important;
}
.see {
    height: auto !important;
}
/*.benefits .heading {*/
/*    margin-bottom: 30px;*/
/*    padding-top: 30px;*/
/*}*/
.flexboxnew {
    grid-template-columns: 1fr !important;
}
.newinmggs {
    display: none !important;
}
.popup-content {
    margin: 20px !important;
    padding:20px !important;
    width: 100% !important;
}
.recent-project .section-headings {
    gap: 0 !important;
}

.width-new1 h2 {
    font-size: 28px !important;
    padding-bottom: 0;
}
.header-megamenu>*>.nav-item {
    padding: 0 !important;
}
.back {
    padding: 0 0 15px 10px !important;
}
}

@media (max-width:425px) and (min-width:320px){
    .margin-left-new {
    margin-left: 0 !important;
    margin-top: 20px !important;
}
}
.blog-description p {
    font-size: 16px !important;
}
.blog-description {
    gap: 20px !important;
}
.blog-description h3 {
    font-size: 24px !important;
    font-weight: 600 !important;
}
.blog-description .list li {
    font-size: 16px !important;
}
.blog-description{
    padding-bottom:40px !important;
}
.font-size-new {
    font-size: 18px !important;
    font-weight: 300 !important;
}
.reset-submenu .text-20 {
    font-size: 15px !important;
    text-align: left !important;
    /*padding-left: 0 !important;*/
}
/*.header-megamenu>*>.nav-item {*/
/*    padding: 0 !important;*/
/*}*/

.popup-link{
  display:flex;
  flex-wrap:wrap;
}

.popup-link a{
    background: #333;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    font-size:17px;
    cursor:pointer;
    margin:20px;
    text-decoration:none;
}

.popup-container {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
    position: fixed;
   z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #151111f5;
    display: flex;
    align-items: center;
}
.popup-content {
    background: #fff;
    margin: auto;
    padding: 0 20px 0 0;
    border: 0;
    width: 50%;
    position: relative;
}
.flexboxnew {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.popup-content p{
    font-size: 17px;
    padding: 10px;
    line-height: 20px;
}
.new_popsec .button.button--secondary {
    padding: 6px 10px !important;
    border: 1px solid #20282d;
}
.new_popsec .contact-form .form-button {
    margin-block-start: 30px !important;
    margin-bottom: 30px !important;
}
.popup-content a.close {
    color: #fff;
    float: right;
    font-size: 26px;
    font-weight: bold;
    background: none;
    padding: 0;
    margin: 0;
    text-decoration: none;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #20282d;
    width: 50px;
    text-align: center;
}

.new_popsec .contact-form-wrap {
    padding: 0;
    border-radius: 0 !important;
}

.popup-content span:hover,
.popup-content span:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.popup-container:target{
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.popup-container h3{
  margin:10px;
}
.new_popsec h2 {
    font-size: 24px !important;
    color: #20282d !important;
    text-align: center;
    padding: 30px 0;
}
.imgse img {
    width: 100%;
    max-width: 58% !important;
    margin:0 auto;
}
.imgse{
    text-align:center;
    
}
.imgse p {
    font-size: 19px !important;
    line-height: 25px;
    font-weight: 600;
    max-width: 77%;
    margin: 0 auto;
    padding: 0 0 40px 0 !important;
}
.newinmggs {
    display: flex;
    justify-content: center;
    align-items: center;
}
/*End popup styles*/