@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&amp;family=Quicksand:wght@300;400;500;600;700&amp;display=swap');

:root {
    --clr-common-white: #fff;
    --clr-common-black: #1C1C1C;
    --clr-common-black-deep: #000000;
    --clr-body-heading: #18100F;
    --clr-body-text: #666666;
    --clr-white-light: #E6EFFF;
    --clr-theme-primary: #0463FA;
    --clr-theme-primary: #832b93;
    --clr-theme-primary: #f75a4a;
    /* --clr-theme-secondary: #2AC28E; */
    --clr-theme-secondary: #ca8989;
    /* --clr-theme-extra: #49D8EF; */
    --clr-theme-extra: #000;
    --clr-theme-gray: #F4F4F4;
    --clr-bg-white: #ffffff;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
    color: var(--clr-body-text);
}

img {
    max-width: 100%;
}

a,
a:hover,
a:focus {
    cursor: pointer !important;
    outline: none;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--clr-body-heading);
    margin: 0;
    padding: 0;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

strong {
    font-weight: 700;
}

h1 {
    font-size: 65px;
    line-height: 75px;
}

h2 {
    font-size: 34px;
    line-height: 46px;
}

h3 {
    font-size: 24px;
    line-height: 30px;
}

h4 {
    font-size: 20px;
    line-height: 20px;
}

h5 {
    font-size: 16px;
    line-height: 26px;
}

h6 {
    font-size: 14px;
    line-height: 14px;
}

p {
    font-size: 16px;
    line-height: 26px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.px-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.px-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mx-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.sec-title h3 {
    color: var(--clr-theme-primary);
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

.sec-title h3 .tb {
    width: 33px;
    display: inline-block;
    overflow: hidden;
    margin-right: 10px;
}

.sec-title h3 .tb span:first-child {
    width: 16px;
    height: 12px;
    background: var(--clr-theme-primary);
    display: inline-block;
    border-radius: 10px 0 0 10px;
}

.sec-title h3 .tb span:last-child {
    width: 16px;
    height: 12px;
    background: linear-gradient(1.43deg, #B0AFB5 1.87%, #F7F8F8 53.69%, #DBDCE0 97.84%);
    display: inline-block;
    border-radius: 0 10px 10px 0;
}

.sec-title h3 .tb.clr3 span:first-child {
    background: var(--clr-theme-extra);
}

.btn {
    position: relative;
    display: inline-block;
    z-index: 1;
    border: 1px solid var(--clr-common-white) !important;
    background: transparent;
    padding: 17px 34px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: var(--clr-common-white);
}

.btn:hover {
    color: var(--clr-theme-primary);
}

.btn:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: var(--clr-theme-primary);
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    z-index: -1;
}

.btn:hover:before {
    height: 0%;
}

.no-js #loader {
    display: none;
}

.js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0;
}

.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background: url(../img/loader_ico.gif) center no-repeat #fff;
}

.container {
    max-width: 1280px;
}

.header-style-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 12;
}

.top_nav_soc {
    background: var(--clr-theme-primary);
    padding-top: 8px;
    padding-bottom: 8px;
    position: relative;
    z-index: 99999;
}

.top_nav_soc:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: -50%;
    top: 0;
    background:#832b93;
    z-index: -1;
}

.left-content-top li {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    padding-right: 30px;
    position: relative;
    margin-right: 30px;
}

.left-content-top li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.left-content-top li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--clr-common-white);
}

.left-content-top li i {
    vertical-align: middle;
    font-size: 16px;
    color: #fff;
    margin-right: 5px;
}

.right-content-top {
    text-align: right;
}

.right-content-top li {
    display: inline-block;
}

.right-content-top li .btn2 {
    background: transparent;
    border: 0;
    padding: 0;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    font-family: 'Nunito', sans-serif;
    position: relative;
    padding-right: 15px;
}

.flagstrap-icon.flagstrap-gb {
    vertical-align: middle;
}

.dropdown-toggle::after {
    border: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: inline-block;
    content: "\f078";
    vertical-align: middle;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.flagstrap-icon {
    vertical-align: middle;
}

.right-content-top li:first-child {
    padding-right: 10px;
    padding-left: 0;
    margin-left: 0;
}

.right-content-top li a {
    color: #fff;
    font-size: 16px;
    vertical-align: middle;
    transition: 0.3s all ease;
}

.right-content-top li a:hover {
    color: var(--clr-common-white);
}

.right-content-top li {
    position: relative;
    padding-left: 15px;
    margin-left: 15px;
}

.right-content-top li:after {
    content: '';
    width: 1px;
    height: 100%;
    background: var(--clr-theme-extra);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.4;
}

.right-content-top li:first-child:after {
    display: none;
}

.right-content-top li .dropdown-menu a {
    font-size: 12px;
    line-height: 14px;
}

.right-content-top li .dropdown-menu {
    padding-left: 5px;
    padding-right: 5px;
}

.main-responsive-nav {
    display: none
}

.navbar-area .others-option-for-responsive {
    display: none
}

.navbar-nav .nav-item {
    position: relative;
    margin-left: 25px;
    margin-right: 25px;
}

@media (min-width:992px) {
    .navbar-nav .nav-item .dropdown-menu {
        border: none;
        top: 65px;
        left: 0;
        z-index: 1050;
        opacity: 0;
        width: 250px;
        display: inline-block;
        border-radius: 0;
        padding: 10px 0;
        position: absolute;
        visibility: hidden;
        -webkit-box-shadow: rgba(17, 17, 26, .1) 0 0 16px;
        box-shadow: rgba(17, 17, 26, .1) 0 0 16px;
        background-color: #fff;
        -webkit-transition: all ease 0.8s;
        transition: all ease 0.8s;
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: rotateX(-90deg);
        transform: rotateX(-90deg)
    }

    .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: rotateX(0);
        transform: rotateX(0)
    }

    .navbar-nav .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: rotateX(0);
        transform: rotateX(0)
    }
}

.main-navbar {
    position: relative;
    z-index: 1;
}

.navbar {
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-brand {
    margin: 0;
    padding: 0;
    max-height: 70px;
}

.navbar-brand img {
    max-height: 70px;
    display: block;
}

.navbar-expand-md .navbar-nav .nav-link {
    padding: 0;
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    color: var(--clr-body-heading);
}

.navbar-expand-md .navbar-nav .nav-link i {
    font-size: 12px;
    margin-left: 4px;
}

.navbar-expand-md .navbar-nav .nav-link.active {
    color: var(--clr-theme-primary);
}

.navbar-nav .nav-item .dropdown-menu {
    top: 35px;
}

.navbar-expand-md .navbar-nav .nav-link .bx {
    vertical-align: middle;
}

.navbar-nav .nav-item .dropdown-menu .nav-item {
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-expand-md .navbar-nav .nav-link:hover {
    color: var(--clr-theme-primary);
}

.mean-container .mean-nav ul li a.active {
    color: var(--clr-theme-primary);
}

.others-options .btn i {
    vertical-align: middle;
    font-size: 21px;
    line-height: 21px;
}

.others-options {
    margin-left: 35px;
}

.others-options .option-item {
    margin-left: 25px;
}

.others-options .option-item .opt {
    display: inline-block;
    width: 56px;
    height: 56px;
    border: 1px solid var(--clr-theme-primary);
    border-radius: 5px;
    text-align: center;
    line-height: 56px;
    position: relative;
    color: var(--clr-theme-primary);
    font-size: 20px;
}

.others-options .option-item .btn {
    padding: 16px 29px;
    max-height: 56px;
}

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 9999;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-size: 60px;
    font-weight: 300;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: var(--clr-theme-primary);
    border: 0;
    outline: 0;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    background-color: var(--clr-theme-primary);
    border-color: var(--clr-theme-primary);
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

@media (max-width:1280px) {
    .others-options {
        margin-left: 10px;
    }

    .navbar-nav .nav-item {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media only screen and (max-width: 991px) {
    .main-responsive-nav {
        display: block
    }

    .main-responsive-nav .main-responsive-menu {
        position: relative
    }

    .main-responsive-nav .main-responsive-menu.mean-container .navbar-nav {
        overflow-y: scroll;
        height: auto;
        -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .1);
        box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .1);
        background-color: #fff
    }

    .main-responsive-nav .mean-container a.meanmenu-reveal {
        padding: 11px 0 0;
        color: red
    }

    .main-responsive-nav .mean-container a.meanmenu-reveal span {
        display: block;
        background: red;
        height: 2px;
        margin-top: -6px;
        border-radius: 5px;
        position: relative;
        top: 8px
    }

    .main-navbar {
        display: none
    }

    .main-responsive-nav .logo {
        position: relative;
        z-index: 999;
        max-width: 50%
    }

    .main-responsive-nav .others-options {
        position: absolute;
        right: 60px;
        top: 7px;
        z-index: 9999;
    }

    .main-responsive-nav {
        padding-top: 10px;
        padding-bottom: 10px
    }

    .main-responsive-nav .mean-container a.meanmenu-reveal {
        top: 18px;
        padding: 0;
        color: var(--clr-theme-primary)
    }

    .main-responsive-nav .mean-container a.meanmenu-reveal span {
        background: var(--clr-theme-primary)
    }

    .main-responsive-nav .logo a {
        display: inline-block
    }

    .main-responsive-nav .logo img {
        vertical-align: middle;
        max-height: 60px
    }

    .mean-container .mean-nav {
        margin-top: 70px
    }

    .navbar-nav .nav-item {
        margin: 0
    }

    .mean-container .mean-bar {
        border: 0;
        background: transparent;
    }

    .mean-container .mean-nav ul li a i {
        display: none
    }

    .navbar-nav .nav-item .dropdown-menu .nav-item {
        padding: 0
    }

    .others-options .option-item .opt {
        height: 46px;
        font-size: 16px;
        width: 46px;
        line-height: 46px;
    }

    .others-options .option-item .btn {
        max-height: 46px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

.hero-banner-style1 {
    position: relative;
    padding-top: 100px;
    z-index: 1;
}

.hero-banner-style1:after {
    content: '';
    background: var(--clr-theme-primary);
    border-radius: 0px 0px 5px 5px;
    width: 30%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -11;
}

.hero-banner-style1:before {
    content: '';
    background-image: url(../img/hero-shape.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 0px 0px 5px 5px;
    width: 30%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.hero-inner-content {
    position: relative;
    max-width: calc(100% - 113px);
    margin-left: 113px;
    border-radius: 5px 0px 0px 5px;
    padding: 178px 126px;
    padding-bottom: 185px;
}

.hero-inner-content .inner {
    margin-left: -58px;
    z-index: 12;
    position: relative;
}

.hero-inner-content .hero-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: center;
    border-radius: 5px 0px 0px 5px;
    z-index: 1;
}

.hero-inner-content .inner h5 {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--clr-body-heading);
}

.hero-inner-content .inner h1 {
    color: var(--clr-body-heading);
    max-width: 617px;
}

.hero-inner-content .inner h1 span {
    color: var(--clr-theme-secondary);
}

.hero-inner-content .inner p {
    margin-top: 15px;
    max-width: 550px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: var(--clr-body-heading);
}

.hero-inner-content .inner .btn {
    margin-top: 52px;
}

.hero-inner-content .inner .hero-icon {
    position: absolute;
    top: 50%;
    left: 12%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: -1;
}

.left-hero-details {
    max-width: 282px;
}

.left-hero-details .imgs {
    background: var(--clr-common-white);
    width: 66px;
    height: 66px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.left-hero-details h4 {
    line-height: 36px;
    color: var(--clr-common-white);
    font-size: 16px;
    font-weight: 400;
}

.left-hero-details .flex-grow-1 a {
    color: var(--clr-common-white);
    font-size: 20px;
    line-height: 36px;
    font-weight: 700;
}

.left-hero-details p {
    margin-top: 30px;
    color: var(--clr-common-white);
}

.left-hero-details .btn {
    margin-top: 34px;
}

.btn.st2 {
    border: 1px solid var(--clr-theme-secondary) !important;
}

.btn.st2:hover {
    color: var(--clr-theme-secondary);
}

.btn.st2:before {
    background-color: var(--clr-theme-secondary);
}

.hero-apply-appointment-wrap {
    padding: 40px;
    padding-top: 30px;
    box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.hero-apply-appointment-wrap:after {
    content: '';
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 0px 5px 5px 0px;
    z-index: 1;
    background: var(--clr-theme-primary);
}

.hero-apply-appointment-wrap h3 {
    margin-bottom: 20px;
}

.form-control {
    background: var(--clr-theme-gray) !important;
    border-radius: 5px;
    padding: 14px 26px;
    border: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    box-shadow: unset !important;
}

.form-select {
    background-color: var(--clr-theme-gray) !important;
    border-radius: 5px;
    padding: 14px 26px;
    border: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    box-shadow: unset !important;
}

.hero-apply-appointment-wrap .gj-datepicker .btn:before {
    display: none;
}

.hero-apply-appointment-wrap .gj-datepicker .btn {
    background: var(--clr-theme-secondary);
    padding: 0;
    width: 46px;
    height: 46px;
    border-radius: 5px !important;
    position: absolute;
    right: 5px;
    top: 5px;
    border: 0 !important;
    color: var(--clr-common-white) !important;
    z-index: 12;
    font-size: 24px;
}

.hero-apply-appointment-wrap .select-cstm label {
    width: 46px;
    height: 46px;
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--clr-theme-secondary);
    text-align: center;
    line-height: 46px;
    border-radius: 5px;
    color: var(--clr-common-white);
    z-index: 1;
}

.hero-apply-appointment-wrap .select-cstm {
    position: relative;
    background-color: var(--clr-theme-gray);
}

.hero-apply-appointment-wrap .select-cstm .form-select {
    background: transparent !important;
    z-index: 12;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
}

.hero-apply-appointment-wrap .btn.nw {
    width: 100%;
    padding: 16px;
    font-weight: 400;
    padding-top: 15px;
}

.gj-unselectable.mb-3 {
    margin: 0 !important;
}

@media (max-width:1600px) {

    .hero-banner-style1:before,
    .hero-banner-style1:after {
        width: 25%;
    }
}

@media (max-width:1199px) {
    .left-content-top li {
        margin-right: 5px;
        padding-right: 10px;
    }
}

@media (max-width:991px) {

    .hero-banner-style1:before,
    .hero-banner-style1:after {
        width: 32%;
    }

    .hero-inner-content {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-inner-content .inner .hero-icon {
        max-width: 50%;
    }
}

@media (max-width:767px) {
    .hero-inner-content {
        padding-left: 0;
        padding-right: 0;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .hero-inner-content .inner {
        margin: 0;
    }

    .hero-inner-content .inner .btn {
        margin-top: 30px;
    }

    .hero-banner-style1:before,
    .hero-banner-style1:after {
        width: 60%;
        height: 200px;
    }

    .hero-banner-style1 {
        padding-top: 80px;
    }

    .left-hero-details .imgs {
        box-shadow: 0px 0px 35px rgb(0 0 0 / 8%);
    }

    .left-hero-details {
        max-width: 100%;
        margin-top: 30px;
    }

    .left-hero-details p,
    .left-hero-details .flex-grow-1 a,
    .left-hero-details h4 {
        color: var(--clr-body-heading);
    }
}

.about-sec-medifest .about-shape {
    position: absolute;
    left: 0px;
    opacity: 0.1;
    bottom: 20%;
}

.about-left-content .sec-title {
    max-width: 635px;
}

.about-left-content .sec-title h2 {
    max-width: 568px;
}

.about-left-content .sec-title p {
    margin-top: 27px;
    margin-bottom: 10px;
}

.bullet-list-all li {
    margin-top: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: var(--clr-body-heading);
    padding-left: 18px;
    position: relative;
}

.bullet-list-all li:after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 3.3px;
    background-color: var(--clr-theme-primary);
}

.about-left-content .btn {
    margin-top: 56px;
}

.right-content-about img {
    display: block;
    margin-left: auto;
    border-radius: 10px;
}

.right-content-about {
    position: relative;
    padding-bottom: 74px;
}

.video-poster {
    width: 153px;
    position: absolute;
    left: 0;
    top: auto;
    bottom: 140px;
    border-radius: 5px 5px 0px 0px;
    overflow: hidden;
    padding: 52px 29px;
    background-image: url(../img/about-video.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.video-poster:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--clr-body-heading);
    opacity: 0.5;
    z-index: -1;
    border-radius: 5px 5px 0px 0px;
}

.video-poster p {
    color: var(--clr-common-white);
}

.video-poster a {
    display: inline-block;
    border: 1px solid var(--clr-common-white);
    width: 70px;
    height: 70px;
    text-align: center;
    margin: auto;
    margin-top: 172px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-poster a span {
    width: 56px;
    height: 56px;
    background: var(--clr-common-white);
    display: inline-block;
    border-radius: 50%;
    line-height: 56px;
    font-size: 20px;
    color: var(--clr-theme-primary);
}

.right-content-about .exp {
    box-shadow: 0px 0px 36px rgba(0, 0, 0, 0.08);
    border-radius: 0px 5px 5px 5px;
    display: inline-block;
    max-width: 443px;
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 34px 10px;
    position: absolute;
    bottom: 2px;
    left: 0;
}

.right-content-about .exp .icons {
    width: 71px;
    height: 71px;
    background: var(--clr-white-light);
    border-radius: 50%;
    font-size: 40px;
    color: var(--clr-theme-primary);
    line-height: 71px;
}

.right-content-about .exp h2 {
    font-size: 46px;
    color: var(--clr-theme-primary);
    vertical-align: middle;
    display: flex;
    align-items: center;
    margin-left: 24px;
}

.right-content-about .exp h2 small {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: var(--clr-body-heading);
    margin-left: 20px;
}

@media (max-width:1100px) {
    .video-poster a {
        margin-top: 100px;
    }

    .right-content-about {
        max-width: 744px;
        margin: auto;
    }

    .about-left-content .sec-title {
        margin: auto;
    }
}

@media (max-width:991px) {
    .right-content-about {
        margin-top: 30px;
    }

    .video-poster a {
        margin-top: 160px;
    }
}

@media (max-width:767px) {
    .video-poster {
        border-radius: 20px;
    }

    .video-poster a {
        margin-top: 0px;
    }

    .video-poster p {
        display: none;
    }

    .right-content-about .exp h2 {
        font-size: 36px;
    }

    .right-content-about .exp h2 small {
        font-size: 20px;
    }

    .right-content-about .exp .icons {
        width: 50px;
        height: 50px;
        font-size: 20px;
        line-height: 50px;
    }

    .video-poster {
        bottom: 120px;
    }
}

.pricing-plan-sec {
    background-color: var(--clr-white-light);
    background-image: url(../img/price-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-change-sim {
    background: var(--clr-bg-white);
}

.package-single-wrap {
    background: var(--clr-bg-white);
    border-radius: 5px;
    padding: 15px;
    padding-bottom: 40px;
}

.package-single-wrap .price-head {
    width: 100%;
    background-image: url(../img/price-head-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 27px 10px;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.package-single-wrap .price-head:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-color: var(--clr-theme-primary);
    opacity: 0.6;
}

.package-single-wrap .price-head .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--clr-bg-white);
    text-align: center;
    line-height: 80px;
}

.package-single-wrap .price-head .icon svg path,
.package-single-wrap .price-head .icon svg {
    fill: var(--clr-theme-primary);
}

.package-single-wrap .price-head h2 {
    font-weight: 700;
    font-size: 46px;
    line-height: 46px;
    color: var(--clr-common-white);
    padding-left: 20px;
}

.package-single-wrap .price-head sup {
    font-size: 20px;
    line-height: 20px;
}

.package-single-wrap .price-head sub {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.package-single-wrap .price-head .rec-badge {
    background: var(--clr-theme-secondary);
    display: inline-block;
    position: absolute;
    right: -31px;
    top: 12px;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: var(--clr-common-white);
    padding: 0 25px;
    -webkit-transform: rotate(46deg);
    -moz-transform: rotate(46deg);
    transform: rotate(46deg);
}

.price-body-pck {
    text-align: center;
    padding-top: 42px;
}

.price-body-pck h3 {
    padding-bottom: 18px;
}

.price-body-pck li {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: var(--clr-body-text);
}

.price-body-pck li.dis {
    color: #A7A7A7;
}

.price-body-pck .btn {
    margin-top: 25px;
}

.btn.st3 {
    color: var(--clr-body-heading);
}

.btn.st3:before {
    background: transparent;
    height: 0;
}

.btn.st3:hover:before {
    background: var(--clr-theme-primary);
    height: 100%;
}

.btn.st3:hover {
    color: var(--clr-common-white);
}

.package-single-wrap.featured h3 {
    color: var(--clr-theme-primary);
}

.package-single-wrap.featured .btn {
    color: var(--clr-common-white);
}

.package-single-wrap.featured .btn:before {
    background: var(--clr-theme-primary);
    height: 100%;
}

.package-single-wrap.v2.featured,
.package-single-wrap.v2 {
    background: var(--clr-white-light);
    border-radius: 5px;
}

@media (max-width:767px) {
    .package-single-wrap .price-head h2 {
        font-size: 40px;
        line-height: 40px;
    }

    .package-single-wrap .price-head .icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

.services-sec {
    background-color: var(--clr-theme-primary);
    background-image: url(../img/services-bg-shape.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.sec-title h3 .tb.clr2 span:first-child {
    background: var(--clr-theme-secondary);
}

.services-mp-wraps {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 420px;
}

.service-single-inner .icons img {
    vertical-align: middle;
}

.service-single-inner .icons {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--clr-bg-white);
    text-align: center;
    line-height: 60px;
    border: 6px solid var(--clr-theme-secondary);
    cursor: pointer;
}

.service-single-inner .hidden-content img {
    display: block;
    max-width: 76px;
    max-height: 76px;
    border-radius: 5px;
}

.service-single-inner .hidden-content h4 {
    margin-left: 20px;
    line-height: 150%;
}

.service-single-inner .hidden-content:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 21px 18.5px 0 18.5px;
    border-color: var(--clr-bg-white) transparent transparent transparent;
    position: absolute;
    left: 50%;
    bottom: -16px;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.service-single-inner .hidden-content {
    background: var(--clr-bg-white);
    max-width: 320px;
    padding: 14px;
    border-radius: 5px;
    position: absolute;
    width: 423px;
    left: -125px;
    top: -125px;
    opacity: 0;
    z-index: -1;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.service-single-inner:hover .hidden-content {
    z-index: 12;
    opacity: 1;
}

.service-single-inner {
    position: absolute;
}

.service-single-inner.v1 {
    left: 5%;
    top: 15%;
}

.service-single-inner.v2 {
    left: 17%;
    bottom: 0;
}

.service-single-inner.v3 {
    left: 30%;
    top: 37%;
}

.service-single-inner.v4 {
    left: 52%;
    top: 67%;
}

.service-single-inner.v5 {
    left: 62%;
    top: 0;
}

.service-single-inner.v6 {
    left: 80%;
    bottom: 1%;
}

.service-single-inner.v7 {
    right: 0;
    top: 39%;
}

@media (max-width:1740px) {
    .service-single-inner.v7 .hidden-content {
        left: auto;
        right: 0;
    }

    .service-single-inner.v7 .hidden-content:after {
        right: 0;
        left: auto;
    }
}

@media (max-width:1600px) {
    .service-single-inner.v1 .hidden-content {
        left: 0;
    }

    .service-single-inner.v1 .hidden-content:after {
        left: 20px;
    }
}

@media (max-width:991px) {
    .service-single-inner .hidden-content {
        width: 320px;
    }

    .service-single-inner.v6 .hidden-content {
        left: auto;
        right: 0;
    }

    .service-single-inner.v6 .hidden-content:after {
        left: 90%;
    }
}

@media (max-width:767px) {
    .service-single-inner .hidden-content {
        width: 280px;
    }

    .services-mp-wraps {
        height: 300px;
    }

    .service-single-inner.v3 .hidden-content {
        left: 0;
    }

    .service-single-inner.v3 .hidden-content:after {
        left: 10%;
    }

    .service-single-inner .hidden-content img {
        max-width: 50px;
        max-height: 50px;
    }

    .service-single-inner .hidden-content {
        top: -100px;
    }

    .service-single-inner.v2 .hidden-content {
        left: -50%;
    }

    .service-single-inner.v2 .hidden-content:after {
        left: 24%;
    }
}

.portfolio-inner-wrap {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.portfolio-inner-wrap img {
    border-radius: 10px;
    display: block;
}

.portfolio-inner-wrap .inner-content {
    opacity: 0.9;
    border-radius: 10px;
    background: var(--clr-bg-white);
    position: absolute;
    left: 30px;
    padding: 18px 20px;
    bottom: -100px;
    opacity: 0;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.portfolio-inner-wrap:hover .inner-content {
    opacity: 1;
    bottom: 30px;
}

.portfolio-inner-wrap .plus-sign {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--clr-bg-white);
    display: inline-block;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
    line-height: 60px;
    color: var(--clr-theme-primary);
    font-size: 29px;
    top: -50px;
    opacity: 0;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.portfolio-inner-wrap:hover .plus-sign {
    opacity: 1;
    top: 30px;
}

.portfolio-inner-wrap .inner-content p {
    padding-top: 10px;
    color: var(--clr-theme-primary);
}

.why-us-sec {
    position: relative;
    z-index: 12;
    background: var(--clr-white-light);
    padding-bottom: 258px;
}

.why-us-sec .container {
    z-index: 12;
    position: relative;
}

.why-us-sec:after {
    content: '';
    width: 100%;
    height: 100%;
    max-width: 820px;
    max-height: 575px;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(../img/why-us-shape-right.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}

.why-us-sec:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/why-us-shape-left.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    opacity: 0.5;
}

.why-us-sec .doc-top {
    position: absolute;
    right: 45px;
    top: 64px;
    z-index: 1;
}

.list-with-icon li {
    position: relative;
    padding-left: 100px;
}

.list-with-icon li .icon {
    background: var(--clr-bg-white);
    display: inline-block;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    text-align: center;
    line-height: 74px;
}

.list-with-icon li .icon img {
    vertical-align: middle;
}

.list-with-icon li p {
    margin-top: 16px;
    max-width: 275px;
}

.list-with-icon li h3 {
    max-width: 275px;
}

.list-with-icon.row {
    margin-left: 0;
}

@media (max-width:1400px) {
    .why-us-sec .doc-top {
        max-width: 500px;
    }
}

@media (max-width:1199px) {
    .why-us-sec .doc-top {
        max-width: 280px;
    }
}

@media (max-width:767px) {
    .why-us-sec .doc-top {
        display: none;
    }
}

.fun-fact-sec {
    position: relative;
    /* margin-top: -162px; */
    z-index: 12;
    padding: 30px 0px;
}

.fun-fact-inner {
    background-color: var(--clr-common-black-deep);
    border-radius: 10px;
    border: 10px solid var(--clr-bg-white);
    padding: 50px 0;
}

.single-fact-in .icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    text-align: center;
    margin: auto;
    background: #f75a4a;
    line-height: 80px;
    border-radius: 50%;
}

.single-fact-in {
    text-align: center;
}

.single-fact-in .icon img {
    vertical-align: middle;
}

.single-fact-in .cont {
    padding-top: 30px;
}

.single-fact-in .cont h2 {
    color: var(--clr-common-white);
    font-size: 40px;
    line-height: 46px;
}

.fun-fact-inner {
    border-radius: 20px;
}

.single-fact-in .cont p {
    color: var(--clr-common-white);
    line-height: 28px;
}

@media (max-width:767px) {
    .single-fact-in .cont h2 {
        font-size: 36px;
        line-height: 36px;
    }
}

.meet-doc-sec .doc-shape-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.1;
}

.single-doc-wrap .imgs img {
    border-radius: 10px;
    display: block;
    width: 100%;
}

.single-doc-wrap .imgs {
    position: relative;
}

.single-doc-wrap .imgs ul {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    background: var(--clr-bg-white);
    border-radius: 10px 0px;
    padding: 14px;
    min-width: 70px;
    text-align: right;
    -webkit-transition: 0.2s all ease;
    transition: 0.2s all ease;
}

.single-doc-wrap:hover .imgs ul {
    min-width: 238px;
}

.single-doc-wrap .imgs ul li {
    display: inline-block;
}

.single-doc-wrap:hover .imgs ul li.p-m .fa-plus:before {
    content: "\f068";
}

.single-doc-wrap .imgs ul li.p-m {
    width: 42px;
    height: 42px;
    background: var(--clr-theme-primary);
    text-align: center;
    color: var(--clr-common-white);
    border-radius: 50%;
    line-height: 45px;
    font-size: 23px;
    opacity: 0.9;
    cursor: pointer;
}

.single-doc-wrap .imgs ul li a {
    display: inline-block;
    width: 42px;
    height: 42px;
    background: var(--clr-white-light);
    text-align: center;
    border-radius: 50%;
    line-height: 42px;
    font-size: 17px;
    color: var(--clr-theme-primary);
}

.single-doc-wrap .imgs ul li:not(.p-m) {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    right: 0;
    opacity: 0;
}

.single-doc-wrap:hover .imgs ul li:nth-last-of-type(2) {
    right: 76px;
    opacity: 1;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.single-doc-wrap:hover .imgs ul li:nth-last-of-type(3) {
    right: 130px;
    opacity: 1;
    -webkit-transition: 0.5s all ease-in-out;
    transition: 0.5s all ease-in-out;
}

.single-doc-wrap:hover .imgs ul li:nth-last-of-type(4) {
    right: 182px;
    opacity: 1;
    -webkit-transition: 0.8s all ease-in-out;
    transition: 0.8s all ease-in-out;
}

.single-doc-wrap .cont {
    padding-top: 26px;
}

.single-doc-wrap .cont p {
    line-height: 28px;
    color: var(--clr-theme-primary);
}

.single-blog-inner {
    background: var(--clr-bg-white);
    border: 1px solid var(--clr-white-light);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
}

.single-blog-inner .imgs {
    position: relative;
    z-index: 1;
    padding-top: 435px;
    overflow: hidden;
    border-radius: 5px 5px 0px 0px;
}

.single-blog-inner .imgs .hidden-link {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 12;
    cursor: pointer;
    text-indent: -999px;
}

.single-blog-inner .imgs img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
    border-radius: 5px 5px 0px 0px;
    object-fit: cover;
}

.single-blog-inner:hover .imgs img {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    -moz-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
}

.single-blog-inner .imgs .tag {
    background: var(--clr-theme-secondary);
    border-radius: 5px 5px 0px 0px;
    position: absolute;
    left: 35px;
    bottom: 0;
    padding: 12px 20px;
    color: var(--clr-common-white);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.single-blog-inner .cont {
    padding: 28px 35px;
}

.single-blog-inner .cont li {
    display: inline-block;
}

.single-blog-inner .cont li:not(:first-child) {
    padding-left: 20px;
}

.single-blog-inner .cont li i {
    color: var(--clr-theme-primary);
    margin-right: 5px;
}

.single-blog-inner .cont h4 {
    line-height: 150%;
    margin-top: 14px;
}

.single-blog-inner .cont h4 a {
    color: var(--clr-body-heading);
    text-transform: capitalize;
}

.single-blog-inner .cont h4:hover a {
    color: var(--clr-theme-primary);
}

.single-blog-inner .cont .readM {
    display: inline-block;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--clr-body-heading);
    margin-top: 37px;
}

.single-blog-inner .cont .readM:hover {
    color: var(--clr-theme-primary);
}

@media (max-width:1200px) {
    .single-blog-inner .imgs {
        padding-top: 300px;
    }
}

@media (max-width:767px) {
    .single-blog-inner .imgs .tag {
        left: 20px;
    }

    .single-blog-inner .cont {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.footer-above-sec {
    position: relative;
    z-index: 12;
}

.inner-ftr-info {
    background: var(--clr-theme-primary);
    border: 10px solid var(--clr-common-white);
    border-radius: 20px;
    padding: 37px;
}

.inner-ftr-info .row .border-right,
.inner-ftr-info .row .col-lg-4 {
    border-right: 1px solid #67A1FE;
}

.ftr-info-wrap {
    position: relative;
    padding-left: 105px;
    min-height: 80px;
}

.ftr-info-wrap .icon {
    width: 80px;
    height: 80px;
    background: #000;
    text-align: center;
    border-radius: 50%;
    line-height: 80px;
    position: absolute;
    left: 0;
    top: 0;
}

.ftr-info-wrap .icon img {
    vertical-align: middle;
}

.ftr-info-wrap h4 {
    color: var(--clr-common-white);
    margin-bottom: 20px;
}

.ftr-info-wrap p {
    max-width: 190px;
    color: var(--clr-common-white);
}

.ftr-info-wrap p a {
    color: var(--clr-common-white);
    word-break: break-all;
}

.footers {
    position: relative;
    z-index: 1;
    background-image: url(../img/foooter-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 150px;
    margin-top: -90px;
}

.footers:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: rgb(13 15 14 / 92%);
}

.ftr-widget h2 {
    color: var(--clr-common-white);
    padding-bottom: 14px;
    position: relative;
    margin-bottom: 23px;
    font-size: 30px;
    line-height: 100%;
}

.ftr-widget p {
    color: var(--clr-common-white);
}

.ftr-widget.about p {
    padding-top: 35px;
    max-width: 314px;
}

.ftr-widget .socials {
    margin-top: 22px
}

.ftr-widget .socials li {
    display: inline-block;
    padding-right: 10px
}

.ftr-widget .socials li a {
    background: var(--clr-bg-white);
    box-shadow: 0 4px 8px 2px rgba(0, 124, 251, .16);
    display: inline-block;
    width: 33px;
    height: 33px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    vertical-align: middle;
    color: #fe2921
}

.ftr-widget .navs li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #B8B8B8;
    position: relative;
    padding-left: 17px
}

.ftr-widget .navs li a:after {
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: .3s ease-in;
    font-size: 12px;
}

.ftr-widget .navs li a:hover:after {
    left: 4px
}

.ftr-widget .navs li a:hover {
    color: var(--clr-theme-primary);
}

.ftr-widget .recent-posts li {
    display: inline-block;
    width: 100%;
    padding-bottom: 28px
}

.ftr-widget .recent-posts li img {
    max-width: 70px;
    border-radius: 5px;
    display: block;
    max-height: 70px;
    margin-right: 20px;
    width: 70px;
    height: 70px;
    object-fit: cover
}

.ftr-widget .recent-posts li i {
    color: var(--clr-theme-primary);
}

.ftr-widget .recent-posts li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #d9d9d9;
    display: inline-block
}

.ftr-widget .recent-posts li p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #d9d9d9;
    padding-top: 10px
}

.ftr-widget.schedule table {
    width: 100%;
    min-width: 300px;
}

.ftr-widget.schedule table tr td {
    color: #B8B8B8;
    line-height: 36px;
}

.ftr-widget.schedule table tr td i {
    margin-right: 5px;
}

.ftr-widget.schedule table tr td:last-child {
    text-align: right;
}

.ftr-widget.schedule table tr td span {
    color: var(--clr-theme-primary);
}

#return-to-top {
    width: 56px;
    height: 56px;
    background: var(--clr-theme-primary);
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 27px;
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 922;
    transition: .3s;
    line-height: 60px;
    display: none;
    z-index: 999;
}

.copyright-conts {
    background: var(--clr-theme-primary);
    display: inline-block;
    width: 100%;
    padding: 10px 0
}

.copyright-conts p {
    color: var(--clr-common-white);
}

.copyright-conts ul {
    text-align: right;
}

.copyright-conts li {
    display: inline-block;
    position: relative;
    padding-left: 10px;
    margin-left: 10px
}

.copyright-conts li:after {
    content: '';
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0
}

.copyright-conts li:first-child {
    padding-left: 0;
    margin-left: 0
}

.copyright-conts li a {
    color: var(--clr-common-white);
}

.copyright-conts li:first-child:after {
    display: none;
}

@media (max-width:1100px) {
    .ftr-info-wrap {
        padding-left: 80px;
    }

    .ftr-info-wrap .icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

@media (max-width:767px) {

    .inner-ftr-info .row .border-right,
    .inner-ftr-info .row .col-lg-4 {
        border: 0;
    }

    .copyright-conts p {
        text-align: center;
    }

    .copyright-conts ul {
        text-align: center;
    }
}

@media (max-width:767px) {
    h1 {
        font-size: 52px;
        line-height: 65px;
    }

    h2 {
        font-size: 30px;
        line-height: 40px;
    }

    h3 {
        font-size: 20px;
        line-height: 26px;
    }

    h4 {
        font-size: 18px;
        line-height: 20px;
    }

    h5 {
        font-size: 16px;
        line-height: 26px;
    }

    h6 {
        font-size: 14px;
        line-height: 14px;
    }

    p {
        font-size: 14px;
        line-height: 20px;
    }

    .pt-120 {
        padding-top: 80px;
    }

    .pb-120 {
        padding-bottom: 80px;
    }

    .px-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .btn {
        font-size: 16px;
        line-height: 20px;
        padding: 15px 30px;
    }
}

.hero-banner-v2 {
    width: 100%;
    background-image: url(../img/home2/hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding-top: 10px;
    padding-bottom: 30px;
}

.hero-banner-v2:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background:#000000;
    opacity: 0.88;
    z-index: -1;
}

.hero-content-inner-v2 {
    max-width: 678px;
}

.hero-content-inner-v2 h4 {
    color: var(--clr-common-white);
    font-size: 24px;
    text-transform: uppercase;
}

.hero-content-inner-v2 h1 {
    margin-top: 18px;
    color: var(--clr-common-white);
    font-weight: 900;
    font-size: 48px;
    line-height: 75px;
}

.hero-content-inner-v2 p {
    color: var(--clr-common-white);
    margin-top: 15px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    font-family: 'Quicksand', sans-serif;
}

.hero-content-inner-v2 .btn {
    margin-top: 52px;
}

.btn.v2 {
    border: 1px solid var(--clr-theme-extra) !important;
}

.btn.v2:hover {
    color: var(--clr-theme-extra);
    background-color: #fff;
}

.btn.v2:before {
    background-color: var(--clr-theme-extra);
}

.right-img-banner-v2 {
    text-align: right;
}

.about-sec-medifest.v2 {
    padding-top: 80px;
    padding-bottom: 180px;
}

.about-sec-medifest.v3 {
    padding-top: 180px;
    padding-bottom: 180px;
}

.left-img-about-v2 {
    width: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-align: center;
    z-index: 1;
    min-height: 580px;
}

.left-img-about-v2:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-image: url(../img/home2/about-shape.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    opacity: 0.8;
}

.about-right-content-v2 {
    max-width: 635px;
    margin-left: auto;
}

.about-right-content-v2 p {
    margin-top: 27px;
}

.bullet-list-icon li {
    padding-left: 75px;
    position: relative;
}

.bullet-list-icon li .icon {
    width: 50px;
    height: 50px;
    background: var(--clr-theme-extra);
    box-shadow: 5px 5px 20px rgba(54, 97, 252, 0.15);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.bullet-list-icon li .icon img {
    vertical-align: middle;
}

.bullet-list-icon li p {
    max-width: 170px;
    margin-top: 11px;
}

.about-right-content-v2 .bullet-list-icon {
    margin-top: 28px;
}

.about-right-content-v2 .btn {
    margin-top: 56px;
}

.bullet-list-icon.style2 li {
    padding-left: 100px;
}

.bullet-list-icon.style2 p {
    max-width: 402px;
}

.bullet-list-icon.style2 .icon {
    width: 80px;
    height: 80px;
    background: var(--clr-theme-primary);
    line-height: 80px;
}

.services-sec-v2 {
    width: 100%;
    background-image: url(../img/home2/services-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--clr-white-light);
}

.service-inner-v2 {
    background: var(--clr-bg-white);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
}

.service-inner-v2 .imgs {
    position: relative;
}

.service-inner-v2 .imgs img {
    display: block;
    margin: auto;
    border-radius: 10px;
}

.service-inner-v2 .imgs .icon {
    border: 8px solid var(--clr-common-white);
    border-radius: 500px 500px 0px 500px;
    background: var(--clr-theme-extra);
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    bottom: -42px;
    transform: translate(-50%, 0);
    line-height: 85px;
}

.service-inner-v2:hover .imgs .icon {
    background: var(--clr-theme-primary);
}

.service-inner-v2 .imgs .icon img {
    vertical-align: middle;
    display: inline-block;
}

.service-inner-v2 h3 {
    margin-top: 70px;
}

.service-inner-v2:hover h3 {
    color: var(--clr-theme-primary);
}

.service-inner-v2 p {
    padding-top: 13px;
    max-width: 384px;
    margin: auto;
}

.service-inner-v2 a {
    display: inline-block;
    margin-top: 25px;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: var(--clr-body-heading);
}

.service-inner-v2 a i {
    transform: rotate(45deg);
    margin-left: 10px;
}

.service-inner-v2:hover a {
    color: var(--clr-theme-primary);
}

.appointment-sec-v2 {
    background-image: url(../img/home2/appointment-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.appointment-sec-v2:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background:#000000;
    opacity: 0.8;
}

.left-img-appt-dm {
    max-width: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
}

.left-img-appt-dm img {
    display: block;
    margin: auto;
}

.hero-apply-appointment-wrap.v2 {
    padding: 0;
    margin: 0;
    box-shadow: unset;
}

.hero-apply-appointment-wrap.v2:after {
    display: none;
}

.hero-apply-appointment-wrap.v2 h3 {
    color: var(--clr-common-white);
    margin: 0;
    padding: 0;
}

.hero-apply-appointment-wrap.v2 h2 {
    color: var(--clr-common-white);
    line-height: 135%;
}

.v2.hero-apply-appointment-wrap .gj-datepicker .btn,
.v2.hero-apply-appointment-wrap .select-cstm label {
    background: var(--clr-theme-extra);
}

.v2.hero-apply-appointment-wrap .sec-title {
    margin-bottom: 40px;
}

.work-steps-inner {
    text-align: center;
}

.work-steps-inner .imgs {
    max-width: 214px;
    margin: auto;
    position: relative;
    border-radius: 500px;
}

.work-steps-inner .imgs img {
    max-width: 214px;
    border-radius: 500px;
    display: block;
    margin: auto;
}

.work-steps-inner .imgs:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: -12px;
    bottom: -12px;
    border: 1px solid var(--clr-theme-extra);
    border-radius: 500px;
    z-index: -1;
}

.work-steps-inner .imgs .num {
    width: 48px;
    height: 48px;
    position: absolute;
    left: 1px;
    bottom: 8px;
    background: var(--clr-theme-primary);
    border: 4px solid var(--clr-common-white);
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    font-weight: 500;
    font-size: 20px;
    color: var(--clr-common-white);
}

.work-steps-inner .cont {
    margin-top: 50px;
    max-width: 244px;
    margin: auto;
    margin-top: 50px;
}

.work-steps-inner .cont p {
    padding-top: 20px;
}

.shape-left-proc {
    position: absolute;
    top: 130px;
    left: 47px;
    z-index: -1;
    opacity: 0.5;
}

.shape-right-proc {
    position: absolute;
    right: 0;
    bottom: 120px;
    z-index: -1;
    opacity: 0.5;
}

.testimonial-sec {
    background-color: var(--clr-white-light);
    background-image: url(../img/home2/testi-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.testimonial-slider-slick .slick-slide {
    margin-left: 24px;
}

.testimonial-slider-slick .slick-list {
    margin-left: -24px;
}

.testimonial-inner-wrap {
    background: var(--clr-bg-white);
    border-radius: 10px;
    padding: 40px;
}

.testimonial-inner-wrap img {
    border-radius: 500px 500px 0px 500px;
    width: 90px;
    height: 90px;
    opacity: 0.9;
}

.testimonial-inner-wrap .flex-grow-1 {
    margin-left: 35px;
}

.testimonial-inner-wrap .flex-grow-1 h4 {
    line-height: 125%;
}

.testimonial-inner-wrap .flex-grow-1 p {
    line-height: 30px;
}

.testimonial-inner-wrap .d-flex {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--clr-theme-primary);
    position: relative;
}

.testimonial-inner-wrap .d-flex svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    margin-top: -15px;
}

.testimonial-inner-wrap>p {
    padding-top: 22px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--clr-body-heading);
}

.slick-dots li button {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    text-indent: -9999px;
    border: 0;
    background: transparent;
    padding: 0;
}

.slick-dots li {
    background: var(--clr-theme-primary);
    width: 25px;
    height: 5px;
    margin: 0px 5px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    transition: 0.3s all ease;
    opacity: 0.3;
    border-radius: 10px;
}

.slick-dots {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.slick-dots li.slick-active {
    opacity: 1;
}

@media (max-width:991px) {
    .left-img-about-v2 {
        top: 80px;
        transform: translate(0);
        width: 100%;
        min-height: 300px;
    }

    .left-img-about-v2 img {
        max-height: 300px;
        margin: auto;
    }

    .about-sec-medifest.v3,
    .about-sec-medifest.v2 {
        padding-top: 30px;
        padding-bottom: 80px;
    }

    .about-right-content-v2 {
        margin: auto;
        margin-top: 30px;
    }

    .testimonial-inner-wrap {
        padding: 20px;
    }

    .testimonial-inner-wrap .d-flex {
        padding-right: 58px;
    }

    .testimonial-inner-wrap .flex-grow-1 {
        margin-left: 15px;
    }
}

@media (max-width:767px) {
    .hero-content-inner-v2 h1 {
        font-size: 45px;
        line-height: 120%;
    }

    .hero-content-inner-v2 h4 {
        font-size: 20px;
    }

    .hero-content-inner-v2 .btn {
        margin-top: 30px;
    }

    .right-img-banner-v2 {
        text-align: center;
        margin-top: 30px;
    }

    .hero-banner-v2 {
        padding-top: 80px;
    }

    .about-right-content-v2 .bullet-list-icon li {
        margin-top: 30px;
    }
}

.hero-sec-v3 {
    width: 100%;
    position: relative;
    z-index: 1;
    background-image: url(../img/home3/banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 105px;
    padding-bottom: 350px;
}

.hero-sec-v3:after {
    content: '';
    background-color: #091932E5;
    background: rgb(9, 25, 50);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.9;
    z-index: -1;
    mix-blend-mode: normal;
}

.left-content-hero-v3 h3 {
    text-transform: uppercase;
    font-weight: 500;
    color: var(--clr-common-white);
    margin-bottom: 18px;
}

.left-content-hero-v3 h1 {
    font-size: 65px;
    line-height: 75px;
    color: var(--clr-common-white);
}

.left-content-hero-v3 {
    max-width: 617px;
}

.left-content-hero-v3 h1 span {
    color: #2AC28E;
}

.left-content-hero-v3 p {
    margin-top: 15px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--clr-common-white);
}

.left-content-hero-v3 .btn {
    margin-top: 50px;
}

.hero-apply-appointment-wrap.v3 {
    background: var(--clr-bg-white);
    max-width: 582px;
    margin-left: auto;
    margin-top: 0;
}

.features-sec-v3 {
    position: relative;
    z-index: 12;
    margin-top: -250px;
}

.inner-features-wrap {
    width: 100%;
    height: 500px;
    position: relative;
    z-index: 1;
    background-image: url(../img/home3/features-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.inner-features-wrap .btn-group {
    position: absolute;
    left: 13%;
    bottom: 13%;
}

.inner-features-wrap .dropdown-toggle {
    width: 82px;
    height: 82px;
    border: 0;
    background: transparent;
    font-size: 23px;
    padding: 0;
}

.inner-features-wrap .dropdown-toggle i {
    background: var(--clr-theme-primary);
    border-radius: 50%;
    text-align: center;
    color: var(--clr-common-white);
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

.inner-features-wrap .dropdown-toggle:after {
    display: none;
}

.inner-features-wrap .dropdown-toggle:before {
    width: 70px;
    height: 70px;
    content: '';
    background: var(--clr-theme-primary);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.inner-features-wrap .dropup .dropdown-menu {
    -webkit-transform: translate(0, -90px) !important;
    -moz-transform: translate(0, -90px) !important;
    transform: translate(0, -90px) !important;
}

.inner-features-wrap .dropdown-menu {
    min-width: 262px;
    margin-left: -74px !important;
    background: var(--clr-bg-white);
    border-radius: 5px;
    border: 0;
    box-shadow: unset;
    padding: 20px 28px;
}

.inner-features-wrap .dropdown-menu:after {
    content: '';
    display: inline-block;
    margin-left: 0;
    vertical-align: 0.255em;
    content: "";
    border-top: 10px solid var(--clr-bg-white);
    border-right: 10px solid transparent;
    border-bottom: 0;
    border-left: 10px solid transparent;
    position: absolute;
    bottom: -10px;
    left: 40%;
}

.inner-features-wrap .dropup .dropdown-menu[data-popper-placement="bottom-start"] {
    inset: auto auto 0px 0px !important;
}

.inner-features-wrap .dropdown-menu li {
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
    display: flex;
    align-items: center;
}

.inner-features-wrap .dropdown-menu li i {
    margin-right: 8px;
    color: var(--clr-theme-secondary);
    font-size: 13px;
}

.inner-features-wrap .ftr2 {
    top: 26%;
    bottom: auto;
    left: 31%;
}

.inner-features-wrap .dropdown .dropdown-menu:after {
    border-top: 0;
    border-bottom: 10px solid var(--clr-bg-white);
    top: -8px;
    bottom: auto;
}

.inner-features-wrap .dropdown .dropdown-menu[data-popper-placement="top-start"] {
    inset: 0px auto auto 0px !important;
    -webkit-transform: translate(0px, 84px) !important;
    transform: translate(0px, 84px) !important;
}

.inner-features-wrap .btn-group.ftr3 {
    left: 60%;
    bottom: 13%;
}

.inner-features-wrap .btn-group.ftr4 {
    left: auto;
    right: 11%;
    bottom: 50%;
}

.our-service-v3-sec {
    width: 100%;
    background-image: url(../img/home3/service-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--clr-theme-primary);
    background-attachment: fixed;
}

.custom-tabs .nav-link {
    background: var(--clr-bg-white);
    border-radius: 500px;
    text-align: left;
    height: 80px;
    line-height: 80px;
    padding: 0;
    padding-right: 8px;
    padding-left: 88px;
    position: relative;
    font-weight: 700;
    font-size: 20px;
    color: var(--clr-body-heading);
}

.custom-tabs .nav-link span {
    display: inline-block;
    background: var(--clr-theme-secondary);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    left: 13px;
    top: 13px;
    line-height: 51px;
}

.custom-tabs .nav-link span img {
    vertical-align: middle;
}

.custom-tabs .nav-link.active {
    color: var(--clr-theme-primary);
}

.custom-tabs .nav-link.active span {
    background: var(--clr-theme-primary);
}

.our-service-v3-sec .tab-content {
    margin-top: 30px;
}

.service-tabs-content-inner {
    background: var(--clr-bg-white);
    border-radius: 30px;
    padding: 25px;
}

.service-tabs-content-inner .left-content {
    max-width: 600px;
    margin: auto;
}

.service-tabs-content-inner .left-content p {
    margin-top: 18px;
}

.service-tabs-content-inner .left-content ul {
    margin-top: 18px;
}

.service-tabs-content-inner .bullet-list-all li:after {
    background: var(--clr-body-heading);
}

.service-tabs-content-inner .left-content .btn {
    margin-top: 40px;
}

.service-tabs-content-inner .right-img {
    border-radius: 20px;
}

.service-tabs-content-inner .right-img img {
    display: block;
    margin: auto;
}

.single-progress {
    overflow: hidden;
}

.single-progress label {
    padding-bottom: 9px;
    align-items: center;
    color: var(--clr-body-text);
}

.single-progress .progress {
    height: 10px;
    background: rgba(54, 97, 252, .15);
    overflow: unset
}

.single-progress .progress-bar {
    background: var(--clr-theme-primary);
    height: 4px;
    margin-top: 3px;
    margin-left: 2px;
    border-radius: 500px;
    overflow: unset
}

.single-progress .progress-bar:after {
    content: '';
    position: absolute;
    top: -12px;
    right: -4px;
    vertical-align: 0.255em;
    content: "";
    border-top: 10px solid var(--clr-theme-primary);
    border-right: 6px solid transparent;
    border-bottom: 0;
    border-left: 6px solid transparent;
    line-height: 1;
    display: inline-block;
    color: #fe2921
}

.single-progress .st2 .progress-bar {
    background: var(--clr-theme-secondary);
}

.single-progress .st2 .progress-bar:after {
    border-top: 10px solid var(--clr-theme-secondary);
}

.single-progress .st3 .progress-bar {
    background: var(--clr-theme-extra);
}

.single-progress .st3 .progress-bar:after {
    border-top: 10px solid var(--clr-theme-extra);
}

.left-content-who {
    max-width: 635px;
}

.left-content-who p {
    margin-top: 27px;
}

.single-progress {
    margin-top: 20px;
}

.left-content-who .sec-title {
    padding-bottom: 10px;
}

.right-imgs-who {
    position: relative;
}

.right-imgs-who .left-img {
    border-radius: 500px;
    max-width: 178px;
}

.right-imgs-who .right-imgs {
    max-width: 445px;
    position: absolute;
    top: 0;
    left: 210px;
    text-align: right;
    width: 100%;
    z-index: 1;
    padding-top: 50px;
    height: 100%;
}

.right-imgs-who .right-imgs img {
    border-radius: 30px;
}

.right-imgs-who .right-imgs:after {
    content: '';
    background: var(--clr-theme-primary);
    opacity: 0.1;
    border-radius: 68px 0 0px 0px;
    width: 252px;
    height: 198px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.right-imgs-who .right-imgs .tr {
    position: absolute;
    left: 0;
    bottom: 20px;
}

.right-imgs-who .right-imgs:before {
    content: '';
    background: var(--clr-theme-secondary);
    opacity: 0.1;
    border-radius: 0px 70px;
    width: 191px;
    height: 181px;
    position: absolute;
    right: -50px;
    bottom: 50px;
    z-index: -1;
}

.faq-sec {
    background-color: var(--clr-white-light);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.faq-sec:after {
    content: '';
    width: 55%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/home3/faq-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    z-index: -1;
}

.faq-sec:before {
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(../img/home3/faq-icons.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
}

.faq-sec .fq-img {
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 50%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: end;
}

.faq-sec .fq-img img {
    display: block;
    margin: auto;
    margin-bottom: 0;
}

.accordion {
    border: 0;
    background: transparent;
}

.accordion-item {
    margin-top: 24px;
    background: var(--clr-bg-white);
    border: 1px solid var(--clr-white-light);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border: 0;
    padding: 21px 25px;
    border-radius: 5px !important;
}

.accordion-button {
    padding: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: var(--clr-body-heading);
    padding-right: 40px;
    position: relative;
    background: transparent !important;
}

.accordion-button::before {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    color: var(--clr-body-heading);
}

.accordion-button::after {
    display: none;
}

.accordion-button:not(.collapsed) {
    color: var(--clr-theme-primary);
    box-shadow: unset !important;
    outline: 0 !important;
}

.accordion-button:focus {
    box-shadow: unset;
}

.accordion-button:not(.collapsed):before {
    content: "\f068";
    color: var(--clr-theme-primary);
}

.accordion-body {
    padding: 0;
    padding-top: 20px;
    border-top: 1px solid var(--clr-white-light);
    margin-top: 20px;
    color: var(--clr-body-text);
}

.faq-sec.v2 {
    background-color: var(--clr-bg-white);
    margin-bottom: 120px;
}

.faq-sec.v2:after {
    display: none;
}

.faq-sec.v2 .fq-img img {
    max-height: 691px;
}

.schedules-sec {
    width: 100%;
    background-color: var(--clr-theme-primary);
    background-image: url(../img/home3/schedule-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.schedules-sec .shape-left {
    position: absolute;
    left: 80px;
    top: 110px;
    z-index: -1;
}

.schedules-sec .shape-right {
    position: absolute;
    right: 0px;
    top: 30%;
    z-index: -1;
}

.table-appointment thead td {
    padding: 33px 0;
    color: var(--clr-common-white);
    background: var(--clr-theme-secondary);
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    max-width: 180px;
    min-width: 180px;
}

.table-appointment thead td:nth-child(even) {
    background: var(--clr-theme-extra);
}

.table-appointment {
    padding: 0;
    margin: 0;
    box-shadow: unset;
}

.table-appointment tbody td:first-child {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

.table-appointment tbody td {
    padding: 0;
    color: var(--clr-common-white);
    background: #1F70F0;
    border-radius: 5px;
    text-align: center;
    height: 86px;
    max-height: 86px;
    vertical-align: middle;
}

.table-appointment tbody td:nth-child(even) {
    background: #2277FF;
}

.table-appointment tbody .has {
    background: #004DC7 !important;
}

.table-appointment tbody tr:nth-child(even) td {
    background: #2277FF;
}

.table-appointment tbody tr:nth-child(even) td:nth-child(even) {
    background: #1F70F0;
}

.table-appointment tbody tr h5 {
    color: var(--clr-common-white);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.table-appointment tbody td.has {
    position: relative;
}

.table-appointment tbody .pop-info {
    position: absolute;
    background: var(--clr-bg-white);
    width: 370px;
    padding: 25px;
    border-radius: 10px;
    z-index: 1;
    opacity: 0;
    display: none;
    top: -173px;
    left: 0;
}

.table-appointment tbody tr:first-child .pop-info {
    bottom: -186px;
    top: auto;
    left: -50%;
}

.table-appointment tbody td.has:hover .pop-info {
    display: inline-block;
    opacity: 1;
}

.table-appointment tbody tr:first-child .pop-info:after {
    content: '';
    position: absolute;
    left: 50%;
    top: -8px;
    bottom: auto;
    border-top: 0;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--clr-bg-white);
    border-left: 10px solid transparent;
}

.table-appointment tbody tr .pop-info:after {
    content: '';
    position: absolute;
    border-top: 10px solid var(--clr-bg-white);
    border-right: 10px solid transparent;
    border-bottom: 0;
    border-left: 10px solid transparent;
    left: 20%;
    top: auto;
    bottom: -7px;
}

.table-appointment tbody .pop-info img {
    display: block;
    max-height: 124px;
    max-width: 100px;
}

.table-appointment tbody .pop-info .flex-grow-1 {
    text-align: left;
    padding-left: 25px;
}

.table-appointment tbody .pop-info .flex-grow-1 h4 {
    font-size: 24px;
    line-height: 24px;
}

.table-appointment tbody .pop-info .flex-grow-1 p {
    color: var(--clr-body-text);
}

.table-appointment tbody .pop-info .flex-grow-1 .btn {
    margin-top: 25px;
    padding: 15px 25px;
}

.table-appointment tbody td.has:last-child .pop-info {
    left: auto;
    right: 102%;
    bottom: -50%;
    z-index: 12;
    top: auto;
}

.table-appointment tbody td.has:last-child .pop-info:after {
    content: '';
    position: absolute;
    border-top: 10px solid var(--clr-bg-white);
    border-right: 10px solid transparent;
    border-bottom: 0;
    border-left: 10px solid transparent;
    left: 20%;
    top: auto;
    bottom: 50%;
    left: auto;
    right: -9px;
    top: auto;
    border-top: 10px solid transparent;
    border-right: 0;
    border-bottom: 10px solid transparent;
    border-left: 10px solid;
}

.table-appointment tbody tr:last-child td.has:last-child .pop-info {
    bottom: 0;
}

.table-appointment tbody tr:last-child td.has:last-child .pop-info:after {
    bottom: 20%;
}

.table-appointment tbody tr td.has:nth-child(7) .pop-info {
    right: 0;
    left: auto;
}

.table-appointment tbody tr td.has:nth-child(7) .pop-info:after {
    left: 70%;
}

.table-appointment tbody tr:last-child td.has:last-child .pop-info:after {
    bottom: 20%;
}

.team-member-inner {
    overflow: hidden;
    padding: 0;
    border-radius: 10px;
    position: relative;
    padding-bottom: 20px;
    z-index: 1;
}

.team-member-inner:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 72px;
    background: var(--clr-white-light);
    border-radius: 10px;
    z-index: -1;
}

.team-member-inner .inner {
    border-radius: 10px;
}

.team-member-inner .imgs {
    position: relative;
    z-index: 12;
    padding-top: 10px;
}

.team-member-inner .imgs:before {
    content: '';
    width: 75%;
    height: 80%;
    position: absolute;
    left: 50%;
    top: 40%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* background: var(--clr-theme-primary); */
    z-index: -1;
    border-radius: 500px 500px 0px 0px;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.team-member-inner:hover .imgs:before {
    background: var(--clr-theme-secondary);
}

.team-member-inner .imgs img {
    display: block;
    margin: auto;
    border-radius: 20px;
}

.team-member-inner .cont {
    text-align: center;
    margin-top: 20px;
    min-height: 60px;
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.team-member-inner .cont .name,
.team-member-inner .cont .socials {
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
}

.team-member-inner .cont .socials {
    top: -100%;
    opacity: 0;
}

.team-member-inner:hover .cont .socials {
    top: 50%;
    opacity: 1;
}

.team-member-inner .cont .name {
    padding-top: 0px;
}

.team-member-inner:hover .cont .name {
    top: 160%;
    opacity: 0;
}

.team-member-inner .cont .name p {
    color: var(--clr-theme-primary);
}

.team-member-inner .cont .socials li {
    display: inline-block;
    padding: 6px;
}

.team-member-inner .cont .socials li a {
    display: inline-block;
    width: 42px;
    height: 42px;
    background: #F4F4FF;
    text-align: center;
    border-radius: 50%;
    color: var(--clr-theme-primary);
    font-size: 18px;
    line-height: 45px;
    transition: 0.3s all ease;
}

.team-member-inner .cont .socials li a:hover {
    background: var(--clr-theme-primary);
    color: #fff;
}

.appointment-ftr-sec {
    background-color: var(--clr-white-light);
    background-image: url(../img/home3/appointment-ftr-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 110px 0;
}

.appt-title {
    max-width: 695px;
}

.appt-title h3 {
    padding: 0;
}

.appt-title p {
    margin-top: 30px;
}

.appt-title .btn {
    margin-top: 45px;
}

.video-right-ftr {
    position: relative;
    z-index: 1;
    background-image: url(../img/home3/video-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 104px 0;
    border-radius: 10px;
    overflow: hidden;
    max-width: 520px;
    margin-left: auto;
}

.video-right-ftr:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: #000000;
    opacity: 0.5;
}

.video-right-ftr a {
    display: inline-block;
    border: 1px solid var(--clr-common-white);
    width: 70px;
    height: 70px;
    text-align: center;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-right-ftr a span {
    width: 56px;
    height: 56px;
    background: var(--clr-common-white);
    display: inline-block;
    border-radius: 50%;
    line-height: 56px;
    font-size: 20px;
    color: var(--clr-theme-primary);
}

@media (max-width:991px) {
    .hero-apply-appointment-wrap.v3 {
        max-width: 100%;
    }

    .inner-features-wrap .ftr4 .dropdown-menu:after {
        left: 80%;
    }

    .left-content-who {
        margin: auto;
    }

    .right-imgs-who {
        margin-top: 50px;
    }
}

@media (max-width:767px) {
    .left-content-hero-v3 h1 {
        font-size: 45px;
        line-height: 120%;
    }

    .left-content-hero-v3 h3 {
        font-size: 20px;
    }

    .right-imgs-who .right-imgs {
        max-width: 100%;
        text-align: left;
    }

    .right-imgs-who .right-imgs img.tr {
        max-width: 50%;
    }

    .right-imgs-who .right-imgs img.tw {
        max-width: 60%;
    }

    .faq-sec {
        padding-bottom: 0;
    }

    .faq-sec .fq-img {
        position: relative;
    }
}

@media (max-width:520px) {
    .right-imgs-who .left-img {
        display: none;
    }

    .right-imgs-who .right-imgs {
        position: relative;
        left: 0;
    }

    .right-imgs-who .right-imgs img.tr {
        max-width: 50%;
    }

    .right-imgs-who .right-imgs img.tw {
        max-width: 100%;
    }
}

.header-breadcrumb {
    width: 100%;
    background-image: url(../img/header-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    padding: 60px  0;
    position: relative;
    z-index: 1;
}

.header-breadcrumb:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-color: #000000;    
    opacity: 0.88;
}

.inner-bread-cont h2 {
    color: var(--clr-common-white);
}

.breadcrumb a {
    color: var(--clr-common-white);
}

.breadcrumb .active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '-';
    color: var(--clr-common-white);
}

.single-box-doc {
    background: var(--clr-bg-white);
    border: 1px solid #E2EDFF;
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    height: 100%;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.single-box-doc:hover {
    border: 1px solid var(--clr-theme-primary);
}

.single-box-doc table {
    width: 100%;
    min-width: 282px;
}

.single-box-doc h3 {
    text-align: center;
    color: var(--clr-common-black-deep);
    margin-bottom: 23px;
}

.single-box-doc tr td:last-child {
    text-align: right;
}

.single-box-doc td {
    text-align: left;
    line-height: 36px;
    padding: 0;
}

.single-box-doc td span {
    color: var(--clr-theme-primary);
}

.single-box-doc .btn {
    margin-top: 38px;
    padding: 11px 24px;
}

.single-box-doc .btn span {
    vertical-align: middle;
}

.left-sidebar-srv li {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}

.left-sidebar-srv li a {
    display: inline-block;
    width: 100%;
    background: var(--clr-bg-white);
    border: 1px solid var(--clr-white-light);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
    padding: 23px 30px;
    position: relative;
    padding-right: 40px;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: var(--clr-body-heading);
}

.left-sidebar-srv li a i {
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.left-sidebar-srv li a:hover {
    color: var(--clr-theme-primary);
}

.left-sidebar-srv .dwn-brcho {
    margin-top: 30px;
    padding: 40px 30px;
    background: var(--clr-bg-white);
    border: 1px solid var(--clr-white-light);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
}

.left-sidebar-srv .dwn-brcho h4 {
    margin-bottom: 11px;
}

.left-sidebar-srv .dwn-brcho a {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    background: var(--clr-white-light);
    border-radius: 5px;
    padding: 23px 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: #18100F;
    padding-right: 70px;
    position: relative;
}

.left-sidebar-srv .dwn-brcho a svg {
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.right-details-srv img {
    border-radius: 10px;
    width: 100%;
}

.right-details-srv .mn-title {
    margin-top: 40px;
}

.right-details-srv p {
    padding-top: 17px;
}

.service-lists li .inner {
    background: var(--clr-bg-white);
    border: 1px solid var(--clr-white-light);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
    padding: 28px 30px;
    padding-left: 138px;
    position: relative;
}

.service-lists li .icon {
    background: var(--clr-white-light);
    width: 81px;
    height: 81px;
    border-radius: 50%;
    position: absolute;
    left: 30px;
    top: 30px;
    text-align: center;
    line-height: 81px;
}

.service-lists li .icon img {
    width: auto;
    margin: auto;
    vertical-align: middle;
    border-radius: 0;
}

.list-items-serv li {
    width: 50%;
    position: relative;
    padding-left: 38px;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: var(--clr-body-heading);
    margin-top: 18px;
}

.list-items-serv li:after {
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    color: var(--clr-theme-primary);
}

@media (max-width:480px) {
    .list-items-serv li {
        width: 100%;
    }
}

.left-sidebar-doc-dt {
    background: var(--clr-bg-white);
    border: 1px solid var(--clr-white-light);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 10px;
    padding: 20px;
}

.left-sidebar-doc-dt .imgs {
    text-align: center;
    background: var(--clr-white-light);
    border-radius: 5px;
    padding: 0 20px;
    padding-top: 20px;
}

.left-sidebar-doc-dt .imgs img {
    display: block;
    margin: auto;
}

.left-sidebar-doc-dt .d-nm {
    margin-top: 30px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--clr-white-light);
}

.left-sidebar-doc-dt .d-nm h5 {
    color: var(--clr-theme-primary);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    padding: 5px 0;
    padding-top: 0;
}

.left-sidebar-doc-dt .d-nm h3 {
    padding-bottom: 16px;
}

.left-sidebar-doc-dt .d-social {
    margin-top: 36px;
}

.left-sidebar-doc-dt .d-social h3 {
    text-transform: capitalize;
}

.left-sidebar-doc-dt .d-social li {
    display: inline-block;
    padding-top: 12px;
}

.left-sidebar-doc-dt .d-social ul {
    margin-top: 10px;
}

.left-sidebar-doc-dt .d-social li a {
    display: inline-block;
    background: var(--clr-white-light);
    width: 41px;
    height: 41px;
    text-align: center;
    line-height: 41px;
    border-radius: 50%;
    margin-right: 10px;
}

.left-sidebar-doc-dt .d-social li a:hover {
    background: var(--clr-theme-primary);
    color: var(--clr-common-white);
}

.left-sidebar-doc-dt .d-emr {
    margin-top: 40px;
    background: var(--clr-white-light);
    border-radius: 5px;
    padding: 16px;
}

.left-sidebar-doc-dt .d-emr .icon {
    background: var(--clr-theme-primary);
    border-radius: 5px;
    width: 88px;
    height: 88px;
    text-align: center;
    line-height: 88px;
}

.left-sidebar-doc-dt .d-emr .icon img {
    vertical-align: middle;
}

.left-sidebar-doc-dt .d-emr p {
    color: var(--clr-theme-primary);
    padding-top: 5px;
}

.left-sidebar-doc-dt .d-emr .flex-grow-1 {
    padding-left: 30px;
}

.left-sidebar-doc-dt .d-emr .flex-grow-1 h3 {
    word-break: break-all;
}

.right-content-dDetails {
    background: var(--clr-bg-white);
    border: 1px solid var(--clr-white-light);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 10px;
    padding: 40px 50px;
}

.right-content-dDetails p {
    padding-top: 17px;
}

.right-content-dDetails hr {
    opacity: 1;
    margin: 24px 0;
    border-top: 1px solid var(--clr-white-light);
}

.right-content-dDetails table {
    width: 100%;
    margin: 0;
    margin-top: 20px;
    min-width: 350px;
}

.right-content-dDetails table thead td {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: var(--clr-body-heading);
}

.right-content-dDetails table td {
    padding: 5px 0;
}

.list-bullet-icon {
    margin-top: 16px;
}

.list-bullet-icon li {
    width: 100%;
    position: relative;
    padding-left: 38px;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--clr-body-heading);
}

.list-bullet-icon li:after {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    color: var(--clr-theme-primary);
}

.appnt-schdules-doc {
    background: var(--clr-bg-white);
    border: 1px solid var(--clr-white-light);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 10px;
    margin-top: 24px;
    padding: 50px;
    padding-top: 40px;
}

.appnt-schdules-doc table {
    width: 100%;
    margin: 0;
    margin-top: 20px;
    min-width: 530px;
}

.appnt-schdules-doc table thead td {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: var(--clr-body-heading);
    padding-left: 0;
}

.appnt-schdules-doc table tbody tr td {
    padding: 0;
}

.appnt-schdules-doc table tbody tr td.h-15 {
    height: 15px;
}

.appnt-schdules-doc table tbody tr td:not(:last-child) {
    background: #E6EFFF;
    padding: 15px 30px;
    height: 57px;
    color: var(--clr-body-text);
}

.appnt-schdules-doc table tbody tr td:first-child {
    border-radius: 5px 0 0 5px;
}

.appnt-schdules-doc table tbody tr td:nth-child(2) {
    border-radius: 0 5px 5px 0;
    padding-left: 0;
}

.appnt-schdules-doc table tbody tr td:last-child {
    margin-left: auto;
    text-align: right;
}

@media (max-width:767px) {
    .right-content-dDetails {
        padding: 20px 25px;
    }

    .appnt-schdules-doc {
        padding: 20px;
    }
}

.appointment-sec-v3 .inject-appt {
    position: absolute;
    left: 0;
    bottom: 120px;
    z-index: -1;
    opacity: 0.1;
}

.hero-apply-appointment-wrap.v2.inners h3 {
    color: var(--clr-theme-primary);
}

.hero-apply-appointment-wrap.v2.inners h2 {
    color: var(--clr-body-heading);
}

.hero-apply-appointment-wrap.v2.inners .form-control {
    background: var(--clr-white-light) !important;
    color: #A6A6A6;
}

.hero-apply-appointment-wrap.inners .select-cstm {
    background-color: var(--clr-white-light);
}

.v2.hero-apply-appointment-wrap.inners .gj-datepicker .btn,
.v2.hero-apply-appointment-wrap.inners .select-cstm label {
    background: var(--clr-theme-primary);
}

.appointment-sec-v3 .left-img-appt-dm img {
    max-height: 750px;
    margin-left: auto;
    margin-right: 0;
}

.appointment-sec-v3 .left-img-appt-dm {
    bottom: 120px;
}

.appointment-sec-v3 .left-img-appt-dm {
    max-width: 45%;
}

.appointment-sec-v3 .left-img-appt-dm:after {
    content: '';
    width: 100%;
    height: 140px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180.6deg, rgba(255, 255, 255, 0) -7.49%, #FFFFFF 48.23%, #FFFFFF 99.48%);
}

.inner-wrap-emr {
    border-radius: 10px;
    background: var(--clr-bg-white);
    border: 1px solid var(--clr-white-light);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    padding: 30px;
}

.inner-wrap-emr img {
    border-radius: 5px;
}

.inner-wrap-emr h4 {
    color: var(--clr-theme-primary);
}

.inner-wrap-emr h2 {
    margin-top: 25px;
    font-weight: 700;
    font-size: 56px;
    line-height: 56px;
    word-break: break-all;
}

.inner-wrap-emr h3 {
    max-width: 744px;
    margin-top: 30px;
    font-weight: 700;
    font-size: 34px;
    line-height: 46px;
}

.inner-wrap-emr h3 span {
    color: var(--clr-theme-primary);
    text-transform: capitalize;
}

.project-info-right {
    background: var(--clr-bg-white);
    border: 1px solid #E2EDFF;
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 10px;
    padding: 37px 40px;
}

.project-info-right h3 {
    margin-bottom: 16px;
}

.project-info-right>p {
    margin-bottom: 20px;
}

.project-info-right div p {
    line-height: 40px;
}

.project-info-right div p strong {
    font-weight: 500;
    color: var(--clr-body-heading);
}

.project-info-right .social li {
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 5px;
}

.project-info-right .social li a {
    width: 37px;
    height: 37px;
    display: inline-block;
    background: var(--clr-theme-primary);
    color: var(--clr-common-white);
    text-align: center;
    line-height: 37px;
    border-radius: 50%;
}

.project-img-dts img {
    border-radius: 10px;
    width: 100%;
    display: block;
}

.project-img-dts {
    position: relative;
}

.project-img-dts .tg {
    background: var(--clr-bg-white);
    border-radius: 0px 10px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 24px 27px;
    color: var(--clr-theme-primary);
}

.project-details-inner h2 {
    text-transform: capitalize;
}

.project-details-inner .col-12 p {
    padding-top: 20px;
}

.project-details-inner .list-bullet-icon li {
    width: 50%;
}

@media (max-width:767px) {
    .project-details-inner .list-bullet-icon li {
        width: 100%;
    }
}

.faq-ask-que {
    background: var(--clr-white-light);
    margin-bottom: -92px;
    padding-bottom: 200px;
}

.left-img-ask img {
    border-radius: 5px;
}

.right-content-ask h2 {
    padding-bottom: 15px;
}

.right-content-ask p {
    margin-bottom: 30px;
}

.right-content-ask .form-control {
    background: var(--clr-bg-white) !important;
}

.right-content-ask .hero-apply-appointment-wrap .select-cstm {
    background: var(--clr-bg-white);
}

.right-content-ask .v2.hero-apply-appointment-wrap .select-cstm label {
    background: var(--clr-theme-primary);
}

.single-widg {
    background: var(--clr-bg-white);
    border: 1px solid #E2EDFF;
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 10px;
    padding: 37px 40px;
    margin-bottom: 50px;
}

.single-widg>h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.single-widg>h3:after {
    content: '';
    background: var(--clr-theme-primary);
    width: 78px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.single-widg .search-wid {
    position: relative;
    width: 100%;
}

.single-widg .search-wid .form-control {
    background: var(--clr-white-light) !important;
    border-radius: 5px;
}

.single-widg .search-wid i {
    color: var(--clr-theme-primary);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 20px;
}

.single-widg .about-wid img {
    border-radius: 5px;
    max-width: 150px;
    display: block;
}

.single-widg .about-wid .flex-grow-1 {
    padding-left: 30px;
}

.single-widg .about-wid .flex-grow-1 h6 {
    color: var(--clr-body-text);
    padding-top: 5px;
}

.single-widg .about-wid .flex-grow-1 p {
    margin-top: 14px;
}

.single-widg .posts-wid img {
    border-radius: 5px;
    max-width: 92px;
    max-height: 92px;
    display: block;
}

.single-widg .posts-wid .flex-grow-1 {
    padding-left: 20px;
}

.single-widg .posts-wid .flex-grow-1 h5 a {
    color: var(--clr-body-heading);
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
}

.single-widg .posts-wid .flex-grow-1 p {
    margin-top: 15px;
}

.single-widg .posts-wid .flex-grow-1 p i {
    color: var(--clr-theme-primary);
}

.single-widg .posts-wid>div {
    margin-bottom: 30px;
}

.single-widg .posts-wid>div:last-child {
    margin: 0;
}

.single-widg .cats-wid a {
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    color: var(--clr-body-text);
    position: relative;
    display: inline-block;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.single-widg .cats-wid a:hover {
    color: var(--clr-theme-primary);
}

.single-widg .cats-wid a span {
    background: var(--clr-bg-white);
    position: relative;
    z-index: 12;
    display: inline-block;
}

.single-widg .cats-wid a .dots {
    width: 100%;
    height: 1px;
    border-top: 1px dashed #C7DAFD;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
}

.single-widg .cats-wid a span:nth-child(2) {
    padding-right: 20px;
}

.single-widg .cats-wid a span:nth-child(3) {
    padding-left: 20px;
}

.single-widg .tags-wid li {
    display: inline-block;
}

.single-widg .tags-wid li a {
    border: 1px solid var(--clr-theme-primary);
    border-radius: 5px;
    display: inline-block;
    padding: 7px 20px;
    color: var(--clr-body-text);
}

.single-widg .tags-wid li a:hover {
    background: var(--clr-theme-primary);
    color: var(--clr-common-white);
}

.single-blog-inner.big .imgs {
    padding-top: 480px;
}

.big.single-blog-inner .imgs .tag {
    bottom: 20px;
    left: 20px;
}

.big.single-blog-inner .meta {
    padding-bottom: 20px;
    border-bottom: 1px solid #E6EFFF;
}

.pagination .page-link {
    margin: 0 10px !important;
    border: 1px solid var(--clr-white-light);
    border-radius: 50px !important;
    padding: 12px 0px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--clr-body-text);
    width: 50px;
    height: 50px;
    text-align: center;
}

.pagination .page-link.active {
    background: var(--clr-theme-primary);
    font-weight: 500;
    color: var(--clr-common-white);
}

.pagination .page-link:hover {
    background: var(--clr-theme-primary);
    color: var(--clr-common-white);
}

.pagination .page-link i {
    font-size: 20px;
    line-height: 25px;
}

.blog .page-item:first-child .page-link {
    margin-left: 0 !important;
}

@media (max-width:991px) {
    .single-blog-inner.big .imgs {
        padding-top: 350px;
    }

    .single-widg .about-wid img {
        max-width: 100px;
    }

    .single-widg {
        padding: 25px 27px;
    }
}

.blog-details-pg-wrap {
    background: var(--clr-bg-white);
    border: 1px solid var(--clr-white-light);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 10px;
    padding: 25px;
}

.article-img-title .p-img {
    position: relative;
}

.article-img-title .p-img img {
    max-width: 100%;
    border-radius: 6px;
    display: block;
}

.article-img-title .p-img .cat {
    background: var(--clr-theme-secondary);
    border-radius: 5px;
    padding: 12px 20px;
    color: var(--clr-common-white);
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.article-img-title .meta {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--clr-white-light);
    margin-top: 20px;
}

.article-img-title .meta li {
    display: inline-block;
}

.article-img-title .meta li i {
    color: var(--clr-theme-primary);
    margin-right: 5px;
}

.article-img-title .meta li:not(:first-child) {
    padding-left: 20px;
}

.article-img-title h4 {
    margin-top: 24px;
    color: var(--clr-theme-primary);
}

.article-img-title p {
    padding-top: 11px;
}

.article-img-title blockquote {
    background: var(--clr-white-light);
    border-radius: 5px;
    margin-top: 25px;
    padding: 32px 40px;
    position: relative;
    z-index: 1;
}

.article-img-title blockquote p {
    color: var(--clr-body-heading);
}

.article-img-title blockquote h4 {
    color: var(--clr-theme-secondary);
    position: relative;
    padding-left: 80px;
    padding-right: 80px;
    display: inline-block;
}

.article-img-title blockquote h4:after {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--clr-theme-primary);
    position: absolute;
    left: 0;
    bottom: 2px;
}

.article-img-title blockquote h4:before {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--clr-theme-primary);
    position: absolute;
    right: 0;
    bottom: 2px;
}

.article-img-title blockquote:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    position: absolute;
    right: -2px;
    bottom: -2px;
    background: transparent;
    border-radius: 5px;
    z-index: -1;
    border: 2px solid var(--clr-theme-primary);
    border-top: 0;
    border-left: 0;
}

.article-img-title .list-bullet-icon li {
    width: 50%;
}

.tags-share-cont {
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid var(--clr-white-light);
}

.tags-share-cont li {
    display: inline-block;
    padding-right: 20px;
    vertical-align: middle;
    line-height: 30px;
}

.tags-share-cont li:last-child {
    padding-right: 0;
}

.tags-share-cont li a {
    color: var(--clr-body-text);
}

.tags-share-cont li a:hover {
    color: var(--clr-theme-primary);
}

.tags-share-cont .socials li a {
    display: inline-block;
    background: var(--clr-white-light);
    box-shadow: 0px 4px 8px rgba(4, 99, 250, 0.1);
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    line-height: 34px;
    color: var(--clr-theme-primary);
    position: relative;
}

.next-prev-posts {
    margin-top: 60px;
    border: 1px solid var(--clr-white-light);
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
    padding: 40px;
}

.next-prev-posts img {
    max-width: 92px;
    max-height: 92px;
    display: block;
}

.next-prev-posts h4 {
    font-size: 18px;
}

.next-prev-posts p {
    padding-top: 14px;
    font-size: 14px;
}

.next-prev-posts .icons-go {
    padding-bottom: 70px;
    position: relative;
}

.next-prev-posts .icons-go .btn {
    position: absolute;
    bottom: 0;
    padding: 10px 18px;
    vertical-align: middle;
    left: 0;
}

.next-prev-posts .icons-go .btn.dis {
    background: var(--clr-white-light);
    border-radius: 3px;
    border: 0 !important;
    color: var(--clr-theme-primary);
}

.next-prev-posts .icons-go .btn.dis:before {
    display: none;
}

.next-prev-posts .icons-go .btn i {
    padding-right: 9px;
}

.next-prev-posts .text-end.icons-go .btn {
    left: auto;
    right: 0;
}

.next-prev-posts .text-end.icons-go .btn i {
    padding-right: 0;
    padding-left: 9px;
}

.reviews-content-tab {
    border: 1px solid #E6EFFF;
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
    padding: 40px;
}

.reviews-content-tab h3 {
    padding-bottom: 7px;
}

.single-cmnt-show {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E6EFFF;
    position: relative;
    padding-right: 100px;
}

.single-cmnt-show .btn {
    position: absolute;
    bottom: 20px;
    right: 0;
    padding: 12px 25px;
}

.single-cmnt-show img {
    display: block;
}

.single-cmnt-show .flex-grow-1 {
    padding-left: 25px;
}

.single-cmnt-show .flex-grow-1 h5 {
    color: #636363;
    font-weight: 500;
    padding-top: 10px;
}

.single-cmnt-show .flex-grow-1 p {
    padding-top: 7px;
}

.single-cmnt-show.replied {
    padding-left: 40px;
}

.reviews-box-added {
    margin-top: 60px;
    border: 1px solid #E6EFFF;
    box-shadow: 8px 8px 15px rgba(4, 99, 250, 0.08);
    border-radius: 5px;
    padding: 40px;
}

.reviews-box-added h3 {
    padding-bottom: 27px;
}

.reviews-box-added .form-control {
    background: #E6EFFF !important;
    border-radius: 5px;
}

@media (max-width:767px) {
    .article-img-title .list-bullet-icon li {
        width: 100%;
    }

    .article-img-title blockquote {
        padding: 25px;
    }

    .single-cmnt-show .btn {
        position: unset;
        margin-top: 10px;
    }

    .single-cmnt-show {
        padding-right: 0;
    }

    .article-img-title blockquote h4 {
        padding: 0 30px;
    }

    .article-img-title blockquote h4:after,
    .article-img-title blockquote h4:before {
        width: 25px;
    }
}

.left0-map-cont {
    max-width: 654px;
    width: 100%;
    border: 1px solid #E6EFFF;
    box-shadow: 8px 8px 16px rgba(27, 126, 248, 0.08);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
}

.left0-map-cont iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.contact-info-right {
    border: 1px solid #E6EFFF;
    box-shadow: 8px 8px 16px rgba(32, 129, 249, 0.08);
    border-radius: 10px;
    padding: 30px 40px;
}

.contact-info-right h2 {
    margin-bottom: 18px;
}

.contact-info-right h4 {
    padding-bottom: 15px;
}

.contact-info-right .row p {
    max-width: 265px;
}

.contact-info-right p strong {
    color: var(--clr-common-black-deep);
    font-weight: 400;
    padding-left: 4px;
}

.contact-info-right p a {
    color: var(--clr-common-black-deep);
}

.contact-form-sec {
    background: #E6EFFF;
    margin-bottom: -95px;
    padding-bottom: 198px;
    background-image: url(../img/contact-form-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.con-title {
    margin-bottom: 45px;
}

.con-title p {
    padding-top: 18px;
}

.left-contact-wrap .form-control {
    background: #FFFFFF !important;
    border-radius: 5px;
}

.left-contact-wrap .btn {
    width: 100%;
}

.right-img-contact {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.right-img-contact img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:991px) {
    .contact-form-sec {
        padding-bottom: 400px;
    }

    .right-img-contact {
        width: 100%;
    }

    .right-img-contact img {
        max-height: 350px;
    }
}


/* new facility css */
.facility-section {
    background-color: #f9f9f9;
    padding: 50px 0;
  }

  .facility-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    height: 180px;
  }

  .facility-icon {
    font-size: 2.5rem;
    color: #f75a4a;
    margin-right: 20px;
  }

  .facility-title {
    font-weight: 600;
    margin-bottom: 5px;
  }

  .facility-description {
    color: #666;
  }


  /* mobile */
  @media only screen and (max-width: 600px) {
    .why-us-sec{
        padding-bottom: 30px;
    }
  }