*,
::after,
::before {
    box-sizing: border-box;
}
.container__wr,
.row {
    --bs-gutter-x: 1.5rem;
}
.mainBnrContentBtnParent__wr .primayBtn__wr,
.mainBnrContentTitle__wr,
.mainBnrFormBlockTitle__wr,
.pageNavBarConsultBtn__wr,
.secTitle__wr {
    /* font-family: var(--KaushanScriptFont__wr); */
    /*font-family: 'DREAM AVENUE';*/
    /*text-transform: uppercase !important;*/
    /*font-weight: 600 !important;*/
}
.secTitle__wr,
h3.mbmt {
    text-transform: capitalize;
}
:root {
    --bsPrimary: #518AC9;
    --bsSecondry: #1DB097;
    --bsGrey100__wr: #dee2e6;
    --bsYellow50__wr: #fffced;
    --bsWhite__wr: #ffffff;
    --bsBlack__wr: #000000;
    --bsBlack890__wr: #26358b;
    --bsApple__wr: #1f2c37;
    --bsFaceBook__wr: #4267b2;
    --bsTwitter__wr: #1da1f2;
    --bsLinkedin__wr: #2167f0;
    --bsWatsapp__wr: #0dc143;
    --KaushanScriptFont__wr: "Kaushan Script", cursive;
    --JosefinSansFont__wr: "Josefin Sans", sans-serif;
}
* {
    padding: 0;
    margin: 0;
}
body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: inherit;
    /* font-family: var(--JosefinSansFont__wr); */
    font-family: "Poppins", sans-serif;
}
.text-primary{
    color: var(--bsPrimary) !important;
}
.text-secondary{
    color: var(--bsSecondry) !important;
}
.noScroll__wr {
    overflow: hidden;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
.form-row > .col,
.form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
    position: relative;
}
.container__wr {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.row {
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}
.col {
    flex: 1 0 0%;
}
.col-auto {
    flex: 0 0 auto;
    width: auto;
}
.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}
.col-2,
.col-3 {
    flex: 0 0 auto;
}
.col-2 {
    width: 16.66666667%;
}
.col-3 {
    width: 25%;
}
.col-4,
.col-5 {
    flex: 0 0 auto;
}
.col-4 {
    width: 33.33333333%;
}
.col-5 {
    width: 41.66666667%;
}
.col-6,
.col-7 {
    flex: 0 0 auto;
}
.col-6 {
    width: 50%;
}
.col-7 {
    width: 58.33333333%;
}
.col-8,
.col-9 {
    flex: 0 0 auto;
}
.col-8 {
    width: 66.66666667%;
}
.col-9 {
    width: 75%;
}
.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}
.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

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

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

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

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

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

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

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

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

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

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

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}
.justify-content-center {
  justify-content: center !important;
}
.text-start {
  text-align: left !important;
}

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

.text-center {
  text-align: center !important;
}
.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

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

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

.mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}

.mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}

.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}

.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}

.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}

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

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

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

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

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

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

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

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

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

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

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

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

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

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

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

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

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

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

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

.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

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

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

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

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

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

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

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

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

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

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}
.gap-0 {
    gap: 0 !important;
}
.order-first {
    order: -1 !important;
}

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

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

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

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

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

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

.order-last {
    order: 6 !important;
}
.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-none {
    display: none !important;
}
.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

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

.row-gap-1 {
    row-gap: 0.25rem !important;
}

.row-gap-2 {
    row-gap: 0.5rem !important;
}

.row-gap-3 {
    row-gap: 1rem !important;
}

.row-gap-4 {
    row-gap: 1.5rem !important;
}

.row-gap-5 {
    row-gap: 3rem !important;
}
.row-gap-32px{
    row-gap: 32px !important;
}
.column-gap-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
}

.column-gap-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
}

.column-gap-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
}

.column-gap-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
}

.column-gap-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
}

.column-gap-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
}
.flex-fill {
    flex: 1 1 auto !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

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

.flex-column-reverse {
    flex-direction: column-reverse !important;
}
.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

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

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

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

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

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

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

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

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

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

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

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

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

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

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

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

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

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

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

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

.order-last {
    order: 6 !important;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
.primayBtn__wr {
    /*text-transform: uppercase;*/
    font-size: 15px;
    font-weight: 500 !important;
    color: #fff;
    line-height: 120%;
    border-radius: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 48px;
    /*background-color: #1DB097;*/
    border: 2px solid transparent;
    background-color: transparent;
    background-size: 200% auto;
    background-image: linear-gradient(to right, #293BB2 0%, #24CCA8 51%, #293BB2 100%);
    cursor: pointer;
    text-decoration: none;
    outline: none;
    box-shadow: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.golden_btn{
    position: relative;
    /*overflow: hidden;*/
    border: 2px solid transparent;
    background: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #293BB2, #24CCA8 50%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    /*background: #223A66;*/
    color: transparent;
    /*border-color: #1DB097;*/
}
.golden_btn::before{
    content: "";
    position: absolute;
    inset: -1px;
    /*z-index: 1;*/
    background-color: transparent;
    background: linear-gradient(90deg, #293BB2, #24CCA8 50%);
    border-radius: 46px;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.golden_btn .labelText__wr{
    position: relative;
    z-index: 1;
    color: #6e45e2;
    background: linear-gradient(90deg, #293BB2, #24CCA8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.primayBtn__wr.golden_btn:hover{
    /*background: #1DB097;
    color: #fff;
    border-color: #223A66;*/
}
.primayBtn__wr.golden_btn:hover::before{
    opacity: 1;
}
.primayBtn__wr.golden_btn:hover .labelText__wr{
    color: #fff;
    background: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.secPreTitle__wr,
.secSubTitle__wr,
.secTitle__wr {
    line-height: 1.1;
    text-align: left;
    margin-bottom: 0;
    color: inherit;
}
.offcanvas_form_wrapper.open .offcanvas_btnwrapper .offcanvas_closebtn,
.primayBtn__wr .labelText__wr {
    display: inline-block;
}
.primayBtn__wr:hover {
    color: #fff;
    background-position: right center;
    /*background-color: #223A66;
    border-color: #1DB097;*/
}
.secPreTitle__wr {
    font-size: clamp(0.875rem, 0.7881rem + 0.2421vw, 1rem);
    font-weight: 600;
}
.secTitle__wr {
    font-size: clamp(1.25rem, 0.3814rem + 2.4213vw, 2.5rem);
    font-weight: 600;
}
.secSubTitle__wr {
    font-size: clamp(0.875rem, 0.7002rem + 0.4854vw, 1.125rem);
    font-weight: 400;
}
.counter-icon,
.counter-sec p,
.secTitleWrapCenter__wr,
.secTitleWrapCenter__wr .secPreTitle__wr,
.secTitleWrapCenter__wr .secSubTitle__wr,
.secTitleWrapCenter__wr .secTitle__wr {
    text-align: center;
}
.secTitle__wr:has(+ .secSubTitle__wr),
.secTitle__wr:has(+ p) {
    margin-bottom: 8px;
}
.parentSec__wr {
    padding: 64px 0;
    position: relative;
}
.parentSec__wr .container__wr {
    position: relative;
    z-index: 2;
}
.overlayBgFigure__wr {
    display: flex;
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.overlayBgFigure__wr::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--bsBlack__wr);
    opacity: 0.5;
}
.overlayBgFigure__wr img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.hmAbtFigure__wr img,
.mainBnrBackGroundFigure__wr img {
    object-fit: cover;
    object-position: center;
}
.content__wr p:last-child,
.content__wr p:only-child,
.happyClientsTitleWrap__wr,
.mainBnrText__wr p:last-child,
.mainBnrText__wr p:only-child,
.secTitleWrap__wr p:last-child,
.secTitleWrap__wr p:only-child {
    margin-bottom: 0;
}
.pageNavTopBar__wr {
    padding: 8px 0;
    background-color: transparent;
    background-image: linear-gradient(90deg, #1cba9f 40%, #558dca 100%);
}
.pageNavTopBar__wr .container__wr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.navTopBarInfo__wr {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
}
.navTopInfoItem__wr {
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    color: var(--bsWhite__wr);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.navTopInfoItem__wr > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.navBarNav__wr > li.active > a,
.navBarNav__wr > li:hover > a{
    color: #1DB097;
}
.navTopInfoItem__wr i{
    color: #518AC9;
}
/*.navTopInfoItem__wr:hover a{}*/
/*.serviceTitle__wr {
    color: #518AC9;
}*/
.navTopInfoItem__wr i,
.socialIcons__wr a {
    font-size: 12px;
    line-height: 1;
    text-align: center;
    display: inline-flex;
    background: var(--bsWhite__wr);
    width: 26px;
    height: 26px;
    border-radius: 50%;    
}
.socialIcons__wr a {
    -webkit-transition: 0.5s linear;
}
.navTopInfoItem__wr i {
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    /*transition: 0.5s linear;*/
}
.navTopInfoItem__wr .labelText__wr{
    display: inline-flex;
}
.navTopInfoItem__wr:hover a {
    text-decoration: none;
}
.navTopInfoItem__wr:hover i{
    color: var(--bsWhite__wr); 
    background: #518AC9;
}
.navTopInfoItem__wr:hover a .labelText__wr{
    text-decoration: underline;
    text-underline-offset: 3px;
}
.socialIcons__wr a:hover {
    color: var(--bsWhite__wr);    
    background: #1DB097;
}
.socialIcons__wr {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
.socialIcons__wr a {
    color: #518AC9;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.pageNavBar__wr {
    background: #fff;
}
.navBarNav__wr .dropdown{
    position: relative;
}
.navBarNav__wr .dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #fff;
    min-width: 15rem;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 999;
}
.navBarNav__wr .dropdown .dropdown-content a {
    color: black;
    font-size: clamp(0.8125rem, 0.6814rem + 0.3641vw, 1rem);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    /*-webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;*/
}
.navBarNav__wr .dropdown .dropdown-content a~a{
    border-top: 1px solid #F1F1F1;
}
.navBarNav__wr .dropdown .dropdown-content a:hover {
    background-color: transparent;
    background-image: linear-gradient(90deg, #1cba9f 40%, #558dca 100%);
    color: #fff;
}
.navBarNav__wr .dropdown .dropdown-content.show {
    display: block;
}
#CalenderModal .CalenderArea .CalenderRight .CalenderBox #calendar .week-days,
#CalenderModal .CalenderArea .CalenderRight .CalenderBox #calendar .weeks .week,
.pageNavBar__wr .container__wr,
.pageNavWrap__wr {
    display: flex;
}
.navBarBrand__wr,
.pageNavHead__wr .brand__wr {
    display: inline-flex;
}
.navBarBrand__wr {
    padding: 8px 0;
}
.contactListGroup__wr,
.navBarNav__wr {
    list-style: none;
}
.navBarNav__wr > li > a,
.navBarNav__wr > li > button{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    text-decoration: none;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
.navBarNav__wr > li > button{
    background-color: transparent;
    border: 0;
    cursor: pointer;
}
.navBarNav__wr > li > button .fa-chevron-down{
    margin-left: 4px;
    font-size: 10px;
}
.pageNavBarConsultBtn__wr {
    padding: 12px 32px !important;
}
#CalenderModal .CalenderArea .CalenderRight .CalenderBox #calendar .current-date::after,
#CalenderModal .CalenderArea .CalenderRight .CalenderBox #calendar .current-date::before,
#CalenderModal .CalenderArea .CalenderRight .TimeSlot ul li::before,
#CalenderModal .hide-p,
.offcanvas_form_wrapper.open .offcanvas_btnwrapper .offcanvas_openebtn,
.pageNavBarConsultBtn__wr i {
    display: none;
}
.hmAboutUsSec__wr > .container__wr > .row,
.pageMainBnrSec__wr {
    position: relative;
    
}


.pageMainBnrSec__wr {
    
    /*height: calc(100dvh - 170px); */
}


.mainBnrBackGround__wr,
.mainBnrSlider__wr,
.mainBnrSlider__wr.owl-carousel .owl-stage-outer {
    position: absolute;
    inset: 0;
}
.mainBnrSlider__wr.owl-carousel .owl-stage {
    display: flex;
    height: 100%;
}

.btnParent__wr a{text-decoration: unset;}

.mainBnrBackGroundFigure__wr {
    display: flex;
    width: 100%;
    position: absolute;
    inset: 0;
}
.mainBnrBackGroundFigure__wr::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-image: linear-gradient(90deg, #558dca 40%, #1cba9f 100%);
    opacity: 0.9;
    z-index: 1;
}
.mainBnrBackGroundFigure__wr img {
    width: 100%;
    height: 100%;
}
.mainBnrContentWrap__wr {
    position: relative;
    z-index: 2;
    padding: 48px 0;
}
.mainBnrContent__wr {
    color: var(--bsWhite__wr);
    text-align: left;
}
.contactContentTitleWrap__wr,
.contactFromBlockTitleWrap__wr,
.hmAbtContentTitleWrap__wr,
.welcomeContentTitleWrap__wr,
.mainBnrContentTitleWrap__wr,
.mainBnrFormBlockTitleWrap__wr {
    margin-bottom: 24px;
}
.mainBnrContentTitle__wr {
    font-size: clamp(1.25rem, -0.053rem + 3.632vw, 3.125rem);
    font-weight: 600;
    line-height: 1.1;
    color: inherit;
    letter-spacing: 3px;
    font-family: "Marcellus", serif;
    margin-bottom: 16px;
}
.mainBnrContentSubTitle__wr {
    font-size: clamp(1.125rem, 0.8644rem + 0.7264vw, 1.5rem);
    font-weight: 600;
    line-height: 1.5;
    color: inherit;
    margin-bottom: 0;
}
/*.hmAbtContentBtnParent__wr,
.mainBnrContentBtnParent__wr {
    margin-top: 32px;
}*/
.mainBnrText__wr ul{
    list-style-position: inside;
    list-style: none;
}
.mainBnrText__wr ul li{
    position: relative;
    padding-left: 24px;
}
.mainBnrText__wr ul li::before{
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 10px;
}
.heroSecPartnerBlock{}
.heroPartnerFigure{}
.heroPartnerFigure img{}
.formBlock__wr {
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.26);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.7px);
    -webkit-backdrop-filter: blur(6.7px);
    border: 1px solid rgba(255, 255, 255, 0.09);
}
.mainBnrFormBlockTitle__wr {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--bsWhite__wr);
    margin-bottom: 0;
}
/*.services_sec .secTitle__wr span,
.hmAbtContentTitle__wr span,
.serviceItem__wr:hover .serviceContentTitle__wr {
    color: #1DB097;
}*/
form .form-row {
    row-gap: 32px;
}
form .form-control {
    display: block;
    width: 100%;
    padding: 12px 18px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bsBlack__wr);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bsWhite__wr);
    border: 1px solid var(--bsWhite__wr);
    background-clip: padding-box;
    border-radius: 55px;
    outline: 0;
    box-shadow: none;
    /* font-family: var(--JosefinSansFont__wr); */
    font-family: 'Poppins';
}
.callBtnWrap__wr a,
.serviceItem__wr:hover .serviceContentBlock__wr .serviceIcon__wr,
.tabBtn__wr::after {
    background-color: #1DB097;
}
form textarea.form-control {
    resize: none;
    border-radius: 20px;
    height: 110px;
}
.has-error .form-control {
    border-color: red;
}
.fullBtn__wr,
.hmAbtImageBlockBg__wr,
.hmAbtImageBlock__wr {
    width: 100%;
}
.hmAbtFigure__wr {
    display: flex;
    width: 100%;
    border-radius: 8px;
}
.figure__wr img,
.portfolioFigure__wr img,
.serviceFigure__wr img {
    object-fit: cover;
    object-position: center center;
}
.hmAbtContentBlock__wr {
    text-align: left;
    position: relative;
}
/*.welcomeContentTitleWrap__wr,
.hmAbtContentTitle__wr {
    font-size: 48px;
}*/
/*.welcomeContentTitle__wr span{
    color: #1DB097;
}*/
.imageBlockBg__wr,
.portfolioImageBlockBg__wr,
.serviceImageBlockBg__wr {
    width: 100%;
    position: relative;
    height: 380px;
}
.figure__wr {
    display: flex;
    width: 100%;
    position: relative;
}
.figure__wr img {
    width: 100%;
    height: 100%;
}
.serviceSec__wr {
    /* background: var(--bsYellow50__wr); */
}
.portfolioTitleWrap__wr,
.serviceTitleWrap__wr,
.testimonialTitleWrap__wr,
.unLockBeautyTitleWrap__wr {
    margin-bottom: 32px;
}
.portfolioSec__wr .row,
.serviceSec__wr .row {
    row-gap: 24px;
}
.serviceItem__wr {
    width: 100%;
    height: 100%;
    position: relative;
    background: var(--bsWhite__wr);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
}
.portfolioFigure__wr,
.serviceFigure__wr {
    display: flex;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 380px;
}
.serviceFigure__wr::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc((286 / 437) * 100%);
}
.serviceFigure__wr img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.serviceContentBlock__wr {
    width: 100%;
    position: relative;
    padding-top: calc(35px + 1rem);
    padding-bottom: 1rem;
}
.serviceContentTitleWrap__wr {
    margin-bottom: 1rem;
}
.serviceContentTitle__wr {
    font-size: 24px;

    /* color: var(--bsSecondry5__wr); */
    color: #000;
    font-family: "DREAM AVENUE";
    font-weight: 600 !important;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.serviceContentTitle__wr > a {
    color: inherit;
    text-decoration: none;
}
.serviceIcon__wr {
    width: 70px;
    height: 70px;
    line-height: 64px;
    border: 2px solid var(--bsPrimary5__wr);
    border-radius: 50%;
    background: var(--bsWhite__wr);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    font-size: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: absolute;
    top: -35px;
    left: 16px;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
.tabBtn__wr,
.testimonialContent__wr p {
    font-size: 18px;
}
.serviceIcon__wr img {
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
.serviceItem__wr:hover .serviceContentBlock__wr .serviceIcon__wr img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.serviceItem__wr:hover .serviceFigure__wr img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.tabBtnsWrap__wr {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 64px;
}
.tabBtn__wr {
    font-weight: 400;
    line-height: 1.5;
    color: var(--bsBlack__wr);
    text-decoration: none;
    padding: 0 32px 18px;
    position: relative;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
.active .tabBtn__wr,
.contactListGroup__wr p:hover a,
.happyClientsCount__wr{
    color: #1DB097;
}
.offcanvas_form_wrapper .offcanvas_btnwrapper .enq_text {
    color: #223A66;
}
.tabBtn__wr::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
.active .tabBtn__wr::after,
.footerInfoAddress__wr,
.offcanvas_form_wrapper .offcanvas_body .btn-primary,
.portfolioItem__wr {
    width: 100%;
}
.portfolioFigure__wr::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc((286 / 437) * 100%);
}
.portfolioFigure__wr img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.portfolioItem__wr:hover .portfolioFigure__wr img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.happyClientsSec__wr {
    text-align: center;
    position: relative;
    padding: 30px 0;
}
/* .happyClientsSec__wr::before {
    content: "";
    background: url(../images/badge-bg.webp) center center/contain;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.1;
    z-index: -1;
} */
.happyClientsCount__wr {
    font-size: 96px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}
.happyClientsTitle__wr {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--bsBlack__wr);
    margin-bottom: 24px !important;
}
.happyClientsTitleWrap__wr p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: inherit;
    margin-bottom: 0;
}
.testimonialSec__wr {
    /*background: url(../img/back.jpg) center center/cover no-repeat;
    position: relative;*/
    /* -webkit-animation: 20s linear infinite forwards testing;
    animation: 20s linear infinite forwards testing; */
}
/* @-webkit-keyframes testing {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 -100%;
    }
}
@keyframes testing {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 -100%;
    }
} */
.testimonialSlider__wr.owl-carousel .owl-stage {
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}
.testimonialSlider__wr.owl-carousel .item {
    height: 100%;
}
.testimonialItem__wr {
    display: block;
    background: var(--bsWhite__wr);
    padding: 32px;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 8px;
    height: 100%;
}
.testimonialLogoFigure__wr {
    display: flex;
    max-width: 100px;
    margin: 0 auto 20px;
}
.testimonialLogoFigure__wr img {
    margin: 0 auto;
    max-height: 70px;
    width: auto !important;
    max-width: 100%;
}
/*.testimonialSlider__wr.owl-theme .owl-nav [class*="owl-"] {
    margin: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bsWhite__wr);
    color: var(--bsPrimary5__wr);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.08));
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
.testimonialSlider__wr.owl-theme .owl-nav [class*="owl-"]:hover {
    background: var(--bsPrimary5__wr);
    color: var(--bsWhite__wr);
}
.testimonialSlider__wr.owl-carousel .owl-nav button.owl-prev {
    left: -20px;
}
.testimonialSlider__wr.owl-carousel .owl-nav button.owl-next {
    right: -20px;
}*/
.testimonialSlider__wr.owl-theme .owl-nav{
    margin-top: 0;
}
.testimonialSlider__wr.owl-theme .owl-nav [class*="owl-"] {
    margin: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--bsWhite__wr);
    background: rgba(17, 17, 17, 0.5);
    font-size: 14px;
    line-height: 1;
    color: var(--bsWhite__wr);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.08));
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all linear 0.5s;
    transition: all linear 0.5s;
}
.testimonialSlider__wr.owl-theme .owl-nav [class*="owl-"]:hover {
    background: rgb(17, 17, 17);
    color: var(--bsWhite__wr);
}
.testimonialSlider__wr.owl-carousel .owl-nav button.owl-prev {
    left: 8px;
}
.testimonialSlider__wr.owl-carousel .owl-nav button.owl-next {
    right: 8px;
}
.contactSec__wr {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}
.contactOverlayBgFigure__wr::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: transparent;
    background-image: linear-gradient(90deg, #223A66 40%, #558DCA 100%);
    opacity: 0.8;
    display: none;
}
.contactBlockWrap__wr {
    padding: 60px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.7px);
    -webkit-backdrop-filter: blur(6.7px);
}
.contactFromBlock__wr {
    padding: 0;
    background: 0 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
    border: none;
}
.contactContentTitle__wr,
.contactFromBlockTitle__wr {
    font-size: clamp(1.25rem, 0.7288rem + 1.4528vw, 2rem);
    color: #000;
}
.contactFromBlock__wr form .form-control {
    background-color: #f2f2f2;
    border-color: #f2f2f2;
}
.contactListGroup__wr li {
    width: 100%;
    display: block;
    padding-left: 65px;
    position: relative;
}
.contactListGroup__wr li ~ li {
    margin-top: 30px;
}
.contactListGroup__wr .icon__wr {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 0;
}
.contactListGroup__wr .labelTitle__wr {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: #000;
    text-align: left;
    margin: 0;
}
.contactListGroup__wr p {
    font-weight: 400;
    line-height: 1.5;
    color: #000;
}
.contactListGroup__wr p:last-child,
.contactListGroup__wr p:only-child {
    margin-bottom: 0;
}
.contactListGroup__wr a {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    text-decoration: none;
    word-break: break-all;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.pageFooter__wr {
    /*background-color: #121B2E;*/
    color: #000;
    position: relative;
}
.footOverlayBgFigure__wr::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #ffffff;
    opacity: 0.7;
}
.pageFooter__wr > .container__wr {
    position: relative;
    z-index: 1;
    padding-block: 48px;
}
.footBlockTitle{
    font-size: clamp(1.125rem, 0.8644rem + 0.7264vw, 1.5rem);
    line-height: 1.2;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}
.footContactInfo{
    position: relative;
    padding-left: 2rem;
    color: #000;
}
.footContactInfo i{
    position: absolute;
    top: 5px;
    left: 0;
    color: #1CBA9F;
}
.footContactInfo > a {
    position: relative;
    display: inline-flex;
    text-decoration: none;
    color: #000;
    transition: all ease-in 0.3s;
}
.footContactInfo:hover > a {
    color: #1CBA9F;
}
.footSocial {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footSocial a{
    height: 35px;
    width: 35px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all ease-in 0.5s;
    transition: all ease-in 0.5s;
}
.footSocial a:hover {
    color: #fff;
    border-color: #1CBA9F;
    background: #1CBA9F;
    box-shadow: 0 0 5px #222 inset;
}
.pageFooterCopyRight__wr {
    position: relative;
    z-index: 1;
    padding: 24px 0;
    background-color: transparent;
    background-image: linear-gradient(90deg, #1cba9f 40%, #558dca 100%);
}
.pageFooterCopyRight__wr .copyright__wr {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bsWhite__wr);
    margin-bottom: 0;
}
.pageFooterCopyRight__wr .designBy__wr {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bsWhite__wr);
    margin-bottom: 0;
}
/*.pageFooter__wr > .container__wr {
    padding-top: 48px;
    padding-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}*/
/*.footerContactInfo__wr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
}*/
/*.footerContactInfo__wr p {
    font-weight: 400;
    color: var(--bsWhite__wr);
    line-height: 1;
    text-align: center;
    margin-bottom: 0;
}
.footerContactInfo__wr p a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.footerContactInfo__wr p i,
.footerContactInfo__wr p:hover a {
    color: #AE7C37;
}
.footerContactInfo__wr p i {
    vertical-align: middle;
    margin-right: 8px;
}
.pageFooterCopyRight__wr > .container__wr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
*/
.callBtnWrap__wr {
    position: fixed;
    top: 15rem;
    left: 10px;
    margin: auto;
    z-index: 99;
    border-radius: 50%;
    box-shadow: 0 0 60px 1px rgb(0 0 0 / 50%);
    width: 50px;
    height: 50px;
}
.callBtnWrap__wr a {
    color: var(--bsWhite__wr);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    position: relative;
    text-decoration: none;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: 2s infinite call-shadow-pulse;
    animation: 2s infinite call-shadow-pulse;
}
@-webkit-keyframes call-shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(29, 176, 151, 0.5);
    }
    100% {
        box-shadow: 0 0 0 35px rgba(29, 176, 151, 0);
    }
}
@keyframes call-shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(29, 176, 151, 0.5);
    }
    100% {
        box-shadow: 0 0 0 35px rgba(29, 176, 151, 0);
    }
}
.callBtnWrap__wr .popoverWrap__wr {
    max-width: 275px;
    width: 275px;
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    display: none;
}
#CalenderModal .show-p,
.callBtnWrap__wr.active .popoverWrap__wr,
.modal.fades {
    display: block;
}
.callBtnWrap__wr .popoverWrap__wr .arrow__wr {
    display: block;
    width: 0;
    height: 0;
    border: 11px solid transparent;
    position: absolute;
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: rgba(0, 0, 0, 0.25);
    border-left-width: 0;
}
.callBtnWrap__wr .popoverWrap__wr .arrow__wr::before {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    bottom: -10px;
    left: 1px;
    content: " ";
    border-right-color: #fff;
    border-left-width: 0;
}
.callBtnWrap__wr .popoverWrap__wr .title__wr {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}
.callBtnWrap__wr .popoverWrap__wr .content__wr {
    padding: 9px 14px;
    font-size: 14px;
}
.watsAppWrap__wr {
    position: fixed;
    top: 30rem;
    left: 10px;
    margin: auto;
    z-index: 99;
    border-radius: 50%;
    box-shadow: 0 0 60px 1px rgb(0 0 0 / 50%);
    width: 50px;
    height: 50px;
}
.watsAppWrap__wr a {
    background: var(--bsWatsapp__wr);
    color: var(--bsWhite__wr);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    padding: 0;
    position: relative;
    text-decoration: none;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: 2s infinite watapp-shadow-pulse;
    animation: 2s infinite watapp-shadow-pulse;
}
@-webkit-keyframes watapp-shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 193, 67, 0.5);
    }
    100% {
        box-shadow: 0 0 0 35px rgba(13, 193, 67, 0);
    }
}
@keyframes watapp-shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 193, 67, 0.5);
    }
    100% {
        box-shadow: 0 0 0 35px rgba(13, 193, 67, 0);
    }
}
.offcanvas_form_wrapper {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 650px;
    max-width: 650px;
    background-color: #212121;
    z-index: 1045;
    -webkit-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
}
.offcanvas_form_wrapper .offcanvas_btnwrapper {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #1DB097;
    top: 0;
    border-radius: 50%;
    bottom: 0;
    margin: auto;
    box-shadow: -10px 0 60px rgb(36 33 74 / 49%);
    display: inline-block;
    left: -50px;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
.offcanvas_form_wrapper .offcanvas_btnwrapper .enq_text {
    font-size: 20px;
    line-height: 1;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    display: inline-block;
    padding: 0;
    position: absolute;
    top: 45px;
    margin: 0;
    left: -46px;
    font-weight: 500;
    max-width: 100%;
    -webkit-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
}
.offcanvas_form_wrapper .offcanvas_btnwrapper .offcanvas_openebtn {
    font-size: 30px;
    color: var(--bsWhite__wr);
    margin: 0 0 0 -47px;
}
.offcanvas_form_wrapper .offcanvas_btnwrapper .offcanvas_closebtn {
    display: none;
    font-size: 40px;
    color: var(--bsWhite__wr);
    margin: 0;
    text-decoration: none;
}
.offcanvas_form_wrapper .offcanvas_body {
    padding: 0 30px 30px 80px;
    margin: 0;
    color: var(--bs-black);
    flex-grow: 1;
    overflow-y: auto;
}
.consultaion-btn a,
.offcanvas_form_wrapper.open .offcanvas_btnwrapper .enq_text {
    color: var(--bsWhite__wr);
}
.offcanvas_form_wrapper .sec_head {
    padding: 30px 30px 30px 80px;
    position: relative;
    color: var(--bsWhite__wr);
}
.offcanvas_form_wrapper .sec_head .sec_title {
    font-size: clamp(1.25rem, 0.7257rem + 1.4563vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1DB097;
    margin-bottom: 0;
    text-align: left;
}
.offcanvas_form_wrapper .sec_head p {
    color: inherit;
    margin-bottom: 0;
}
.offcanvas_form_wrapper .sec_head .offcanvas_xs_closebtn {
    color: var(--bs-white);
    font-size: 30px;
    display: none;
    position: absolute;
    right: 30px;
    top: 30px;
    text-decoration: none;
}
.offcanvas_form_wrapper.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    z-index: 2000000001 !important;
}
.offcanvas_backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: var(--bsBlack__wr);
    opacity: 0;
    visibility: hidden;
}
.offcanvas_backdrop.show {
    opacity: 0.8;
    visibility: visible;
}
.modal,
.modal-backdrop.fade {
    opacity: 0;
}
.consultaion-btn a {
    font-size: 15px;
    font-weight: 500;
    line-height: 120%;
    /*font-family: "DREAM AVENUE";*/
    border-radius: 46px;
    padding: 14px 20px;
    /*background-color: #AE7C37;
    border: 1px solid #AE7C37;*/
    cursor: pointer;
    outline: 0;
    box-shadow: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
}
.consultaion-btn {
    margin-top: 30px;
    display: none;
}
.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color: ;
    --bs-modal-bg: #fff;
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: 1px;
    --bs-modal-border-radius: 0.5rem;
    --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --bs-modal-inner-border-radius: calc(0.5rem - 1px);
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: 1px;
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg: ;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: 1px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none;
}
.modal .modal-dialog,
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}
.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}
.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}
.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}
.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity);
}
.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
    margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}
.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
}
.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
    margin: calc(var(--bs-modal-footer-gap) * 0.5);
}
#CalenderModal .CalenderArea .CalenderRight .TimeSlot ul li ~ li,
.help-block {
    margin-top: 10px;
}
@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }
    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
    }
    .modal-sm {
        --bs-modal-width: 300px;
    }
}
@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        --bs-modal-width: 800px;
    }
    .services_sec > .container__wr > .row:nth-child(odd) {
        flex-direction: row-reverse;
    }
}
@media (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width: 1140px;
    }
}
.modal {
    background-color: rgba(0, 0, 0, 0.8);
}
.modal.show {
    opacity: 1;
}
.modal.show .modal-dialog {
    transform: none;
}
.modal-content {
    border-radius: 0;
}
#CalenderModal {
    z-index: 2000000001;
}
#CalenderModal .modal-dialog {
    max-width: 850px;
}
#CalenderModal .modal-dialog .modal-content {
    border: none;
    box-shadow: none;
    border-radius: 0;
}
#CalenderModal .CalenderArea {
    display: flex;
    margin: -15px;
    min-height: 505px;
}
#CalenderModal .CalenderArea .Close {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 50px;
    line-height: 55px;
    width: 50px;
    text-align: center;
    color: #000;
    text-decoration: none;
}
#CalenderModal .CalenderArea .CalenderLeft {
    width: 50%;
    border-right: 1px solid #d6d6d6;
    transition: 0.5s ease-in-out;
}
#CalenderModal .CalenderArea .CalenderLeft figure {
    margin: 0;
    padding: 60px 40px;
    border-bottom: 1px solid #ddd;
}
#CalenderModal .CalenderArea .CalenderLeft figure img {
    /*width: 100px;
    max-width: 343px;*/
    display: block;
    margin: 0 auto;
}
#CalenderModal .CalenderArea .CalenderLeft .thankyou-text {
    padding: 25px 40px;
    min-height: 300px;
}
#CalenderModal .CalenderArea .CalenderLeft .thankyou-text h3 {
    color: var(--darkBlueColor__wr);
    font-weight: 500;
    margin: 0 0 10px;
    font-size: 26px;
}
#CalenderModal .CalenderArea .CalenderLeft .thankyou-text h4 {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin: 0 0 10px;
}
#CalenderModal .CalenderArea .CalenderLeft .thankyou-text p:not([class]) {
    color: var(--bsGreyColor__wr);
}
#CalenderModal .CalenderArea .CalenderLeft .thankyou-text p {
    font-size: 15px;
    color: inherit;
}
#CalenderModal .CalenderArea .CalenderRight {
    width: 50%;
    padding: 40px 0 0 15px;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}
#CalenderModal .CalenderArea .CalenderRight h3,
#CalenderModal .CalenderForm h4 {
    font-weight: 500;
    font-size: 25px;
    margin: 0 0 15px;
}
#CalenderModal .CalenderArea .CalenderRight .CalenderBox {
    flex: 1;
    position: relative;
    transition: 0.5s ease-in-out;
}
#CalenderModal .CalenderArea .CalenderRight .CalenderBox .Controls #next,
#CalenderModal .CalenderArea .CalenderRight .CalenderBox .Controls #prev {
    font-size: 25px;
    line-height: 17px;
    font-weight: 700;
    margin: 0;
    cursor: pointer;
    position: absolute;
    z-index: 99;
}
#CalenderModal .CalenderArea .CalenderRight .CalenderBox .Controls #prev {
    left: 10%;
}
#CalenderModal .CalenderArea .CalenderRight .CalenderBox .Controls #next {
    right: 10%;
}
#CalenderModal .CalenderArea .CalenderRight .CalenderBox #calendar .current-date {
    position: relative;
    padding: 0 0 10px !important;
    text-align: center;
    background: 0 0;
    box-shadow: none;
}
#CalenderModal .CalenderArea .CalenderRight .CalenderBox #calendar .current-date .current-month {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
#CalenderModal .CalenderArea .CalenderRight .CalenderBox #calendar .week-days .week-day {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    width: 45px;
    height: 25px;
    text-align: center;
}
#CalenderModal .CalenderArea .CalenderRight .CalenderBox #calendar .weeks .week .day {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    padding: 1px 0 0;
    font-size: 16px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    color: #000;
    font-weight: 500;
    line-height: 40px;
}
#CalenderModal .CalenderArea .CalenderRight .CalenderBox #calendar .weeks .week .day.today {
    background-color: #1DB097;
    color: #fff;
}
#CalenderModal .CalenderArea .CalenderRight .CalenderBox #calendar .weeks .week .day.not-current-month {
    color: #dedede;
}
#CalenderModal .CalenderArea.AddSlot .CalenderLeft {
    width: 40%;
}
#CalenderModal .CalenderArea.AddSlot .CalenderRight {
    width: 65%;
}
#CalenderModal .CalenderArea.AddSlot .CalenderRight aside .TimeSlot {
    transform: translate(0);
}
#CalenderModal .CalenderArea .CalenderRight aside {
    display: flex;
    transition: 0.5s ease-in-out;
}
#CalenderModal .CalenderArea .CalenderRight .TimeSlot {
    width: 40%;
    padding: 0 0 0 10px;
    transform: translate(100%, 0);
}
#CalenderModal .CalenderArea .CalenderRight .TimeSlot h5 {
    font-weight: 500;
    color: #000;
    margin: 0 0 15px;
}
#CalenderModal .CalenderArea .CalenderRight .TimeSlot ul {
    overflow: hidden;
    white-space: nowrap;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 365px;
    overflow-y: auto;
    padding: 0 5px 0 0;
}
#CalenderModal .CalenderArea .CalenderRight .TimeSlot ul::-webkit-scrollbar {
    width: 10px;
}
#CalenderModal .CalenderArea .CalenderRight .TimeSlot ul::-webkit-scrollbar-track {
    background: #fff;
}
#CalenderModal .CalenderArea .CalenderRight .TimeSlot ul::-webkit-scrollbar-thumb {
    background: #4c4b4b;
    border: 2px solid #fff;
    border-radius: 15px;
}
#CalenderModal .CalenderArea .CalenderRight .TimeSlot ul li {
    padding: 0 0.5rem;
    font-size: 15px;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
.hmAbtFigure__wr img,
.img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
#CalenderModal .CalenderArea .CalenderRight .TimeSlot ul li span.Time {
    width: 100%;
    height: 50px;
    border: 1px solid #adaeb1;
    display: inline-block;
    text-align: center;
    line-height: 45px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
    background-color: #fff;
}
#CalenderModal .CalenderArea .CalenderRight .TimeSlot ul li span.Confirm {
    width: 100%;
    height: 50px;
    transform: translateX(15px);
    display: inline-block;
    background-color: #1DB097;
    font-weight: 500;
    color: #fff;
    border-radius: 5px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}
#CalenderModal .CalenderArea .CalenderRight .TimeSlot ul li.timeactive span.Time {
    background-color: #616161;
    border-color: #616161;
    font-weight: 400;
    color: #fff;
    width: 49%;
}
#CalenderModal .CalenderArea .CalenderRight .TimeSlot ul li.timeactive span.Confirm {
    font-weight: 400;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    width: 49%;
}
#CalenderModal .CalenderArea.AddSlot .CalenderRight .CalenderBox {
    flex: unset;
    width: 60%;
}
#CalenderModal .CalenderForm {
    width: 50%;
    padding: 40px 0 60px 25px;
    transition: 0.5s ease-in-out;
    display: none;
    position: relative;
}
#CalenderModal .CalenderForm .back {
    font-size: 36px;
    color: #000;
    line-height: 1;
    text-decoration: none;
    position: absolute;
    top: 0;
}
#CalenderModal .CalenderForm .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}
#CalenderModal .CalenderForm .form-group .form-control {
    outline: 0;
    box-shadow: none;
    color: var(--bs-black);
    border: 1px solid #ccc;
}
#CalenderModal .CalenderForm .form-group .form-check {
    padding: 0;
}
#CalenderModal .CalenderForm .form-group .form-check .form-check-label {
    position: relative;
    display: flex;
    font-size: 15px;
    padding: 0 0 0 25px;
    margin: 0 0 8px;
}
#CalenderModal .CalenderForm .form-group .form-check .form-check-label input {
    margin: 0;
    width: 17px;
    height: 17px;
    left: 0;
    top: 2px;
    position: absolute;
}
#CalenderModal .CalenderForm .form-group .form-check .form-check-label span.Icon {
    margin: 0 16px 0 0;
    font-size: 15px;
    padding: 0 0 5px 5px;
}
#CalenderModal .fa-video {
    color: #4888f7;
}
#CalenderModal .fa-phone {
    color: green;
}
#CalenderModal .fa-location-dot {
    color: red;
}
#CalenderModal .CalenderForm button {
    cursor: pointer;
    background-color: #1DB097;
    font-size: 15px;
    padding: 10px 14px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid #1DB097;
    width: 100%;
    border-radius: 50rem;
    margin: 0 auto;
}
#CalenderModal .CalenderForm button:hover {
    color: #fff;
    background-color: #223A66;
    border-color: #223A66;
}
#CalenderModal .enquiry-error {
    border-color: red !important;
}
#CalenderModal .disable-time {
    cursor: not-allowed !important;
    color: #b6b5b5;
}
#CalenderModal .has-error .help-block,
#CalenderModal .has-error .radio,
#CalenderModal .has-error.checkbox label,
#CalenderModal .has-error.checkbox-inline label,
#CalenderModal .has-error.radio label,
#CalenderModal .has-error.radio-inline label,
#CalenderModal .radio-inline {
    color: #a94442;
}
.has-error span {
    font-weight: 400;
    color: red;
    position: absolute;
    top: 45px;
    font-size: 14px;
    left: 30px;
}
.help-block {
    font-size: 14px;
    display: block;
    color: red;
    position: absolute;
    top: 70px;
    left: 5px;
}
.counter-sec .counter {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
}
.services_sec > .container__wr > .row {
    align-items: center;
}
.services_sec {
    margin: 35px 0;
}
.services_sec img {
    transform: scale(1.1);
}
.img_area {
    overflow: hidden;
    border-radius: 10px;
}
.img_area img:hover {
    transform: scale(1.2);
    border-radius: 10px;
}
.hmAbtFigure__wr {
    overflow: hidden;
}
.hmAbtFigure__wr img:hover {
    transform: scale(1.1);
}
h3.mbmt {
    margin: 15px 0;
}

.ceo_content{
    padding-top: 9em;
}

.royal_he{
    font-family: "Alex Brush", cursive;
    color: #50414A14;
    font-size: 150px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1em;
}

@media only screen and (max-width: 600px) {
    .ceo_content{
        padding-top: 2em;
    }
    .royal_he {
    font-size: 57px;
    }
}

@media only screen and (max-width: 768px){
    .royal_he {
        font-size: 80px;
        }
        .ceo_content{
            padding-top: 0em;
        }
}


.ser__single-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.ser__single-img:before {
    content: '\A';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: .6;
    transition: all 1s;
    -webkit-transition: all 1s;
}
.ser__image {
    display: block;
    width: 100%;
    height: auto;
}
.ser__text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    width: 90%;
    opacity: 1;
}
.ser__text h4 {
    font-size: 26px;
    letter-spacing: 2px;
    font-weight: bold;
    font-family: "DREAM AVENUE";
    text-transform: uppercase;
}
.ser__img-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgb(0 0 0 / 26%), rgb(7 7 7 / 62%));
    overflow: hidden;
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    transition: .5s ease;
}
.ser__img-overlay .ser__text{
    position: static;
    transform: unset;
    width: 100%;
}
.ser__single-img:hover .ser__img-overlay {
    /*height: 100%;*/
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.ser__single-img:hover .ser__text{
    opacity: 0;
}
.ser__single-img:hover .ser__img-overlay .ser__text{
    opacity: 1;
}
.ser__text p {
    font-size: 17px;
    margin-bottom: 0;
}
.toggle-popover-block {
    display: inline-flex;
    position: relative;
    z-index: 99;
}
.popoverBlock{
    max-width: 275px;
    width: 275px;
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    display: none;
}
.toggle-popover-block.active .popoverBlock{
    display: block;
}
.toggle-popover-block .popoverBlock .arrow__wr{
    display: block;
    width: 0;
    height: 0;
    border-width: 11px;
    border-color: transparent;
    border-style: solid;
    position: absolute;
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: rgba(0, 0, 0, 0.25);
    border-left-width: 0;
}
.toggle-popover-block .popoverBlock .arrow__wr::before{
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 10px;
    bottom: -10px;
    left: 1px;
    content: " ";
    border-right-color: #fff;
    border-left-width: 0;
}
.toggle-popover-block .popoverBlock .title__wr{
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}
.toggle-popover-block .popoverBlock .content__wr{
    padding: 9px 14px;
    font-size: 14px;
}
.data_placement_topLeft .popoverBlock {
    left: 0;
    top: auto;
    bottom: calc(100% + 10px);
    transform: translate(0, 0);
    width: 200px;
    max-width: 200px;
}
.toggle-popover-block.data_placement_topLeft .popoverBlock .arrow__wr{
    top: 100%;
    left: 11px;
    margin-top: 0;
    border-right-color: transparent;
    border-left: 11px solid transparent;
    border-top: 11px solid rgba(0, 0, 0, 0.25);
    border-bottom: 0;
}
.toggle-popover-block.data_placement_topLeft .popoverBlock .arrow__wr::before{
    bottom: 1px;
    left: -9.5px;
    border-right-color: transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #fff;
    border-bottom: 0;
}
/*.primayBtn__wr {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    line-height: 120%;
    text-decoration: none;
    border-radius: 5px;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 48px;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    outline: 0;
    box-shadow: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.primayBtn__wr:hover {background-color: #fff; color:var(--primary-color);
    border: 2px solid #fff;}*/
    
  .toggle-popover-block .popoverBlock .title__wr {
    padding: 8px 14px;
   
    font-size: 14px;
    font-weight: 600;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}  

.content__wr1{    padding: 8px 14px;}

.btnRed {
    background: #fff;
    color: #223A66;
    border-color: #223A66;
}

.btnRed:hover{
    background: #1DB097;
    color: #fff;
    border-color: #223A66;
}

/*TEAM SEC E*/
.welcomeSec__wr{
    padding-top: 48px;
}
.welcomeSec__wr > .container__wr > .row{}
.welcomeImageBlock{
    width: 100%;
}
.welcomeFigure{
    width: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 8px;
}
.welcomeFigure img{
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s;
}
.welcomeFigure:hover img{
    transform: scale(1.1);
}
.welcomeContentBlock {
    position: relative;
}
/*TESTIMONIAL SEC S*/
.testimonialSec__wr {
    /*background: url(assets/img/testimonial-bg.webp) center center/cover repeat-y;*/
    position: relative;
    /*-webkit-animation: 20s linear infinite forwards testing;
    animation: 20s linear infinite forwards testing;*/
}
/*@-webkit-keyframes testing {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 -100%;
    }
}
@keyframes testing {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 -100%;
    }
}*/
.testimonialTitle__wr span{
    color: #1CBA9F;
}
.reviewHeadBox{
    padding: 1.5rem;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.reviewHeadInfoBlock{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
}
.reviewHeadTitleContainer{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}
.gBrandIcon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.gBrandIcon img{}
.reviewHeadInfoTitle{
    display: inline-flex;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: rgb(17, 17, 17);
    font-family: var(--KaushanScriptFont__wr);
}
.reviewHeadRatingContainer{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}
.reviewHeadRatingValue{
    display: inline-flex;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: rgb(17, 17, 17);
    word-break: normal !important;
    font-family: var(--KaushanScriptFont__wr);
}
.reviewHeadRating{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1px;
    font-size: 22px;
    line-height: 1;
    color: #fcbf02;
}
.reviewHeadRating i{}
.reviewHeadRatingCount{
    display: inline-flex;
    font-size: 16px;
    line-height: 1;
    color: rgba(17, 17, 17, 0.5);
    font-family: var(--KaushanScriptFont__wr);
}
.reviewHeadBtnBlock{}
.reviewHeadBtn{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    text-decoration: none;
    font-family: var(--KaushanScriptFont__wr);
    border-radius: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 18px;
    background-color: rgb(25, 123, 255);
    border: 2px solid rgb(25, 123, 255);
    cursor: pointer;
    outline: 0;
    box-shadow: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.reviewHeadBtn:hover{
    background-color: rgb(48, 136, 255);
    border-color: rgb(48, 136, 255);
    color: #fff;
}
.testimonialSlider__wr.owl-carousel .owl-stage {
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}
.testimonialSlider__wr.owl-carousel .item {
    height: 100%;
}
.reviewBlock{
    display: block;
    background-color: #fff;
    padding: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: 100%;
    -webkit-transition: all ease 0.1s;
    transition: all ease 0.1s;
}
.reviewBlock:hover{
    background-color: rgb(246, 246, 248);
}
.reviewAuthBlock{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
}
.reviewAvtarBlock{
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
}
.reviewAvtar{
    display: inline-flex;
    width: 40px;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #78909c;
    font-size: 20px;
    line-height: 1;
    color: #fff;
}
.reviewAvtar.bg-red{
    background-color: #EC4434;
}
.reviewAvtar.bg-blue{
    background-color: #4484F4;
}
.reviewAvtar.bg-green{
    background-color: #34AC54;
}
.reviewAvtar.bg-yellow{
    background-color: #FCBC04;
}
.reviewAvtar span{
    display: inline-flex;
    line-height: 1;
    height: 25px;
}
.gIconFigure{
    display: inline-flex;
    position: absolute;
    bottom: -6px;
    right: -6px;
}
.gIconFigure img{
    width: 24px !important;
}
.reviewAuthInfoBlock{
    width: calc(100% - 52px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.reviewAuthInfo{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    gap: 5px;
}
.reviewAuthName{
    display: block;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: rgb(17, 17, 17);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
}
.verifyBadgeFigure{
    display: inline-flex;
}
.verifyBadgeFigure img{
    width: 14px !important;
}
.reviewDate{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1;
    color: rgba(17, 17, 17, 0.5);
}
.reviewContentBlock{}
.reviewRating{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
    font-size: 16px;
    color: #fcbf02;
    margin-bottom: 0.5rem;
}
.reviewRating i{}
.reviewContent{
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    overflow: hidden;
    /*height: 340px;*/
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    -moz-line-clamp: 4;
    -moz-box-orient: vertical;
}
.reviewContent p{
    margin-bottom: 0;
}
.reviewBtnBlock{
    width: 100%;
    display: flex;
    margin-top: 0.5rem;
}
.reviewBtn{
    display: inline-flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: rgb(25, 123, 255);
    text-decoration: none;
}
.reviewBtn:hover{
    color: rgb(25, 123, 255);
    text-decoration: underline;
}
/*REVIEW MODAL S*/
    .modal-dialog {
        position: relative;
        width: auto;
        margin: .5rem;
        pointer-events: none;
    }
    .modal-dialog-centered {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        min-height: calc(100% - 1rem);
    }
    .modal-dialog-scrollable {
        display: -ms-flexbox;
        display: flex;
        max-height: calc(100% - 1rem);
    }
    .modal-dialog-centered.modal-dialog-scrollable {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        height: 100%;
    }
    #testimonialModal .modal-content{
        border-radius: 8px;
    }
    .reviewModalClose{
        background: transparent;
        border: none;
        padding: 0;
        width: 32px;
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        cursor: pointer;
        color: #000 !important;
        text-decoration: none;
        position: absolute;
        top: 12px;
        right: 12px;
    }
    .modal-content {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        pointer-events: auto;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid rgba(0, 0, 0, .2);
        border-radius: .3rem;
        outline: 0;
    }
    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 1rem);
        overflow: hidden;
    }
    .modal-dialog-centered.modal-dialog-scrollable .modal-content {
        max-height: none;
    }
    .modal-body {
        position: relative;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        padding: 1rem;
    }
    .modal-dialog-scrollable .modal-body {
        overflow-y: auto;
    }
    #testimonialModal .modal-body{
        padding: 40px 1.5rem;
    }
    .reviewMoadlContainer .reviewBlock{
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 1.5rem;
        background-color: transparent;
        padding: 0;
        border: none;
        border-radius: 0;
        height: auto;
        -webkit-transition: unset;
        transition: unset;
    }
    .reviewMoadlContainer .reviewBlock:hover {
        background-color: transparent;
    }
    .reviewMoadlContainer .reviewAvtar{
        width: 48px;
        font-size: 20px;
    }
    .reviewMoadlContainer .reviewAuthInfoBlock{
        width: auto;
        flex: unset;
    }
    .reviewMoadlContainer .reviewRating{
        font-size: clamp(1rem, 0.8263rem + 0.4843vw, 1.25rem);
        margin-bottom: 1rem;
    }
    .reviewMoadlContainer .reviewContent{
        font-size: clamp(0.875rem, 0.7013rem + 0.4843vw, 1.125rem);
        overflow: visible;
        display: block;
        -webkit-line-clamp: unset;
        -webkit-box-orient: unset;
        -moz-line-clamp: unset;
        -moz-box-orient: unset;
    }
    .reviewMoadlContainer .reviewContent p{
        margin-bottom: 0;
    }
    .reviewMoadlContainer .reviewBtnBlock{
        display: none;
    }
    .modal.show {
        opacity: 1;
        background:rgba(0, 0, 0, 0.8);
    }

    .modal.fades {
        display:block;
    }

    .modal-body a i{color:#000;}
/*REVIEW MODAL E*/
.secTitleWrapCenter__wr h3, .secTitleWrapCenter__wr .secTitle__wr {
    text-align: center;
}
.appointStripSec{
    padding: 24px 0;
    position: relative;
    color: #fff;
}
.appointSecOerlayFigure__wr{
    position: absolute;
    inset: 0;
    display: flex;
    width: 100%;
}
.appointSecOerlayFigure__wr::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-image: linear-gradient(90deg, #1CBA9F 40%, #558DCA 100%);
    opacity: 0.7;
    z-index: 1;
}
.appointSecOerlayFigure__wr img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.appointStripSec .container__wr{
    position: relative;
    z-index: 2;
}
.appointStripSec .row{
    row-gap: 1.5rem;
}
.appointStripTitle{
    font-size: clamp(1rem, 0.6525rem + 0.9685vw, 1.5rem);
    font-weight: 600;
    line-height: 1.2;
    /*letter-spacing: 1.5px;*/
    font-style: italic;
    text-align: center;
}
.appointStripBtnBlock{
    width: 100%;
    display: flex;
    justify-content: center;
}
.appointConsultBtn__wr{
    margin-top: 0;
}
/*UNLOCK BEAUTY SEC START*/
    .unLockBeautySec__wr{
        padding-top: 64px;
        padding-bottom: 64px;
        color: var(--bsWhite__wr);
        text-align: center;
    }
    .unLockBeautyOverlayBgFigure__wr::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background-color: transparent;
        background-image: linear-gradient(90deg, #1cba9f 40%, #558dca 100%);
        opacity: 0.8;
    }
    .unLockBeautyContentBlock__wr{
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
    .unLockBeautyTitleWrap__wr{
        margin-bottom: 32px;
    }
    .unLockBeautyTitle__wr{}
    .unLockBeautyTitle__wr span{
        color: #223A66;
    }
    .unLockBeautyContent__wr{
        font-size: clamp(0.875rem, 0.7013rem + 0.4843vw, 1.125rem);
    }
    .unLockBeautyBtnParent__wr{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 32px;
    }
/*UNLOCK BEAUTY SEC END*/
.offerSec{
    color: var(--bsWhite__wr);
}
.offerSecOverlayFigure{
    display: flex;
    width: 100%;
    position: absolute;
    inset: 0;
}
.offerSecOverlayFigure::before{
    content: "";
    position: absolute;
    inset: 0;
    /*background-color: var(--bsBlack__wr);*/
    background-color: transparent;
    background-image: linear-gradient(90deg, #223A66 40%, #558DCA 100%);
    opacity: 0.9;
    z-index: 1;
}
.offerSecOverlayFigure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.offerSecHead{
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    margin-bottom: 24px;
}
.offerSecHeadTitle{}
/*.offerSecHeadTitle span{
    color: #1DB097;
}*/
.offerFigure{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.offerFigure img{
    width: 100%;
    aspect-ratio: 1 / 1;
    -webkit-transition: .5s;
    transition: .5s;
}
.offerFigure:hover img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.allServiceSlider.owl-theme .owl-nav,
.offerSlider__wr.owl-theme .owl-nav{
    margin-top: 0;
}
.allServiceSlider.owl-theme .owl-nav [class*="owl-"] ,
.offerSlider__wr.owl-theme .owl-nav [class*="owl-"] {
    margin: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--bsWhite__wr);
    background: rgba(17, 17, 17, 0.5);
    font-size: 14px;
    line-height: 1;
    color: var(--bsWhite__wr);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.08));
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all linear 0.5s;
    transition: all linear 0.5s;
}
.allServiceSlider.owl-theme .owl-nav [class*="owl-"]:hover ,
.offerSlider__wr.owl-theme .owl-nav [class*="owl-"]:hover {
    background: rgb(17, 17, 17);
    color: var(--bsWhite__wr);
}
.allServiceSlider.owl-carousel .owl-nav button.owl-prev ,
.offerSlider__wr.owl-carousel .owl-nav button.owl-prev {
    left: 8px;
}
.allServiceSlider.owl-carousel .owl-nav button.owl-next ,
.offerSlider__wr.owl-carousel .owl-nav button.owl-next {
    right: 8px;
}
.requestWrapSec__wr {
    /*padding: 3rem 0;*/
    position: relative;
    overflow-x: clip;
    /*background: #1DB097;*/
}
.requestSecOverlayFigure{
    display: flex;
    width: 100%;
    position: absolute;
    inset: 0;
}
.requestSecOverlayFigure::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: #1DB097;
    opacity: 0.9;
    z-index: 1;
}
.requestSecOverlayFigure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.requestWrapSec__wr .container__wr{
    position: relative;
    z-index: 1;
}
.requestWrapSec__wr .requestFromWrap__wr {
  position: relative;
  /*z-index: 1;*/
  /*background: #223A66;*/
  color: #fff;
  border-radius: 10px;
  /*box-shadow: 0 0 3px #000;*/
  padding: 48px 24px;
  overflow: hidden;
}
.requestFromOverlayFigure{
    display: flex;
    width: 100%;
    position: absolute;
    inset: 0;
}
.requestFromOverlayFigure::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: #223A66;
    opacity: 0.9;
    z-index: 1;
}
.requestFromOverlayFigure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.requestWrapSec__wr .requestFromWrap__wr .titleParentWrap__wr {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}
.requestWrapSec__wr .requestFromWrap__wr .titleParentWrap__wr .secTitle__wr {
  line-height: 1.1;
  color: inherit;
  margin-bottom: 8px;
}
.requestWrapSec__wr .requestFromWrap__wr .titleParentWrap__wr .secTitle__wr span{
    color: #1DB097;
}
.requestWrapSec__wr .formWrapper__wr{
    position: relative;
    z-index: 1;
}
.requestWrapSec__wr .requestFromWrap__wr .titleParentWrap__wr p:not([class]) {
  margin-bottom: 0;
}
.requestWrapSec__wr .requestCallWrap__wr {
  color: #fff;
  text-align: center;
}
.requestWrapSec__wr .requestCallWrap__wr .requestCallBtn__wr {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #223A66;
  font-size: 75px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.requestWrapSec__wr .requestCallWrap__wr .requestCallBtn__wr .circle__wr {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #223A66;
  border-radius: 50%;
  animation: 2s ease-in-out infinite circlePulse__wr;
}
.requestWrapSec__wr .requestCallWrap__wr .requestCallBtn__wr .circle2__wr {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.requestWrapSec__wr .requestCallWrap__wr .requestCallBtn__wr .circle3__wr {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.requestWrapSec__wr .requestCallWrap__wr .requestCallBtn__wr .circle4__wr {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
@-webkit-keyframes circlePulse__wr {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3.8);
    opacity: 0;
  }
}
@keyframes circlePulse__wr {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3.8);
    opacity: 0;
  }
}
.requestWrapSec__wr .requestCallWrap__wr .requestCallBtn__wr a {
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
  text-decoration: none;
}
.requestWrapSec__wr .requestCallWrap__wr .title__wr {
  position: relative;
  z-index: 3;
  font-size: clamp(1rem, 0.3051rem + 1.937vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
  margin-bottom: 16px;
}
.requestWrapSec__wr .requestCallWrap__wr .callTitle__wr {
  position: relative;
  z-index: 3;
  font-size: clamp(1rem, 0.3051rem + 1.937vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
  margin-bottom: 0;
}
.requestWrapSec__wr .requestCallWrap__wr .callTitle__wr a {
  font-size: clamp(1.25rem, 0.3814rem + 2.4213vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 1px #fff;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
}
.requestWrapSec__wr .requestCallWrap__wr .callTitle__wr a span {
  color: #223A66;
  -webkit-text-fill-color: #223A66;
  -webkit-text-stroke: 0.0938rem #223A66;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
}
.requestWrapSec__wr .requestCallWrap__wr .callTitle__wr a:hover {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
}
.requestWrapSec__wr .requestCallWrap__wr .callTitle__wr a:hover span {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.0938rem #223A66;
}
.offerBlock{
    width: 100%;
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    /*border: 1px solid #e2e2e2;*/
    padding: 40px 24px 156px 24px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.offerBlockOverlayDot{
    display: inline-flex;
    position: absolute;
    top: 0;
    left: 0;
}
.offerBlockOverlayDot img{}
.offerIconBox{
    position: absolute;
    right: -52px;
    bottom: -52px;
    height: 210px;
    width: 210px;
    background: #F3F3F3;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    padding: 40px 50px;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.offerIconFigure{
    position: absolute;
    top: 40%;
    left: 40%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 250ms ease-in;
    transition: 250ms ease-in;
}
.offerIconWhiteFigure,
.offerBlock:hover .offerIconColorFigure{
    opacity: 0;
}
.offerIconColorFigure,
.offerBlock:hover .offerIconWhiteFigure{
    opacity: 1;
}
.offerContentBlock{
    position: relative;
    font-size: clamp(0.875rem, 0.7881rem + 0.2421vw, 1rem);
    font-weight: 500;
    color: #000;
}
.offerContentTitle{
    font-size: clamp(1.125rem, 0.5169rem + 1.6949vw, 2rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.offerContentBlock p{}
.offerBtnBlock{
    position: absolute;
    left: 24px;
    bottom: 24px;
}
.offerBlock:hover .offerContentTitle {
    color: #1DB097;
}
.offerBlock:hover .offerIconBox {
    background: #1DB097;
}
.whySec{}
.whyCtaFigureBlock{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2.8fr;
    grid-column-gap: 30px;
    align-items: end;
    width: 100%;
    max-width: 603px;
    margin: 0 auto 80px;
}
.whyCtaFigure{
    display: flex;
    border-radius: 1rem;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.whyCtaFigure img{
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.whyCtaFigure:hover img{
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.whyCtaFigure:first-child {
    width: 190%;
    position: relative;
    z-index: 2;
    bottom: -80px;
}
.whyCtaBadgeFigure{
    display: inline-flex;
    max-width: 180px;
    width: 100%;
    position: absolute;
    left: 15.5%;
    top: 16px;
}
.whySecContentBlock{}
.whySecContentHead{}
.whySecContentTitle{}
.whySecContent{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
}
.whyCtaBlock{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}
.whyCtaIconBox{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #293BB2;
    background: radial-gradient(circle,rgba(41, 59, 178, 1) 25%, rgba(36, 204, 168, 1) 60%);
    transition: transform 500ms ease 200ms, -webkit-transform 500ms ease 200ms;
}
.whyCtaIconBox img{}
.whyCtaContent{}
.whyCtaTitle{
    font-size: clamp(1.125rem, 1.0381rem + 0.2421vw, 1.25rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 8px;
}
.whyCtaContent p{
    margin-bottom: 0;
}
.whyCtaBlock:hover .whyCtaIconBox{
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
.labTestSec{
    position: relative;
    background-color: #1DB097;
}
.labTestSec::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #223A66;
    background: -webkit-linear-gradient(90deg,rgba(34, 58, 102, 1) 0%, rgba(85, 141, 202, 1) 100%);
    background: linear-gradient(90deg,rgba(34, 58, 102, 1) 0%, rgba(85, 141, 202, 1) 100%);
    border-top-right-radius: 400px;
}
.labTestSec>.container__wr{
    position: relative;
    z-index: 2;
}
.labTestSecHead{
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    margin-bottom: 24px;
}
.labTestSecHeadTitle{
    color: #fff;
}
.labTestSecHeadSubTitle{
    color: #fff;
}
.labTestBlock{
    padding: 24px;
    background-color: #fff;
    border-top: 0.5rem solid #1DB097;
    border-radius: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.labTestIconBlock{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 60px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #1DB097;
    margin: 0 auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.labTestIconFigure{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.labTestIconWhiteFigure, 
.labTestBlock:hover .labTestIconColorFigure {
    opacity: 0;
}
.labTestIconColorFigure, 
.labTestBlock:hover .labTestIconWhiteFigure {
    opacity: 1;
}
.labTestBlock:hover .labTestIconBlock{
    background-color: #1DB097;
}
.labTestContentBlock{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 16px;
}
.labTestContentHead{}
.labTestHeadTitle{
    font-size: clamp(0.875rem, 0.7002rem + 0.4854vw, 1.125rem);
    font-weight: 600;
    line-height: 1.1;
    color: #000;
    margin-bottom: 0;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.labTestBlock:hover .labTestHeadTitle{
    color: #1DB097;
}
.labTestContent{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-size: clamp(0.75rem, 0.6626rem + 0.2427vw, 0.875rem);
    overflow-wrap: break-word;
}
.labTestContent ul{
    list-style-position: inside;
    list-style: none;
}
.labTestContent ul li{
    position: relative;
    padding-left: 24px;
}
.labTestContent ul li::before{
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 8px;
}





.flipCard{
    position: relative;
    -webkit-backface-visibility: hidden;
    width: 100%;
    max-width: 100%;
}
.flipCardBox{
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}
.flipBoxFront,
.flipBoxBack{
    position: relative;
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 1 / 1.2;
    /*min-height: 475px;*/
    -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
    transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
    -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.flipBoxFront{
    position: relative;
    overflow: hidden;
    -ms-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.flipCardBox:hover .flipBoxFront {
  -ms-transform: rotateX(-180deg);
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.flipBoxBack{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;  
    -ms-transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    background-color: #2b2b2b;
    padding: 20px 20px 20px 20px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.flipCardBox:hover .flipBoxBack {
  -ms-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.flipBoxInner{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
    transform: translateY(-50%) translateZ(60px) scale(.94);
    -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
    -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.flipBoxFigure{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    z-index: -1;
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}
/*.flipBoxFigure::before{
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.32);
}*/
.flipBoxFigure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.flipBoxTitleBlock{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    overflow-wrap: break-word;
    transform: translateZ(90px);
    transform-style: preserve-3d;
}
.flipBoxTitle{
    font-size: clamp(1rem, 0.8252rem + 0.4854vw, 1.25rem);
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.flipBoxContent{
    font-size: 14px;
    overflow-wrap: break-word;
}
.flipBoxContent p{
    margin-bottom: 0;
}
.cardOuterContentBlock{
    width: 100%;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    text-align: center;
}
.cardOuterTitleBlock{}
.cardOuterTitle{
    font-size: clamp(1rem, 0.8252rem + 0.4854vw, 1.25rem);
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


@media (max-width: 575px) {
    .footer-contact ul {
        text-align: center;
    }

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

    .primayBtn__wr {

        font-size: 12px;

        padding: 10px 20px;
    }
}
@media (min-width: 576px) {

    /*REVIEW MODAL S*/
    .reviewHeadBox {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: unset;
    }

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

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem);
    }

    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem);
    }
    /*REVIEW MODAL E*/
}