/*================================================================================================*/
/*=================[                                                            ]=================*/
/*=================[    !!!!!!!!   CSS CREATED BY WorkDO  !!!!!!!!   ]=================*/
/*=================[                                                            ]=================*/
/*================================================================================================*/
/* =========================== */
/* !! SITE PAGE USE !!
1.  home page

/* ============================================= */
/* !!!!         VARIABLES STYLE CSS         !!!! */
/* ============================================= */
:root {
    --first-font: "Quicksand";
    --second-font: "Nunito";
    --theme-color: #F5F5F5;
    --second-color: rgba(118, 100, 230, 0.1);
    --text-color: #555555;
    --primary-color: #7664E6;
    --border-color: #D9D9D9;
    --black: #111111;
    --white: #FFFFFF;
    --h1: normal 600 54px/1.2 var(--first-font);
    --h2: normal 600 42px/1.2 var(--first-font);
    --h3: normal 600 28px/1.2 var(--first-font);
    --h4: normal 600 24px/1.2 var(--first-font);
    --h5: normal 600 20px/1.2 var(--first-font);
    --h6: normal 600 18px/1.2 var(--first-font);
    --common-text: normal 500 16px/1.2 var(--second-font);
}

/* ============================================= */
/* !!!!        SITE GLOBAL STYLE CSS        !!!! */
/* ============================================= */

*,
:after,
:before {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    text-decoration: inherit;
    vertical-align: inherit;
}

html {
    outline: none;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: --body-text-colorscale;
    -webkit-text-size-adjust: 100%;
}

body,
html {
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

body::-moz-scrollbar {
    display: none;
}

::selection {
    background: rgb(17 35 46 / 28%);
}

svg,
img {
    max-width: 100%;
    display: block;
}

a,
.btn,
button {
    text-decoration: none;
    outline: none;
    color: inherit;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    display: inline-block;
    cursor: pointer;
}

a,
a:hover,
a:focus,
a:active,
input,
input:hover,
input:focus,
select,
select:hover,
select:focus,
textarea,
textarea:hover,
textarea:focus,
button,
button:hover,
button:focus,
.btn,
.btn:hover,
.btn:focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
    text-decoration: none;
    -webkit-text-decoration-skip: objects;
    outline: none;
}

.form-control:focus,
[type="text"]:focus,
[type="email"]:focus,
[type="checkbox"]:focus,
[type="password"]:focus,
[type="file"]:focus,
[type="radio"]:focus,
[type="button"]:focus,
[type="submit"]:focus,
[type="date"]:focus,
[type="time"]:focus,
[type="tel"]:focus,
[type="search"]:focus,
[type="button"]:focus,
[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

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

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

::placeholder {
    color: var(--text-color);
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    font-size: 100%;
    list-style: none;
    vertical-align: baseline;
}

body {
    font: var(--common-text);
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background: var(--theme-color);
    color: var(--black);
}

/* ============================================= */
/* !!!!         SITE TYPOGRAPHY CSS         !!!! */
/* ============================================= */
p,
li,
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
    font: var(--common-text);
}

p {
    color: var(--text-color);
}

h1,
.h1 {
    font: var(--h1);
}

h2,
.h2 {
    font: var(--h2);
}

h3,
.h3 {
    font: var(--h3);
}

h4,
.h4 {
    font: var(--h4);
}

h5,
.h5 {
    font: var(--h5);
}

h6,
.h6 {
    font: var(--h6);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.uppercase {
    text-transform: uppercase;
}

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

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

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

b {
    font-weight: bold;
    display: inline-block;
}

p:not(:last-of-type) {
    margin-bottom: 15px;
}

/* ============================================= */
/* !!!!             GRID CSS                !!!! */
/* ============================================= */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.no-gutters {
    margin: 0 !important;
}

.row [class*="col-"] {
    padding: 0 15px;
}

.no-gutters [class*="col-"] {
    padding: 0;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.flex {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.align-start {
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-end {
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-center {
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
}

.justify-center {
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
}

.justify-between {
    justify-content: space-between;
    -ms-flex-pack: justify;
}

.justify-around {
    justify-content: space-around;
    -ms-flex-pack: distribute;
}

.justify-start {
    justify-content: flex-start;
    -ms-flex-pack: start;
}

.justify-end {
    justify-content: flex-end;
    -ms-flex-pack: end;
}

.row-reverse {
    flex-direction: row-reverse;
}

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

.no-wrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}


/*****  Columns  *****/
.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%;
}


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

    .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%;
    }

}

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

    .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%;
    }

}

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

    .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%;
    }

}

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

    .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%;
    }


}

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

    .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%;
    }

}

/* ============================================= */
/* !!!!          NICE SELECT CSS           !!!! */
/* ============================================= */
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    border: solid 1px var(--border-color);
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    outline: none;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 10px 35px 10px 15px;
    width: 100%;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.nice-select:after {
    content: '';
    display: block;
    height: 10px;
    width: 11px;
    pointer-events: none;
    position: absolute;
    right: 15px;
    top: 50%;
    background: url(../images/menu-dropdown.svg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 11px;
    -webkit-transition: -webkit-transform .3s linear;
    transition: -webkit-transform .3s linear;
    -o-transition: transform .3s linear;
    transition: transform .3s linear;
    transition: transform .3s linear, -webkit-transform .3s linear;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.nice-select.open:after {
    transform: translateY(-50%) rotate(180deg);
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -moz-transform: scale(1) translateY(0);
    -o-transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: var(--border-color);
    color: var(--border-color);
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    color: var(--black);
    background-color: var(--white);
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.7);
    box-sizing: border-box;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 2;
    width: 100%;
    -moz-transform: scale(0.75) translateY(-21px);
    -o-transform: scale(0.75) translateY(-21px);
    -moz-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -ms-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -o-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 500;
    list-style: none;
    outline: none;
    padding-left: 14px;
    padding-right: 14px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    margin: 0 !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #eae9e9;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

/* ============================================= */
/* !!!!          COMMON BUTTON              !!!! */
/* ============================================= */
.btn {
    position: relative;
    z-index: 1;
    text-align: center;
    text-transform: capitalize;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--white);
    background-color: var(--primary-color);
    border: 1px solid var(--white);
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.btn:hover,
.btn:focus {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    color: var(--black);
    background: transparent;
    justify-content: center;
    text-transform: capitalize;
    line-height: 1;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.btn-secondary svg path {
    fill: var(--white);
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.btn-secondary:hover svg path {
    fill: var(--black);
}

.btn-secondary:hover {
    background: var(--primary-color);
    border: 1px solid var(--white);
    color: var(--white);
}

.img-wrapper {
    position: relative;
    width: 100%;
    display: block;
}

.img-wrapper img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    object-position: center;
}

/* ============================================= */
/* !!!!             FORM  CSS               !!!! */
/* ============================================= */
.form-control,
input:not([type="submit"]),
input:not([type="checkbox"]),
input:not([type="button"]),
input:not([type="radio"]),
select,
textarea {
    position: relative;
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: var(--black);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}



textarea {
    resize: none;
}

sup {
    top: -0.5em;
}

sub,
sup {
    position: relative;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    margin-left: 5px;
}

.form-group label sup {
    color: red;
    font-size: 10px;
    line-height: 0;
    margin-right: 3px;
}

/***** COMMON CSS ****/

body.no-scroll {
    overflow: hidden;
    position: relative;
}

.pt {
    padding-top: 70px;
}

.pb {
    padding-bottom: 70px;
}

.subtitle {
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.section-title {
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

/*** swiper slider ****/
.swiper-wrapper {
    height: auto;
}

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

.flex-slider .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
}

.flex-slider .flex-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.flex-slider .flex-card-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* swiper slider css arrow  */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    z-index: 2;
    outline: none;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 18px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--white);
    border-color: var(--black);
}

.swiper-button-prev svg path,
.swiper-button-next svg path {
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.swiper-button-prev:hover svg path,
.swiper-button-next:hover svg path {
    fill: var(--black);
}

.swiper-button-next svg {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.swiper {
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}


@media (min-width:768px) {

    .swiper:hover .tab-btn-wrapper .swiper-button-next,
    .swiper:hover .tab-btn-wrapper .swiper-button-prev {
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
        -o-transform: scaleX(1);
    }

    .swiper-button-prev {
        transform-origin: left;
        transform: scaleX(0);
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -o-transform: scaleX(0);
    }

    .swiper-button-next {
        transform-origin: right;
        transform: scaleX(0);
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -o-transform: scaleX(0);
    }
}

/* ============================================= */
/* !!!!                 Header              !!!! */
/* ============================================= */
.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 3;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

.site-header.fixed .sticky-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 3;
    width: auto;
    background-color: var(--white);
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    border-bottom: 1px solid var(--border-color);
}

.site-header .main-navigationbar {
    padding: 20px 0px;
}

.site-header .main-navigationbar .logo-col {
    max-width: 100px;
    width: 100%;
}

.site-header .main-navigationbar .logo-col a {
    display: block;
}



.site-header .main-navigationbar .menu-items-col .main-nav>li:not(:last-of-type) {
    padding-right: 25px;
}

.site-header .main-navigationbar .menu-items-col .main-nav>li a {
    position: relative;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    font-family: var(--first-font);
}

.site-header .main-navigationbar .menu-items-col .main-nav>li a:hover {
    color: var(--primary-color);
}

.site-header .main-navigationbar .main-nav li>a:before {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    height: 2px;
    width: 0;
    background: var(--primary-color);
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.site-header .main-navigationbar .main-nav li>a:hover::before {
    opacity: 1;
    max-width: 60%;
    width: 100%;
    visibility: visible;
}

.site-header .menu-item-right .contact-btn a svg {
    height: 21px;
    width: 20px;
    display: none;
}

.site-header .menu-item-right .contact-btn a svg path {
    fill: var(--white);
}

.menu-item-right ul li:not(:first-of-type) {
    margin-left: 15px;
}

.site-header .mobile-menu .mobile-menu-button {
    display: inline-block;
}

.site-header .mobile-menu .mobile-menu-button:hover {
    background-color: var(--primary-color);
}

.site-header .mobile-menu .mobile-menu-button div {
    width: 20px;
    height: 3px;
    margin: 3px 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: var(--white);
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

.change .one {
    transform: translate(0, 6px) rotate(-45deg);
    -webkit-transform: translate(0, 6px) rotate(-45deg);
    -moz-transform: translate(0, 6px) rotate(-45deg);
    -ms-transform: translate(0, 6px) rotate(-45deg);
    -o-transform: translate(0, 6px) rotate(-45deg);
}

.change .two {
    opacity: 0;
}

.change .three {
    transform: translate(0, -6px) rotate(45deg);
}

/********* FOOTER CSS START ********/
.site-footer {
    position: relative;
    z-index: 1;
    background-color: var(--second-color);
    color: var(--black);
    margin-top: 70px;
}

.site-footer .footer-wrapper {
    padding: 100px 0 70px;
}

.footer-wrapper .footer-left {
    max-width: 450px;
    width: 100%;
}

.site-footer .footer-logo {
    padding-bottom: 40px;
}

.site-footer .footer-logo a {
    max-width: 200px;
    width: 100%;
}

.site-footer .subscribe-form-wrapper {
    margin: 0 0 20px 0;
}

.site-footer .subscribe-form-wrapper .input-wrapper {
    border: 1px solid var(--black);
    padding: 5px 5px 5px 12px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.site-footer .subscribe-form-wrapper input {
    color: var(--black);
    background-color: transparent;
    flex: 1;
    margin: 0 15px 0 0;
    border: 0;
    padding: 0;
}

.site-footer .subscribe-form-wrapper input::placeholder {
    color: var(--black);
}

.site-footer .subscribe-form-wrapper .subscribe-btn {
    padding: 10px 15px;

}

.site-footer .subscribe-form-wrapper .subscribe-btn:hover,
.site-footer .subscribe-form-wrapper .subscribe-btn:focus {
    color: var(--black);
    border-color: var(--black);
    background-color: transparent;
}

.footer-wrapper .footer-left p {
    color: var(--black);
}

.site-footer .footer-right {
    max-width: calc(100% - 500px);
    width: 100%;
}

.site-footer .footer-col {
    flex: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    width: 100%;
}

.site-footer .footer-col:not(:first-child) {
    padding-left: 40px;
}

.site-footer .footer-col h2 {
    position: relative;
    font-size: 22px;
    text-transform: capitalize;
    margin: 0 0 25px 0;
}

.site-footer .footer-col h2:after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 15%;
    height: 2px;
    background-color: var(--primary-color);
}

.site-footer .footer-widget ul li {
    color: var(--black);
    text-transform: capitalize;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.site-footer .footer-widget ul.acnav-list1>li:not(:last-of-type) {
    margin-bottom: 12px;
}

.site-footer .footer-widget ul li a {
    border-bottom: 1px solid transparent;
}

.site-footer .footer-widget ul li a:hover {
    border-color: var(--primary-color);
}

.site-footer .footer-widget ul li a,
.site-footer .footer-widget ul li p {
    display: inline;
    font-size: 17px;
    color: var(--black);
}

.site-footer .footer-widget ul li span {
    font-weight: 600;
}

.site-footer .footer-bottom {
    padding: 15px 0px;
    border-top: 1px solid #555555;
}

.footer-bottom p {
    font-size: 18px;
    color: var(--black);
}

.site-footer .footer-bottom .footer-bottom-inner p a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer .footer-social-icon li:not(:last-of-type) {
    margin-right: 15px;
}

.site-footer .footer-social-icon li a {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--second-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.site-footer .footer-social-icon li a svg {
    width: 16px;
    height: 16px;
}

.site-footer .footer-social-icon li svg path {
    fill: var(--white);
}


/********* APPOINTMENT SECTION START ********/
.appointment-sec {
    position: relative;
    z-index: 1;
    background: var(--second-color);
}

.steps ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.steps ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.steps ul li.active span {
    background-color: var(--primary-color);
    color: var(--white);
}

.steps ul li:not(:last-of-type)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 50px;
    border: 2px solid #D9D9D9;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.steps ul li.active:not(:last-of-type)::after {
    border: 2px solid var(--primary-color);
}

.steps ul li span {
    display: flex;
    margin: 0;
    width: 30px;
    height: 30px;
    text-align: center;
    color: var(--white);
    background: #888888;
    position: relative;
    justify-content: center;
    z-index: 1;
    align-items: center;
    transition: all 500ms ease-in-out 0s;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    -o-border-radius: 20px;
    font-family: var(--second-font);
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.steps ul li:not(:last-of-type) {
    padding-right: 70px;
}

.form-group label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.appointment-sec .appointment-wrp {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--white);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.appointment-sec .nice-select {
    color: #888888;
}

.appointment-sec .nice-select {
    background-color: rgb(255, 255, 255, .1);
}

.appointment-sec .steps {
    margin-bottom: 40px;
}

.appointment-sec .step-btns {
    border-top: 1px dashed var(--border-color);
    padding-top: 25px;
    margin-top: 10px;
    display: flex;
    justify-content: end;
    gap: 15px;
}


.appointment-sec .appointment-wrp .section-title {
    margin-bottom: 20px;
}

.checkbox-custom input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.appointment-sec .checkbox-custom label {
    background: #D9D9D9;
    border: 1px solid var(--border-color);
    color: var(--black);
    font-size: 14px;
    width: 100%;
    gap: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.appointment-sec .checkbox-custom label svg {
    height: 16px;
    width: 16px;
}

.appointment-sec .checkbox-custom label svg path {
    fill: var(--black);
}

.step-container {
    clear: both;
    display: none;
    left: 100%;
}

.step-container.active {
    display: block;
}

.appointment-sec .check-box-div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.appointment-sec .check-box-div li {
    max-width: 20%;
    flex: 0 0 20%;
    padding: 0px 15px 15px 0px;
}

.appointment-sec .checkbox-custom input:checked+label {
    background: var(--primary-color);
    color: var(--white);
}

.appointment-sec .checkbox-custom input:checked+label svg path {
    fill: var(--white);
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
}

.tab-content {
    visibility: hidden;
    opacity: 0;
    height: 0;
}

.tab-content.active {
    visibility: visible;
    opacity: 1;
    height: 100%;
}

.appointment-sec .tabs {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.appointment-sec .tabs li a {
    padding: 0px 0px 10px;
    color: var(--text-color);
    letter-spacing: 1px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.appointment-sec .tabs li.active a {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.appointment-sec .form-group input::placeholder {
    color: var(--text-color);
}

.radio-group input[type="radio"] {
    display: none;
    padding: 0;
    border: 0;
    background: transparent;
}

.payment-method-form .radio-group {
    margin-bottom: 15px;
}

.payment-method-form .radio-group .radio-img img {
    height: 40px;
    width: 40px;
}

.payment-method-form .radio-group label {
    position: relative;
    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;
    cursor: pointer;
    gap: 15px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 10px 30px;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.payment-method-form .radio-group label p {
    color: var(--black);
}

.radio-group label::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid #888888;
    border-radius: 50%;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    transition: border-color 500ms ease;
    -webkit-transition: border-color 500ms ease;
    -moz-transition: border-color 500ms ease;
    -ms-transition: border-color 500ms ease;
    -o-transition: border-color 500ms ease;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.radio-group label::after {
    content: "";
    position: absolute;
    width: 19px;
    height: 19px;
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    top: 50%;
    right: 30px;
    transform: translateY(-50%) scale(0);
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transition: transform 500ms ease;
    -webkit-transition: transform 500ms ease;
    -moz-transition: transform 500ms ease;
    -ms-transition: transform 500ms ease;
    -o-transition: transform 500ms ease;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.radio-group input[type="radio"]:checked+label::before {
    border-color: var(--primary-color);
}

.radio-group input[type="radio"]:checked+label::after {
    transform: translateY(-50%) scale(0.55);
    -webkit-transform: translateY(-50%) scale(0.55);
    -moz-transform: translateY(-50%) scale(0.55);
    -ms-transform: translateY(-50%) scale(0.55);
    -o-transform: translateY(-50%) scale(0.55);
}

/* change steps color according theme start */
.steps ul li .services {
    background: var(--border-color);
    color: var(--black);
}

.steps ul li.active .services {
    background: var(--primary-color);
    color: var(--white);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color) !important;
}
/* change steps color according theme end */


/******** HOME BANNER SEC  ********/
.home-banner-sec {
    background-size: cover;
    position: relative;
    background-position: center;
    height: auto;
    width: 100%;
    z-index: 1;
    padding: 170px 0 100px;
}

.layer1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
}


.layer2 {
    position: absolute;
    top: 40%;
    right: 10%;
    width: 90px;
}

.home-banner-sec .banner-content {
    text-align: center;
    max-width: 60%;
    margin: 0 auto;
}

.home-banner-sec .banner-content .subtitle {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 12px 20px;
    max-width: 250px;
    width: 100%;
    margin: 0 auto 15px;
}

.home-banner-sec .banner-content h2 {
    font-weight: 400;
    font-size: 70px;
    margin-bottom: 20px;
}

.home-banner-sec .banner-content p {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.banner-card {
    background: rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(2px);
    border: 1px solid var(--white);
    height: 100%;
}

.banner-card2 {
    margin-top: 60px;
}

.banner-card-wrapper .box {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    color: #00be9c;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.05);
}

.banner-card-wrapper {
    margin-top: 100px;
    gap: 10px;
    flex-wrap: nowrap;
}

.banner-card-wrapper .box svg {
    width: 30px;
    height: 30px;
}

.banner-card-inner .banner-card-head {
    gap: 10px;
}

.banner-card-head .right-content {
    gap: 5px;
    display: flex;
    flex-direction: column;
}

.banner-card-head .right-content span {
    font-weight: 500;
    display: block;
}

.banner-card-head .right-content a {
    text-decoration: underline;
    font-weight: 600;
}

.banner-card-head .right-content a:hover {
    color: var(--primary-color);
}

.parameters {
    gap: 10px;
    margin-top: 10px;
    max-width: 250px;
}

.parameters .checkbox-custom .btn {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-color);
    border: none;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    cursor: pointer;
}

.parameters .checkbox-custom input:checked+label {
    background: var(--primary-color);
    color: var(--white);
}

.banner-card-content .banner-box {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    border: 1px solid var(--white);
    padding: 15px 20px;
}

.banner-card-content h2 {
    text-align: center;
    margin: 20px 0;
}

.banner-card-content .banner-box p {
    max-width: 150px;
    color: var(--black);
}

.banner-card-content .counting::after {
    content: "k+";
}

.doctor-image {
    margin-top: -130px;
    margin-bottom: -10px;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/************  ABOUT SEC CSS ********/
.about-sec {
    background-color: var(--second-color);
}

.about-image-left {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.about-image-left img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-right h2 span {
    color: var(--primary-color);
}

.about-content-right h2 {
    margin-bottom: 20px;
}

/*****************  OUR SERVICE SEC CSS  *******/
.section-title h2 span {
    color: var(--primary-color);
}

.our-service-card {
    border-radius: 10px;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.our-service-image {
    position: relative;
    padding-top: 50%;
}

.our-service-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.our-service-content {
    background-color: var(--second-color);
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.our-service-content p,
.our-service-content h3 {
    margin-bottom: 15px;
}
.our-service-content p{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.our-service-content h3 a{
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-content-top {
    flex: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    height: 100%;
    width: 100%;
}

.our-service-card {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.our-service-slider .swiper-slide {
    display: flex;
    height: auto;
}

/*************  BOOK APPOINTMENT SEC CSS  ********/
.book-appointment-sec {
    background: var(--second-color);
    padding: 40px 0;
}

.appointmen-dec p {
    margin-bottom: 10px;
}

.hours-dec,
.appointmen-dec {
    max-width: 300px;
    margin: 0 auto;
}

.emergency-dec {
    max-width: 250px;
    margin: 0 auto;
}

.appointmen-dec h2,
.emergency-dec h2,
.hours-dec h2 {
    margin-bottom: 15px;
}

.hours-time li:not(:last-of-type) {
    margin-bottom: 10px;
}

.emergency-dec a {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
}

/*************** OUR TEAM SEC CSS  **********/
.our-team-card {
    border-radius: 10px;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.our-team-image {
    position: relative;
    padding-top: 100%;
}

.our-team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
}

.our-team-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-team-content {
    background: var(--second-color);
    padding: 15px;
}

.our-team-content h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.our-team-content h4 {
    color: var(--text-color);
    font-weight: 500;
}

/************ APPOINTMENT BANER SEC CSS   ********/
.appointment-banner-sec {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.appointment-banner-sec::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: -1;
}

.book-appointment-wrp h2 {
    color: var(--white);
}

.book-appointment-wrp {
    max-width: 1200px;
    margin: 0 auto;
}

.book-appointment-wrp .btn:hover {
    color: var(--white);
    border-color: var(--white);
}

/*********  TESTIMONIAL SEC CSS    **********/
.testimonial-sec .testimonial-card-inner {
    background: var(--second-color);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.testimonial-sec .testimonial-client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-sec .testimonial-client-info h3 {
    margin-bottom: 5px;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.testimonial-top-content {
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-top-content .testimonial-rating-wrapper img {
    max-width: 100px;
    width: 100%;
}

.testimonial-top-content .testimonial-rating-wrapper {
    margin-bottom: 15px;
}

.testimonial-client-info .client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.testimonial-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-bottom-content .client-icon svg {
    max-width: 50px;
    height: 50px;
}

.testimonial-top-content p {
    color: var(--black);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-slider {
    max-width: 1200px;
    width: 100%;
}

/*********** HOME BLOG SEC CSS   ***********/
.blog-card-image .blog-image {
    position: relative;
    display: block;
    padding-top: 70%;
}

.blog-card-image .blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    position: relative;
    max-width: 85%;
    width: 100%;
    margin: -50px auto 0;
    padding: 15px;
    background-color: var(--white);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.blog-card {
    position: relative;
    width: 100%;
    height: 100%;
}

.blog-card-image {
    border-radius: 10px;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.home-blog-sec .blog-content .blog-card-info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.home-blog-sec .blog-content .blog-card-info svg {
    width: 22px;
    height: 22px;
}

.home-blog-sec .blog-content .blog-card-info .blog-user,
.home-blog-sec .blog-content .blog-card-info .blog-date {
    gap: 7px;
}

.blog-content-top h3 {
    margin-bottom: 15px;
}

/********* CONTACT US CSS ********/
.contact-us {
    background-color: var(--second-color);
}

.contact-us .contact-form {
    height: 100%;
    padding: 30px;
    background-color: #EFEFEF;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.contact-us .contact-form h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-us .contact-form .form-group input {
    background-color: var(--white);
}

.contact-us .contact-form .form-group textarea {
    background-color: var(--white);
}

.contact-us .contact-form .form-container:last-of-type {
    padding-top: 0;
}

.contact-form .form-container .form-control {
    background-color: var(--white);
    padding: 10px 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-container .contact-btn {
    max-width: 170px;
    width: 100%;
    margin: 0 auto;
}

.contact-left-image {
    position: relative;
    overflow: hidden;
    padding-top: 50%;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.contact-left-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Appointment info - service tax and promo code start */

.appointment_info_details p{
    background-color: var(--second-color);
  color: var(--black);
  border: 1px solid var(--theme-color);
  font-size: 18px;
  line-height: 1;
  display: block;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 0;
}
/* Appointment info - service tax and promo code end */

.promo-code-wrapper{
    margin-top: 8px;
}

/* additional services module css */
.additional-count-controls .additional-decrement {
    background-color: var(--primary-color) !important;
}
.additional-count-controls .additional-increment{
    background-color: var(--primary-color) !important;
}
.additional_wrp .additional-view-inner{
    border: 1px solid var(--primary-color) !important;
}
.additional_wrp::-webkit-scrollbar-thumb
{
	background-color: var(--primary-color) !important;
}
.additional-count-controls{
    border: 1px solid var(--primary-color) !important; 
}
.additional-item  input[type="checkbox"]:checked+.additional-view-inner {
    border: 1px solid #0db02bbd !important;
}
