@charset 'UTF-8';

/* ========== Grid Start ========== */

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --gutter-x: var(--gutter);
    --container-gutter: calc(var(--gutter) / 2);
    padding-right: var(--container-gutter);
    padding-left: var(--container-gutter);
    --gutter-y: 0;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm,
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md,
    .container-sm,
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1320px;
    }
}

@media (max-width: 575px) {
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --container-gutter: calc(var(--gutter));
    }
}

@media (max-width: 400px) {
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --container-gutter: calc(var(--gutter) / 2);
    }
}

.row {
    --gutter-x: var(--gutter);
    --gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--gutter-y));
    margin-right: calc(-0.5 * var(--gutter-x));
    margin-left: calc(-0.5 * var(--gutter-x));
}

.row > * {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-top: var(--gutter-y);
}

.swiper [class*="col-"] {
    padding-right: calc(var(--gutter) / 2);
    padding-left: calc(var(--gutter) / 2);
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.offset-1 {
    margin-left: 8.33333333%;
}

.offset-2 {
    margin-left: 16.66666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333333%;
}

.offset-5 {
    margin-left: 41.66666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333333%;
}

.offset-8 {
    margin-left: 66.66666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333333%;
}

.offset-11 {
    margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
    --gutter-x: 0;
}

.g-0,
.gy-0 {
    --gutter-y: 0;
}

.g-1,
.gx-1 {
    --gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
    --gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
    --gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
    --gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
    --gutter-x: 1rem;
}

.g-3,
.gy-3 {
    --gutter-y: 1rem;
}

.g-4,
.gx-4 {
    --gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
    --gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
    --gutter-x: 3rem;
}

.g-5,
.gy-5 {
    --gutter-y: 3rem;
}

@media (min-width: 576px) {
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333333%;
    }

    .offset-sm-2 {
        margin-left: 16.66666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333333%;
    }

    .offset-sm-5 {
        margin-left: 41.66666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333333%;
    }

    .offset-sm-8 {
        margin-left: 66.66666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333333%;
    }

    .offset-sm-11 {
        margin-left: 91.66666667%;
    }

    .g-sm-0,
    .gx-sm-0 {
        --gutter-x: 0;
    }

    .g-sm-0,
    .gy-sm-0 {
        --gutter-y: 0;
    }

    .g-sm-1,
    .gx-sm-1 {
        --gutter-x: 0.25rem;
    }

    .g-sm-1,
    .gy-sm-1 {
        --gutter-y: 0.25rem;
    }

    .g-sm-2,
    .gx-sm-2 {
        --gutter-x: 0.5rem;
    }

    .g-sm-2,
    .gy-sm-2 {
        --gutter-y: 0.5rem;
    }

    .g-sm-3,
    .gx-sm-3 {
        --gutter-x: 1rem;
    }

    .g-sm-3,
    .gy-sm-3 {
        --gutter-y: 1rem;
    }

    .g-sm-4,
    .gx-sm-4 {
        --gutter-x: 1.5rem;
    }

    .g-sm-4,
    .gy-sm-4 {
        --gutter-y: 1.5rem;
    }

    .g-sm-5,
    .gx-sm-5 {
        --gutter-x: 3rem;
    }

    .g-sm-5,
    .gy-sm-5 {
        --gutter-y: 3rem;
    }
}

@media (min-width: 768px) {
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333333%;
    }

    .offset-md-2 {
        margin-left: 16.66666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333333%;
    }

    .offset-md-5 {
        margin-left: 41.66666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333333%;
    }

    .offset-md-8 {
        margin-left: 66.66666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333333%;
    }

    .offset-md-11 {
        margin-left: 91.66666667%;
    }

    .g-md-0,
    .gx-md-0 {
        --gutter-x: 0;
    }

    .g-md-0,
    .gy-md-0 {
        --gutter-y: 0;
    }

    .g-md-1,
    .gx-md-1 {
        --gutter-x: 0.25rem;
    }

    .g-md-1,
    .gy-md-1 {
        --gutter-y: 0.25rem;
    }

    .g-md-2,
    .gx-md-2 {
        --gutter-x: 0.5rem;
    }

    .g-md-2,
    .gy-md-2 {
        --gutter-y: 0.5rem;
    }

    .g-md-3,
    .gx-md-3 {
        --gutter-x: 1rem;
    }

    .g-md-3,
    .gy-md-3 {
        --gutter-y: 1rem;
    }

    .g-md-4,
    .gx-md-4 {
        --gutter-x: 1.5rem;
    }

    .g-md-4,
    .gy-md-4 {
        --gutter-y: 1.5rem;
    }

    .g-md-5,
    .gx-md-5 {
        --gutter-x: 3rem;
    }

    .g-md-5,
    .gy-md-5 {
        --gutter-y: 3rem;
    }
}

@media (min-width: 992px) {
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333333%;
    }

    .offset-lg-2 {
        margin-left: 16.66666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333333%;
    }

    .offset-lg-5 {
        margin-left: 41.66666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333333%;
    }

    .offset-lg-8 {
        margin-left: 66.66666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333333%;
    }

    .offset-lg-11 {
        margin-left: 91.66666667%;
    }

    .g-lg-0,
    .gx-lg-0 {
        --gutter-x: 0;
    }

    .g-lg-0,
    .gy-lg-0 {
        --gutter-y: 0;
    }

    .g-lg-1,
    .gx-lg-1 {
        --gutter-x: 0.25rem;
    }

    .g-lg-1,
    .gy-lg-1 {
        --gutter-y: 0.25rem;
    }

    .g-lg-2,
    .gx-lg-2 {
        --gutter-x: 0.5rem;
    }

    .g-lg-2,
    .gy-lg-2 {
        --gutter-y: 0.5rem;
    }

    .g-lg-3,
    .gx-lg-3 {
        --gutter-x: 1rem;
    }

    .g-lg-3,
    .gy-lg-3 {
        --gutter-y: 1rem;
    }

    .g-lg-4,
    .gx-lg-4 {
        --gutter-x: 1.5rem;
    }

    .g-lg-4,
    .gy-lg-4 {
        --gutter-y: 1.5rem;
    }

    .g-lg-5,
    .gx-lg-5 {
        --gutter-x: 3rem;
    }

    .g-lg-5,
    .gy-lg-5 {
        --gutter-y: 3rem;
    }
}

@media (min-width: 1200px) {
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.33333333%;
    }

    .offset-xl-2 {
        margin-left: 16.66666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333333%;
    }

    .offset-xl-5 {
        margin-left: 41.66666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333333%;
    }

    .offset-xl-8 {
        margin-left: 66.66666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333333%;
    }

    .offset-xl-11 {
        margin-left: 91.66666667%;
    }

    .g-xl-0,
    .gx-xl-0 {
        --gutter-x: 0;
    }

    .g-xl-0,
    .gy-xl-0 {
        --gutter-y: 0;
    }

    .g-xl-1,
    .gx-xl-1 {
        --gutter-x: 0.25rem;
    }

    .g-xl-1,
    .gy-xl-1 {
        --gutter-y: 0.25rem;
    }

    .g-xl-2,
    .gx-xl-2 {
        --gutter-x: 0.5rem;
    }

    .g-xl-2,
    .gy-xl-2 {
        --gutter-y: 0.5rem;
    }

    .g-xl-3,
    .gx-xl-3 {
        --gutter-x: 1rem;
    }

    .g-xl-3,
    .gy-xl-3 {
        --gutter-y: 1rem;
    }

    .g-xl-4,
    .gx-xl-4 {
        --gutter-x: 1.5rem;
    }

    .g-xl-4,
    .gy-xl-4 {
        --gutter-y: 1.5rem;
    }

    .g-xl-5,
    .gx-xl-5 {
        --gutter-x: 3rem;
    }

    .g-xl-5,
    .gy-xl-5 {
        --gutter-y: 3rem;
    }
}

@media (min-width: 1400px) {
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xxl-0 {
        margin-left: 0;
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%;
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%;
    }

    .offset-xxl-3 {
        margin-left: 25%;
    }

    .offset-xxl-4 {
        margin-left: 33.33333333%;
    }

    .offset-xxl-5 {
        margin-left: 41.66666667%;
    }

    .offset-xxl-6 {
        margin-left: 50%;
    }

    .offset-xxl-7 {
        margin-left: 58.33333333%;
    }

    .offset-xxl-8 {
        margin-left: 66.66666667%;
    }

    .offset-xxl-9 {
        margin-left: 75%;
    }

    .offset-xxl-10 {
        margin-left: 83.33333333%;
    }

    .offset-xxl-11 {
        margin-left: 91.66666667%;
    }

    .g-xxl-0,
    .gx-xxl-0 {
        --gutter-x: 0;
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --gutter-y: 0;
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --gutter-x: 0.25rem;
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --gutter-y: 0.25rem;
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --gutter-x: 0.5rem;
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --gutter-y: 0.5rem;
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --gutter-x: 1rem;
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --gutter-y: 1rem;
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --gutter-x: 1.5rem;
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --gutter-y: 1.5rem;
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --gutter-x: 3rem;
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --gutter-y: 3rem;
    }
}

/* ========== Grid End ========== */

/* Document
========================================================================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
}

/* Sections
========================================================================== */
body {
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility !important;
}

body,
html {
    overflow-x: hidden !important;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

/* Text-level semantics
========================================================================== */
a {
    background-color: transparent;
    text-decoration: none !important;
    outline: none !important;
}

abbr[title] {
    border-bottom: none;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
========================================================================== */
img {
    border-style: none;
    height: auto;
    max-width: 100%;
}

img,
svg {
    vertical-align: middle;
}

/* Forms
========================================================================== */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

/* Interactive
========================================================================== */
details {
    display: block;
}

summary {
    display: list-item;
    cursor: pointer;
}

/* Misc
========================================================================== */
template {
    display: none;
}

[hidden] {
    display: none;
}

/*--------------------------------------------------------------
    # Typography
--------------------------------------------------------------*/
p:last-child {
    margin-bottom: 0;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
    font-style: normal;
    line-height: inherit;
}

pre {
    background: #eee;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
/* *, */
*::before,
*::after {
    box-sizing: inherit;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
    box-sizing: content-box;
}

ul,
ol {
    margin: 0 0 1.5em 3em;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

figure {
    margin: 1em 0;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
    margin: 0 0 1.5em;
}

.widget select {
    max-width: 100%;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
    display: block;
}

.updated:not(.published) {
    display: none;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    display: none;
}

.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

embed,
iframe,
object {
    max-width: 100%;
}

iframe {
    border: 0;
}

.custom-logo-link {
    display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

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

/*========== Form Start ==========*/

div.wpcf7-mail-sent-ok {
    display: none !important;
}

.screen-reader-response {
    display: none;
}

.wpcf7-form-control-wrap {
    margin-bottom: var(--form-control-wrap-margin-bottom);
    display: block;
    position: relative;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    margin: 20px 0;
    padding: 3px 10px;
    border: 1px solid var(--error-color);
    color: var(--error-color);
    font-size: 14px;
    line-height: 24px;
    text-align: left;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: 1px solid var(--success-color);
    color: var(--success-color);
    font-size: 14px;
    line-height: 24px;
    text-align: left;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

select::-ms-expand {
    display: none;
}

select,
select.form-input {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.woocommerce-form__label-for-checkbox span,
.comment-form-cookies-consent label {
    padding-left: 30px;
}

.comment-form-cookies-consent label {
    padding-left: 10px;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid var(--error-color);
    color: var(--error-color);
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
    content: none;
}

p.comment-form-cookies-consent > input[type="checkbox"],
.wpcf7 input[type="checkbox"],
.woocommerce form .form-row .input-checkbox,
.woocommerce-form__input,
.wpcf7 input[type="radio"] {
    --size: 20px;
    position: relative;
    top: 2px;
    width: var(--size);
    height: var(--size);
    outline: none;
    z-index: 5;
    cursor: pointer;
    -webkit-appearance: none;
    background: transparent;
    border: 1px solid var(--form-accent-color);
    border-radius: 2px;
    flex: 0 0 auto;
}

p.comment-form-cookies-consent > input[type="checkbox"]:before,
.woocommerce form .form-row .input-checkbox:before,
.wpcf7 input[type="checkbox"]:before,
.woocommerce-form__input:before {
    display: inline-block;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m9.55 15.15l8.475-8.475q.3-.3.7-.3t.7.3t.3.713t-.3.712l-9.175 9.2q-.3.3-.7.3t-.7-.3L4.55 13q-.3-.3-.288-.712t.313-.713t.713-.3t.712.3z'/%3E%3C/svg%3E");
    background-color: var(--white-color);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    opacity: 0;
    transition: var(--transition);
}

p.comment-form-cookies-consent > input[type="checkbox"]:checked,
.woocommerce form .form-row .input-checkbox:checked,
.wpcf7 input[type="checkbox"]:checked,
.woocommerce-form__input:checked {
    background: var(--form-accent-color);
    border-color: var(--form-accent-color);
}

p.comment-form-cookies-consent > input[type="checkbox"]:checked:before,
.woocommerce form .form-row .input-checkbox:checked:before,
.wpcf7 input[type="checkbox"]:checked:before,
.woocommerce-form__input:checked:before,
.wpcf7 input[type="radio"]:checked:before {
    opacity: 1;
    transition: var(--transition);
}

p.comment-form-cookies-consent > input[type="radio"],
.woocommerce form .form-row .input-radio,
.wpcf7 input[type="radio"],
.woocommerce-form__input[type="radio"] {
    border-radius: 50%;
}

p.comment-form-cookies-consent > input[type="radio"]:before,
.woocommerce form .form-row .input-radio:before,
.wpcf7 input[type="radio"]:before,
.woocommerce-form__input[type="radio"]:before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--form-accent-color);
    opacity: 0;
}

.wpcf7-list-item label {
    display: inline-flex;
    gap: 10px;
    cursor: pointer;
}

.wpcf7-list-item label span.wpcf7-list-item-label {
    align-self: center;
}

label {
    display: inline-block;
    margin-bottom: 0;
}

label:not(.wpcf7-form-control label) {
    margin-bottom: 8px;
}

.wpcf7-form-control .wpcf7-list-item {
    margin: 0 !important;
    display: block;
}

.checkbox-wp .wpcf7-not-valid-tip {
    display: none;
}

span.wpcf7-list-item,
.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox,
.woocommerce form .form-row label {
    position: relative;
}

.comment-form-cookies-consent input {
    opacity: 0;
    display: inline-block;
    width: auto !important;
}

.wpcf7 p:last-child {
    margin-bottom: 0;
}

/*========== Form End ==========*/

/* ========== Wow Animation Start ========== */
.wow {
    visibility: hidden;
}

.animated {
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (prefers-reduced-motion), (print) {
    .animated {
        -webkit-animation: unset !important;
        -webkit-transition: none !important;
        animation: unset !important;
        transition: none !important;
    }
}

@-webkit-keyframes left-animation {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-5vw, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
        transform: translate3d(-5vw, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes left-animation {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-5vw, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
        transform: translate3d(-5vw, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.left-animation {
    -webkit-animation-name: left-animation;
    animation-name: left-animation;
    transform-style: preserve-3d;
}

@-webkit-keyframes right-animation {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(5vw, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
        transform: translate3d(5vw, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes right-animation {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(5vw, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
        transform: translate3d(5vw, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.right-animation {
    -webkit-animation-name: right-animation;
    animation-name: right-animation;
    transform-style: preserve-3d;
}

@-webkit-keyframes fadeup-animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        -webkit-transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        -o-transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeup-animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        -webkit-transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        -o-transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeup-animation {
    -webkit-animation-name: fadeup-animation;
    animation-name: fadeup-animation;
}

@-webkit-keyframes fadedown-animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
        -webkit-transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        -o-transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadedown-animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
        -webkit-transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        -o-transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadedown-animation {
    -webkit-animation-name: fadedown-animation;
    animation-name: fadedown-animation;
}

/* ========== Wow Animation End ========== */

/* ========== Common Start ========== */
.grecaptcha-badge {
    display: none !important;
}

.callus {
    font-weight: inherit;
}

.for-des {
    display: block !important;
}

.for-mob {
    display: none !important;
}

.for-des-flex {
    display: flex !important;
}

.for-mob-flex {
    display: none !important;
}

.menu-des {
    display: inline-block !important;
}

.menu-mob {
    display: none !important;
}

.container {
    position: relative;
    z-index: 5;
}

.back-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-banner .banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.main-banner .banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ajax-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 240, 240, 0.7);
    display: none;
    z-index: 5;
}

.ajax-loader i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    color: var(--primary-color);
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

@media (max-width: 991px) {
    .for-des,
    .scrolltop,
    .main-banner .banner-video {
        display: none !important;
    }

    .for-mob {
        display: block !important;
    }

    .for-des-flex {
        display: none !important;
    }

    .for-mob-flex {
        display: flex !important;
    }

    .menu-des {
        display: none !important;
    }

    .menu-mob {
        display: block !important;
    }
}

/*========== Modal Popup Start ==========*/

.modal {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    z-index: 1055;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: var(--modal-backdrop-color);
}

.modal-backdrop.in {
    opacity: var(--modal-backdrop-opacity);
}

/* .modal-open {
    position: fixed;
    width: 100%;
} */

html:has(body.modal-open), body.modal-open {
    overflow: hidden !important;
}

.modal-open .modal,
.modal-open {
    padding-right: 0 !important;
}

.modal-dialog {
    position: relative;
    width: auto;
    pointer-events: none;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.common-popup-text {
    padding: 20px 30px !important;
    max-height: 80vh;
    overflow: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}

.common-popup-text::-webkit-scrollbar {
    width: 3px;
}

.common-popup-text::-webkit-scrollbar-track {
    background: #cccccc;
}

.fade {
    transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.fade:not(.show):not(.in) {
    opacity: 0;
}

.fade.in,
.fade.show {
    opacity: 1;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: unset !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog,
.modal.in .modal-dialog {
    transform: none;
}

.modal.in {
    display: block;
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    outline: 0;
    border: none;
    overflow: hidden;
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}

.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
    border-radius: 0;
}

.modal-fullscreen .modal-body {
    overflow-y: auto;
}

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-header,
    .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto;
    }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-header,
    .modal-fullscreen-md-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto;
    }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-header,
    .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto;
    }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-header,
    .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto;
    }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-header,
    .modal-fullscreen-xxl-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto;
    }
}

@media (max-width: 767px) {
    .modal-dialog {
        max-width: unset;
        width: calc(100vw - 60px);
    }
}

@media (max-width: 400px) {
    .modal-dialog {
        width: calc(100vw - 30px);
    }

    .common-popup-text {
        padding: 20px 15px !important;
        max-height: 75vh;
    }
}

/*========== Modal Popup End ==========*/

/*========== Overflow Start ==========*/

.overflow-text {
    max-height: 300px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.overflow-text::-webkit-scrollbar,
[data-simplebar="init"]::-webkit-scrollbar,
.simplebar-scroll-content::-webkit-scrollbar {
    width: 0;
    opacity: 0 !important;
    display: none;
    clip-path: inset(0 0 30px 0);
}

.simplebar-track.horizontal {
    display: none;
}

.overflow-text::-webkit-scrollbar-thumb {
    opacity: 0 !important;
}

.overflow-text::-webkit-scrollbar-track {
    opacity: 0 !important;
}

.compensate-for-scrollbar {
    margin-right: 0 !important;
}

/*========== Overflow End ==========*/

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.order-first {
    order: -1 !important;
}

.order-0 {
    order: 0 !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-4 {
    order: 4 !important;
}

.order-5 {
    order: 5 !important;
}

.order-last {
    order: 6 !important;
}

.m-0 {
    margin: 0 !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-auto {
    margin-left: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.gap-0 {
    gap: 0 !important;
}

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

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1399.98px) {
    .table-responsive-xxl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (min-width: 576px) {
    .justify-content-sm-start {
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        justify-content: center !important;
    }

    .align-items-sm-start {
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        align-items: center !important;
    }

    .align-content-sm-start {
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        align-content: center !important;
    }

    .align-self-sm-start {
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        align-self: center !important;
    }

    .order-sm-first {
        order: -1 !important;
    }

    .order-sm-0 {
        order: 0 !important;
    }

    .order-sm-1 {
        order: 1 !important;
    }

    .order-sm-2 {
        order: 2 !important;
    }

    .order-sm-3 {
        order: 3 !important;
    }

    .order-sm-4 {
        order: 4 !important;
    }

    .order-sm-5 {
        order: 5 !important;
    }

    .order-sm-last {
        order: 6 !important;
    }

    .m-sm-0 {
        margin: 0 !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mx-sm-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-sm-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-sm-0 {
        margin-top: 0 !important;
    }

    .mt-sm-auto {
        margin-top: auto !important;
    }

    .me-sm-0 {
        margin-right: 0 !important;
    }

    .me-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-0 {
        margin-bottom: 0 !important;
    }

    .mb-sm-auto {
        margin-bottom: auto !important;
    }

    .ms-sm-0 {
        margin-left: 0 !important;
    }

    .ms-sm-auto {
        margin-left: auto !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .pt-sm-0 {
        padding-top: 0 !important;
    }

    .pe-sm-0 {
        padding-right: 0 !important;
    }

    .pb-sm-0 {
        padding-bottom: 0 !important;
    }

    .ps-sm-0 {
        padding-left: 0 !important;
    }

    .gap-sm-0 {
        gap: 0 !important;
    }

    .text-sm-center {
        text-align: center !important;
    }

    .text-sm-start {
        text-align: left !important;
    }

    .text-sm-end {
        text-align: right !important;
    }

    .modal-dialog {
        max-width: 500px;
        margin-right: auto;
        margin-left: auto;
    }

    .modal-sm {
        --modal-width: 300px;
    }
}

@media (min-width: 768px) {
    .justify-content-md-start {
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        justify-content: center !important;
    }

    .align-items-md-start {
        align-items: flex-start !important;
    }

    .align-items-md-end {
        align-items: flex-end !important;
    }

    .align-items-md-center {
        align-items: center !important;
    }

    .align-content-md-start {
        align-content: flex-start !important;
    }

    .align-content-md-end {
        align-content: flex-end !important;
    }

    .align-content-md-center {
        align-content: center !important;
    }

    .align-self-md-start {
        align-self: flex-start !important;
    }

    .align-self-md-end {
        align-self: flex-end !important;
    }

    .align-self-md-center {
        align-self: center !important;
    }

    .order-md-first {
        order: -1 !important;
    }

    .order-md-0 {
        order: 0 !important;
    }

    .order-md-1 {
        order: 1 !important;
    }

    .order-md-2 {
        order: 2 !important;
    }

    .order-md-3 {
        order: 3 !important;
    }

    .order-md-4 {
        order: 4 !important;
    }

    .order-md-5 {
        order: 5 !important;
    }

    .order-md-last {
        order: 6 !important;
    }

    .m-md-0 {
        margin: 0 !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-md-0 {
        margin-top: 0 !important;
    }

    .mt-md-auto {
        margin-top: auto !important;
    }

    .me-md-0 {
        margin-right: 0 !important;
    }

    .me-md-auto {
        margin-right: auto !important;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .mb-md-auto {
        margin-bottom: auto !important;
    }

    .ms-md-0 {
        margin-left: 0 !important;
    }

    .ms-md-auto {
        margin-left: auto !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .pt-md-0 {
        padding-top: 0 !important;
    }

    .pe-md-0 {
        padding-right: 0 !important;
    }

    .pb-md-0 {
        padding-bottom: 0 !important;
    }

    .ps-md-0 {
        padding-left: 0 !important;
    }

    .gap-md-0 {
        gap: 0 !important;
    }

    .text-md-center {
        text-align: center !important;
    }

    .text-md-start {
        text-align: left !important;
    }

    .text-md-end {
        text-align: right !important;
    }
}

@media (min-width: 992px) {
    .justify-content-lg-start {
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        justify-content: center !important;
    }

    .align-items-lg-start {
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        align-items: center !important;
    }

    .align-content-lg-start {
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        align-content: center !important;
    }

    .align-self-lg-start {
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        align-self: center !important;
    }

    .order-lg-first {
        order: -1 !important;
    }

    .order-lg-0 {
        order: 0 !important;
    }

    .order-lg-1 {
        order: 1 !important;
    }

    .order-lg-2 {
        order: 2 !important;
    }

    .order-lg-3 {
        order: 3 !important;
    }

    .order-lg-4 {
        order: 4 !important;
    }

    .order-lg-5 {
        order: 5 !important;
    }

    .order-lg-last {
        order: 6 !important;
    }

    .m-lg-0 {
        margin: 0 !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-lg-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }

    .mt-lg-auto {
        margin-top: auto !important;
    }

    .me-lg-0 {
        margin-right: 0 !important;
    }

    .me-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .mb-lg-auto {
        margin-bottom: auto !important;
    }

    .ms-lg-0 {
        margin-left: 0 !important;
    }

    .ms-lg-auto {
        margin-left: auto !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .pt-lg-0 {
        padding-top: 0 !important;
    }

    .pe-lg-0 {
        padding-right: 0 !important;
    }

    .pb-lg-0 {
        padding-bottom: 0 !important;
    }

    .ps-lg-0 {
        padding-left: 0 !important;
    }

    .gap-lg-0 {
        gap: 0 !important;
    }

    .text-lg-center {
        text-align: center !important;
    }

    .text-lg-start {
        text-align: left !important;
    }

    .text-lg-end {
        text-align: right !important;
    }

    .modal-lg,
    .modal-xl {
        --modal-width: 800px;
    }
}

@media (min-width: 1200px) {
    .justify-content-xl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        justify-content: center !important;
    }

    .align-items-xl-start {
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        align-items: center !important;
    }

    .align-content-xl-start {
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        align-content: center !important;
    }

    .align-self-xl-start {
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        align-self: center !important;
    }

    .order-xl-first {
        order: -1 !important;
    }

    .order-xl-0 {
        order: 0 !important;
    }

    .order-xl-1 {
        order: 1 !important;
    }

    .order-xl-2 {
        order: 2 !important;
    }

    .order-xl-3 {
        order: 3 !important;
    }

    .order-xl-4 {
        order: 4 !important;
    }

    .order-xl-5 {
        order: 5 !important;
    }

    .order-xl-last {
        order: 6 !important;
    }

    .m-xl-0 {
        margin: 0 !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mx-xl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-xl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xl-0 {
        margin-top: 0 !important;
    }

    .mt-xl-auto {
        margin-top: auto !important;
    }

    .me-xl-0 {
        margin-right: 0 !important;
    }

    .me-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xl-auto {
        margin-bottom: auto !important;
    }

    .ms-xl-0 {
        margin-left: 0 !important;
    }

    .ms-xl-auto {
        margin-left: auto !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .px-xl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .pt-xl-0 {
        padding-top: 0 !important;
    }

    .pe-xl-0 {
        padding-right: 0 !important;
    }

    .pb-xl-0 {
        padding-bottom: 0 !important;
    }

    .ps-xl-0 {
        padding-left: 0 !important;
    }

    .gap-xl-0 {
        gap: 0 !important;
    }

    .text-xl-center {
        text-align: center !important;
    }

    .text-xl-start {
        text-align: left !important;
    }

    .text-xl-end {
        text-align: right !important;
    }

    .modal-xl {
        --modal-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .justify-content-xxl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xxl-center {
        justify-content: center !important;
    }

    .align-items-xxl-start {
        align-items: flex-start !important;
    }

    .align-items-xxl-end {
        align-items: flex-end !important;
    }

    .align-items-xxl-center {
        align-items: center !important;
    }

    .align-content-xxl-start {
        align-content: flex-start !important;
    }

    .align-content-xxl-end {
        align-content: flex-end !important;
    }

    .align-content-xxl-center {
        align-content: center !important;
    }

    .align-self-xxl-start {
        align-self: flex-start !important;
    }

    .align-self-xxl-end {
        align-self: flex-end !important;
    }

    .align-self-xxl-center {
        align-self: center !important;
    }

    .order-xxl-first {
        order: -1 !important;
    }

    .order-xxl-0 {
        order: 0 !important;
    }

    .order-xxl-1 {
        order: 1 !important;
    }

    .order-xxl-2 {
        order: 2 !important;
    }

    .order-xxl-3 {
        order: 3 !important;
    }

    .order-xxl-4 {
        order: 4 !important;
    }

    .order-xxl-5 {
        order: 5 !important;
    }

    .order-xxl-last {
        order: 6 !important;
    }

    .m-xxl-0 {
        margin: 0 !important;
    }

    .m-xxl-auto {
        margin: auto !important;
    }

    .mx-xxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mx-xxl-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xxl-0 {
        margin-top: 0 !important;
    }

    .mt-xxl-auto {
        margin-top: auto !important;
    }

    .me-xxl-0 {
        margin-right: 0 !important;
    }

    .me-xxl-auto {
        margin-right: auto !important;
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xxl-auto {
        margin-bottom: auto !important;
    }

    .ms-xxl-0 {
        margin-left: 0 !important;
    }

    .ms-xxl-auto {
        margin-left: auto !important;
    }

    .p-xxl-0 {
        padding: 0 !important;
    }

    .px-xxl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .pt-xxl-0 {
        padding-top: 0 !important;
    }

    .pe-xxl-0 {
        padding-right: 0 !important;
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important;
    }

    .ps-xxl-0 {
        padding-left: 0 !important;
    }

    .gap-xxl-0 {
        gap: 0 !important;
    }

    .text-xxl-center {
        text-align: center !important;
    }

    .text-xxl-start {
        text-align: left !important;
    }

    .text-xxl-end {
        text-align: right !important;
    }
}

/* ========== Common End ========== */

/*========== White text Start ==========*/

.white-text p,
.white-text h1,
.white-text h2,
.white-text h3,
.white-text h4,
.white-text h5,
.white-text h6,
.white-text ul li,
.white-text label,
.white-text span:not(.wpcf7-form-control-wrap):not(.sec-btn span) {
    color: var(--white-color);
}

.white-form .form-input,
.white-form .input-text,
.white-form .select2-container--default .select2-selection--single .select2-selection__rendered,
.white-form select {
    background: transparent;
    border-color: var(--white-color);
    color: var(--white-color);
}

.white-form span.wpcf7-list-item-label:before,
.white-form .woocommerce-form__label-for-checkbox span:before,
.white-form .comment-form-cookies-consent label:before {
    border-color: var(--white-color);
    background: var(--white-color);
}

.white-form span.wpcf7-list-item-label:after,
.white-form .woocommerce-form__label-for-checkbox span:after,
.white-form .comment-form-cookies-consent label:after {
    background: var(--error-color);
}

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

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

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

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

.white-form .form-input::placeholder,
.white-form .input-text::placeholder {
    color: var(--white-color);
}

.white-form :is(select, label, .form-element i, .wpcf7 form .wpcf7-response-output) {
    color: var(--white-color) !important;
}

/*========== White text End ==========*/

/*========== Inner Page Start ==========*/

.privacy-content p:not(:last-child),
.entry-content p:not(:last-child) {
    margin-bottom: 15px;
}

.privacy-content ol,
.privacy-content ul,
.entry-content ol,
.entry-content ul {
    padding: 0;
}

.privacy-content ol li,
.entry-content ol li {
    list-style: decimal;
    margin-bottom: 10px;
}

.privacy-content ul li,
.entry-content ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.privacy-content .list-disk li,
.entry-content .list-disk li {
    list-style: disc;
}

@media (max-width: 575px) {
    .privacy-content ol,
    .privacy-content ul,
    .entry-content ol,
    .entry-content ul {
        margin-left: 20px;
    }
}

/*========== Inner Page End ==========*/

/*========== Thank You Page Start ==========*/

.thank-text {
    text-align: center;
    position: relative;
}

.thanks-icon {
    width: 100px;
    display: block;
    margin: 0 auto 40px;
}

.thanks-icon .checkmark {
    stroke-dashoffset: 745.74853515625;
    stroke-dasharray: 745.74853515625;
    animation: dash 2.5s linear infinite;
    stroke: var(--primary-color);
}

@keyframes dash {
    0% {
        stroke-dashoffset: 745.74853515625;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 575px) {
    .thanks-icon {
        width: 80px;
        margin: 0 auto 30px;
    }

    .thank-text h6 {
        font-size: 20px;
        line-height: 26px;
    }
}

/*========== Thank You Page End ==========*/

/*========== View All Services Start ==========*/

.footer-last {
    text-align: center;
    margin-top: 10px;
}

.all-services {
    display: none;
}

.menu-seo-menu-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
}

.menu-seo-menu-container ul li {
    display: inline-block;
}

.menu-seo-menu-container ul li:last-child a {
    margin: 0;
    padding: 0;
    border: none;
}

/*========== View All Services End ==========*/

/*========== SEO Page Start ==========*/

.main-seo-content .excerpt-content {
    max-height: 320px;
    margin-bottom: 30px;
    overflow: hidden;
}

@media (max-width: 575px) {
    .excerpt-content h3 {
        font-size: 20px;
        line-height: 26px;
    }
}

/*========== SEO Page End ==========*/

/*========== Blog Start ==========*/

.type-page,
.type-post {
    margin-bottom: 40px;
}

.type-page:last-child,
.type-post:last-child {
    margin-bottom: 0;
}

.entry-footer span {
    margin-right: 10px;
}

.post-thumbnail {
    display: block;
    margin: 0;
}

.type-post .entry-meta {
    margin: 15px 0;
}

.comment-form-comment label,
.type-post .entry-content p {
    margin-bottom: 10px;
}

.post-thumbnail img {
    width: 100%;
}

.widget-area .widget_search .wp-block-search,
.page-content .wp-block-search,
.search-form {
    position: relative;
}

.widget-area .widget_search .wp-block-search label,
.page-content .wp-block-search label {
    display: none;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.search-form label {
    width: 100%;
}

.wp-block-latest-comments__comment {
    list-style: disc;
}

.widget ul,
.widget ol,
.wp-block-latest-posts.wp-block-latest-posts__list {
    margin: 0;
    list-style: disc;
    padding-left: 20px;
}

.avatar.photo {
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    margin-right: 20px;
}

.entry-content {
    margin: 0;
}

.comment-form {
    font-size: 0;
    line-height: 1;
    margin-inline: calc(-0.5 * var(--gutter-x));
}

.comment-form p {
    font-size: 16px;
    display: inline-block;
    width: 100%;
    padding: 0 calc(0.5 * var(--gutter-x));
    margin-bottom: 15px;
}

.comment-form p.comment-form-author,
.comment-form p.comment-form-email {
    width: 50%;
    display: inline-block;
}

p.comment-form-cookies-consent {
    padding-left: 20px;
    margin-left: 15px;
    padding-right: 30px;
}

.form-submit .submit {
    box-shadow: none;
    padding: 0;
}

.widget-area {
    margin-top: 0;
    width: 100%;
}

.comment-form-cookies-consent {
    position: relative;
}

p.comment-form-cookies-consent > input {
    width: auto;
    display: inline-block;
    height: auto;
    padding: 0;
    -webkit-appearance: checkbox;
    appearance: checkbox;
    position: absolute;
    top: 8px;
    left: 0;
    opacity: 0 !important;
}

.widget_search .widget-title {
    display: none;
}

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

.comment-author.vcard {
    margin-bottom: 20px;
}

.comment-form-comment label {
    margin-bottom: 10px;
}

h2.widget-title {
    font-size: 24px;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous,
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    width: 100%;
    float: none;
}

.result-pagination li a,
.result-pagination li,
.result-pagination .page-numbers {
    border: none;
    outline: none;
    margin: 0 5px;
    z-index: 10;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.page-numbers:first-child {
    margin-left: 0;
}

.page-numbers:last-child {
    margin-right: 0;
}

a.next.page-numbers,
a.prev.page-numbers {
    width: auto;
    padding: 0 15px;
}

@media (max-width: 991px) {
    .widget-area,
    .single-post .widget-area {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .comment-form p.comment-form-author,
    .comment-form p.comment-form-email {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .entry-title {
        font-size: 24px;
    }

    .page-numbers li a,
    .page-numbers li,
    span.page-numbers,
    .page-numbers {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .page-numbers li {
        margin-bottom: 10px;
    }
}

/*========== Blog End ==========*/

/*========== Site Map Start ==========*/

.site-map ol li:last-child,
.site-map ul li:last-child {
    margin-bottom: 0;
}

/*========== Site Map End ==========*/

/* ========== Simplebar Start ========== */

[data-simplebar] {
    --simplebar-scrollbar-right-space: 10px;
    position: relative;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
}

[data-simplebar="init"] {
    padding-right: var(--simplebar-scrollbar-right-space);
    scrollbar-width: none;
}

[data-simplebar="init"]:not(.simplebar-scrollable-y) {
    padding-right: 0;
}

.simplebar-wrapper {
    overflow: hidden;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;
}

.simplebar-mask {
    direction: inherit;
    position: absolute;
    overflow: hidden;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    z-index: 0;
}

.simplebar-offset {
    direction: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
    direction: inherit;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
    width: auto;
    max-width: 100%; /* Not required for horizontal scroll to trigger */
    max-height: 100%; /* Needed for vertical scroll to trigger */
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
    content: " ";
    display: table;
}

.simplebar-placeholder {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
    box-sizing: inherit !important;
    height: 100%;
    width: 100%;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    flex-grow: inherit;
    flex-shrink: 0;
    flex-basis: 0;
}

.simplebar-height-auto-observer {
    box-sizing: inherit;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 1000%;
    width: 1000%;
    min-height: 1px;
    min-width: 1px;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.simplebar-track {
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

[data-simplebar].simplebar-dragging {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
    pointer-events: all;
}

.simplebar-scrollbar {
    position: absolute;
    left: 0;
    right: 0;
    min-height: 10px;
}

.simplebar-scrollbar:before {
    position: absolute;
    content: "";
    background: var(--scrollbar-thumb-color);
    border-radius: 7px;
    opacity: 1;
    transition: opacity 0.2s 0.5s linear;
    width: 100%;
}

.simplebar-scrollbar.simplebar-visible:before {
    opacity: 1;
    transition-delay: 0s;
    transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
    top: 0;
    width: 4px;
    background: var(--scrollbar-track-color);
    border-radius: 100vmax;
}

.simplebar-scrollbar:before {
    top: 0;
    bottom: 0;
    left: 0px;
}

.simplebar-track.simplebar-horizontal {
    left: 0;
    height: 4px;
    background: var(--scrollbar-track-color);
    border-radius: 100vmax
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    right: auto;
    left: 0;
    top: 0;
    bottom: 0;
    min-height: 0;
    min-width: 10px;
    width: auto;
}

/* Rtl support */
[data-simplebar-direction="rtl"] .simplebar-track.simplebar-vertical {
    right: auto;
    left: 0;
}

.simplebar-dummy-scrollbar-size {
    direction: rtl;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    height: 500px;
    width: 500px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
    width: 200%;
    height: 200%;
    margin: 10px 0;
}

.simplebar-hide-scrollbar {
    position: fixed;
    left: 0;
    visibility: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* ========== Simplebar End ========== */
