:root {
    --theme-color: #824fe7;
    --theme-color2: #5726b8;
    --theme-secondary-color: #371b70;
    --theme-light-color: #c2b4dc;
    --theme-light-color2: #f7f3ff;
    --theme-light-color3: #968bff;
    --white: #fff;
    --black: #000;
    --gray999: #999;
    --gray888: #888;
    --gray777: #777;
    --gray666: #666;
    --gray555: #555;
    --gray222: #222;
    --border-color: #ddd;
    --border-color2: #ececec;
    --bg-gray: #f0f0f0;
    --bg-gray2: #fcfaff;
    --text-black: #010101;
    --green: #26b881;
    --green-dark: #198059;
    --light-green: #e8fff6;
    --light-red: #ffe8ea;
    --red: #cc2c39;
    --dark-red: #941923;

    --main-font: "Poppins", sans-serif;;
    --p-font: "Inter", sans-serif;
    --g-font: "Material Icons";

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 900;

    --transition: 0.5s all ease-in-out;
    --style-transition: all 0.25s cubic-bezier(.93,-0.16,0,1.35);
    --small-transition: 0.2s all ease-in-out;

    --small-radius: 3px;
    --common-radius: 5px;
    --large-radius: 10px;
}

html,
body,
div,
span,
applet,
object,
iframe,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
picture,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
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;
    border: 0;
    font-size: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--p-font);
    background: var(--white);
    color: var(--black);
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

a:hover {
    color: var(--theme-color);
}

::selection {
    background: var(--theme-secondary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--theme-secondary-color);
    color: var(--white);
}

::-webkit-selection {
    background: var(--theme-secondary-color);
    color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

li {
    margin: 0;
    padding: 0;
}

p {
    padding: 0;
    color: var(--gray555);
    font-size: 16px;
    font-family: var(--p-font);
    margin: 0 0 15px 0;
    font-weight: var(--fw-regular);
    line-height: 2;
}

i {
    font-style: normal;
}

p > a {
    color: var(--theme-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: var(--main-font);
    color: var(--title-colour);
    line-height: 1.17;
}

p b {
    font-weight: 500;
}

input,
select,
button {
    outline: none !important;
}

textarea {
    outline: none;
}

textarea:focus {
    outline: none !important;
}

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

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    
    user-select: none;
}

html {
    scrollbar-width: thin;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

*::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(202, 202, 202, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(202, 202, 202, 0.3);
    background-color: var(--white);
}

*::-webkit-scrollbar {
    width: 3px;
    background-color: var(--white);
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(48, 44, 44, 0.3);
}


::-webkit-input-placeholder {
    opacity: 1;
}

::-moz-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

:-moz-placeholder {
    opacity: 1;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: none;
}
.form-control::placeholder{
    color: var(--gray999);
    opacity: 0.4;
}

.imgBox,
.imgBox > img{
    width: 100%;
}

.esContainer{
    max-width: 1600px;
    padding: 0 80px;
    margin: 0 auto;
}
.esContainerFluid{
    max-width: 1920px;
    padding: 0 40px;
    margin: 0 auto;
}
.esContainerBox{
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.btn{
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    min-width: 200px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border: none;
    font-weight: var(--fw-medium);
}
.btnCom{
    width: 300px;
    height: 60px;
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: var(--fw-medium);
    color: var(--white);
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.btn-primary{
    background-color: var(--theme-color);
}
.btn-normal{
    background-color: var(--white);
}
.btn-primary:hover,
.btn-normal:hover{
    background-color: var(--theme-secondary-color);
    color: var(--white);
}

.btn-light{
    background-color: var(--theme-light-color2);
    color: var(--theme-color2);
}
.btn-light:hover{
    background-color: var(--theme-color2);
    color: var(--white);
}

.btn-success{
    background-color: var(--green);
    color: var(--white);
}
.btn-success:hover{
    background-color: var(--green-dark);
}

.btn-danger{
    background-color: var(--red);
}
.btn-danger:hover{
    background-color: var(--dark-red);
}

.btn-normal{
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--gray555);
}
.btn-normal:hover{
    background-color: var(--border-color2);
    border: 1px solid var(--border-color);
    color: var(--gray555);
}

.line-btn{
    font-size: 14px;
    text-transform: capitalize;
    color: var(--gray555);
    font-weight: var(--fw-medium);
    cursor: pointer;
    background-color: transparent;
    border: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.line-btn:hover{
    color: var(--theme-color2);
}

.line-btn.withIcon{
    display: flex;
    align-items: center;
}
.line-btn.withIcon .material-symbols-outlined{
    width: 30px;
    height: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    background-color: var(--theme-light-color2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--theme-color2);
    margin: 0 12px 0 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.line-btn.withIcon:hover .material-symbols-outlined{
    background-color: var(--theme-color);
    color: var(--white);
}

.btn-sm{
    height: 45px;
}

.material-symbols-outlined{
    font-weight: 300;
}

.titleBar{
    display: inline-block;
}
.titleBar .subTitle{
    display: inline-block;
    padding: 3px 20px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border: 1px solid var(--border-color);
    text-transform: uppercase;
    color: var(--gray999);
    background-color: var(--white);
    font-size: 12px;
    margin: 0 0 12px;
    letter-spacing: 1.5px;
}
.titleBar .mainTitle{
    text-transform: capitalize;
    font-size: 35px;
    font-weight: var(--fw-medium);
    color: var(--text-black);
}

/* Custom Item */
.customCheckbox{
    min-height: 20px;
    display: flex;
    align-items: center;
}
.customCheckbox label{
    position: relative;
    padding: 0 0 0 30px;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--gray777);
    letter-spacing: 0.4px;
    cursor: pointer;
}
.customCheckbox label a{
    color: var(--theme-color);
}
.customCheckbox label a:hover{
    color: var(--theme-secondary-color)
}
.customCheckbox label input[type="checkbox"]{
    display: none;
}
.customCheckbox label span{
    width: 20px;
    height: 20px;
    border-radius: var(--small-radius);
    -webkit-border-radius: var(--small-radius);
    -moz-border-radius: var(--small-radius);
    -ms-border-radius: var(--small-radius);
    -o-border-radius: var(--small-radius);
    position: absolute;
    display: block;
    border: 1px solid var(--border-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.customCheckbox label input[type="checkbox"]:checked + span{
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.customCheckbox label span::before{
    content: '\e5ca';
    position: absolute;
    font-family: var(--g-font);
    font-size: 14px;
    color: var(--white);
    font-weight: 100;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.customCheckbox label input[type="checkbox"]:checked + span::before{
    opacity: 1;
    visibility: visible;
}
/* Custom Item Ends */

/* Header */
.esHeader{
    width: 100%;
    padding: 25px 0;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
}
.esHeader::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(40px);
    z-index: -1;
}
.esHeader .esHeaderIn{
    display: flex;
    align-items: center;
}
.esHeader .esHeaderIn > *{
    display: flex;
    width: 33.33%;
}
.esHeader .esHeaderIn > nav ul{
    display: flex;
    margin: -12px;
}
.esHeader .esHeaderIn > nav ul li{
    padding: 12px;
}
.esHeader .esHeaderIn > nav ul li a{
    color: var(--gray555);
    font-size: 15px;
    text-transform: capitalize;
}
.esHeader .esHeaderIn > nav ul li a:hover{
    color: var(--theme-color);
}
.esHeader .esHeaderIn > nav ul li a > svg{
    width: 24px;
    fill: var(--gray555);
}
.esHeader .esHeaderIn > nav ul li a:hover > svg{
    fill: var(--theme-color);
}
.esHeader .esHeaderIn > nav ul li.hasChild{
    position: relative;
}
.esHeader .esHeaderIn > nav ul li.hasChild > a{
    position: relative;
    padding: 0 20px 2px 0;
}
.esHeader .esHeaderIn > nav ul li.hasChild > a::after{
    content: '\e313';
    font-family: var(--g-font);
    font-size: 17px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    color: var(--gray999);
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
}
.esHeader .esHeaderIn > nav ul li.hasChild.active > a{
    color: var(--theme-color);
}
.esHeader .esHeaderIn > nav ul li.hasChild.active > a::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);
}
.esHeader .esHeaderIn > nav ul li.hasChild > ul{
    position: absolute;
    width: 992px;
    max-height: 576px;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    background-color: var(--white);
    top: 95px;
    z-index: 5;
    box-shadow: 0 10px 50px -10px #824fe73b;
    overflow-y: auto;
    padding: 20px 25px;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
    opacity: 0;
    visibility: hidden;
}
.esHeader .esHeaderIn > nav ul li.hasChild > ul.active{
    opacity: 1;
    visibility: visible;
    top: 85px;
}
.esHeader .esHeaderIn > nav ul li.hasChild > ul > li{
    width: calc(100% / 3);
    padding: 0;
    border: 1px solid var(--white);
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.esHeader .esHeaderIn > nav ul li.hasChild > ul > li:hover{
    border-color: var(--border-color)
}
.esHeader .esHeaderIn > nav ul li.hasChild > ul > li > a{
    padding: 15px 20px;
    display: block;
    width: 100%;
}
.esHeader .esHeaderIn > .imgBox{
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.esHeader .esHeaderIn > .imgBox img{
    width: 150px;
}
.esHeader .esHeaderIn > div{
    display: flex;
    justify-content: flex-end;
}
.esHeader .esHeaderIn > div ul{
    display: flex;
    align-items: center;
    margin: -12px;
}
.esHeader .esHeaderIn > div > ul > li{
    padding: 12px;
}

.esHeader .esHeaderIn > div > ul > li #searchHere{
    cursor: pointer;
}

.esHeader .esHeaderIn > div > ul > li.active > a{
    position: relative;
}
.esHeader .esHeaderIn > div > ul > li.active > a::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 5px;
    background-color: var(--theme-color);
    top: -4px;
    left: 50%;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.esHeader .esHeaderIn > div ul button{
    background-color: var(--white);
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    text-transform: uppercase;
    padding: 5px;
    font-size: 14px;
    min-width: 230px;
    height: 35px;
    font-weight: var(--fw-medium);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    letter-spacing: 1.5px;
    line-height: 1;
}
.esHeader .esHeaderIn > div ul button:hover{
    background-color: var(--theme-secondary-color);
    border-color: var(--theme-secondary-color);
    color: var(--white);
}
.esHeader .esHeaderIn > div ul li svg{
    width: 24px;
    fill: var(--gray555);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.esHeader .esHeaderIn > div > ul > li:hover a svg,
.esHeader .esHeaderIn > div > ul > li:focus a svg{
    fill: var(--theme-color);
}
.esHeader .esHeaderIn > div ul li a{
    display: block;
    cursor: pointer;
}
/* Header Ends */

/* Banner */
.bannerSec{
    width: 100%;
}
.bannerSec .inner{
    position: relative;
}
.bannerSec .inner::after{
    content: '';
    position: absolute;
    width: 50%;
    height: 70%;
    background-image: url(../images/dot-bg.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: 0.1;
    right: calc(100% - 33em);
    bottom: -50%;
}
.bannerSec .bannerSwiper{
    overflow: hidden;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
}
.bannerSec .bannerSwiper .imgBox{
    position: relative;
}
.bannerSec .bannerSwiper .imgBox::before{
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: rgb(15,15,15);
    background: -moz-linear-gradient(90deg, rgba(15,15,15,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(15,15,15,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(90deg, rgba(15,15,15,1) 0%, rgba(255,255,255,0) 100%);
    left: 0;
    top: 0;
    opacity: 0.7;
}
.bannerSec .bannerSwiper .imgBox .esCnt{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    max-width: 33.33%;
    padding: 20px 0 0 30px;
}
.bannerSec .bannerSwiper .imgBox .esCnt::before,
.bannerSec .bannerSwiper .imgBox .esCnt::after{
    content: '';
    position: absolute;
    background-color: var(--white);
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
    left: 0;
    top: 0;
}
.bannerSec .bannerSwiper .imgBox .esCnt::before{
    width: 5px;
    height: 30px;
}
.bannerSec .bannerSwiper .imgBox .esCnt::after{
    width: 30px;
    height: 5px;
}


.bannerSec .bannerSwiper .imgBox .esCnt .mainTitle{
    color: var(--white);
    font-size: 45px;
    line-height: 55px;
    margin: 0 0 10px;
}
.bannerSec .bannerSwiper .imgBox .esCnt p{
    color: var(--white);
    font-size: 25px;
    margin: 0 0 40px;
    display: flex;
}
.bannerSec .bannerSwiper .imgBox .esCnt .btnWrap{
    display: flex;
}
.bannerSec .bannerSwiper .imgBox .esCnt .btnWrap > *{
    margin: 0 15px 0 0;
}
.bannerSec .bannerSwiper .imgBox .esCnt .btnWrap > .btn{
    min-width: 60px;
    display: none;
}

.bannerSec .bannerSwiper .swiper-pagination{
    width: auto;
    height: 100%;
    display: flex;
    top: 0;
    bottom: auto;
    right: 30px;
    left: auto;
    flex-direction: column;
    justify-content: center;
}
.bannerSec .bannerSwiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.bannerSec .bannerSwiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 10px 0;
}
.bannerSec .bannerSwiper .swiper-pagination-bullet{
    background-color: var(--white);
    width: 10px;
    height: 10px;
}
/* Banner Ends */

/* About Section */
.abtSec{
    width: 100%;
    padding: 100px 0 0 0;
    overflow: hidden;
}
.abtSec .inner{
    position: relative;
    margin: -20px -20px 50px -20px;
    display: flex;
    flex-wrap: wrap;
}

.abtSec .inner > *{
    padding: 20px;
}
.abtSec .inner .esLt{
    width: 25%;
}
.abtSec .inner .esRt{
    width: calc(100% - 25%);
}
.abtSec .inner .esRt p{
    font-size: 20px;
    line-height: 2;
    margin: 0 0 25px;
}
.abtSec .inner .esRt p:last-child{
    margin: 0;
}
.abtSec .inner .esRt a{
    margin: 50px 0 0;
}

.abtSec .esBlock{
    display: flex;
    margin: -20px;
    position: relative;
}
.abtSec .esBlock > img{
    position: absolute;
    width: 50%;
    left: calc(100% - 14em);
    bottom: 5em;
    opacity: 0.1;
}
.abtSec .esBlock .esItem{
    padding: 20px;
}
.abtSec .esBlock .esItem .esItemIn{
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    overflow: hidden;
    position: relative;
}
.abtSec .esBlock .esItem .esItemIn::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--theme-secondary-color);
    opacity: 0.7;
    z-index: 1;
}
.abtSec .esBlock .esItem .esItemIn .esCnt{
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
    width: 70%;
}
.abtSec .esBlock .esItem .esItemIn .esCnt .count{
    display: block;
    margin: 0 0 20px;
    color: var(--white);
    text-transform: uppercase;
    font-size: 70px;
    font-weight: var(--fw-semibold);
}
.abtSec .esBlock .esItem .esItemIn .esCnt .mainTitle{
    font-size: 40px;
    text-transform: capitalize;
    font-weight: var(--fw-semibold);
    color: var(--white);
}
.abtSec .esBlock .esItem .esItemIn .esCnt p{
    font-size: 15px;
    line-height: 1.7;
    color: var(--white);
}
.abtSec .esBlock .esItem .esItemIn .imgBox{
    position: relative;
}
.abtSec .esBlock .esItem .esItemIn .imgBox i{
    width: 30px;
    height: 30px;
    background-color: var(--theme-color);
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    z-index: 3;
    animation: pulse 0.5s alternate-reverse infinite;
    -webkit-animation: pulse 0.5s alternate-reverse infinite;
    transform-style: preserve-3d;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
@keyframes pulse {
    to {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    
    from {
        transform: scale(2);
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
    }
}
.abtSec .esBlock .esItem .esItemIn:hover .imgBox i{
    opacity: 1;
    visibility: visible;
}
/* About Section Ends */

/* Disciplines Section */
.servSec{
    width: 100%;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.servSec .titleBar{
    margin: 0 0 30px;
}
.servSec p{
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
    margin: 0 0 70px;
}
.servSec .inner{
    position: relative;
}
.servSec .inner::before,
.servSec .inner::after{
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    filter: blur(5em);
    -webkit-filter: blur(5em);
    opacity: 0.5;
}
.servSec .inner::before{
    background-color: var(--theme-color);
    top: -100px;
    left: calc(100% - 2em);
}
.servSec .inner::after{
    background-color: #ffaef2;
    bottom: 0;
    right: calc(100% - 5em);
}
.servSec .discipSwiper .imgBox{
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    overflow: hidden;
    display: block;
    position: relative;
}
.servSec .discipSwiper .swiper-slide > a:not(.imgBox){
    font-size: 17px;
    color: var(--gray666);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    text-align: center;
    margin: 20px 0 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.servSec .discipSwiper .swiper-slide:hover > a:not(.imgBox){
    color: var(--theme-color);
    letter-spacing: 1.5px;
}
.servSec .discipSwiper .imgBox::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--theme-secondary-color);
    opacity: 0.5;
    top: 0;
    left: 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}
.servSec .discipSwiper .swiper-slide:hover .imgBox::before{
    opacity: 0.3;
    visibility: visible;
}
.servSec .discipSwiper .imgBox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.servSec .discipSwiper .swiper-slide:hover .imgBox img{
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
.servSec .discipSwiper .imgBox .material-symbols-outlined{
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 300;
    z-index: 2;
    top: 10px;
    right: 10px;
    background-color: var(--theme-color);
    color: var(--white);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}
.servSec .discipSwiper .swiper-slide:hover .imgBox .material-symbols-outlined{
    opacity: 1;
    visibility: visible;
    top: 20px;
    right: 20px;
}
.servSec .discipSwiper .imgBox .material-symbols-outlined:hover{
    background-color: var(--white);
    color: var(--theme-color);
}

.swiper-button-next, .swiper-button-prev{
    width: 60px;
    height: 60px;
    background-color: var(--theme-light-color2);
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    user-select: none; /* standard syntax */
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}
.swiper-button-next:hover, 
.swiper-button-prev:hover{
    background-color: var(--theme-color);
}
.swiper-button-next::after, 
.swiper-button-prev::after{
    display: none;
}
.swiper-button-next .material-symbols-outlined, 
.swiper-button-prev .material-symbols-outlined{
    color: var(--theme-color);
    font-size: 35px;
    font-weight: 300;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.swiper-button-next:hover .material-symbols-outlined, 
.swiper-button-prev:hover .material-symbols-outlined{
    color: var(--white);
}

.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled{
    opacity: 1;
    cursor: pointer;
    pointer-events:all;
}
/* Disciplines Section Ends */

/* Preferred Disciplines */
.prefDiscipSec{
    width: 100%;
    margin: 0 auto 100px auto;
    overflow: hidden;
    position: relative;
    
}
.prefDiscipSec .titleBar{
    position: absolute;
    left: 0;
    top: 0;
}
.prefDiscipSec .esBlock{
    display: flex;
    align-items: stretch;
    margin: -20px;
    height: 60em;
}
.prefDiscipSec .esBlock .esItem{
    width: calc(100% / 4);
}
.prefDiscipSec .esBlock .esItem .imgBox .inner{
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    overflow: hidden;
    display: block;
    position: relative;
    height: 100%;
}
.prefDiscipSec .esBlock .esItem .imgBox .inner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--theme-secondary-color);
    opacity: 0.5;
    top: 0;
    left: 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}
.prefDiscipSec .esBlock .esItem .imgBox .inner:hover::before{
    opacity: 0.5;
    visibility: visible;
}
.prefDiscipSec .esBlock .esItem .imgBox .material-symbols-outlined{
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 300;
    z-index: 2;
    top: 10px;
    right: 10px;
    background-color: var(--theme-color);
    color: var(--white);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}
.prefDiscipSec .esBlock .esItem .imgBox:hover .material-symbols-outlined{
    top: 20px;
    right: 20px;
    opacity: 1;
    visibility: visible;
}
.prefDiscipSec .esBlock .esItem .imgBox span:not(.material-symbols-outlined){
    position: absolute;
    color: var(--white);
    z-index: 3;
    left: 10px;
    bottom: 10px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.prefDiscipSec .esBlock .esItem .imgBox:hover span:not(.material-symbols-outlined){
    bottom: 20px;
    left: 20px;
    opacity: 1;
    visibility: visible;
}
.prefDiscipSec .esBlock .esItem .imgBox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prefDiscipSec .esBlock .esItem:first-child .imgBox .inner{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.prefDiscipSec .esBlock .esItem:last-child .imgBox .inner{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.prefDiscipSec .esBlock .esItem:nth-child(2) .esItemIn,
.prefDiscipSec .esBlock .esItem:nth-child(3) .esItemIn{
    display: flex;
    flex-wrap: wrap;
}
.prefDiscipSec .esBlock .esItem:nth-child(2) .imgBox:first-child,
.prefDiscipSec .esBlock .esItem:nth-child(3) .imgBox:last-child{
    height: 40%;
}
.prefDiscipSec .esBlock .esItem:nth-child(2) .imgBox:last-child,
.prefDiscipSec .esBlock .esItem:nth-child(3) .imgBox:first-child{
    height: 60%;
}

.prefDiscipSec .esBlock .esItem .esItemIn,
.prefDiscipSec .esBlock .esItem .imgBox{
    height: 100%;
}
.prefDiscipSec .esBlock .esItem .imgBox{
    padding: 20px;
}
.prefDiscipSec .esBlock .esItem:nth-child(2),
.prefDiscipSec .esBlock .esItem:nth-child(3){
    margin-top: 120px;
}

.prefDiscipSec .esBlock .esItem:first-child .esItemIn,
.prefDiscipSec .esBlock .esItem:last-child .esItemIn{
    padding: 0 0 100px 0;
}
/* Preferred Disciplines Ends */

/* Expert Section */
.topExprtSec .titleBar{
    background-color: var(--theme-color2);
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    padding: 70px 50px 100px 50px;
    width: 100%;
    text-align: center;
    position: relative;
}
.topExprtSec .titleBar::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 60px;
    background-color: var(--theme-light-color3);
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.topExprtSec .titleBar .subTitle{
    background-color: var(--theme-light-color3);
    border-color: var(--theme-light-color3);
    color: var(--white);
}
.topExprtSec .titleBar .mainTitle{
    color: var(--white);
}

.topExprtSec .inner{
    margin: -50px 0 0 0;
}
.topExprtSec .expertSwiper{
    margin: 0 0 60px;
}
.topExprtSec .expertSwiper .swiper-slide .imgBox{
    display: block;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    overflow: hidden;
    position: relative;
}
.topExprtSec .expertSwiper .swiper-slide .imgBox::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--theme-secondary-color);
    opacity: 0.5;
    top: 0;
    left: 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}
.topExprtSec .expertSwiper .swiper-slide .imgBox:hover::before{
    opacity: 0.5;
    visibility: visible;
}
.topExprtSec .expertSwiper .swiper-slide .imgBox > span{
    background-color: var(--white);
    border-radius:  var(--common-radius);
    -webkit-border-radius:  var(--common-radius);
    -moz-border-radius:  var(--common-radius);
    -ms-border-radius:  var(--common-radius);
    -o-border-radius:  var(--common-radius);
    padding: 10px 7px;
    width: calc(100% - 20px);
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
}
.topExprtSec .expertSwiper .swiper-slide .imgBox > span .name{
    font-family: var(--main-font);
    font-size: 17px;
    color: var(--gray222);
    text-align: center;
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-weight: var(--fw-medium);
}
.topExprtSec .expertSwiper .swiper-slide .imgBox > span ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.topExprtSec .expertSwiper .swiper-slide .imgBox > span ul li{
    font-size: 14px;
    color: var(--gray888);
}
.topExprtSec .expertSwiper .swiper-slide .imgBox > span ul li.number{
    margin: 0 0 0 5px;
    padding: 2px 7px;
    border-radius: var(--small-radius);
    -webkit-border-radius: var(--small-radius);
    -moz-border-radius: var(--small-radius);
    -ms-border-radius: var(--small-radius);
    -o-border-radius: var(--small-radius);
    background-color: var(--theme-color);
    color: var(--white);
    font-weight: var(--fw-semibold);
    font-size: 11px;
}
/* Expert Section Ends */

/* Expert join Section */
.exprtJoinSec{
    width: 100%;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.exprtJoinSec .inner{
    background-color: var(--bg-gray);
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    display: flex;
    align-items: stretch;
    padding: 40px 60px;
    position: relative;
}
.exprtJoinSec .inner::before,
.exprtJoinSec .inner::after{
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: url(../images/small-dot-bg.svg) repeat;
    z-index: -1;
    background-position: right;
}
.exprtJoinSec .inner::before{
    right: 50px;
    top: -117px;
}
.exprtJoinSec .inner::after{
    right: calc(100% - 6em);
    bottom: -94px;
    width: 100%;
}
.exprtJoinSec .inner > *{
    padding: 20px;
}
.exprtJoinSec .inner > .esLt{
    width: 33.33%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.exprtJoinSec .inner > .esLt .mainTitle{
    font-size: 45px;
    text-transform: capitalize;
}
.exprtJoinSec .inner > .esLt .btnWrap{
    position: relative;
    width: 100%;
}
.exprtJoinSec .inner > .esLt .btnWrap .btnJoin{
    background-color: var(--black);
    color: var(--white);
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
    padding: 10px 25px;
    text-transform: uppercase;
    display: inline-block;
    font-size: 17px;
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    position: relative;
}
.exprtJoinSec .inner > .esLt .btnWrap .btnJoin::before{
    content: '';
    position: absolute;
    width: 100px;
    height: 1px;
    background-color: var(--black);
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.exprtJoinSec .inner > .esLt .btnWrap .btnJoin::after{
    content: '';
    position: absolute;
    width: 17px;
    height: 17px;
    background-color: var(--black);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    left: 240px;
    top: 15px;
    animation: pulse-animation 2s infinite;
    -webkit-animation: pulse-animation 2s  infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}
.exprtJoinSec .inner > .esRt{
    width: calc(100% - 33.33%);
}
.exprtJoinSec .inner > .esRt p{
    margin: 0;
    font-size: 20px;
    line-height: 2;
}
/* Expert join Section Ends */

/* Testimonials Section */
.testiSec{
    width: 100%;
    position: relative;
    margin: 0 0 60px;
}
.testiSec .titleBar{
    margin: 0 0 50px;
}
.testiSec .esBlock{
    margin: -20px -20px 50px -20px;
    display: flex;
    align-items: stretch;
}
.testiSec .esBlock > *{
    padding: 20px;
}
.testiCard{
    width: 100%;
}
.testiCard p{
    font-size: 17px;
    color: var(--gray666);
    line-height: 30px;
    margin: 0 0 40px;
    line-height: 2;
}
.testiCard .testiNameWrap{
    width: 100%;
    position: relative;
}
.testiCard .testiNameWrap .icon{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.testiCard .testiNameWrap .icon .material-symbols-outlined{
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: var(--theme-color);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    background-color: var(--theme-light-color2);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-variation-settings: "FILL" 1;
}
.testiCard:hover .testiNameWrap .icon .material-symbols-outlined{
    background-color: var(--theme-color);
    color: var(--white);
    font-variation-settings: "FILL" 0;
}
.testiCard .testiNameWrap .esCnt{
    padding: 0 0 0 80px;
}
.testiCard .testiNameWrap .esCnt .starRating{
    line-height: 1;
    display: flex;
    margin: 0 0 5px -3px;
}
.testiCard .testiNameWrap .esCnt .starRating .material-symbols-outlined{
    font-variation-settings: "FILL" 1;
    font-size: 20px;
    color: var(--theme-light-color);
}
.testiCard .testiNameWrap .esCnt .mainTitle{
    font-size: 15px;
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    color: var(--gray555);
}
/* Testimonials Section Ends */

/* Extra Value Section */
.extraValueSec{
    width: 100%;
    position: relative;
    padding: 40px 0 0 0;
    margin: 0 0 40px;
    border-top: 1px solid var(--border-color);
}
.extraValueSec .esBlock{
    margin: 0 -20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.extraValueSec .esBlock > *{
    width: calc(100% / 4);
    position: relative;
}
.extraValueSec .esBlock > *::after{
    content: '';
    position: absolute;
    width: 1px;
    height: 70%;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-color: var(--theme-color);
    opacity: 0.1;
}
.extraValueSec .esBlock > *:last-child::after{
    display: none;
}
.extraValueSec .esBlock .esItem .esItemIn{
    position: relative;
}
.extraValueSec .esBlock .esItem .esItemIn .icon{
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
}
.extraValueSec .esBlock .esItem .esItemIn .icon .material-symbols-outlined{
    font-size: 55px;
    color: var(--theme-light-color3);
    font-variation-settings: 'FILL' 0 !important;
}
.extraValueSec .esBlock .esItem .titleBar{
    margin: 0;
    padding: 0 0 0 65px;
}
.extraValueSec .esBlock .esItem .titleBar .subTitle{
    margin: 0 0 5px;
    padding: 0;
    border: none;
}
.extraValueSec .esBlock .esItem .titleBar .mainTitle{
    font-size: 20px;
    font-weight: var(--fw-regular);
    color: var(--theme-secondary-color);
}
/* Extra Value Section Ends */

/* Footer */
.mainFootSec{
    background-color: var(--theme-secondary-color);
    width: 100%;
    padding: 100px 0 0 0;
    position: relative;
    overflow: hidden;
}
.newsletterWrap{
    background-color: var(--theme-color);
    padding: 20px 40px 20px 80px;
    border-radius: 200px;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    -ms-border-radius: 200px;
    -o-border-radius: 200px;
    display: flex;
    align-items: center;
    margin: -20px -20px 80px -20px;
    position: relative;
    z-index: 1;
}
.newsletterWrap > *{
    padding: 20px;
}
.newsletterWrap .titleBar{
    width: 40%;
}
.newsletterWrap form{
    width: calc(100% - 40%);
    display: flex;
    position: relative;
}
.newsletterWrap form .material-symbols-outlined{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 45px;
    color: #e4e1ff;
    font-size: 35px;
    font-weight: 200;
}
.newsletterWrap form .form-control{
    height: 80px;
    padding: 0 200px 0 75px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border: none;
    color: var(--white);
    font-size: 17px;
    font-weight: var(--fw-regular);
    background-color: var(--theme-color);
    box-shadow: 0 5px 25px -10px #5726b8;
}
.newsletterWrap form .form-control::placeholder{
    opacity: 1;
    color: var(--white);
}
.newsletterWrap form .newsBtn{
    position: absolute;
    right: 30px;
    height: 60px;
    min-width: 180px;
    border: none;
    background-color: var(--theme-color2);
    text-transform: uppercase;
    font-weight: var(--fw-medium);
    font-size: 14px;
    color: var(--white);
    letter-spacing: 2px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.newsletterWrap form .newsBtn:hover{
    background-color: var(--theme-secondary-color);
}
.newsletterWrap form .newsBtn > span{
    display: none;
}

.newsletterWrap .titleBar .subTitle {
    background-color: #b691ff;
    border-color: #b691ff;
    color: var(--white);
}
.newsletterWrap .titleBar .mainTitle{
    color: var(--white);
}

.mainFootSec .inner{
    position: relative;
}
.mainFootSec .inner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 450px;
    background: url(../images/dot-bg.svg) repeat;
    background-position: left;
    background-size: 50%;
    left: calc(100% - 20em);
    top: -32em;
    filter: brightness(1);
    -webkit-filter: brightness(1);
    opacity: 0.1;
}
.mainFootSec .inner .esBlock{
    display: flex;
    flex-wrap: wrap;
    margin: -40px;
}
.mainFootSec .inner .esBlock > *{
    width: calc(100% / 4);
    padding: 40px;
}
.mainFootSec .inner .esBlock .footTitle{
    font-family: var(--main-font);
    color: var(--theme-light-color);
    font-size: 20px;
    text-transform: capitalize;
    font-weight: var(--fw-medium);
    display: block;
    margin: 0 0 00px;
    position: relative;
    padding: 0 0 20px;
}
.mainFootSec .inner .esBlock .footTitle::after{
    content: '';
    position: absolute;
    width: 30px;
    height: 5px;
    background-color: var(--theme-color);
    left: 0;
    bottom: 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.mainFootSec .inner .esBlock .imgBox{
    width: 220px;
    display: block;
    margin: 0 0 40px;
}
.mainFootSec .inner .esBlock > *:first-child a:not(.imgBox){
    margin: 0 0 30px;
    font-size: 17px;
    color: var(--white);
    display: block;
    font-weight: var(--fw-regular);
    padding: 0 0 0 60px;
    position: relative;
    letter-spacing: 1px;
}
.mainFootSec .inner .esBlock > *:first-child a:not(.imgBox) > .material-symbols-outlined{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    font-size: 22px;
    color: var(--white);
    background-color: var(--theme-light-color3);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.mainFootSec .inner .esBlock ul.socialLinks{
    display: flex;
    margin: 0 -5px;
}
.mainFootSec .inner .esBlock ul.socialLinks li{
    padding: 0 5px;
}
.mainFootSec .inner .esBlock ul.socialLinks li a:not(.imgBox){
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    margin: 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    padding: 0;
}
.mainFootSec .inner .esBlock ul.socialLinks li:first-child a,
.mainFootSec .inner .esBlock ul.socialLinks li a:hover{
    background-color: var(--theme-light-color3);
}
.mainFootSec .inner .esBlock ul.socialLinks li a svg{
    width: 20px;
}
.mainFootSec .inner .esBlock ul.socialLinks li a svg{
    fill: var(--white);
}

.mainFootSec .inner .esBlock ul:not(.socialLinks){
    display: flex;
    flex-wrap: wrap;
    margin: 40px -10px -10px -10px;
}
.mainFootSec .inner .esBlock ul:not(.socialLinks) li{
    width: 100%;
    padding: 10px;
}
.mainFootSec .inner .esBlock ul:not(.socialLinks) li a:not(.imgBox){
    font-size: 17px;
    color: var(--white);
    margin: 0;
}
.mainFootSec .inner .esBlock ul:not(.socialLinks) li a:not(.imgBox):hover{
    opacity: 0.7;
}

.footBtm{
    border-top: 1px solid #492f7e;
    margin: 60px 0 0 0;
    padding: 30px 0;
}
.footBtm p{
    text-align: center;
    color: var(--white);
    margin: 0;
    font-size: 15px;
    letter-spacing: 1px;
}
/* Footer Ends */

/* Scroll Top */
#spnTop {
    right: 40px;
    bottom: 30px;
    background-color: var(--theme-color);
    position: fixed;
    line-height: 1;
    width: 35px;
    height: 50px;
    color: var(--white);
    font-size: 17px;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
#spnTop.showTop {
    bottom: 40px;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
#spnTop.showTop.showBtm {
    bottom: 95px;
}
#spnTop:hover {
    background-color: var(--theme-color2);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
#spnTop .material-symbols-outlined{
    font-size: 22px;
}
/* Scroll Top Ends */

/* Breadcrumb */
.breadcrumbSec{
    width: 100%;
    box-shadow: 0 50px 50px -27px rgba(38, 18, 70, 0.267);
    border-top: 1px dashed var(--border-color);
    position: relative;
    z-index: 1;
}
.breadcrumbSec ul{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    margin: 0 auto;
}
.breadcrumbSec ul li{
    position: relative;
    padding: 0 20px;
}
.breadcrumbSec ul li::after{
    content: '\e5cc';
    position: absolute;
    font-family: var(--g-font);
    font-size: 16px;
    background-color: var(--theme-light-color2);
    color: #c0acea;
    width: 20px;
    height: 20px;
    border-radius: var(--small-radius);
    -webkit-border-radius: var(--small-radius);
    -moz-border-radius: var(--small-radius);
    -ms-border-radius: var(--small-radius);
    -o-border-radius: var(--small-radius);
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.breadcrumbSec ul li:last-child::after{
    display: none;
}
.breadcrumbSec ul li,
.breadcrumbSec ul li a{
    text-transform: capitalize;
    font-size: 13px;
}
.breadcrumbSec ul li{
    color: var(--gray999);
}
.breadcrumbSec ul li a{
    color: var(--text-black);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.breadcrumbSec ul li a:hover{
    color: var(--theme-color);
}
/* Breadcrumb Ends */

/* Login Page */
.loginSec{
    width: 100%;
    padding: 50px 0 80px 0;
}
.loginSec .inner{
    display: flex;
    align-items: stretch;
    margin: -20px;
    min-height: 500px;
}
.loginSec .inner > *{
    width: 50%;
    padding: 20px;
}
.loginSec .inner > .esLt{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.loginSec .inner > .esLt > *{
    padding: 0 70px 0 50px;
}
.loginSec .inner > .esLt .titleBar .mainTitle{
    position: relative;
    padding: 0 0 0 70px;
    margin: 0 0 20px;
    font-size: 25px;
    display: flex;
    flex-direction: column;
}
.loginSec .inner > .esLt .titleBar .mainTitle > span{
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray999);
    display: block;
    margin: 0 0 5px;
}
.loginSec .inner > .esLt .titleBar .mainTitle > img{
    width: 50px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    animation: wave-animation 2s infinite ;
    -webkit-animation: wave-animation 2s infinite ;
}
@keyframes wave-animation {
    0% {
        transform: rotate(0deg) translateY(-50%);
        -webkit-transform: rotate(0deg) translateY(-50%);
        -moz-transform: rotate(0deg) translateY(-50%);
        -ms-transform: rotate(0deg) translateY(-50%);
        -o-transform: rotate(0deg) translateY(-50%);
    }
    10% {
        transform: rotate(30deg) translateY(-50%);
        -webkit-transform: rotate(30deg) translateY(-50%);
        -moz-transform: rotate(30deg) translateY(-50%);
        -ms-transform: rotate(30deg) translateY(-50%);
        -o-transform: rotate(30deg) translateY(-50%);
}
    20% {
        transform: rotate(-8deg) translateY(-50%);
        -webkit-transform: rotate(-8deg) translateY(-50%);
        -moz-transform: rotate(-8deg) translateY(-50%);
        -ms-transform: rotate(-8deg) translateY(-50%);
        -o-transform: rotate(-8deg) translateY(-50%);
    }
    30% {
        transform: rotate(14deg) translateY(-50%);
        -webkit-transform: rotate(14deg) translateY(-50%);
        -moz-transform: rotate(14deg) translateY(-50%);
        -ms-transform: rotate(14deg) translateY(-50%);
        -o-transform: rotate(14deg) translateY(-50%);
    }
    40% {
        transform: rotate(-4deg) translateY(-50%);
        -webkit-transform: rotate(-4deg) translateY(-50%);
        -moz-transform: rotate(-4deg) translateY(-50%);
        -ms-transform: rotate(-4deg) translateY(-50%);
        -o-transform: rotate(-4deg) translateY(-50%);
    }
    50% {
        transform: rotate(10deg) translateY(-50%);
        -webkit-transform: rotate(10deg) translateY(-50%);
        -moz-transform: rotate(10deg) translateY(-50%);
        -ms-transform: rotate(10deg) translateY(-50%);
        -o-transform: rotate(10deg) translateY(-50%);
    }
    60% {
        transform: rotate(0deg) translateY(-50%);
        -webkit-transform: rotate(0deg) translateY(-50%);
        -moz-transform: rotate(0deg) translateY(-50%);
        -ms-transform: rotate(0deg) translateY(-50%);
        -o-transform: rotate(0deg) translateY(-50%);
    }
}
.loginSec .inner > .esLt .titleBar p{
    line-height: 1.4;
    font-size: 15px;
    margin: 0 0 30px;
    color: var(--gray888);
}

.loginSec .inner .esRt .imgBox{
    background-color: var(--bg-gray);
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    overflow: hidden;
    height: 100%;
}
.loginSec .inner .esRt .imgBox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customForm .form-label{
    text-transform: capitalize;
    color: var(--gray999);
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: var(--fw-regular);
}

textarea.form-control,
.form-control,
.form-select,
.customForm input[type="text"],
.customForm input[type="password"],
.customForm input[type="email"],
.customForm input[type="tel"],
.customForm input[type="number"]{
    min-height: 50px;
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
    font-size: 15px;
    font-weight: var(--fw-regular);
    color: var(--gray555);
    letter-spacing: 0.5px;
    padding: 0 20px;
}
.customForm input[type="text"],
.customForm input[type="password"],
.customForm input[type="email"],
.customForm input[type="tel"],
.customForm input[type="number"]{
    box-shadow: inset 0 0 0 30px white;
}
.customForm .error{
    color: #ca4848;
    font-size: 12px;
    margin: 0;
    line-height: 2;
}
.customForm .row{
    margin-bottom: 15px;
}

.customForm .mainTitle{
    font-size: 24px;
    color: var(--gray222);
    margin: 5px 0 20px 0;
    text-transform: capitalize;
    font-weight: var(--fw-medium);
}

.customForm ul.checkList{
    display: flex;
    flex-wrap: wrap;
    margin: -7px -7px 0 -7px;
}
.customForm ul.checkList li{
    padding: 7px;
}

textarea.form-control{
    padding: 15px 20px;
    max-height: 150px;
    resize: none;
}

.loginExtra p{
    text-align: center;
    font-weight: var(--fw-semibold);
    margin: 30px 0 20px 0;
    color: var(--gray555);
}
.loginExtra p a{
    text-transform: capitalize;
}
.loginExtra p a:hover{
    color: var(--theme-secondary-color);
}
.loginExtra .btnWrap{
    display: flex;
    justify-content: space-between;
    margin: 0 0 20px;
}
.loginExtra .btnWrap > *{
    width: 48%;
}
.loginExtra .btnWrap .btn{
    height: 50px;
    font-size: 14px;
}

.logGogBtn a{
    display: flex;
    padding: 10px;
    border: 1px dashed var(--theme-color);
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--theme-color2)
}
.logGogBtn a img{
    width: 23px;
    margin: 0 10px 0 0;
}
/* Login Page Ends */

/* Bootstrap Select */
.customForm .bootstrap-select.form-control{
    padding: 0;
}
.bootstrap-select > .dropdown-toggle{
    min-height: 45px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--dark-text);
    font-weight: var(--fw-regular);
}
.bootstrap-select .dropdown-toggle .filter-option{
    display: flex;
    align-items: center;
}
.bootstrap-select .dropdown-menu{
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}
.bootstrap-select .dropdown-menu.hide{
    max-height: 0 !important;
    height: 0 !important;
    min-height: auto !important;
    opacity: 0;
}
/* Bootstrap Select Ends */

/* Modal */
.modal-body,
.modal-header,
.modal-footer{
    border-color: var(--border-color);
    padding: 20px 30px;
}
.btn-close{
    --bs-btn-close-bg: none;
    width: 30px;
    height: 30px;
    border-radius: var(--small-radius);
    -webkit-border-radius: var(--small-radius);
    -moz-border-radius: var(--small-radius);
    -ms-border-radius: var(--small-radius);
    -o-border-radius: var(--small-radius);
    border: 1px solid var(--border-color);
    position: relative;
    background-color: var(--light-red);
    border-color: var(--light-red);
    opacity: 1;
}
.btn-close,
.btn-close::before{
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.btn-close::before{
    content: '\e5cd';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--g-font);
    font-size: 20px;
    font-weight: 300;
    color: var(--red);
}
.btn-close:hover{
    background-color: var(--red);
    border-color: var(--red);
}
.btn-close:hover::before{
    color: var(--light-red);
}

.modal-backdrop{
    --bs-backdrop-bg: #3a1a79;
}
/* Modal Ends */

/* Forgot Password */
#forgotPassModal .modal-body{
    position: relative;
}
#forgotPassModal .modal-body .btn-close{
    position: absolute;
    right: 10px;
    top: 10px;
}
#forgotPassModal .modal-body .titleBar{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}
#forgotPassModal .modal-body .titleBar > .mainTitle{
    font-size: 20px;
    color: var(--gray555);
}
.titleBar.withIcon .material-symbols-outlined{
    width: 80px;
    height: 80px;
    background-color: var(--theme-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    border: 10px solid var(--theme-light-color2);
    margin: 0 0 5px;
    font-size: 35px;
}

.otpNumWrap{
    display: flex;
    justify-content: space-between;
}
.otpNumWrap > input[type="text"]{
    width: 50px;
    height: 50px;
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
    border: 1px solid var(--border-color);
    text-align: center;
    padding: 0;
    font-size: 20px;
    font-weight: var(--fw-semibold);
    color: var(--gray555);
}
.otpNumWrap > input[type="text"]:focus{
    border-color: var(--theme-color);
}

.alert{
    margin: 0 0 20px;
    padding: 10px 20px;
    border: none;
}
.alert p{
    margin: 0;
    font-size: 15px;
}
.alert.alert-success{
    background-color: var(--light-green);
}
.alert.alert-success p{
    color: var(--green-dark);
}
.alert.alert-danger{
    background-color: var(--light-red);
}
.alert.alert-danger p{
    color: var(--red);
}
/* Forgot Password Ends */

/* Registration */
.regiSec{
    padding: 30px 0 80px 0;
    overflow: hidden;
}
.regiSec .inner{
    max-width: 992px;
    margin: 0 auto;
    position: relative;
}

.regiSec .titleBar{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 30px;
}
.regiSec .btnWrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color2);
    margin: 10px 0 0 0;
    padding: 20px 0 0 0;
}

.regiSec .nav-pills{
    justify-content: center;
    align-items: center;
    margin: 40px 0 20px 0;
}
.regiSec .nav-pills .nav-link{
    color: var(--gray999);
    font-size: 15px;
    text-transform: capitalize;
    background-color: var(--white);
    padding: 25px 50px 0 50px;
    font-weight: var(--fw-medium);
    position: relative;
}
.regiSec .nav-pills .nav-link.active{
    color: var(--theme-color);
}
.regiSec .nav-pills .nav-link::before{
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    box-shadow: inset 0 0 0 1px #dad0ee;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    background-color: var(--white);
    z-index: 3;
}
.regiSec .nav-pills .nav-link.active::before{
    box-shadow: inset 0 0 0 2px var(--theme-color);
}
.regiSec .nav-pills .nav-link::after{
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    background-color: var(--theme-color);
    top: 7px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    -webkit-transform: translateX(-50%) scale(0);
    -moz-transform: translateX(-50%) scale(0);
    -ms-transform: translateX(-50%) scale(0);
    -o-transform: translateX(-50%) scale(0);
    transition: all 0.25s cubic-bezier(0,1.57,.32,1.28);
    -webkit-transition: all 0.25s cubic-bezier(0,1.57,.32,1.28);
    -moz-transition: all 0.25s cubic-bezier(0,1.57,.32,1.28);
    -ms-transition: all 0.25s cubic-bezier(0,1.57,.32,1.28);
    -o-transition: all 0.25s cubic-bezier(0,1.57,.32,1.28);
    opacity: 0;
    visibility: hidden;
    z-index: 4;
}
.regiSec .nav-pills .nav-link.active::after{
    transform: translateX(-50%) scale(0.7);
    -webkit-transform: translateX(-50%) scale(0.7);
    -moz-transform: translateX(-50%) scale(0.7);
    -ms-transform: translateX(-50%) scale(0.7);
    -o-transform: translateX(-50%) scale(0.7);
    opacity: 1;
    visibility: visible;
}

.regiSec .tab-content .customForm{
    box-shadow: 0 10px 95px -20px #6948ac12;
    padding: 50px 60px;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
}

.regiSec .tab-content .customForm .nextBtn{
    position: relative;
    justify-content: flex-start;
    padding: 0 80px 0 30px;
    min-width: auto;
    margin: 20px auto 0 0;
    text-transform: capitalize;
    letter-spacing: 1px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.regiSec .tab-content .customForm .nextBtn .material-symbols-rounded{
    position: absolute;
    right: 0;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #917cb9;
    font-weight: 300;
    font-size: 27px;
}

.regiSec ul#category-list{
    display: flex;
    flex-wrap: wrap;
}
.regiSec ul#category-list > li{
    width: 100%;
    padding: 15px 25px;
    border: 1px solid var(--border-color);
    margin: 0 0 15px;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
}
.regiSec ul#category-list > li:last-child{
    margin: 0;
}
.regiSec ul#category-list > li > ul{
    display: flex;
    flex-wrap: wrap;
    margin: -2px;
}
.regiSec ul#category-list > li > ul > li{
    padding: 2px;
}

.regiSec ul#category-list > li > .customCheckbox{
    margin: 0 0 10px;
}
.regiSec ul#category-list > li > .customCheckbox label{
    font-size: 20px;
    font-weight: var(--fw-medium);
    color: var(--gray222);
}

.arcCheckbox input[type="checkbox"]{
    display: none;
}
.arcCheckbox input[type="checkbox"] + label{
    cursor: pointer;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    padding: 0 15px;
    text-transform: capitalize;
    line-height: 1;
    font-size: 13px;
    color: var(--gray888);
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
    display: flex;
    align-items: center;
    height: 30px;
}
.arcCheckbox input[type="checkbox"]:checked + label{
    color: var(--white);
    background-color: var(--theme-secondary-color);
    border-color: var(--theme-secondary-color);
}

ul.listStyle{
    display: flex;
    flex-wrap: wrap;
    margin: -2px;
}
ul.listStyle li{
    padding: 2px;
}
ul.listStyle.noLink li{
    border: 1px solid #c9c0db;
    padding: 7px 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    color: var(--theme-secondary-color);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    display: block;
    font-size: 15px;
}

.avatar-upload {
    width: 100%;
    position: relative;
}
.avatar-upload .avatar-upload-inner {
    position: relative;
}
.avatar-upload .avatar-edit {
    position: absolute;
    right: 5px;
    z-index: 1;
    top: 5px;
}
.avatar-upload .avatar-edit input {
    display: none;
}
.avatar-upload .avatar-edit input + label {
    display: flex;
    width: 30px;
    height: 30px;
    margin-bottom: 0;
    border-radius: 100%;
    background: var(--theme-light-color3);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit input + label:hover {
    background: var(--theme-color);
}
.avatar-upload .avatar-edit input + label:after {
    content: "\e145";
    font-family: var(--g-font);
    color: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    margin: auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 300;
}

.avatar-upload .avatar-preview {
    width: 100%;
    height: 240px;
    position: relative;
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
    overflow: hidden;
    border: 1px dashed var(--border-color2);
}

.avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.avatar-upload .avatar-preview > .imagePreview {
    background-image: url(../images/sample-img.jpg);
}
/* Registration Ends */

/* Crop Image */
.imgCropWrap{
    width: auto;
    max-height: calc(100vh - 20em);
    background-color: var(--white);
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    padding: 0 0 60px 0;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    overflow: hidden;
}
.imgCropWrap .btnWrap{
    display: flex;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: 0;
    left: 0;
    padding: 10px 0;
}
.imgCropWrap .btnWrap .btn-sm{
    min-width: 150px;
}

.cropper-view-box{
    outline: none;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
}
.cropper-face{
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
}
.cropper-bg{
    background: none;
}
.cropper-invisible{
    opacity: 0.2;
}
.cropper-drag-box{
    background-color: #f5f6fb4d;
    backdrop-filter: blur(30px);
    opacity: 1;
}
.cropper-crop-box{
    overflow: hidden;
}

.overlayBg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #bbc9eb3d;
    backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
}
.imgCropWrap.show,
.overlayBg.show{
    opacity: 1;
    visibility: visible;
}
/* Crop Image Ends */

/* IntlTelInput */
.iti{
    width: 100%;
}
.iti__selected-dial-code{
    border-right: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px 0 0;
}
.iti__flag{
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    box-shadow: none;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    overflow: hidden;
}
.iti__selected-country-primary{
    padding: 20px 0 20px 15px;
}
.iti__arrow{
    margin: 0 0 0 10px;
}
.iti .iti__selected-dial-code{
    font-size: 13px;
    color: var(--gray999);
}
.iti--inline-dropdown .iti__dropdown-content{
    box-shadow: none;
}
.iti--inline-dropdown .iti__country-list{
    max-height: 150px;
}

.form-control.cntyNum:focus + .iti__selected-dial-code{
    background-color: red;
}
/* IntlTelInput Ends */

/* Datepicker */
.ui-datepicker .ui-datepicker-header {
    background-color: transparent;
    padding: 15px;
    border: none;
    border-bottom: 1px solid var(--border-color);
}
.ui-widget.ui-widget-content{
    width: auto;
    padding: 0;
    border: 1px solid var(--border-color);
    margin: 7px 0 0 0;
    background-color: var(--white);
}

.ui-datepicker table {
    margin: 10px auto;
    font-size: 14px;
}

.ui-datepicker td span,
.ui-datepicker td a {
    text-align: center;
    width: 40px;
    height: 40px;
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: none;
    background-color: var(--light-bg);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    background-color: var(--theme-color) !important;
    color: var(--white) !important;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    font-weight: var(--mediumBold);
}

[class*="ui-datepicker-"].ui-datepicker-today .ui-state-default.ui-state-highlight {
    background-color: var(--light-bg);
    color: var(--theme-secondary-color);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

[class*="ui-datepicker-"] .ui-state-default {
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

[class*="ui-datepicker-"] .ui-state-default:hover {
    background-color: var(--theme-color);
    color: var(--white)
}

.ui-datepicker .ui-datepicker-header {
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -o-justify-content: space-between;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    position: relative;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.ui-datepicker .ui-datepicker-prev::before,
.ui-datepicker .ui-datepicker-next::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 5px;
    top: 0;
    font-size: 16px;
    font-family: "Material Icons";
    font-weight: 300;
    color: var(--light-font-color);
    background-position: center center;
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.ui-datepicker .ui-datepicker-prev::before {
    content: "\e5e0";
    left: 4px;
}

.ui-datepicker .ui-datepicker-next::before {
    content: "\e5e1";
    left: 1px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    padding: 0;
}

.ui-datepicker .ui-datepicker-prev:hover::before,
.ui-datepicker .ui-datepicker-next:hover::before {
    color: var(--white);
}

.ui-datepicker .ui-datepicker-prev {
    order: 2;
    left: -5px;
}

.ui-datepicker .ui-datepicker-next {
    order: 3;
    margin-right: 0;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    display: none;
}

.ui-datepicker .ui-datepicker-title {
    width: 80%;
    margin: 0;
    order: 1;
    text-align: left;
    display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -o-display: flex;
    justify-content: center;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -o-justify-content: space-between;
    padding-right: 40px;
}

.ui-datepicker .ui-datepicker-title select{
    background-color: var(--white);
    border-radius: var(--small-radius);
    -webkit-border-radius: var(--small-radius);
    -moz-border-radius: var(--small-radius);
    -ms-border-radius: var(--small-radius);
    -o-border-radius: var(--small-radius);
    border: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--gray666);
    min-height: 30px;
    padding: 0 10px;
    margin: 0 5px 0 0;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year{
    width: 100px;
}
/* Datepicker Ends */

/* Dashboard */
.dashSec{
    width: 100%;
    padding: 50px 0 100px 0;
    position: relative;
    background-color: var(--white);
}
.welCard{
    display: flex;
    align-items: center;
    margin: 0 0 50px;
}
.welCard .esLt{
    margin: 0 auto 0 0;
    position: relative;
    padding: 0 0 0 80px;
}
.welCard .esLt .icon{
    position: absolute;
    left: 0;
    top: 50%;
    width: 70px;
    height: 70px;
    background-color: var(--theme-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.welCard .esLt .icon svg{
    fill: var(--white);
    width: 25px;
}
.welCard .esLt .mainTitle{
    font-size: 25px;
    text-transform: capitalize;
    line-height: 1;
    margin: 0 0 7px;
    color: var(--gray777);
}
.welCard .esLt .mainTitle span{
    font-weight: var(--fw-semibold);
    color: var(--gray222);
}
.welCard .esLt p{
    margin: 0;
    color: var(--gray999);
    font-size: 13px;
    line-height: 1;
}
.welCard .esRt{
    display: flex;
    align-items: center;
}
.welCard .editBtn{
    margin: 0 10px 0 0;
    text-transform: capitalize;
    color: var(--gray666);
    background-color: var(--white);
    padding: 10px 25px 10px 50px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    background-color: var(--green);
    border: 1px solid var(--green);
    color: var(--white);
    font-size: 14px;
    position: relative;
}
.welCard .editBtn:hover{
    background-color: var(--white);
    color: var(--green);
}
.welCard .editBtn::before{
    content: '\e22b';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    font-family: var(--g-font);
    font-size: 15px;
    font-weight: 100;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.welCard .editBtn:hover::before{
    color: var(--green);
}
.welCard .logoutBtn{
    display: flex;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--gray777);
    font-weight: var(--fw-medium);
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
}
.welCard .logoutBtn:hover{
    background-color: var(--theme-color2);
    border-color: var(--theme-color2);
    color: var(--white);
}
.welCard .logoutBtn .material-symbols-outlined{
    margin: 0 5px 0 0;
    font-size: 23px;
}

.dashCardWrap{
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    align-items: stretch;
}
.dashCardWrap .dashCard{
    width: calc(100% / 3);
    padding: 10px;
}
.dashCardWrap .dashCard .in{
    width: 100%;
    height: 100%;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    padding: 30px 20px 20px 20px;
    box-shadow: 0 10px 95px -20px #6948ac12;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.dashCardWrap .dashCard .in:hover{
    background-color: var(--theme-color);
}
.dashCardWrap .dashCard .in .icon{
    width: 6em;
    margin: 0 auto;
}
.dashCardWrap .dashCard .in .icon svg{
    width: 100%;
    fill: transparent;
    stroke: var(--theme-light-color);
    stroke-width: 0.5px;
    fill: transparent;
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
}
.dashCardWrap .dashCard .in:hover .icon svg{
  stroke: var(--white);
  animation: 5s infinite alternate lineIcoAni cubic-bezier(1,0,0,1);
  -webkit-animation: 5s infinite alternate lineIcoAni cubic-bezier(1,0,0,1);
}
@keyframes lineIcoAni {
    100% {
      -moz-stroke-dasharray:5;
      -webkit-stroke-dasharray:5;
      -o-stroke-dasharray:5;
      stroke-dasharray:5;
    }
    50% {
      -moz-stroke-dasharray:50;
      -webkit-stroke-dasharray:50;
      -o-stroke-dasharray:50;
      stroke-dasharray:50
    }
    0% {
      -moz-stroke-dasharray:5;
      -webkit-stroke-dasharray:5;
      -o-stroke-dasharray:5;
      stroke-dasharray:5
    }
}

.dashCardWrap .dashCard .in .mainTitle{
    font-size: 22px;
    text-align: center;
    text-transform: capitalize;
    display: block;
    font-weight: var(--fw-semibold);
    line-height: 1.2;
    color: var(--theme-secondary-color);
    letter-spacing: 1px;
    margin: 0;
    position: relative;
    padding: 0 0 30px 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.dashCardWrap .dashCard .in:hover .mainTitle{
    color: var(--white);
}
.dashCardWrap .dashCard .in .mainTitle::after{
    content: '';
    position: absolute;
    width: 30px;
    height: 5px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    background-color: var(--theme-light-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.dashCardWrap .dashCard .in .extraLink{
    width: 35px;
    height: 35px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    background-color: var(--theme-light-color2);
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform-style: preserve-3d;
    opacity: 0;
    visibility: hidden;
}
.dashCardWrap .dashCard .in .extraLink .material-symbols-outlined{
    font-size: 20px;
    color: var(--theme-secondary-color);
    font-weight: var(--fw-medium);
    margin: 2px -1px 0 0;
}
.dashCardWrap .dashCard .in:hover .extraLink{
    opacity: 1;
    visibility: visible;
    right: 20px;
    top: 20px;
}
.dashCardWrap .dashCard .in .extraLink:hover{
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.dashCardWrap .dashCard.profileCard .in{
    background-color: var(--white);
}
.dashCardWrap .dashCard.profileCard .imgBox{
    width: 100px;
    height: 100px;    
    margin: 0 auto 20px auto;
    position: relative;
}
.dashCardWrap .dashCard.profileCard .imgBox::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid var(--bg-gray);
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.dashCardWrap .dashCard.profileCard .imgBox img{
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
}
.dashCardWrap .dashCard.profileCard .mainTitle{
    text-align: center;
    text-transform: capitalize;
    font-size: 22px;
    color: var(--gray222) !important;
    margin: 0 0 15px 0;
    padding: 0;
}
.dashCardWrap .dashCard.profileCard .in .mainTitle::after{
    display: none;
}
.dashCardWrap .dashCard.profileCard ul{
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed var(--theme-light-color);
    padding: 15px 0 0 0;
    width: 100%;
}
.dashCardWrap .dashCard.profileCard ul li{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: var(--fw-medium);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    color: var(--gray555);
    cursor: default;
    text-transform: uppercase;
}
.dashCardWrap .dashCard.profileCard ul li:hover{
    color: var(--theme-secondary-color);
}
.dashCardWrap .dashCard.profileCard ul li .material-symbols-rounded{
    font-variation-settings: 'FILL' 1;
    color: var(--theme-light-color);
    margin: 0 5px 0 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.dashCardWrap .dashCard.profileCard ul li:hover .material-symbols-rounded{
    color: var(--theme-light-color3);
}

.dashCardWrap .dashCard.switchCard .in{
    background-color: var(--theme-secondary-color);
}
.dashCardWrap .dashCard.switchCard .in .mainTitle{
    color: var(--theme-light-color2);
}
.dashCardWrap .dashCard.switchCard .in:hover .mainTitle{
    color: var(--white);
}

.dashCardWrap .dashCard .in > svg{
    fill: transparent;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    position: absolute;
    width: 100%;
    bottom: -60px;
    left: -100px;
    width: 18em;
    stroke-width: 0.2px;
}
.dashCardWrap .dashCard .in:hover > svg{
    opacity: 0.1;
    visibility: visible;
    stroke: var(--white);
    animation: 50s infinite alternate lineIcoAni;
    -webkit-animation: 50s infinite alternate lineIcoAni;
}
/* Dashboard Ends */

/* Listing */
.shortBanWrap{
    width: 100%;
    position: relative;
    margin: 0 0 40px 0;
}
.shortBanWrap .inner{
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 0 0 50px 0;
}
.shortBanWrap .titleBar{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    max-width: 1200px;
    width: 100%;
    padding: 0 25% 0 0;
    margin: 0 auto;
}
.shortBanWrap .titleBar .subTitle{
    color: var(--white);
    background-color: #b181f9;
    border: none;
}
.shortBanWrap .titleBar .mainTitle{
    font-size: 45px;
    color: var(--white);
    margin: 0 0 10px;
}
.shortBanWrap .titleBar p{
    color: var(--theme-light-color2);
    line-height: 1.7;
    font-size: 15px;
    margin: 0 0 10px 5px;
}
.shortBanWrap .titleBar .btn{
    text-transform: capitalize;
    padding: 0;
    min-width: auto;
    position: relative;
    color: var(--white);
    padding: 0 0 0 50px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    height: 40px;
}
.shortBanWrap .titleBar .btn:hover{
    padding: 0 0 0 60px;
}
.shortBanWrap .titleBar .btn::before{
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border: 1px solid var(--border-color);
    left: 0;
}
.shortBanWrap .titleBar .btn::after{
    content: '\e8e4';
    position: absolute;
    font-family: var(--g-font);
    font-size: 25px;
    color: var(--white);
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.shortBanWrap .titleBar .btn:hover::after{
    left: 25px;
}

.listingWrap{
    margin: 0 0 70px 0;
}

.listingWrap .listHead{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color2);
    padding: 0 0 30px;
    margin: 0 0 30px;
}
.listingWrap .listHead > .esLt{
    display: flex;
    align-items: center;
    margin: 0 auto 0 0;
}
.listingWrap .listHead > .esLt > *{
    margin: 0 15px 0 0;
}
.listingWrap .listHead p{
    color: var(--gray777);
    font-size: 17px;
    font-weight: var(--fw-medium);
    margin: 0;
    line-height: 1;
    letter-spacing: 0.5px;
}
.listingWrap .listHead p span{
    font-weight: var(--fw-semibold);
    color: var(--theme-color);
    font-size: 20px;
}

.listingWrap .listHead .sortBy{
    position: relative;
}
.listingWrap .listHead .sortBy > label{
    position: absolute;
    top: -10px;
    left: 18px;
    background-color: var(--white);
    padding: 0 7px;
    font-size: 12px;
    text-transform: capitalize;
    color: var(--gray999);
    font-weight: var(--fw-medium);
}
.listingWrap .listHead .sortBy select{
    height: 45px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 0 25px;
    font-size: 15px;
    font-weight: var(--fw-semibold);
    color: var(--gray222);
    letter-spacing: 0.4px;
    appearance: none;
    background-image: url(../images/keyboard_arrow.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center right 20px;
    cursor: pointer;
    width: 220px;
}
.listingWrap .listHead .filterBtn{
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    min-width: auto;
    padding: 0 25px;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: var(--fw-semibold);
    color: var(--gray222);
}
.listingWrap .listHead .filterBtn .material-symbols-outlined{
    margin: 0 5px 0 0;
    letter-spacing: 0.4px;
}

.exptLists{
    display: flex;
    flex-wrap: wrap;
    margin: -15px -15px 20px -15px;
}
.exptLists > .expCard{
    width: calc(100% / 3);
    padding: 15px;
}
.expCard > .inner{
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    border: 1px solid var(--border-color2);
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    position: relative;
    padding: 20px 20px 90px 20px;
    cursor: pointer;
}
.expCard > .inner:hover{
    box-shadow: 0 10px 95px -20px #6948ac2a;
}
.expCard > .inner .imgBox{
    width: 120px;
    height: 140px;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    overflow: hidden;
    border: 1px solid var(--border-color2);
}
.expCard > .inner .imgBox img{
    object-position: 0 0;
    object-fit: cover;
}
.expCard > .inner > .esCnt{
    padding: 0 0 0 10px;
}
.expCard > .inner p{
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    position: absolute;
    left: 0;
    bottom: 10px;
    padding: 0 20px;
}
ul.goals,
.expCard > .inner ul{
    display: flex;
    position: absolute;
    right: 20px;
    top: 20px;
    margin: 0 -10px;
}
ul.goals li,
.expCard > .inner ul li{
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 12px;
    color: #69588c;
    text-transform: uppercase;
    position: relative;
    font-weight: var(--fw-semibold);
    cursor: default;
}
ul.goals li .material-symbols-rounded,
.expCard > .inner ul li .material-symbols-rounded{
    font-size: 22px;
    margin: 0 2px 0 0;
    color: var(--theme-color);
    font-weight: 300;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    font-variation-settings: 'FILL' 0;
}
ul.goals li:hover .material-symbols-rounded,
.expCard > .inner ul li:hover .material-symbols-rounded{
    font-variation-settings: 'FILL' 1;
}

ul.goals li .toolTip,
.expCard > .inner ul li .toolTip{
    position: absolute;
    background-color: var(--theme-secondary-color);
    padding: 2px 10px;
    color: var(--white);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    text-transform: capitalize;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
}
ul.goals li .toolTip::after,
.expCard > .inner ul li .toolTip::after{
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    -o-transform: translateX(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    background-color: var(--theme-secondary-color);
}
ul.goals li:hover .toolTip,
.expCard > .inner ul li:hover .toolTip{
    opacity: 1;
    visibility: visible;
    top: -25px;
}

.expCard > .inner .mainTitle{
    font-size: 23px;
    color: var(--gray222);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.expCard > .inner:hover .mainTitle{
    color: var(--theme-color);
}
.expCard > .inner .esCnt > span{
    font-size: 17px;
    color: var(--gray222);
    font-weight: var(--fw-regular);
    font-family: var(--main-font);
}

.miniProfileCard .socialLinks,
.expCard > .inner .esCnt ul.socialLinks{
    position: static;
    margin: 5px -2px -2px -2px;
}
.miniProfileCard .socialLinks{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.miniProfileCard .socialLinks li,
.expCard > .inner .esCnt ul.socialLinks li{
    padding: 2px;
}
.miniProfileCard .socialLinks li a,
.expCard > .inner .esCnt ul.socialLinks li a{
    width: 25px;
    height: 25px;
    border-radius: var(--small-radius);
    -webkit-border-radius: var(--small-radius);
    -moz-border-radius: var(--small-radius);
    -ms-border-radius: var(--small-radius);
    -o-border-radius: var(--small-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.miniProfileCard .socialLinks li a{
    border-color: #8064b9;
}

.miniProfileCard .socialLinks li.ln-bg a:hover,
.expCard > .inner .esCnt ul.socialLinks li.ln-bg a:hover{
    background-color: #0077af;
    border-color: #0077af;
}
.miniProfileCard .socialLinks li.fb-bg a:hover,
.expCard > .inner .esCnt ul.socialLinks li.fb-bg a:hover{
    background-color: #3b65ba;
    border-color: #3b65ba;
}
.miniProfileCard .socialLinks li.tw-bg a:hover,
.expCard > .inner .esCnt ul.socialLinks li.tw-bg a:hover{
    background-color: #20a5f5;
    border-color: #20a5f5;
}
.miniProfileCard .socialLinks li.insta-bg a:hover,
.expCard > .inner .esCnt ul.socialLinks li.insta-bg a:hover{
    background-color: #b64a86;
    border-color: #b64a86;
}
.miniProfileCard .socialLinks li.thread-bg a:hover,
.expCard > .inner .esCnt ul.socialLinks li.thread-bg a:hover{
    background-color: #222;
    border-color: #222;
}
.miniProfileCard .socialLinks li.you-bg a:hover,
.expCard > .inner .esCnt ul.socialLinks li.you-bg a:hover{
    background-color: #e62f2f;
    border-color: #e62f2f;
}
.miniProfileCard .socialLinks li a svg,
.expCard > .inner .esCnt ul.socialLinks li a svg{
    width: 15px;
    fill: var(--gray888);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.miniProfileCard .socialLinks li a svg{
    fill: #8064b9;
}
.miniProfileCard .socialLinks li a:hover svg,
.expCard > .inner .esCnt ul.socialLinks li a:hover svg{
    fill: var(--white);
}

.esPagination{
    width: 100%;
}
.esPagination ul{
    display: flex;
    justify-content: center;
    margin: 0 -2px;
}
.esPagination ul li{
    padding: 0 2px;
    display: flex;
}
.esPagination ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    color: var(--gray888);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    font-size: 14px;
}
.esPagination ul li.active a{
    background-color: var(--theme-color);
    color: var(--white);
}
.esPagination ul li.num a:hover{
    background-color: var(--theme-light-color2);
    color: var(--theme-color2);
}
.esPagination ul li.dot a{
    width: auto;
    height: auto;
    padding: 0 5px;
}


.miniProfile .modal-body{
    position: relative;
    padding: 50px 40px;
    background-color: var(--theme-secondary-color);
}
.miniProfile .modal-body .btn-close{
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 5;
}
.miniProfileCard .mainProfle{
    position: relative;
    padding: 0 0 0 230px;
}
.miniProfileCard .mainProfle .imgBox{
    width: 200px;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    padding: 15px;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #8064b9;
}
.miniProfileCard .mainProfle .imgBox img{
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
}
.miniProfileCard .mainProfle .mainTitle{
    margin: 0 0 15px;
    font-size: 25px;
    color: var(--white);
    text-transform: capitalize;
}
.miniProfileCard .mainProfle p{
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 20px 0;
    color: white;
}

.miniProfileCard .mainProfle ul.dispn{
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 10px;
}
.miniProfileCard .mainProfle ul.dispn li{
    margin: 0 5px 7px 0;
}
.miniProfileCard .mainProfle ul.dispn li a{
    background-color: var(--theme-light-color2);
    padding: 4px 15px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--theme-color);
    display: block;
    letter-spacing: 0.5px;
    font-weight: var(--fw-medium);
}
.miniProfileCard .mainProfle ul.dispn li a:hover{
    background-color: var(--theme-color);
    color: var(--white);
}

.miniProfileCard .mainProfle ul.allPrices{
    display: flex;
    margin: -5px -5px 40px -5px;
}
.miniProfileCard .mainProfle ul.allPrices li{
    padding: 5px;
}
.miniProfileCard .mainProfle ul.allPrices li .in{
    display: flex;
    align-items: center;
    padding: 7px 15px;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    position: relative;
}
.miniProfileCard .mainProfle ul.allPrices li svg{
    width: 25px;
    margin: 0 10px 0 0;
}

.miniProfileCard .mainProfle ul.allPrices li:first-child .in{
    background-color: #f5f8ff;
}
.miniProfileCard .mainProfle ul.allPrices li:nth-child(2) .in{
    background-color: #f6fef9;
}
.miniProfileCard .mainProfle ul.allPrices li:last-child .in{
    background-color: #fff9f5;
}

.miniProfileCard .mainProfle ul.allPrices li:first-child .in svg{
    fill: #003fec;
}
.miniProfileCard .mainProfle ul.allPrices li:first-child .in svg path{
    stroke: #003fec;
}
.miniProfileCard .mainProfle ul.allPrices li:nth-child(2) .in svg{
    stroke: #008841;
}
.miniProfileCard .mainProfle ul.allPrices li:last-child .in svg{
    stroke: #de0000;
}

.miniProfileCard .mainProfle ul.allPrices li .price{
    font-size: 17px;
    font-weight: var(--fw-medium);
}
.miniProfileCard .mainProfle ul.allPrices li:first-child .price{
    color: #003fec;
}
.miniProfileCard .mainProfle ul.allPrices li:nth-child(2) .price{
    color: #008841;
}
.miniProfileCard .mainProfle ul.allPrices li:last-child .price{
    color: #de0000;
}
.miniProfileCard .mainProfle .btnWrap{
    display: flex;
}
.miniProfileCard .mainProfle .btnWrap .btn{
    min-width: auto;
    padding: 0 30px;
}
.miniProfileCard .mainProfle .btnWrap .btn{
    margin: 0 15px 0 0;
}
.miniProfileCard .mainProfle .btnWrap .btn.btn-success:hover,
.miniProfileCard .mainProfle .btnWrap .btn.btn-success:focus{
    background-color: var(--light-green);
    color: var(--green-dark);
}
.miniProfileCard .mainProfle .btnWrap .btn.btn-danger:hover,
.miniProfileCard .mainProfle .btnWrap .btn.btn-danger:focus{
    background-color: var(--light-red);
    color: var(--dark-red);
}

.filterMainWrap{
    position: fixed;
    top: 20px;
    left: 0;
    background-color: var(--white);
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    height: calc(100vh - 40px);
    width: calc(100% - 40px);
    max-width: 768px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}
.filterMainWrap.show{
    left: 20px;
    opacity: 1;
    visibility: visible;
}
.filterMainWrap .filterClose{
    position: fixed;
    right: 20px;
    top: 20px;
}
.filterMainWrap .filterClose:focus{
    box-shadow: none;
}
.filterMainWrap .fliterHead{
    height: 70px;
    border-bottom: 1px solid var(--border-color2);
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.filterMainWrap .fliterHead .material-symbols-rounded{
    font-size: 30px;
    margin: 0 7px 0 0;
    color: var(--theme-color);
}
.filterMainWrap .fliterHead .mainTitle{
    font-size: 20px;
    display: flex;
    align-items: center;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.filterMainWrap .fliterBody{
    height: calc(100% - 70px);
    overflow: auto;
    padding: 20px;
}
.backdrop{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #371b704a;
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
}
.backdrop.show{
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.chatLayout .backdrop{
    z-index: 10;
}

.filterMainWrap,
.backdrop{
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
}

.price-range-slider {
    width: 100%;
    padding: 0 3px;
}
.price-range-slider .range-value {
    margin: 0;
}
.price-range-slider .range-value input {
    width: 100%;
    background: none;
    color: var(--gray555);
    box-shadow: none;
    border: none;
    margin: 0 0 0 -3px;
    line-height: 1;
}
.price-range-slider .range-bar {
    border: none;
    background: var(--bg-gray);
    height: 3px;
    width: 96%;
    margin-left: 8px;
    cursor: pointer;
}
.price-range-slider .range-bar .ui-slider-range {
    background: var(--theme-color2);
}
.price-range-slider .range-bar .ui-slider-handle {
    border: none;
    border-radius: 25px;
    background: var(--theme-color);
    border: 2px solid var(--white);
    height: 17px;
    width: 17px;
    top: -7px;
    cursor: pointer;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.price-range-slider .range-bar .ui-slider-handle:focus-visible{
    border: none !important;
    outline: none !important;
}
.price-range-slider .range-bar .ui-slider-handle + span {
    background: var(--theme-color);
}

.smallRadio input[type="radio"]{
    display: none;
}
.smallRadio input[type="radio"] + label{
    cursor: pointer;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    padding: 4px 12px 5px 12px;
    text-transform: capitalize;
    line-height: 1;
    font-size: 13px;
    color: var(--gray888);
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
    display: flex;
    align-items: center;
}
.smallRadio input[type="radio"]:checked + label{
    color: var(--white);
    background-color: var(--theme-secondary-color);
    border-color: var(--theme-secondary-color);
}

.smallRadio input[type="radio"] + label .material-symbols-rounded{
    font-size: 17px;
    margin: 0 2px 0 0;
}
.smallRadio input[type="radio"]:checked + label .material-symbols-rounded{
    font-variation-settings: 'FILL' 1;
}

.filterCard{
    margin: 0 0 30px;
}
.filterCard .mainTitle{
    font-size: 20px;
    text-transform: capitalize;
    font-weight: var(--fw-medium);
    margin: 0 0 10px 0;
    line-height: 1;
    border-bottom: 1px solid var(--border-color2);
    padding: 0 0 15px;
    letter-spacing: 0.5px;
}
.filterCard ul{
    display: flex;
    flex-wrap: wrap;
    margin: -2px -2px 5px -2px;
}
.filterCard ul li{
    padding: 2px;
}
.filterCard ul li .rating{
    display: flex;
    align-items: center;
    justify-content: center;
}

.filterCard ul.listStyle{
    max-height: 250px;
    overflow-y: auto;
}

.searchForm{
    position: relative;
    margin: 0 0 10px;
}
.searchForm input[type="text"]{
    height: 50px;
    width: 100%;
    padding: 0 20px;
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
    border: 1px solid var(--border-color2);
    text-transform: capitalize;
}
.searchForm button{
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.searchForm button:hover{
    background-color: var(--theme-secondary-color);
}
.searchForm button .material-symbols-outlined{
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.searchForm button:hover .material-symbols-outlined{
    color: var(--white);
}

.no-scroll{
    overflow: hidden !important;
}
/* Listing Page Ends */

/* Profile Page */
.profileSecWrap{
    padding: 40px 0 70px 0;
}
.profileSecWrap .inner{
    width: 100%;
}
.profileSecWrap .profileHead{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 0 20px;
}
.profileSecWrap .profileHead .imgBox{
    width: 250px;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 10px 95px -20px #6948ac2a;
    margin: 0 0 10px;
}
.profileSecWrap .profileHead .imgBox img{
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
}
.profileSecWrap .profileHead .mainTitle{
    text-align: center;
    margin: 10px 0;
    font-size: 35px;
}
.profileSecWrap .profileHead a{
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: var(--fw-medium);
    margin: 0 0 5px;
    color: var(--gray999);
}
.profileSecWrap .profileHead a .material-symbols-rounded{
    margin: 0 5px 0 0;
    font-weight: 300;
}
.profileSecWrap .profileHead ul.goals{
    position: static;
    justify-content: center;
    margin: 0;
}

.profileSecWrap .profileBody{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    margin: -20px;
    position: relative;
}
.profileSecWrap .profileBody > *{
    padding: 20px;
    position: sticky;
    top: 110px;
}
.profileSecWrap .profileBody > .esLt{
    width: 65%;
}
.profileSecWrap .profileBody > .esRt{
    width: calc(100% - 65%);
}
.cntBox{
    background-color: var(--bg-gray2);
    padding: 40px 50px;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    margin: 0 0 40px;
}
.profileSecWrap .cntBox:last-child,
.cntBox:last-child{
    margin: 0;
}
.cntBox .mainTitle{
    margin: 0 0 15px;
    text-transform: capitalize;
    color: var(--theme-secondary-color);
    font-size: 27px;
}
.cntBox p{
    font-size: 17px;
    color: var(--theme-secondary-color);
}
.cntBox p:last-child{
    margin: 0;
}

.cntBox ul.listStyle{
    margin: 20px -3px -3px -3px;
}
.cntBox ul.listStyle li{
    padding: 3px;
}
ul.listStyle.noLink li{
    padding: 7px 25px;
    margin: 0 5px 5px 0;
}
.cntBox ul.listStyle li a{
    border: 1px solid #c9c0db;
    padding: 7px 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    color: var(--theme-secondary-color);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    display: block;
    font-size: 15px;
}
.cntBox ul.listStyle li a:hover{
    background-color: var(--theme-secondary-color);
    border-color: var(--theme-secondary-color);
    color: var(--white);
}

.bookCard{
    width: 100%;
    min-height: 100px;
    padding: 20px;
    box-shadow: 0 10px 95px -20px #6948ac2a;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
}

.bookCard .rateModeCard{
    display: flex;
    flex-wrap: wrap;
    margin: -5px -5px 20px -5px;
}
.bookCard .rateModeCard > *{
    padding: 5px;
    width: 100%;
}
.rateModeCard .rateMode .in{
    position: relative;
    padding: 0 0 0 90px;
}
.rateModeCard .rateMode .in .icon{
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
}
.rateModeCard .rateMode:first-child .in .icon{
    background-color: #f5f8ff;
}
.rateModeCard .rateMode:nth-child(2) .in .icon{
    background-color: #f6fef9;
}
.rateModeCard .rateMode:last-child .in .icon{
    background-color: #fff9f5;
}
.rateModeCard .rateMode .in .icon svg{
    width: 27px;
}
.rateModeCard .rateMode:first-child .in .icon svg{
    fill: #003fec;
}
.rateModeCard .rateMode:first-child .in .icon svg path{
    stroke: #003fec;
}
.rateModeCard .rateMode:nth-child(2) .in .icon svg{
    stroke: #008841;
}
.rateModeCard .rateMode:last-child .in .icon svg{
    stroke: #de0000;
}

.rateModeCard .rateMode .in .esCnt{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.rateModeCard .rateMode .in .esCnt span{
    font-size: 12px;
    text-transform: uppercase;
    margin: 0 0 2px;
    line-height: 1;
    letter-spacing: 1px;
    color: var(--gray999);
}
.rateModeCard .rateMode .in .esCnt p{
    margin: 0;
    font-size: 17px;
    line-height: 1;
    color: var(--gray222);
}

.bookCard .btn{
    width: 100%;
    font-size: 17px;
    font-weight: var(--fw-semibold);
}


.full-stars {
    text-align: left;
    margin: 0 0 10px;
}
.full-stars .rating-group {
    display: inline-flex;
}
.full-stars input {
    position: absolute;
    left: -9999px;
}
.full-stars label {
    margin: 0;
    cursor: pointer;
}
.full-stars label svg {
    margin: 0 4px 0 0;
    height: 20px;
    width: 20px;
    fill: var(--theme-color);
    transition: fill 0.3s;
}
.full-stars input:checked ~ label svg {
    fill: var(--theme-light-color);
}
.full-stars .rating-group:hover label svg {
    fill: var(--theme-color);
}
.full-stars .rating-group input:hover ~ label svg {
  fill: var(--theme-light-color2);
}
.cntBox textarea.form-control{
    border: 0px solid var(--bg-gray2);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    margin: 0 0 20px;
}
.cntBox textarea.form-control:focus{
    border: 1px solid var(--theme-light-color);
}
/* Profile Page Ends */

/* Book Me Modal */
.modal-header.withCnt .modal-head-cnt{
    display: flex;
    flex-direction: column;
}
.modal-header.withCnt .modal-head-cnt .modal-title{
    font-size: 20px;
    display: flex;
    align-items: center;
    margin: 0;
}
.modal-header.withCnt .modal-head-cnt .modal-title > span{
    display: flex;
    align-items: center;
    text-transform: capitalize;
    font-size: 14px;
}
.modal-header.withCnt .modal-head-cnt .modal-title > span > .material-symbols-outlined{
    font-size: 20px;
    color: var(--theme-color);
    margin: 0 3px 0 10px;
}
.customForm .bookModal .basicInfoSec [class^="col-"]{
    position: relative;
}
.customForm .bookModal .basicInfoSec [class^="col-"] .form-label{
    position: absolute;
    top: -12px;
    left: 30px;
    margin: 0;
    background: white;
    padding: 3px 2px;
    z-index: 2;
    font-size: 13px;
}
.customForm .bookModal .basicInfoSec .mainTitle{
    font-size: 17px;
    margin: 5px 0 10px 0;
}

.bookModal .bookBox .mainTitle{
    text-align: center;
    margin: 0 0 20px;
    font-size: 27px;
}
.bookModal .bookBox .nav-pills{
    display: flex;
    justify-content: center;
    margin: 0 0 20px;
}
.bookModal .bookBox .nav-pills .nav-item .nav-link{
    text-transform: uppercase;
    color: var(--gray888);
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 0 20px;
    font-weight: var(--fw-medium);
}
.bookModal .bookBox .nav-pills .nav-item .icon{
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin: 0 0 5px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.bookModal .bookBox .nav-pills .nav-item .icon svg{
    width: 45px;    
}
.bookModal .bookBox .nav-pills .nav-item .icon svg,
.bookModal .bookBox .nav-pills .nav-item .icon svg path{
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.bookModal .bookBox .nav-pills .nav-item:first-child .icon{
    background-color: #f5f8ff;
}
.bookModal .bookBox .nav-pills .nav-item:first-child .icon svg{
    fill: #003fec;
}
.bookModal .bookBox .nav-pills .nav-item:first-child .icon svg path{
    stroke: #003fec;
}

.bookModal .bookBox .nav-pills .nav-item:nth-child(2) .icon{
    background-color: #fff5ff;
}
.bookModal .bookBox .nav-pills .nav-item:nth-child(2) .icon svg{
    stroke: #d119d7;
}
.bookModal .bookBox .nav-pills .nav-item:nth-child(3) .icon{
    background-color: #eefff4;
}
.bookModal .bookBox .nav-pills .nav-item:nth-child(3) .icon svg{
    stroke: #008841;
}
.bookModal .bookBox .nav-pills .nav-item:last-child .icon{
    background-color: #fff9f5;
}
.bookModal .bookBox .nav-pills .nav-item:last-child .icon svg{
    stroke: #de0000;
}

.bookModal .bookBox .nav-pills .nav-link.active, 
.bookModal .bookBox .nav-pills .show > .nav-link{
    background-color: transparent;
}

.bookModal .bookBox .nav-pills  .nav-item:first-child  .nav-link.active{
    color: #003fec;
}
.bookModal .bookBox .nav-pills  .nav-item:first-child  .nav-link.active .icon{
    background-color: #003fec;
}
.bookModal .bookBox .nav-pills  .nav-item:first-child  .nav-link.active .icon svg{
    fill: #f5f8ff;
}
.bookModal .bookBox .nav-pills  .nav-item:first-child  .nav-link.active .icon svg path{
    stroke: #f5f8ff;
}

.bookModal .bookBox .nav-pills  .nav-item:nth-child(2)  .nav-link.active{
    color: #d119d7;
}
.bookModal .bookBox .nav-pills  .nav-item:nth-child(2)  .nav-link.active .icon{
    background-color: #d119d7;
}
.bookModal .bookBox .nav-pills  .nav-item:nth-child(2)  .nav-link.active .icon svg{
    stroke: #fff5ff;
}
.bookModal .bookBox .nav-pills  .nav-item:nth-child(3)  .nav-link.active{
    color: #008841;
}
.bookModal .bookBox .nav-pills  .nav-item:nth-child(3)  .nav-link.active .icon{
    background-color: #008841;
}
.bookModal .bookBox .nav-pills  .nav-item:nth-child(3)  .nav-link.active .icon svg{
    stroke: #f6fef9;
}

.bookModal .bookBox .nav-pills  .nav-item:last-child  .nav-link.active{
    color: #de0000;
}
.bookModal .bookBox .nav-pills  .nav-item:last-child  .nav-link.active .icon{
    background-color: #de0000;
}
.bookModal .bookBox .nav-pills  .nav-item:last-child  .nav-link.active .icon svg{
    stroke: #fff9f5;
}

.recordBox{
    position: relative;
    padding: 0 80px 0 0;
    margin: 10px 0;
}
.recordBox textarea.form-control{
    height: 400px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-top-left-radius: var(--large-radius);
}
.recordBox .recordBtn{
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    right: 0;
    border: none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.recordBox .recordBtn:hover{
    background-color: var(--red);
}
.recordBox .recordBtn .material-symbols-rounded{
    color: var(--white);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    font-size: 35px;
}
.recordBox .recordBtn.active{
    background-color: var(--red);
}
.recordBox .recordBtn.active .material-symbols-rounded{
    animation: blinkIcon 0.5s infinite forwards cubic-bezier(1,.1,0,.69);
    -webkit-animation: blinkIcon 0.5s infinite forwards cubic-bezier(1,.1,0,.69);
}

@keyframes blinkIcon{
    to{
        font-variation-settings: 'FILL' 1;
    }
    from{
        font-variation-settings: 'FILL' 0;
    }
}
.recordBox.audioRecord{
    height: 100px;
    display: flex;
    align-items: center;
}
.recordBox.audioRecord .audio-record{
    position: absolute;
    right: 0;
    width: 70px;
    height: 70px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.recordBox .audio-record .buttons{
    width: 100%;
    height: 70px;
}
.recordBox .audio-record .buttons > span{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.recordBox .audio-record .buttons > span.material-symbols-rounded{
    color: var(--white);
    font-size: 35px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    font-weight: 300;
}
.recordBox .audio-record .buttons > span#recordButton{
    background-color: var(--theme-color);
}
.recordBox .audio-record .buttons > span#recordButton:hover{
    background-color: var(--theme-secondary-color);
}
.recordBox .audio-record .buttons > span#stopButton{
    background-color: var(--red);
}
.recordBox .audio-record .buttons > span#stopButton:hover{
    background-color: var(--dark-red);
}
.recordBox .audio-record .buttons > span#playButton{
    background-color: var(--green);
}
.recordBox .audio-record .buttons > span#playButton:hover{
    background-color: var(--green-dark);
}
.recordBox .audio-record .buttons > *{
    cursor: pointer;
}
.recordBox .audio-record .buttons > span.hide{
    display: none;
}

.recordBox.audioRecord .audio-record #playReset{
    cursor: pointer;
    background-color: var(--theme-light-color);
    width: 100%;
    height: 25px;
    padding: 0 10px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 5px;
    font-weight: var(--fw-semibold);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.recordBox.audioRecord .audio-record #playReset:hover{
    background-color: var(--theme-light-color3);
}

.bookBox .threeQAlert{
    display: none;
    margin: 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.bookBox .threeQAlert.show{
    display: block;
}

.bookModal .modal-footer .priceWrap {
    display: flex;
    flex-direction: column;
}
.bookModal .modal-footer .priceWrap > span{
    font-size: 12px;
    text-transform: uppercase;
    color: var(--gray999);
    line-height: 1;
    margin: 0 0 5px;
}
.bookModal .modal-footer .priceWrap .mainTitle{
    font-weight: var(--fw-medium);
    margin: 0;
    color: var(--theme-secondary-color);
}

.bookModal .esBlock{
    display: flex;
    margin: 0 -10px;
}
.bookModal .esBlock .esCard{
    padding: 0 10px;
    width: calc(100% / 3);
}
.bookModal .esBlock .esCard .in{
    padding: 20px 20px 12px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.bookModal .esBlock .esCard .in > span{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: var(--fw-regular);
    display: block;
    letter-spacing: 1px;
    margin: 0 0 5px;
}
.bookModal .esBlock .esCard.dateCard .in{
    background-color: #f5f0ff;
    border: 1px solid #baa9dd;
}
.bookModal .esBlock .esCard.dateCard .in > span{
    color: #6e589b;
}

.bookModal .esBlock .esCard.timeCard .in{
    background-color: #eef;
    border: 1px solid #adadd7;
}
.bookModal .esBlock .esCard.timeCard .in > span{
    color: #6a6a97;
}

.bookModal .esBlock .esCard .form-control{
    padding: 0;
    background-color: transparent;
    border: none;
    font-size: 27px;
    font-weight: var(--fw-semibold);
    display: block;
    box-shadow: none;
}
.bookModal .esBlock .esCard .form-control > *{
    font-size: 15px;
    font-weight: var(--fw-regular);
}
.bookModal .esBlock .esCard.dateCard .form-control{
    color: #9571dd;
}
.bookModal .esBlock .esCard.timeCard .form-control{
    color: #5f5fc4;
}

.bookModal .slotWrap{
    display: flex;
    justify-content: center;
    padding: 30px 0 0 0;
    margin: 0 0 20px 0;
    position: relative;
}
.bookModal .slotWrap > span{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    text-transform: capitalize;
    font-size: 17px;
    font-weight: var(--fw-medium);
    color: var(--gray555);
}
.bookModal .slotWrap .sltRadio{
    padding: 5px;
}
.sltRadio input[type="radio"]{
    display: none;
}
.sltRadio label{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: var(--fw-medium);
    padding: 5px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
    cursor: pointer;
    color: var(--theme-light-color);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.sltRadio input[type="radio"]:checked + label{
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
}
/* Book Me Modal Ends */

/* Search Name */
.no-scroll{
    overflow: hidden !important;
}
.searchByName{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(36, 12, 73, 0.7);
    z-index: 10;
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transition: var(--style-transition);
    -webkit-transition: var(--style-transition);
    -moz-transition: var(--style-transition);
    -ms-transition: var(--style-transition);
    -o-transition: var(--style-transition);
}
.searchByName.show{
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.esHeader .esHeaderIn > .searchByName{
    width: 100%;
    display: block;
}
.searchByName .inner{
    display: flex;
    flex-direction: column;
    padding: 100px 0 0 0;
    max-width: 768px;
    margin: 0 auto;
}
.searchByName .inner .mainTitle{
    color: var(--white);
    text-transform: capitalize;
    margin: 0 0 20px 30px;
    font-size: 35px;
    display: flex;
    align-items: center;
}
.searchByName .inner .form-control{
    height: 80px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    background-color: transparent;
    padding: 0 30px;
    font-size: 17px;
    letter-spacing: 1px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    color: var(--white);
    margin: 0 0 20px;
}
.searchByName .inner .form-control::placeholder{
    color: var(--white);
    opacity: 1;
}
.searchByName .inner .form-control:focus{
    background-color: var(--white);
    border-color: transparent;
    color: var(--theme-secondary-color);
}
.searchByName .inner .form-control:focus::placeholder{
    color: var(--gray999)
}

.searchByName ul.suggList{
    flex-wrap: wrap;
    width: 100%;
    margin: 0 !important;
    max-height: 640px;
    overflow: auto;
    padding: 0 10px 0 0;
}
.searchByName ul.suggList > li{
    width: 100%;
    border: 1px solid var(--theme-light-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 0 !important;
    margin: 0 0 5px;
    position: relative;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.searchByName ul.suggList > li:hover{
    border-color: transparent;
}
.searchByName ul.suggList > li::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 7, 58, 0.7);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.searchByName ul.suggList > li:hover::before{
    opacity: 1;
    visibility: visible;
}
.searchByName ul.suggList > li >a{
    position: relative;
    padding: 10px 0 10px 100px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    min-height: 90px;
}
.searchByName ul.suggList > li > a{
    text-transform: capitalize;
    color: var(--white);
}
.searchByName ul.suggList > li > a > .imgBox{
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    left: 7px;
    top: 7px;
}
.searchByName ul.suggList > li > a > .imgBox > img{
    height: 100%;
    object-fit: cover;
    object-position: 0 0;
}
.searchByName ul.suggList > li > a > ul{
    margin: 10px 0 0 0 !important;
    display: flex;
    flex-wrap: wrap;
}
.searchByName ul.suggList > li > a > ul li{
    border: 1px solid var(--theme-light-color);
    height: 30px;
    padding: 0 15px !important;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    margin: 0 5px 5px 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-light-color);
}
.searchByName ul.suggList > li > a > ul li > .material-symbols-rounded{
    font-size: 17px;
    color: var(--theme-light-color2);
    font-weight: 300;
}

.searchByName ul.suggList > li.no-results{
    background-color: transparent;
    padding: 20px 50px !important;
    display: block;
    text-align: center;
    border: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
}
.searchByName ul.suggList > li.no-results::before{
    display: none;
}

.searchByName .searchCloseBtn{
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: transparent;
    border: none;
}
.searchByName .searchCloseBtn > .material-symbols-rounded{
    font-size: 35px;
    font-weight: 300;
    color: var(--white);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.searchByName .searchCloseBtn:hover .material-symbols-rounded{
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.animate-contain {
	height: 45px;
	overflow: hidden;
	text-align: left;
}
.animated-text {
    display: inline-block;
    
    color: #fff;
    text-align: left;
    animation: slide 10s infinite alternate ease-in-out;
    -webkit-animation: slide 10s infinite alternate ease-in-out;
}
.animated-text span {
	display: block;
	font-size: 35px;
	padding: 10px 0 10px 10px;
}
@keyframes slide{
    0%{margin-top: -6px;}
	25%{margin-top:-70px;}
	50%{margin-top:-130px;}
	75%{margin-top:-193px;}
	100%{margin-top:-254px;}
}
/* Search Name Ends */

/* Message Popup */
.chatPopup{
    position: absolute;
    width: 350px;
    right: -20px;
    top: 40px;
    z-index: 9;
    box-shadow: 0 10px 95px -20px hsla(260, 41%, 48%, 0.15);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: var(--white);
    padding: 30px 25px 20px 25px;
    opacity: 0;
    visibility: hidden;
    transition: var(--style-transition);
    -webkit-transition: var(--style-transition);
    -moz-transition: var(--style-transition);
    -ms-transition: var(--style-transition);
    -o-transition: var(--style-transition);
}
.chatPopup.show{
    opacity: 1;
    visibility: visible;
    top: 50px;
}
.chatPopup::before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--white);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    right: 35px;
    top: -5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.chatPopup .chatPHead{
    border-bottom: 1px dashed var(--border-color);
    padding: 0 0 10px;
}
.chatPopup .chatPHead > .titleHead{
    text-transform: capitalize;
    font-weight: var(--fw-semibold);
    font-size: 17px;
}
.chatPopup .chatPBody{
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    max-height: 200px;
    overflow: hidden;
    overflow-y: scroll;
}
.chatPopup .chatPBody .noMsgs p{
    font-size: 14px;
    color: var(--text-black);
    margin: 10px 0;
    line-height: 1;
}
.chatPopup .chatPBody .msgsWrap{
    width: 100%;
}
.chatPopup .chatPBody .msgsWrap ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 10px 0 0;
}
.chatPopup .chatPBody .msgsWrap ul li{
    width: 100%;
    margin: 0 0 10px;
}
.chatPopup .chatPBody .msgsWrap ul li:last-child{
    margin: 0;
}
.chatPopup .chatPBody .msgsWrap ul li.active{
    position: relative;
}
.chatPopup .chatPBody .msgsWrap ul li.active::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--theme-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    animation: pulse 1s infinite;
    -webkit-animation: pulse 1s infinite;
}
.pulse {
    animation: pulse 2s infinite;
    -webkit-animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
      box-shadow: 0 0 0 0px rgba(68, 5, 97, 0.2);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(68, 5, 97, 0);
    }
}
@-webkit-keyframes pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(68, 5, 97, 0.2);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(68, 5, 97, 0);
    }
}
.chatPopup .chatPBody .msgsWrap ul li a{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 50px;
    padding: 0 50px 0 60px;
    position: relative;
}
.chatPopup .chatPBody .msgsWrap ul li a .imgBox{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}
.chatPopup .chatPBody .msgsWrap ul li a .imgBox img{
    height: 100%;
    object-fit: cover;
    object-position: 0 0;
}
.chatPopup .chatPBody .msgsWrap ul li a span.msg{
    font-size: 14px;
    color: var(--text-black);
    line-height: 1.2;
}
.chatPopup .chatPBody .msgsWrap ul li a span.msg > span{
    font-weight: var(--fw-semibold);
}
.chatPopup .chatPBody .msgsWrap ul li a span.msgDate{
    font-size: 12px;
    color: var(--gray777);
}


.chatPopup .chatPFoot{
    padding: 20px 0 0 0;
}
.chatPopup .chatPFoot a{
    font-size: 14px;
    text-transform: capitalize;
    background-color: var(--theme-color);
    text-align: center;
    padding: 15px;
    color: var(--white);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    font-weight: var(--fw-semibold);
}
.chatPopup .chatPFoot a:hover{
    background-color: var(--theme-secondary-color);
}
/* Message Popup Ends */

/* Chat Page */
.chatLayout .chatBox{
    padding: 30px 0 80px 0;
}
.chatLayout .chatBox .inner{
    min-height: 400px;
    box-shadow: 0 10px 95px -20px hsla(260, 41%, 48%, 0.15);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.chatBox .inner{
    display: flex;
    align-items: stretch;
}
.chatBox .inner > *{
    padding: 20px;
}
.chatBox .inner .esLt{
    width: 350px;
}
.chatBox .inner .esRt{
    width: calc(100% - 350px);
}
.chatBox .inner .chatUsers{
    width: 100%;
    height: 100%;
    background-color: #fbfbff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 20px;
}
.chatUsers ul{
    display: flex;
    flex-direction: column;
    height: calc(100vh - 260px);
    overflow: auto;
    padding: 0 12px 0 0;
}
.chatUsers ul > li{
    width: 100%;
    position: relative;
    height: 60px;
    padding: 0 0 0 70px;
    margin: 0 0 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
}
.chatUsers ul > li:last-child{
    margin: 0;
}
.chatUsers ul > li > .imgBox{
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    left: 0;
    top: 0;
    overflow: hidden;
}
.chatUsers ul > li > .imgBox > img{
    object-fit: cover;
    object-position: 0 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.chatUsers ul > li.active{
    background-color: #cec2e8;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.chatUsers ul > li > .esCnt{
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 0 40px 0 0;
}
.chatUsers ul > li > .esCnt > .imgBox{
    position: absolute;
    width: 20px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.chatUsers ul > li > .esCnt > .imgBox > img{
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.chatUsers ul > li.active > .esCnt > .imgBox{
    right: 10px;
    width: 25px;
}
.chatUsers ul > li.active > .esCnt > .imgBox > img{
    filter: invert(39%) sepia(70%) saturate(502%) hue-rotate(217deg) brightness(100%) contrast(81%);
}
.chatUsers ul > li > .esCnt .mainTitle{
    font-size: 14px;
    margin: 5px 0 0 0;
}
.chatUsers ul > li.active > .esCnt .mainTitle{
    color: var(--white);
}
.chatUsers ul > li > .esCnt .mainTitle > span.timeVw{
    font-size: 11px;
    position: relative;
    display: inline-block;
    padding: 0 0 0 10px;
    font-weight: var(--fw-regular);
    color: var(--gray666);
}
.chatUsers ul > li.active > .esCnt .mainTitle > span.timeVw{
    color: var(--white);
}
.chatUsers ul > li > .esCnt .mainTitle > span.timeVw::before{
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    background-color: var(--gray999);
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.chatUsers ul > li.active > .esCnt .mainTitle > span.timeVw::before{
    background-color: var(--white);
}
.chatUsers ul > li > .esCnt p{
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    color: var(--gray777);
    margin: 0;
    line-height: 1.5;
}
.chatUsers ul > li.active > .esCnt p{
    color: var(--white);
}

.chatUserCont{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.chatUserCont > *{
    width: 100%;
}
.chatUserCont > .chatUserHead{
    border-bottom: 1px solid var(--border-color2);
    margin: 0 0 20px;
    padding: 0 0 20px;
}
.chatUserCont > .chatUserHead > .in{
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 0 0 90px;
    height: 70px;
}
.chatUserCont > .chatUserHead > .in > .imgBox{
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
    left: 0;
    top: 0;
    overflow: hidden;
}
.chatUserCont > .chatUserHead > .in > .imgBox > img{
    object-fit: cover;
    object-position: 0 0;
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
}
.chatUserCont > .chatUserHead > .in .esCnt{
    display: flex;
    flex-direction: column;
    margin: 0 auto 0 0;
}
.chatUserCont > .chatUserHead > .in .esCnt .mainTitle{
    margin: 0 0 7px;
}
.chatUserCont > .chatUserHead > .in .esCnt ul{
    display: flex;
    flex-wrap: wrap;
}
.chatUserCont > .chatUserHead > .in .esCnt ul li{
    font-size: 12px;
    height: 30px;
    padding: 0 15px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border: 1px solid var(--border-color2);
    display: flex;
    align-items: center;
    margin: 0 5px 0 0;
    color: var(--gray666);
}

.chatUserCont > .chatUserHead > .in > .btn.btn-sm{
    min-width: 125px;
}

.chatUserCont > .chatUserBody{    
    padding: 0 10px 0 0;
}
.chatUserCont .messages {
    display: block;
    height: 500px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 12px 0 0;
}
.chatUserCont  .messages > .msg{
    position: relative;
    width: 100%;
    min-height: 40px;
    margin-bottom: 10px;
}
.chatUserCont .messages > .msg > .esCnt ul li{
    font-size: 14px;
    color: var(--gray555);
}
.chatUserCont .messages > .msg > .esCnt ul li audio{
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    height: 40px;
}
.chatUserCont .messages > .msg > .imgBox{
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    overflow: hidden;
}
.chatUserCont .messages > .msg > .imgBox > img{
    object-fit: cover;
    object-position: 0 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.chatUserCont .messages > .msg.left{
    padding: 0 30% 0 50px;
    margin: 0 auto 10px 0;
}
.chatUserCont .messages > .msg.left > .imgBox{
    left: 0;
}
.chatUserCont .messages > .msg.left > .esCnt ul li{
    text-align: left;
}
.chatUserCont .messages > .msg.right{
    margin: 0 0 10px auto;
    padding: 0 50px 0 30%;
    display: flex;
    justify-content: flex-end;
}
.chatUserCont .messages > .msg.right .imgBox{
    right: 0;
}
.chatUserCont .messages > .msg.right > .esCnt ul li{
    text-align: right;
}

.chatUserCont > .chatUserFoot{
    padding: 20px 0 0 0;
}
.chatUserFoot .msgForm{
    position: relative;
    padding: 0 200px 0 0;
    display: flex;
    align-items: flex-end;
}
.chatUserFoot .msgForm textarea{
    resize: none;
    width: 100%;
    height: 70px;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    border: 1px solid var(--border-color);
    padding: 15px;
    font-size: 14px;
}
.chatUserFoot .msgForm .buttons{
    width: 200px;
    position: absolute;
    right: 0;
    display: flex;
    margin: -4px;
}
.chatUserFoot .msgForm .buttons .esItemIn{
    padding: 4px;
}
.chatUserFoot .msgForm .buttons button{
    border: none;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.chatUserFoot .msgForm .buttons button .material-symbols-rounded{
    font-weight: 300;
    font-size: 30px;
}

.chatUserFoot .msgForm.withMic .buttons .esItem{
    width: 50%;
}
.chatUserFoot .msgForm.withMic .buttons button{
    height: 70px;
}
.chatUserFoot .msgForm.withoutMic .buttons .esItem{
    width: 50%;
}
.chatUserFoot .msgForm.withoutMic .buttons button{
    height: 70px;
}

.msgForm .buttons .recordBtn,
.msgForm .buttons button#speak-button{
    background-color: var(--green);
}
.msgForm .buttons .recordBtn:hover,
.msgForm .buttons button#speak-button:hover{
    background-color: var(--green-dark);
}
.msgForm .buttons .recordBtn.recording,
.msgForm .buttons button#stop-button{
    background-color: var(--red);
}
.msgForm .buttons .recordBtn.recording:hover,
.msgForm .buttons button#stop-button:hover{
    background-color: var(--dark-red);
}
.msgForm .buttons .recordBtn .material-symbols-rounded,
.msgForm .buttons button#speak-button .material-symbols-rounded,
.msgForm .buttons button#stop-button .material-symbols-rounded{
    color: var(--white);
}
.msgForm .buttons .recordBtn.recording .material-symbols-rounded,
.msgForm .buttons button#stop-button .material-symbols-rounded{
    font-size: 45px;
    font-variation-settings: 'FILL' 1;
}

.msgForm .buttons button.hide{
    display: none;
}

.msgForm .buttons .sendBtn{
    background-color: var(--theme-color);
}
.msgForm .buttons .sendBtn .material-symbols-rounded{
    color: var(--white);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    font-variation-settings: 'FILL' 0;
}
.msgForm .buttons .sendBtn:hover .material-symbols-rounded{
    font-variation-settings: 'FILL' 1;
}

.recordVoice{
    position: absolute;
    width: calc(100% - 200px);
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border-color2);
    padding: 20px;
    height: 70px;
    display: flex;
    align-items: center;
}
.recordVoice > audio{
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.recordVoice .countUp{
    display: flex;
    position: relative;
    padding: 0 0 0 40px;
}
.recordVoice .countUp::before{
    content: '\e1c4';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    font-family: var(--g-font);
    font-size: 35px;
    color: var(--red);
}
.recordVoice .countUp > label{
    font-size: 18px;
    font-family: var(--main-font);
    font-weight: var(--fw-semibold);
    color: var(--red);
}

.recordVoice > button{
    background-color: var(--light-red);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    margin: 0 0 0 auto;
}
.recordVoice > button .material-symbols-rounded{
    color: var(--red);
    font-size: 20px; 
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);   
    font-variation-settings: 'FILL' 0;
}
.recordVoice > button:hover{
    background-color: var(--red);
}
.recordVoice > button:hover .material-symbols-rounded{
    color: var(--white);
    font-variation-settings: 'FILL' 1;
}

.videoWrap{
    width: 100%;
}
.videoWrap .in{
    position: relative;
}
.videoWrap #videos{
    position: relative;
    height: 580px;
    margin: 0 0 10px;
}
.videoWrap #videos .remotePerson{
    width: 100%;
    height: 100%;
    background-color: #faf8ff;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    overflow: hidden;
    position: relative;
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
}
.videoWrap #videos .localPerson::before,
.videoWrap #videos .remotePerson::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/video-chat.svg);
    background-position: center;
    background-size: 30%;
    background-repeat: no-repeat;
    filter: invert(29%) sepia(68%) saturate(2706%) hue-rotate(246deg) brightness(96%) contrast(88%);
    -webkit-filter: invert(29%) sepia(68%) saturate(2706%) hue-rotate(246deg) brightness(96%) contrast(88%);
    opacity: 0.5;
}
.videoWrap #videos .localPerson.localAudioPerson::before,
.videoWrap #videos .remotePerson.remoteAudioPerson::before{
    background-image: url(../images/voice-chat.svg);
}
.videoWrap #videos .localPerson > div,
.videoWrap #videos .remotePerson > div{
    width: 100%;
    height: 100%;
}
.videoWrap #videos .remotePerson.inActive,
.videoWrap #videos .localPerson{
    width: 150px;
    height: 200px;
    background-color: #f3eeff;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    overflow: hidden;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
}
.videoWrap #videos .remotePerson.inActive{
    z-index: 4;
    background-color: var(--theme-color);
}
.videoWrap #videos .localPerson.active{
    position: static;
    width: 100%;
    height: 100%;
}
.videoWrap #videos * > span.material-symbols-rounded{
    width: 32px;
    height: 32px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-weight: 200;
    color: var(--theme-color);
    font-size: 25px;
    z-index: 1;
}
.videoWrap #videos .remotePerson > span,
.videoWrap #videos .localPerson.active > span{
    display: none;
}
.videoWrap #videos .remotePerson.inActive > span,
.videoWrap #videos .localPerson > span{
    display: flex;
}

.videoWrap .btnWrap{
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: 20px;
    left: 0;
}
.videoWrap .btnWrap > *{
    margin: 0 5px;
    border: none;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.videoWrap .btnWrap > * .material-symbols-rounded{
    font-weight: 300;
    color: var(--white);
}
.videoWrap .btnWrap .attendCall{
    background-color: var(--green);
}
.videoWrap .btnWrap .attendCall:hover{
    background-color: var(--green-dark);
}
.videoWrap .btnWrap .endCall{
    background-color: var(--red);
}
.videoWrap .btnWrap .endCall:hover{
    background-color: var(--dark-red);
}
.videoWrap .btnWrap .micOn{
    background-color: #fff9f5;
}
.videoWrap .btnWrap .micOn .material-symbols-rounded{
    color: var(--red);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.videoWrap .btnWrap .micOn:hover{
    background-color: var(--dark-red);
}
.videoWrap .btnWrap .micOn:hover .material-symbols-rounded{
    color: #fff9f5;
}

.videoWrap .btnWrap .micOff{
    background-color: var(--gray222);
}
.videoWrap .btnWrap .micOff:hover{
    background-color: var(--black);
}
.videoWrap .btnWrap .micOff .material-symbols-rounded{
    color: #fff9f5;
}
/* Chat Page Ends */

/* Audio Clip */
.sound-wave {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bar {
    animation-name: wave-lg;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    background: var(--theme-color);
    margin: 0 1.5px;
    height: 40px;
    width: 1px;
}
.bar:nth-child(-n + 7),
.bar:nth-last-child(-n + 7) {
    animation-name: wave-md;
}
.bar:nth-child(-n + 3),
.bar:nth-last-child(-n + 3) {
    animation-name: wave-sm;
}

@keyframes wave-sm {
    0% {
        opacity: 0.35;
        height: 10px;
    }
    100% {
        opacity: 1;
        height: 25px;
    }
}
@keyframes wave-md {
    0% {
        opacity: 0.35;
        height: 15px;
    }
    100% {
        opacity: 1;
        height: 50px;
    }
}
@keyframes wave-lg {
    0% {
        opacity: 0.35;
        height: 15px;
    }
    100% {
        opacity: 1;
        height: 70px;
    }
}

/* Audio Clip Ends */

/* Inner Page Head */
.dashInPage .innerHead{
    padding: 50px 0 0 0;
}
.innerHead .inner{
    display: flex;
    align-items: center;
    margin: 0 0 40px;
}
.innerHead .inner .gobackBtn{
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    background-color: var(--white);
    margin: 0 20px 0 0;
    box-shadow: 0 10px 95px 0px rgba(106, 72, 173, 0.2);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.innerHead .inner .gobackBtn .material-symbols-rounded{
    font-size: 30px;
    color: var(--gray222);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.innerHead .inner .gobackBtn:hover{
    background-color: var(--theme-color);
}
.innerHead .inner .gobackBtn:hover .material-symbols-rounded{
    color: var(--white);
}
.innerHead .inner .mainTitle{
    font-size: 25px;
    text-transform: capitalize;
    color: var(--gray555);
}

.innerHead .inner .filterBtn{
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    min-width: auto;
    padding: 0 25px;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: var(--fw-semibold);
    color: var(--gray222);
}
.innerHead .inner .filterBtn .material-symbols-rounded{
    margin: 0 5px 0 0;
    letter-spacing: 0.4px;
}

.gInfoSec{
    width: 100%;
    margin: 0 0 70px;
}
.gInfoSec .inner{
    display: flex;
    align-items: flex-start;
    margin: -15px;
    position: relative;
}
.gInfoSec .inner > *{
    padding: 15px;
    position: sticky;
    top: 85px;
}
.gInfoSec .inner .esLt{
    width: 300px;
}
.gInfoSec .inner .esRt{
    width: calc(100% - 300px);
}
.gInfoSec .inner .esLt .imgBox{
    width: 100%;
    height: 300px;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    overflow: hidden;
}
.gInfoSec .inner .esLt .imgBox img{
    object-fit: cover;
    height: 100%;
    object-position: 0 0;
}

.toggle-password{
    position: absolute;
    top: 40px;
    width: 30px;
    height: 30px;
    right: 20px;
}
.toggle-password::before{
    content: '\e8f5';
    position: absolute;
    font-family: var(--g-font);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--gray777)
}
.toggle-password.active::before{
    content: '\e8f4';
}

.contentSec .cntBox{
    display: flex;
    flex-direction: column;
    padding: 0;
    background-color: var(--white);
    margin: 0 0 20px;
}
.contentSec .cntBox > label{
    font-size: 15px;
    color: var(--gray999);
    letter-spacing: 1px;
    text-transform: capitalize;
    display: block;
    margin: 0 0 7px;
}
.contentSec .cntBox > span,
.contentSec .cntBox > p{
    font-size: 18px;
    color: var(--text-black);
    font-weight: var(--fw-medium);
    line-height: 1.5;
}

.contentSec .card{
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    border-color: var(--border-color2);
}
.contentSec .card .mainTitle{
    margin: 0 0 15px;
    font-size: 17px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border-color2);
    padding: 0 0 15px;
    color: var(--gray666);
}
.contentSec .card .mainTitle .material-symbols-rounded{
    color: var(--white);
    font-size: 20px;
    margin: 0 7px 0 0;
    width: 40px;
    height: 40px;
    background-color: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
}

.contentSec .cntBox .mainTitle{
    font-size: 22px;
    text-transform: capitalize;
    margin: 10px 0 15px;
    color: var(--gray222);
    border-bottom: 1px dashed var(--border-color);
    padding: 0 0 10px 0;
    margin: 30px 0 15px;
}
.contentSec .cntBox .mainTitle.withIcon{
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 0 20px 60px;
}
.contentSec .cntBox .mainTitle.withIcon > .icon{
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-self: center;
    justify-content: center;
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
}
.contentSec .cntBox .mainTitle.withIcon > .icon svg{
    width: 25px;
}
.contentSec .cntBox .mainTitle.withIcon.textAns > .icon{
    background-color: #f5f8ff;
}
.contentSec .cntBox .mainTitle.withIcon.textAns > .icon svg{
    fill: #003fec;
}
.contentSec .cntBox .mainTitle.withIcon.textAns > .icon svg path{
    stroke: #003fec;
}
.contentSec .cntBox .mainTitle.withIcon.textAns{
    color: #003fec;
}

.contentSec .cntBox .mainTitle.withIcon.audioClip > .icon{
    background-color: #fff5ff;
}
.contentSec .cntBox .mainTitle.withIcon.audioClip > .icon svg{
    stroke: #d119d7;
}
.contentSec .cntBox .mainTitle.withIcon.audioClip{
    color: #d119d7;
}

.contentSec .cntBox .mainTitle.withIcon.audioChat > .icon{
    background-color: #eefff4;
}
.contentSec .cntBox .mainTitle.withIcon.audioChat > .icon svg{
    stroke: #008841;
}
.contentSec .cntBox .mainTitle.withIcon.audioChat{
    color: #008841;
}

.contentSec .cntBox .mainTitle.withIcon.videoChat > .icon{
    background-color: #fff9f5;
}
.contentSec .cntBox .mainTitle.withIcon.videoChat > .icon svg{
    stroke: #de0000;
}
.contentSec .cntBox .mainTitle.withIcon.videoChat{
    color: #de0000;
}

.contentSec .cntBox ul.listStyle{
    margin: 0;
    counter-reset: section;
}
.contentSec .cntBox ul.listStyle > li{
    border: 1px solid var(--border-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    padding: 0 15px;
    text-transform: capitalize;
    line-height: 1;
    font-size: 13px;
    color: var(--gray888);
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
    display: flex;
    align-items: center;
    height: 30px;
    margin: 0 5px 5px 0;
}
.contentSec .cntBox ul.listStyle.fullListStyle > li{
    width: 100%;
    height: auto;
    display: block;
    border: none;
    padding: 0;
    font-size: 17px;
    color: var(--gray222);
    margin: 0 0 20px;
    counter-increment: section;
    font-weight: var(--fw-medium);
}
.contentSec .cntBox ul.listStyle.fullListStyle > li::before{
    content: counter(section)".";
}
.contentSec .cntBox ul.listStyle.fullListStyle > li:last-child{
    margin: 0;
}
.contentSec .cntBox ul.listStyle.fullListStyle > li > ul{
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0 0 0;
}
.contentSec .cntBox ul.listStyle.fullListStyle > li > ul > li{
    border: 1px solid var(--border-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    padding: 0 15px;
    text-transform: capitalize;
    line-height: 1;
    font-size: 13px;
    color: var(--gray888);
    transition: var(--small-transition);
    -webkit-transition: var(--small-transition);
    -moz-transition: var(--small-transition);
    -ms-transition: var(--small-transition);
    -o-transition: var(--small-transition);
    display: flex;
    align-items: center;
    height: 30px;
    margin: 0 5px 0 0;
    font-weight: var(--fw-regular);
}

.tranSec{
    width: 100%;
    margin: 0 0 70px;
}
.tranSec .inner{
    background-color: var(--white);
    box-shadow: 0 10px 95px -20px hsla(260, 41%, 48%, 0.15);
    padding: 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.tranSec table.dataTable{
    font-size: 13px;
    color: var(--gray555);
}
.tranSec table.dataTable .userName{
    position: relative;
    padding: 0 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
}
.tranSec table.dataTable .userName .imgBox{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    overflow: hidden;
}
.tranSec table.dataTable .userName .imgBox img{
    object-fit: cover;
    object-position: 0 0;
}
table.table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > *{
    box-shadow: none;
}
table.table.dataTable > tbody > tr{
    vertical-align: middle;
}
table.dataTable thead > tr > th.dt-orderable-asc:hover, 
table.dataTable thead > tr > th.dt-orderable-desc:hover, 
table.dataTable thead > tr > td.dt-orderable-asc:hover, 
table.dataTable thead > tr > td.dt-orderable-desc:hover{
    outline: none;
}

table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after{
    font-family: var(--g-font);
    font-size: 18px;
    font-weight: 300;
    color: var(--theme-light-color);
    opacity: 1;
}
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after{
    content: '\e313';
}

table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before{
    content: '\e316';
}

table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after {
  opacity:1;
  color: var(--theme-secondary-color);
}
div.dt-scroll-body > table > tbody > tr{
    border-bottom: 1px dashed var(--border-color);
}
div.dt-scroll-body > table > tbody > tr:last-child{
    border: none;
}
div.dt-scroll-body{
    padding: 0 10px 0 0;
}


.tableHd{
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}
.tableHd .dt-length{
    margin: 0 auto 0 0;
}
.tableHd .form-select,
.tableHd .form-control{
    min-height: 40px;
    min-width: 80px;
    padding: 0 12px;
    font-size: 15px;
}
.tableHd .dt-length label{
    font-size: 14px;
    text-transform: capitalize;
    color: var(--gray888);
    margin: 0 5px 0 0;
}
.tableBtm{
    display: flex;
    align-items: center;
    margin: 20px 0 0 0;
}
.tableBtm .dt-info{
    font-size: 14px;
    color: var(--gray555);
    margin: 0 auto 0 0;
}
div.dt-scroll-body{
    border-bottom-color: transparent;
}
div.dt-container div.dt-paging ul.pagination{
    margin: 0 -2px;
}
div.dt-container div.dt-paging ul.pagination li{
    padding: 0 2px;
}
div.dt-container div.dt-paging ul.pagination .page-link{
    width: 30px;
    height: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin: 0;
    background: white;
    border: none;
    color: var(--gray555);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
div.dt-container div.dt-paging ul.pagination li.active > .page-link{
    background-color: var(--theme-color);
    color: var(--white);
}

.tranSec table.dataTable .status{
    font-size: 12px;
    text-transform: capitalize;
    font-weight: var(--fw-medium);
    display: inline;
    padding: 5px 10px;
    border-radius: 5px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.tranSec table.dataTable .status.accepted{
    color: var(--green-dark);
    background-color: #f6fef9;
    cursor: pointer;
}
.tranSec table.dataTable .status.accepted:hover{
    background-color: var(--green-dark);
    color: #f6fef9;
}
.tranSec table.dataTable .status.completed{
    background-color: var(--green);
    color: var(--white);
}
.tranSec table.dataTable .status.pending{
    color: var(--red);
    background-color: #fff6f6;
    cursor: pointer;
}
.tranSec table.dataTable .status.pending:hover{
    background-color: var(--red);
    color: var(--white);
}

.tranSec table.dataTable .status.rejected{
    background-color: var(--dark-red);
    color: var(--white);
}


button:focus,
.page-link:focus{
    box-shadow: none;
}

.reviewSec{
    width: 100%;
    margin: 0 0 70px 0;
}
.reviewSec .esBlock{
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}
.reviewSec .esBlock > *{
    width: calc(100% / 2);
    padding: 15px;
}
.reviewCard{
    background-color: var(--white);
    box-shadow: 0 10px 95px -20px hsla(260, 41%, 48%, 0.15);
    padding: 25px 30px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
}
.reviewCard p{
    font-size: 14px;
    color: var(--gray666);
    line-height: 1.7;
}
.reviewCard .esCnt{
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 17px;
    font-weight: var(--fw-medium);
    color: var(--gray555);
}
.reviewCard .esCnt .imgBox{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    overflow: hidden;
    margin: 0 5px 0 0;
}
.reviewCard .esCnt .imgBox img{
    object-fit: cover;
    object-position: 0 0;
}
.reviewCard .esCnt ul{
    margin: 0 0 0 auto;
    display: flex;
}
.reviewCard .esCnt ul li .material-symbols-rounded{
    font-variation-settings: 'FILL' 1;
    color: var(--theme-color2);
}

.rateWrap{    
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 0 0 auto;
}
.rateWrap > .value{
    font-size: 25px;
    font-weight: var(--fw-semibold);
}
.ratingVw{
    width: 123px;
    height: 50px;
    position: relative;
    margin: 0 0 0 5px;
}
.ratingVw::before{
    content: '\e838\e838\e838\e838\e838';
    font-family: var(--g-font);
    font-size: 24px;
    font-variation-settings: 'FILL' 1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    overflow: hidden;
    letter-spacing: 1px;   
    color: var(--bg-gray);
}
.ratedStar{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    overflow: hidden;
}
.ratedStar::before{
    content: '\e838\e838\e838\e838\e838';
    font-family: var(--g-font);
    font-size: 24px;
    font-variation-settings: 'FILL' 1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    overflow: hidden;
    letter-spacing: 1px;
    color: var(--theme-color);
}

.dashInPage .socialLinks .input-group{
    margin: 0 0 5px;
}
.dashInPage .socialLinks .input-group:last-child{
    margin: 0;
}
.dashInPage .socialLinks .input-group .form-control{
    border-left: none;
}
.dashInPage .socialLinks .input-group.ln-bg .form-control:focus{
    border-color: #0077af;
}
.dashInPage .socialLinks .input-group.fb-bg .form-control:focus{
    border-color: #3b65ba;
}
.dashInPage .socialLinks .input-group.tw-bg .form-control:focus{
    border-color: #20a5f5;
}
.dashInPage .socialLinks .input-group.insta-bg .form-control:focus{
    border-color: #b64a86;
}
.dashInPage .socialLinks .input-group.thread-bg .form-control:focus{
    border-color: #222;
}
.dashInPage .socialLinks .input-group.you-bg .form-control:focus{
    border-color: #e62f2f;
}
.dashInPage .socialLinks .input-group .input-group-text{
    min-width: 130px;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: var(--fw-medium);
    border: none;
    justify-content: center;
}
.dashInPage .socialLinks .input-group.ln-bg .input-group-text{
    background-color: #0077af;
    color: var(--white);
}
.dashInPage .socialLinks .input-group.fb-bg .input-group-text{
    background-color: #3b65ba;
    color: var(--white);
}
.dashInPage .socialLinks .input-group.tw-bg .input-group-text{
    background-color: #20a5f5;
    color: var(--white);
}
.dashInPage .socialLinks .input-group.insta-bg .input-group-text{
    background-color: #b64a86;
    color: var(--white);
}
.dashInPage .socialLinks .input-group.thread-bg .input-group-text{
    background-color: var(--gray222);
    color: var(--white);
}
.dashInPage .socialLinks .input-group.you-bg .input-group-text{
    background-color: #e62f2f;
    color: var(--white);
}
/* Inner Page Head Ends */

/* Loader */
.main-loader{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-loader .imgBox{
    width: 200px;
}
/* Loader Ends */

/* Confirmation */
#pendingModal .modeWrap{
    display: flex;
    flex-wrap: wrap;
}
#pendingModal .modeWrap > .ansMode {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#pendingModal .modeWrap > .ansMode .icon{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    margin: 0 0 10px;
}
#pendingModal .modeWrap > .ansMode .icon svg{
    width: 50px;
    stroke: var(--theme-color);
}

#pendingModal .modeWrap > .ansMode > span{
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
}

#pendingModal .modeWrap > .ansMode.textAnsMode .icon{
    background-color: #f5f8ff;
}  
#pendingModal .modeWrap > .ansMode.textAnsMode .icon svg{
    fill: #003fec;
}  
#pendingModal .modeWrap > .ansMode.textAnsMode .icon svg path{
    stroke: #003fec;
}

#pendingModal .modeWrap > .ansMode.audioClipMode .icon{
    background-color: #fff5ff;
}  
#pendingModal .modeWrap > .ansMode.audioClipMode .icon svg{
    stroke: #d119d7;
}  

#pendingModal .modeWrap > .ansMode.audioMode .icon{
    background-color: #eefff4;
}  
#pendingModal .modeWrap > .ansMode.audioMode .icon svg{
    stroke: #008841;
}  

#pendingModal .modeWrap > .ansMode.videoMode .icon{
    background-color: #fff9f5;
}  
#pendingModal .modeWrap > .ansMode.videoMode .icon svg{
    stroke: #de0000;
}  

#pendingModal .modeWrap > .ansMode .timings{
    margin: 10px 0 0 0;
    width: 100%;
}
#pendingModal .modeWrap > .ansMode .timings .esBlock{
    display: flex;
    margin: -5px;
}
#pendingModal .modeWrap > .ansMode .timings .esBlock .esItem{
    padding: 5px;
    width: calc(100% / 3);
}
#pendingModal .modeWrap > .ansMode .timings .esBlock .esItem > *{
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    padding: 10px 15px;
}
#pendingModal .modeWrap > .ansMode .timings .esBlock .esItem > * .label{
    font-size: 12px;
    color: var(--gray999);
    text-transform: capitalize;
}
#pendingModal .modeWrap > .ansMode .timings .esBlock .esItem span:not(.label){
    font-size: 14px;
    font-weight: var(--fw-medium);
}

#pendingModal .modeWrap > .ansMode p{
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0 0 0;
}

#pendingModal .modal-footer .btn-sm{
    min-width: auto;
    padding: 0 20px;
}
#pendingModal .btn-close{
    position: absolute;
    right: 10px;
    top: 10px;
}
/* Confirmation Ends */

.forReBook{
    display: flex;
    border: 1px solid var(--border-color2);
    height: 40px;
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
    overflow: hidden;
}
.forReBook > *{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--border-color);
}
.forReBook > *:last-child{
    border-right: none;
}
.forReBook > *:nth-child(2){
    width: 60px;
}
.forReBook > .material-symbols-rounded{
    cursor: pointer;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    font-size: 22px;
    font-weight: 300;
    user-select: none;
}
.forReBook > .material-symbols-rounded:hover{
    background-color: var(--theme-color);
    color: var(--white);
}

ul.specDiscipline{
    display: flex;
    flex-wrap: wrap;
    counter-reset: count;
}
ul.specDiscipline > li{
    width: 100%;
    padding: 20px;
    border: 1px solid var(--border-color2);
    border-radius: var(--large-radius);
    -webkit-border-radius: var(--large-radius);
    -moz-border-radius: var(--large-radius);
    -ms-border-radius: var(--large-radius);
    -o-border-radius: var(--large-radius);
    margin: 0 0 20px;
    counter-increment: count;
}
ul.specDiscipline > li::before{
    content: counter(count) ". ";
    font-size: 20px;
}
ul.specDiscipline > li > span{
    font-weight: var(--fw-medium);
    font-size: 20px;
    margin: 0 0 10px;
    display: inline-block;
    color: var(--theme-color);
}

ul.specDiscipline > li > ul > li{
    font-size: 15px;
    font-weight: var(--fw-semibold);
}
ul.specDiscipline > li > ul > li > div{
    position: relative;
    margin: 10px 0;
}
ul.specDiscipline > li > ul > li:last-child > div{
    margin: 10px 0 0 0;
}
ul.specDiscipline > li > ul > li > div > .form-label{
    background-color: var(--white);
    position: absolute;
    top: -8px;
    left: 10px;
    margin: 0;
    padding: 0 5px;
    font-size: 12px;
    text-transform: uppercase;
}

.videoNotStart{
    border: 1px dashed var(--border-color2);
    border-radius: 200px;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    -ms-border-radius: 200px;
    -o-border-radius: 200px;
    padding: 40px;
}
.videoNotStart.VideoStarted{
    padding: 0;
    border: none;
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
}
.videoNotStart.sessionCompleted{
    padding: 0;
    border: none;
}
.videoNotStart > .vnsIn{
    background-color: var(--theme-secondary-color);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}
.videoNotStart.sessionCompleted > .vnsIn,
.videoNotStart.VideoStarted > .vnsIn{
    padding: 10px 0;
    background-color: var(--theme-light-color2)
}

.videoNotStart.VideoStarted > .vnsIn{
    background-color: var(--red);
    border-radius: var(--common-radius);
    -webkit-border-radius: var(--common-radius);
    -moz-border-radius: var(--common-radius);
    -ms-border-radius: var(--common-radius);
    -o-border-radius: var(--common-radius);
}


.videoNotStart > .vnsIn .mainTitle{
    font-size: 15px;
    color: var(--white);
    text-transform: none;
    margin: 0 0 15px;
}
.videoNotStart.VideoStarted > .vnsIn .mainTitle{
    display: none;
}
.videoNotStart .countDown{
    display: flex;
    justify-content: center;
    align-items: center;
}
.videoNotStart.VideoStarted .countDown{
    width: 80px;
    padding: 0 15px;
}
.videoNotStart .countDown > span{
    color: var(--white);
    padding: 0 5px;
    font-size: 30px;
    animation: textPulse 0.5s alternate infinite;
    -webkit-animation: textPulse 0.5s alternate infinite;
}
.videoNotStart.sessionCompleted > .vnsIn .countDown > span{
    animation: none;
    -webkit-animation: none;
    font-size: 15px;
    color: var(--theme-secondary-color);
}

.videoNotStart.VideoStarted .countDown > span{
    font-size: 15px;
    color: var(--white);
}
@keyframes textPulse{
    0%{
        opacity: 0.5;
    }
    100%{
        opacity: 1;
    }
}
.videoNotStart .countDown > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 50px;
    font-weight: var(--fw-semibold);
    color: var(--white);
    width: 80px;
    line-height: 1;
}
.videoNotStart .countDown > div > span{
    text-transform: uppercase;
    font-size: 10px;
    color: var(--white);
    opacity: 0.5;
    letter-spacing: 2px;
    display: none;
}

.videoNotStart.VideoStarted .countDown > div{
    font-size: 15px;
    color: var(--white);
}
.videoNotStart.VideoStarted .countDown > div > span{
    color: var(--white);
}

.videoNotStart.VideoStarted .countDown #daysCountDiv,
.videoNotStart.VideoStarted .countDown #hoursCountDiv,
.videoNotStart.VideoStarted .countDown > span:first-child,
.videoNotStart.VideoStarted .countDown span:nth-child(2){
    display: none !important;
}

.videoNotStart.VideoStarted .countDown > span{
    padding: 0 2px;
}