:root {
  --primaryFont: "DM Sans", sans-serif;
  --headingFont: "Sora", sans-serif;
  --secondaryFont: "Poppins", sans-serif;
  --primaryColor: #5d99ff;
  --secondaryColor: #173e02;
  --titleColor: #000000;
  --whiteColor: #ffffff;
  --redColor: #ff0f00;
  --paraColor: #0c1b2b;
  --frameColor: #f3faff;
  --healthColor: #4b6262;
  --seventeenColor: #171717;
  --warning: #ffe09f;
  --success: #cdedbc;
  --fontSize: 16px;
  --transition: all ease .5s;
}

body {
  margin: 0;
  padding: 0;
  color: var(--paraColor);
  font-size: var(--fontSize);
  font-family: var(--primaryFont);
}

p {
  font-weight: 400;
  font-family: var(--primaryFont);
  margin-bottom: 15px;
  line-height: 1.7;
  transition: var(--transition);
}
p:last-child {
  margin-bottom: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
  font-weight: 600;
  font-family: var(--headingFont);
  line-height: 1.3;
}
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: var(--success);
}
.h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: var(--primaryColor);
}

a {
  text-decoration: none;
  outline: 0 !important;
  transition: var(--transition);
}

:focus {
  outline: 0 !important;
  box-shadow: unset !important;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

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

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

.form-control {
  box-shadow: unset !important;
  transition: var(--transition);
  border-radius: 5px;
  color: var(--success);
  border: 1px solid #e6e6e6;
}
.form-control::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.form-control::placeholder {
  transition: var(--transition);
}
.form-control:focus::-moz-placeholder {
  color: transparent;
}
.form-control:focus::placeholder {
  color: transparent;
}

.ptb-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.ptb-95 {
  padding-top: 95px;
  padding-bottom: 95px;
}

.pt-95 {
  padding-top: 95px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pt-90 {
  padding-top: 90px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pt-70 {
  padding-top: 70px;
}

.mb-30 {
  margin-bottom: 30px;
}

.bg-color {
  background-color: rgba(255, 255, 255, 0.13);
}

.bg-color-0c1b2b {
  background-color: #0c1b2b;
}

.bg-color-ffe09f {
  background-color: #ffe09f;
}

.bg-color-ffffff {
  background-color: #ffffff;
}

.bg-color-5d99ff {
  background-color: #5d99ff;
}

.bg-color-d2d7fd {
  background-color: #d2d7fd;
}

.bg-color-cdedbc {
  background-color: var(--success);
}

.bg-color-a4dbfa {
  background-color: #a4dbfa;
}

.bg-color-1b2938 {
  background-color: #1b2938;
}

.bg-color-2c3947 {
  background-color: #2c3947;
}

.bg-color-f3faff {
  background-color: #f3faff;
}

.bg-color-ebf1fb {
  background-color: #ebf1fb;
}

.bg-color-f5f5f5 {
  background-color: #f5f5f5;
}

.bg-color-ff0f00 {
  background-color: #ff0f00;
}

.bg-color-f5f7ff {
  background-color: #f5f7ff;
}

.bg-color-d8eefd {
  background-color: #d8eefd !important;
}

.container-fluid.wn-padding {
  padding-left: 180px;
  padding-right: 180px;
}
.container-fluid.ws-padding {
  padding-left: 0;
  padding-right: 0;
}
.container-fluid.wr-padding {
  padding-left: 190px;
  padding-right: 0;
}

/*
Default Button CSS
===================================================*/
.default-btn {
  color: var(--secondaryColor);
  border: none;
  display: inline-block;
  position: relative;
  box-shadow: unset !important;
  font-weight: 500;
  background-color: var(--success);
  transition: var(--transition);
  padding: 14px 60px 14px 30px;
  z-index: 1;
}
.default-btn i {
  font-size: 20px;
  font-weight: 600;
  top: 50%;
  right: 30px;
  position: absolute;
  line-height: 1;
  transition: var(--transition);
  transform: translateY(-50%);
}
.default-btn i.left {
  right: unset;
  left: 30px;
}
.default-btn .left-svg {
  top: 50%;
  left: 30px;
  position: absolute;
  transform: translateY(-50%);
}
.default-btn .left-svg svg {
  display: inline-block;
  width: 20px;
  line-height: 1;
  transition: var(--transition);
}
.default-btn .right-svg {
  top: 50%;
  right: 30px;
  position: absolute;
  transform: translateY(-50%);
}
.default-btn .right-svg svg {
  display: inline-block;
  width: 20px;
  line-height: 1;
  transition: var(--transition);
}
.default-btn.common {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.default-btn.common i i {
  color: var(--whiteColor);
}
.default-btn.common:hover {
  color: var(--secondaryColor);
}
.default-btn.common:hover::before {
  background-color: var(--success);
}
.default-btn.common:hover i {
  color: var(--secondaryColor);
}
.default-btn.global {
  color: var(--whiteColor);
  background-color: var(--redColor);
}
.default-btn.global i i {
  color: var(--whiteColor);
}
.default-btn.global:hover::before {
  background-color: var(--primaryColor);
}
.default-btn.global:hover i {
  color: var(--whiteColor);
}
.default-btn.style-white {
  color: var(--paraColor);
  background-color: var(--whiteColor);
}
.default-btn.style-white i i {
  color: var(--paraColor);
}
.default-btn.style-white:hover {
  color: var(--whiteColor);
}
.default-btn.style-white:hover::before {
  background-color: var(--primaryColor);
}
.default-btn.style-white:hover i {
  color: var(--whiteColor);
}
.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 0%;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: var(--transition);
  background-color: var(--success);
}
.default-btn:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  border-radius: 5px;
}

.more-btn {
  color: var(--secondaryColor);
  border: none;
  position: relative;
  box-shadow: unset !important;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}
.more-btn i {
  font-size: 20px;
  font-weight: 600;
  top: -2px;
  right: -25px;
  color: var(--secondaryColor);
  position: absolute;
  line-height: 1;
  transition: var(--transition);
}
.more-btn:hover {
  color: var(--primaryColor);
}
.more-btn:hover i {
  color: var(--primaryColor);
}

.medak-button-area {
  display: inline-block;
}
.medak-button-area.button-left {
  float: left;
}
.medak-button-area.button-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.medak-button-area.button-right {
  float: right;
}
.medak-button-area.align-justify {
  display: block;
  width: 100%;
}

/*
Section Title CSS
===================================================*/
.section-title {
  max-width: 665px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 55px;
}
.section-title h2 {
  font-size: 54px;
  margin-bottom: 0;
  line-height: 1.26;
}

.section-heading {
  margin-bottom: 50px;
}
.section-heading h2 {
  font-size: 54px;
  line-height: 1.26;
  margin-bottom: 0;
}

.new {
  font-size: 14px;
  font-weight: 500;
  color: #080e43;
  display: inline-block;
  line-height: 1;
  background-color: var(--whiteColor);
  padding: 10px 15px;
}

.extra-padding {
  padding-top: 245px;
}

/*
Top Header CSS
===================================================*/
.top-header-area {
  padding: 8px 0 8px;
}
.top-header-area .left-side li {
  display: inline-block;
  font-size: 14px;
  margin-right: 18px;
}
.top-header-area .left-side li a {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
}
.top-header-area .left-side li a:hover {
  color: var(--whiteColor);
}
.top-header-area .left-side li:last-child {
  margin-right: 0;
}
.top-header-area .right-side {
  text-align: end;
}
.top-header-area .right-side li {
  color: rgba(255, 255, 255, 0.75);
  display: inline-block;
  position: relative;
  font-size: 14px;
  margin-right: 35px;
  padding-left: 25px;
}
.top-header-area .right-side li i {
  color: var(--warning);
  font-size: 18px;
  line-height: 1;
  position: absolute;
  top: 1px;
  left: 0;
}
.top-header-area .right-side li:last-child {
  margin-right: 0;
}

.header-info {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  z-index: 999;
}
.header-info .top-header-area .left-side li a {
  color: var(--healthColor);
}
.header-info .top-header-area .left-side li a:hover {
  color: var(--secondaryColor);
}
.header-info .top-header-area .left-side li:last-child {
  margin-right: 0;
}
.header-info .top-header-area .right-side {
  text-align: end;
}
.header-info .top-header-area .right-side li {
  color: var(--healthColor);
}
.header-info .top-header-area .right-side li i {
  color: var(--primaryColor);
}
.header-info .navbar.sticky {
  position: fixed;
}

.navbar.no-sticky.sticky {
  display: none !important;
}
.navbar.medak-hide-adminbar.sticky {
  top: 32px;
}

/*
Home Three Top Header CSS
===================================================*/
.top-header-area.top-three .left-side li a {
  color: var(--healthColor);
}
.top-header-area.top-three .left-side li a:hover {
  color: var(--secondaryColor);
}
.top-header-area.top-three .left-side li:last-child {
  margin-right: 0;
}
.top-header-area.top-three .right-side {
  text-align: end;
}
.top-header-area.top-three .right-side li {
  color: var(--healthColor);
}
.top-header-area.top-three .right-side li i {
  color: var(--primaryColor);
}

/*
Navbar Area CSS
===================================================*/
.navbar {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 999;
}
.navbar .navbar-brand {
  margin-right: 30px;
}
.navbar .navbar-nav .nav-item {
  margin-left: 15px;
  margin-right: 15px;
}
.navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}
.navbar .navbar-nav .nav-item:nth-child(3) .dropdown-menu {
  width: 305px;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: var(--whiteColor) !important;
  transition: 0.6s;
  position: relative;
  padding: 13px 0;
  z-index: 1;
  font-size: var(--fontSize);
  font-weight: 500;
  font-family: var(--primaryFont);
}
.navbar .navbar-nav .nav-item .nav-link::after {
  font-size: var(--fontSize);
  color: var(--whiteColor) !important;
}
.navbar .navbar-nav .nav-item .nav-link.dropdown-icon {
  padding-right: 20px;
}
.navbar .navbar-nav .nav-item .nav-link.dropdown-icon::after {
  position: absolute;
  vertical-align: 0;
  content: "\ea4d";
  margin-left: 0;
  border: 0;
  right: 2px;
  top: 13px;
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  transition: var(--transition);
  font-family: remixicon !important;
}
.navbar .navbar-nav .nav-item.active .nav-link, .navbar .navbar-nav .nav-item:hover .nav-link {
  color: var(--primaryColor) !important;
}
.navbar .navbar-nav .nav-item.active::after, .navbar .navbar-nav .nav-item:hover::after {
  color: var(--primaryColor) !important;
}
.navbar .navbar-nav .nav-item.active.dropdown-icon::after, .navbar .navbar-nav .nav-item:hover.dropdown-icon::after {
  color: var(--primaryColor) !important;
}
.navbar .navbar-nav .nav-item.active .dropdown-icon::after {
  color: var(--primaryColor) !important;
}
.navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  border: 0;
  top: 50px;
  opacity: 0;
  width: 265px;
  padding: 15px 0;
  border-radius: 0 0 5px 5px;
  visibility: hidden;
  display: block !important;
  background-color: var(--whiteColor);
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0.275rem 1.25rem rgba(11, 15, 25, 0.05), 0 0.25rem 0.5625rem rgba(11, 15, 25, 0.03);
}
.navbar .navbar-nav .nav-item .dropdown-menu li {
  position: relative;
  margin-left: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-item {
  display: block;
  padding: 8px 20px;
  position: relative;
  color: var(--secondaryColor) !important;
  background-color: transparent !important;
  font-size: 15px;
  font-weight: 500;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-item:hover {
  color: var(--primaryColor) !important;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
  display: block;
  padding: 8px 20px;
  position: relative;
  color: var(--secondaryColor) !important;
  background-color: transparent !important;
  font-size: 15px;
  font-weight: 500;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.dropdown-icon {
  padding-right: 18px;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.dropdown-icon::after {
  position: absolute;
  vertical-align: 0;
  content: "\ea4d";
  margin-left: 0;
  right: 19px;
  border: 0;
  top: 9px;
  transition: 0.6s;
  color: var(--paraColor) !important;
  font-size: 12px;
  font-weight: 500;
  font-family: remixicon !important;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item.active {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu li.active .dropdown-item {
  color: var(--primaryColor) !important;
}
.navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-item {
  color: var(--primaryColor) !important;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  visibility: hidden;
  left: auto;
  right: -100%;
  opacity: 0;
  top: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu li:hover .sub-dropdown {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu li:hover .sub-dropdown.dropdown-icon::after {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}
.navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu .nav-link {
  font-size: 16px;
  font-weight: 400;
}
.navbar .navbar-nav .nav-item:hover .nav-link {
  color: var(--primaryColor) !important;
}
.navbar .navbar-nav .nav-item:hover .nav-link.dropdown-icon::after {
  color: var(--primaryColor) !important;
}
.navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.navbar.sticky {
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  background-color: var(--titleColor) !important;
  color: var(--success) !important;
}
.navbar.navbar-three {
  background-color: var(--whiteColor) !important;
  border-bottom: 1px solid #f3f3f3;
}
.navbar.navbar-three .navbar-nav .nav-item .nav-link {
  color: var(--paraColor) !important;
}
.navbar.navbar-three .navbar-nav .nav-item .nav-link::after {
  color: var(--paraColor) !important;
}
.navbar.navbar-three .navbar-nav .nav-item .nav-link.dropdown-icon::after {
  color: var(--paraColor) !important;
}
.navbar.navbar-three .navbar-nav .nav-item .nav-link.active, .navbar.navbar-three .navbar-nav .nav-item .nav-link:hover {
  color: var(--primaryColor) !important;
}
.navbar.navbar-three .navbar-nav .nav-item .nav-link.active::after, .navbar.navbar-three .navbar-nav .nav-item .nav-link:hover::after {
  color: var(--primaryColor) !important;
}
.navbar.navbar-three .navbar-nav .nav-item .dropdown-menu {
  color: var(--paraColor) !important;
}
.navbar.navbar-three .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
  color: var(--paraColor) !important;
}
.navbar.navbar-three .navbar-nav .nav-item .dropdown-menu li .dropdown-item.active {
  color: var(--primaryColor) !important;
}
.navbar.navbar-three .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover {
  color: var(--primaryColor) !important;
}
.navbar.navbar-three .main-logo {
  display: none;
}
.navbar.navbar-three.sticky {
  background-color: var(--whiteColor) !important;
  box-shadow: 0 0 15px rgba(11, 15, 25, 0.05);
}
.navbar.navbar-three .others-options ul li .option-item .emergency {
  color: var(--primaryColor);
}
.navbar.navbar-three .others-options ul li .option-item a {
  color: var(--paraColor);
}
.navbar.navbar-three .others-options ul li .option-item .shopping i {
  color: var(--paraColor);
}
.navbar.navbar-three .others-options ul li .option-item .shopping .alerts {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.navbar .navbar-toggler {
  color: var(--titleColor);
  font-size: inherit;
  box-shadow: unset;
  border: none;
  padding: 0;
}
.navbar .navbar-toggler .burger-menu {
  cursor: pointer;
}
.navbar .navbar-toggler .burger-menu span {
  height: 3px;
  width: 30px;
  margin: 5px 0;
  display: block;
  background-color: var(--titleColor);
}
.navbar .others-options {
  padding-left: 0px !important;
  vertical-align: middle;
}
.navbar .others-options ul li {
  margin-right: 40px;
}
.navbar .others-options ul li .option-item {
  display: flex;
  position: relative;
  align-items: center;
}
.navbar .others-options ul li .option-item .shopping {
  margin-right: 30px;
}
.navbar .others-options ul li .option-item .shopping i {
  color: var(--whiteColor);
  font-size: 24px;
  line-height: 1;
}
.navbar .others-options ul li .option-item .shopping svg {
  width: 20px;
  filter: invert(100%) sepia(96%) saturate(0%) hue-rotate(41deg) brightness(103%) contrast(105%);
}
.navbar .others-options ul li .option-item .shopping .alerts {
  top: 0;
  color: var(--secondaryColor);
  width: 18px;
  height: 18px;
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 18px;
}
.navbar .others-options ul li .option-item .emergency {
  color: var(--success);
  display: block;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 5px;
}
.navbar .others-options ul li .option-item .emergency i {
  position: relative;
  top: 3px;
  font-size: 18px;
}
.navbar .others-options ul li .option-item a {
  font-size: 15px;
  font-weight: 700;
  color: var(--whiteColor);
  letter-spacing: -0.15px;
}
.navbar .others-options ul li .option-item a:hover {
  color: var(--success);
}
.navbar .others-options ul li .default-btn:hover {
  color: var(--whiteColor);
}
.navbar .others-options ul li .default-btn:hover::before {
  background-color: var(--primaryColor);
}
.navbar .others-options ul li:last-child {
  margin-right: 0;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
/*
Responsive Navbar Area CSS
===================================================*/
.mobile-navbar .offcanvas-header {
  padding: 25px 15px;
  border-bottom: 1px solid #e7e7e7;
}
.mobile-navbar .offcanvas-header .close-btn {
  transition: var(--transition);
  font-size: 30px;
  cursor: pointer;
  top: 30px;
  right: 14px;
  position: absolute !important;
}
.mobile-navbar .offcanvas-header .close-btn:hover {
  color: var(--primaryColor);
}
.mobile-navbar .offcanvas-body {
  padding: 20px;
}
.mobile-navbar .offcanvas-body ul {
  list-style-type: none;
  margin-bottom: 0;
}
.mobile-navbar .offcanvas-body ul.mobile-menu {
  padding-left: 0;
  overflow: hidden;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list {
  border-bottom: 1px solid #e7e7e7;
  position: relative;
  line-height: 1;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
  clear: both;
  width: 100%;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list.active .mobile-menu-items {
  padding: 18px 0 0 0;
  margin: 18px 0;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list:after {
  top: 14%;
  right: 0;
  content: "\ea13";
  color: #1B164D;
  position: absolute;
  transform: translateY(-14%);
  transition: 0.6s;
  font-family: remixicon !important;
  font-style: normal;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list:last-child {
  border: none;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a {
  height: 100%;
  display: block;
  padding-right: 40px;
  text-decoration: none;
  color: var(--titleColor);
  font-size: 16px;
  font-weight: 600;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a:hover, .mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list a.active {
  color: var(--primaryColor);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items {
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items li {
  padding: 0 0 20px 0 !important;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items a {
  padding: 0 20px;
  font-size: 16px;
  font-size: 15px;
  font-weight: 600;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items a.active {
  color: var(--primaryColor);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items a:hover {
  color: var(--primaryColor);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items .mobile-menu-list {
  padding: 0;
  margin: 0;
  border: none;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items .mobile-menu-list::after {
  right: 15px;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items .mobile-menu-list .mobile-menu-items {
  padding: 0 !important;
  background-color: var(--bs-gray-100);
  margin: 0 20px !important;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list .mobile-menu-items .mobile-menu-list.active .mobile-menu-items {
  padding: 18px 0 0 0 !important;
  margin: 18px 20px !important;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .mobile-menu-list.without-icon:after {
  display: none;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .active:after {
  transform: translateY(-50%) rotate(180deg);
}
.mobile-navbar .offcanvas-body ul.mobile-menu .active > .mobile-menu-items {
  transition: all 300ms;
  display: block;
  height: auto;
  clear: both;
  float: left;
  width: 100%;
  background-color: #ededed;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .active > .mobile-menu-items li:last-child {
  border: none;
}
.mobile-navbar .offcanvas-body ul.mobile-menu .active > a {
  color: var(--primaryColor);
}
.mobile-navbar .others-options {
  padding-left: 0px !important;
  vertical-align: middle;
}
.mobile-navbar .others-options ul li {
  margin-left: 30px;
}
.mobile-navbar .others-options ul li .option-item {
  display: flex;
  position: relative;
  align-items: center;
}
.mobile-navbar .others-options ul li .option-item .shopping {
  margin-right: 20px;
}
.mobile-navbar .others-options ul li .option-item .shopping i {
  color: var(--secondaryColor);
  font-size: 24px;
  line-height: 1;
}
.mobile-navbar .others-options ul li .option-item .shopping .alerts {
  top: 0;
  color: var(--secondaryColor);
  width: 18px;
  height: 18px;
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 18px;
  background-color: var(--warning);
}
.mobile-navbar .others-options ul li .option-item .emergency {
  color: var(--secondaryColor);
  display: block;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 10px;
}
.mobile-navbar .others-options ul li .option-item .emergency i {
  position: relative;
  top: 2px;
}
.mobile-navbar .others-options ul li .option-item a {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondaryColor);
  letter-spacing: -0.15px;
}
.mobile-navbar .others-options ul li .option-item a:hover {
  color: var(--primaryColor);
}
.mobile-navbar .others-options ul li:first-child {
  margin-left: 0;
}

.responsive-navbar {
  border: 0 !important;
  border: 0 !important;
  background-color: var(--whiteColor);
}
.responsive-navbar .offcanvas-header {
  padding: 25px 25px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.responsive-navbar .offcanvas-header .close-btn {
  transition: var(--transition);
  color: var(--titleColor);
  font-size: 25px;
  cursor: pointer;
  top: 2px;
}
.responsive-navbar .offcanvas-header .close-btn:hover {
  color: var(--secondaryColor);
}
.responsive-navbar .offcanvas-body {
  padding: 30px 15px 15px;
}
.responsive-navbar .offcanvas-body .navbar-nav .menu-item-has-children {
  position: relative;
  padding: 5px 0;
  z-index: 1;
}
.responsive-navbar .offcanvas-body .navbar-nav .menu-item-has-children::before {
  position: absolute;
  content: "\ea4d";
  z-index: -1;
  right: 0;
  font-family: "remixicon" !important;
  width: 30px;
  height: 30px;
  background-color: #f3f3f3;
  line-height: 30px;
  text-align: center;
  top: 0;
}
.responsive-navbar .offcanvas-body .navbar-nav li {
  margin-bottom: 25px;
  list-style-type: none;
  font-size: 15px;
}
.responsive-navbar .offcanvas-body .navbar-nav li:last-child {
  margin-bottom: 0;
}
.responsive-navbar .offcanvas-body .navbar-nav li a {
  text-decoration: none;
  width: 100% !important;
  display: block;
}
.responsive-navbar .offcanvas-body .navbar-nav li .sub-menu {
  display: none;
  background-color: #f8f8f8;
  margin-top: 12px;
  padding: 20px;
}
.responsive-navbar .offcanvas-body .navbar-nav li .sub-menu li {
  list-style-type: none;
  margin-bottom: 12px;
}
.responsive-navbar .offcanvas-body .navbar-nav li .sub-menu li:last-child {
  margin-bottom: 0;
}
.responsive-navbar .offcanvas-body .navbar-nav li .sub-menu li .sub-menu {
  background-color: var(--whiteColor);
}
.responsive-navbar .offcanvas-body .navbar-nav .current-menu-item a {
  color: var(--primaryColor);
  font-weight: 500;
}
.responsive-navbar .offcanvas-body .navbar-nav .current-menu-ancestor a {
  color: var(--primaryColor);
}
.responsive-navbar .offcanvas-body .navbar-nav .current-menu-ancestor ul li a {
  color: var(--blackColor);
}
.responsive-navbar .offcanvas-body .navbar-nav .current-menu-ancestor ul li.current_page_item a {
  color: var(--primaryColor);
}
.responsive-navbar .offcanvas-body .others-option {
  margin-top: 20px;
}
.responsive-navbar .offcanvas-body .others-option .option-item {
  margin-right: 30px;
}
.responsive-navbar .offcanvas-body .others-option .option-item:nth-child(2) {
  padding-right: 20px;
}
.responsive-navbar .offcanvas-body .others-option .option-item:last-child {
  margin-right: 0;
}

/*
Main Banner Area CSS
===================================================*/
.main-banner-area {
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 80px;
}
.main-banner-area .main-banner-content {
  max-width: 910px;
}
.main-banner-area .main-banner-content h2 {
  color: var(--whiteColor);
  font-size: 96px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -3.84px;
  padding-bottom: 20px;
  margin-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.main-banner-area .main-banner-content h2 .and {
  font-weight: 400;
}
.main-banner-area .main-banner-content h2 .medical {
  color: var(--success);
  letter-spacing: -4.8px;
  border: 5px solid rgb(205, 237, 188);
  padding: 0 38px;
  border-radius: 100px;
}
.main-banner-area .main-banner-content h2 .care {
  font-weight: 400;
}
.main-banner-area .main-banner-content .banner-btn {
  display: flex;
  align-items: center;
}
.main-banner-area .main-banner-content .banner-btn .default-btn {
  margin-right: 35px;
}
.main-banner-area .main-banner-content .banner-btn span {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondaryFont);
  color: rgba(255, 255, 255, 0.53);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.main-banner-area .main-banner-content .banner-btn .click-btn {
  color: var(--warning);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.15px;
}
.main-banner-area .main-banner-content .banner-btn .click-btn i {
  position: relative;
  top: 2px;
}
.main-banner-area .main-banner-content .banner-btn .click-btn:hover {
  color: var(--primaryColor);
}
.main-banner-area .people-question {
  max-width: 175px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.main-banner-area .people-question i {
  color: var(--primaryColor);
  display: inline-block;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 25px;
}
.main-banner-area .people-question p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 20px;
}
.main-banner-area .people-question p span {
  color: var(--warning);
}
.main-banner-area .people-question ul li {
  display: inline-block;
  margin-right: -10px;
}
.main-banner-area .people-question ul li .user-image-1 {
  width: 50px;
  height: 50px;
  border: 1px solid var(--whiteColor);
}
.main-banner-area .people-question ul li:last-child {
  margin-right: 0;
}

/*
Banner Area CSS
===================================================*/
.banner-area {
  padding-top: 550px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.banner-area::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  position: absolute;
  background: radial-gradient(113.1% 51.66% at 57.27% 39.21%, rgba(2, 32, 52, 0.25) 0%, rgba(2, 32, 52, 0.83) 100%);
}
.banner-area::after {
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  bottom: 0;
  content: "";
  z-index: -1;
  position: absolute;
  background-color: var(--whiteColor);
}
.banner-area .banner-content {
  max-width: 910px;
  position: relative;
}
.banner-area .banner-content h1 {
  color: var(--whiteColor);
  font-size: 100px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -5.76px;
}
.banner-area .banner-content h1 .and {
  font-weight: 400;
}
.banner-area .banner-content h1 .medical {
  color: var(--success);
  letter-spacing: -4.8px;
  border: 5px solid rgb(205, 237, 188);
  padding: 0 38px;
  font-weight: 700;
  border-radius: 100px;
}
.banner-area .banner-content h1 .care {
  font-weight: 700;
}
.banner-area .banner-content h1 .health {
  font-weight: 700;
}
.banner-area .banner-content h2 {
  color: var(--whiteColor);
  font-size: 96px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -5.76px;
}
.banner-area .banner-content h2 .and {
  font-weight: 400;
}
.banner-area .banner-content h2 .medical {
  color: var(--success);
  letter-spacing: -4.8px;
  border: 5px solid rgb(205, 237, 188);
  padding: 0 38px;
  font-weight: 700;
  border-radius: 100px;
}
.banner-area .banner-content h2 .care {
  font-weight: 700;
}
.banner-area .banner-content h2 .health {
  font-weight: 700;
}
.banner-area .banner-content .banner-btn {
  left: 250px;
  bottom: 30px;
  position: absolute;
}
.banner-area .banner-content .banner-btn .default-btn {
  margin-right: 0;
}
.banner-area .appointment-form {
  padding: 50px 50px 35px;
  position: relative;
  box-shadow: 12px 9px 37.7px 23px rgba(3, 2, 50, 0.05);
}
.banner-area .appointment-form h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 25px;
}
.banner-area .appointment-form .form-control {
  color: #7983d6;
  height: 52px;
  border: 1px solid #7983d6;
  padding: 10px 20px;
  margin-bottom: 15px;
}
.banner-area .appointment-form .form-control::-moz-placeholder {
  font-size: 15px;
  font-weight: 500;
  color: #7983d6;
}
.banner-area .appointment-form .form-control::placeholder {
  font-size: 15px;
  font-weight: 500;
  color: #7983d6;
}
.banner-area .appointment-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.banner-area .appointment-form .form-control:focus::placeholder {
  color: transparent;
}
.banner-area .appointment-form .form-select {
  color: #7983d6;
}
.banner-area .appointment-form .form-select option {
  color: var(--titleColor);
}
.banner-area .appointment-form .textarea {
  min-height: 120px;
}
.banner-area .appointment-form .default-btn.common:hover::before {
  background-color: var(--success);
}

.banner-items {
  position: relative;
  overflow: hidden;
  margin-top: -145px;
}
.banner-items .banner-btn .swiper-button-next, .banner-items .banner-btn .swiper-button-prev {
  color: var(--primaryColor);
  width: 60px;
  height: 52px;
  border-radius: 0 5px 5px 0;
  transition: var(--transition);
  background-color: var(--whiteColor);
  top: var(--swiper-navigation-top-offset, 38%);
}
.banner-items .banner-btn .swiper-button-next i, .banner-items .banner-btn .swiper-button-prev i {
  font-size: 25px;
  width: 60px;
  height: 52px;
  text-align: center;
  line-height: 52px;
}
.banner-items .banner-btn .swiper-button-next::after, .banner-items .banner-btn .swiper-button-prev::after {
  display: none;
}
.banner-items .banner-btn .swiper-button-next:hover, .banner-items .banner-btn .swiper-button-prev:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.banner-items .banner-btn .swiper-button-next {
  right: 0;
  left: auto;
  border-radius: 5px 0 0 5px;
}
.banner-items .banner-btn .swiper-button-prev {
  left: 0;
  right: auto;
}

/*
Hero Area CSS
===================================================*/
.hero-area {
  padding-top: 40px;
  position: relative;
  overflow: hidden;
}
.hero-area .hero-content {
  position: relative;
  margin-right: -200px;
}
.hero-area .hero-content h2 {
  font-size: 96px;
  font-weight: 700;
  color: var(--paraColor);
  line-height: 1.4;
  letter-spacing: -3.84px;
}
.hero-area .hero-content h2 .and {
  font-weight: 400;
}
.hero-area .hero-content h2 .medical {
  color: var(--whiteColor);
  padding: 0px 35px;
  background-color: var(--primaryColor);
}
.hero-area .hero-content h2 .care {
  font-weight: 400;
}
.hero-area .hero-content .banner-btn {
  display: flex;
  align-items: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(12, 27, 43, 0.23);
  max-width: 600px;
}
.hero-area .hero-content .banner-btn .default-btn {
  margin-right: 35px;
}
.hero-area .hero-content .banner-btn span {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondaryFont);
  color: var(--healthColor);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.hero-area .hero-content .banner-btn p {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.15px;
}
.hero-area .hero-content .banner-btn p i {
  position: relative;
  top: 1px;
}
.hero-area .hero-content .banner-btn .click-btn {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.15px;
}
.hero-area .hero-content .banner-btn .click-btn i {
  position: relative;
  top: 1px;
}
.hero-area .hero-content .come {
  margin-top: 115px;
  max-width: 335px;
  position: relative;
}
.hero-area .hero-content .come ul li {
  display: inline-block;
  margin-right: -10px;
}
.hero-area .hero-content .come ul li .user-image-1 {
  width: 50px;
  height: 50px;
}
.hero-area .hero-content .come ul li:last-child {
  margin-right: 0;
}
.hero-area .hero-content .come p {
  top: 50%;
  right: 0;
  color: var(--healthColor);
  position: absolute;
  transform: translateY(-50%);
  max-width: 170px;
  line-height: 1.5;
}
.hero-area .hero-content .come p b {
  color: var(--primaryColor);
}
.hero-area .hero-content .hero-shape-1 {
  right: 75px;
  bottom: -60px;
  position: absolute;
}
.hero-area .hero-image {
  max-width: 790px;
  margin-left: auto;
}

/*
Generative Area CSS
===================================================*/
.generative-area .generative-image {
  position: relative;
  z-index: 1;
}
.generative-area .generative-image .emergency {
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
.generative-area .generative-image .emergency::before {
  top: -25px;
  left: -25px;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  border-radius: 20px 0 0 0;
  background-color: #0c1b2b;
  z-index: -1;
}
.generative-area .generative-image .call {
  padding: 18px 30px;
}
.generative-area .generative-image .call span {
  color: var(--secondaryColor);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.generative-area .generative-image .call h5 {
  font-size: 24px;
  font-weight: 400;
  color: var(--secondaryColor);
  line-height: 1;
}
.generative-area .generative-image .call .phone {
  font-size: 24px;
  font-weight: 400;
  color: var(--secondaryColor);
  line-height: 1;
  margin-left: 45px;
  padding-left: 40px;
  position: relative;
}
.generative-area .generative-image .call .phone::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 1px;
  height: 52px;
  transform: rotate(25deg);
  background-color: #D0A447;
}
.generative-area .generative-image .call .phone:hover {
  color: var(--primaryColor);
}

.click-btn-area span {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondaryFont);
  color: var(--healthColor);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.click-btn-area .click-btn {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.15px;
}
.click-btn-area .click-btn i {
  position: relative;
  top: 1px;
}

/*
Advice Area CSS
===================================================*/
.advice-area {
  position: relative;
  overflow: hidden;
}
.advice-area .advice-content {
  display: flex;
  line-height: 30px;
  white-space: nowrap;
  animation: marquee 25s linear infinite forwards;
}
.advice-area .advice-content:hover {
  animation-play-state: paused;
}
.advice-area .advice-content ul {
  padding: 0;
  margin: 0;
}
.advice-area .advice-content ul li {
  position: relative;
  display: inline-block;
  margin-right: 200px;
}
.advice-area .advice-content ul li a {
  font-size: 96px;
  font-weight: 700;
  font-family: var(--headingFont);
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
  -webkit-text-fill-color: var(--paraColor);
}
.advice-area .advice-content ul li a:hover {
  -webkit-text-stroke: 1px var(--primaryColor);
  -webkit-text-fill-color: var(--primaryColor);
}
.advice-area .advice-content ul li img {
  position: absolute;
  top: 12px;
  right: -145px;
}
.advice-area .advice-content ul li:last-child {
  margin-right: 0;
}
.advice-area .portfolio-shape {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  position: absolute;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.6%);
  }
}
/*
Home Two Advice Area CSS
===================================================*/
.advice-area.advice-two .advice-content ul li a {
  -webkit-text-stroke: 1px var(--paraColor);
  -webkit-text-fill-color: var(--frameColor);
}
.advice-area.advice-two .advice-content ul li a:hover {
  -webkit-text-stroke: 1px var(--primaryColor);
  -webkit-text-fill-color: var(--primaryColor);
}

.advice-two .advice-area .advice-content ul li a {
  -webkit-text-stroke: 1px var(--paraColor);
  -webkit-text-fill-color: var(--frameColor);
}
.advice-two .advice-area .advice-content ul li a:hover {
  -webkit-text-stroke: 1px var(--primaryColor);
  -webkit-text-fill-color: var(--primaryColor);
}

/*
Home Three Advice Area CSS
===================================================*/
.advice-area.advice-three .advice-content ul li a {
  -webkit-text-stroke: 1px #2a2a2a;
  -webkit-text-fill-color: #2a2a2a;
}
.advice-area.advice-three .advice-content ul li a:hover {
  -webkit-text-stroke: 1px var(--success);
  -webkit-text-fill-color: var(--success);
}

.advice-area.doctor-advice .advice-content ul li a {
  -webkit-text-stroke: 1px var(--healthColor);
  -webkit-text-fill-color: var(--whiteColor);
}
.advice-area.doctor-advice .advice-content ul li a:hover {
  -webkit-text-stroke: 1px var(--primaryColor);
  -webkit-text-fill-color: var(--primaryColor);
}

/*
Home Two Calendar Area CSS
===================================================*/
.calender-area .tab-content {
  position: relative;
  margin-left: -60px;
}

.table-sidebar h3 {
  color: var(--paraColor);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.72px;
}
.table-sidebar .nav-tabs {
  border: none;
  display: block !important;
  box-shadow: unset !important;
}
.table-sidebar .nav-tabs .nav-item {
  margin-bottom: 15px;
}
.table-sidebar .nav-tabs .nav-item .nav-link {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--primaryFont);
  color: var(--primaryColor);
  line-height: 1;
  border-radius: 5px;
  transition: var(--transition);
  border: 1px solid var(--primaryColor);
}
.table-sidebar .nav-tabs .nav-item .nav-link:hover, .table-sidebar .nav-tabs .nav-item .nav-link.active {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.doctor-calendar-table {
  background-color: transparent;
  border-radius: 30px;
  box-shadow: 6px 12px 37.7px 23px rgba(3, 2, 50, 0.03);
  border: none;
}
.doctor-calendar-table table {
  margin-bottom: 0;
  background-color: transparent;
}
.doctor-calendar-table table thead tr th {
  vertical-align: middle;
  text-align: center;
  color: var(--paraColor);
  border: none;
  font-size: 16px;
  font-weight: 600;
  padding-top: 17px;
  white-space: nowrap;
  padding-bottom: 15px;
  background-color: #d8eefd;
}
.doctor-calendar-table table thead tr th:first-child {
  border-radius: 20px 0 0 0;
}
.doctor-calendar-table table thead tr th:last-child {
  border-radius: 0 20px 0 0;
}
.doctor-calendar-table table tbody {
  border-radius: 0 0 20px 20px;
}
.doctor-calendar-table table tbody tr td {
  vertical-align: middle;
  padding: 20px 30px;
  text-align: center;
  border-top: none;
  white-space: nowrap;
  transition: var(--transition);
  border: 1px solid rgba(12, 27, 43, 0.05);
}
.doctor-calendar-table table tbody tr td.bg-color {
  background-color: #f3faff;
}
.doctor-calendar-table table tbody tr td:first-child {
  border-left: none;
}
.doctor-calendar-table table tbody tr td:last-child {
  border-right: none;
}
.doctor-calendar-table table tbody tr td h3 {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--primaryFont);
  margin-top: 5px;
  margin-bottom: 5px;
  color: #2b3e3e;
  transition: var(--transition);
  line-height: 1;
  letter-spacing: -0.36px;
}
.doctor-calendar-table table tbody tr td .name {
  color: var(--healthColor);
  font-size: 14px;
}
.doctor-calendar-table table tbody tr td .time {
  font-size: var(--fontSize);
  font-weight: 400;
  font-family: var(--primaryFont);
  color: var(--healthColor);
  display: inline-block;
  transition: var(--transition);
}
.doctor-calendar-table table tbody tr td:last-child td {
  border-bottom: none;
}
.doctor-calendar-table table tbody tr td:hover {
  background-color: var(--success);
  border-color: var(--success);
}
.doctor-calendar-table table:not(caption) {
  background-color: transparent;
}

/*
About Us Area CSS
===================================================*/
.about-us-area .about-left {
  position: relative;
}
.about-us-area .about-left h2 {
  max-width: 805px;
  font-size: 54px;
  line-height: 1.26;
  margin-bottom: 45px;
}
.about-us-area .about-right {
  max-width: 535px;
  margin-left: auto;
}
.about-us-area .about-right .about-treatment {
  margin-top: 50px;
}
.about-us-area .about-right .about-treatment h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 20px;
}
.about-us-area .about-right .about-treatment p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.about-us-area .about-right .check-mark li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.86);
}
.about-us-area .about-right .check-mark li i {
  top: 1px;
  left: 0;
  color: var(--primaryColor);
  position: absolute;
  font-size: 22px;
  line-height: 1;
}
.about-us-area .about-right .check-mark li:last-child {
  margin-bottom: 0;
}

/*
Services Area CSS
===================================================*/
.services-area {
  position: relative;
  overflow: hidden;
}
.services-area .services-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.services-area .view-btn {
  margin-top: 50px;
  text-align: center;
}

.services-card {
  padding: 35px 34px;
  position: relative;
  transition: var(--transition);
  background-color: var(--success);
  height: 100%;
}
.services-card .fracture {
  display: block;
  font-size: 30px;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 80px;
  border-radius: 100%;
  color: var(--secondaryColor);
  background-color: var(--whiteColor);
  margin-bottom: 125px;
  transition: var(--transition);
}
.services-card.text-center .fracture {
  margin-left: auto;
  margin-right: auto;
}
.services-card.text-end .fracture {
  margin-left: auto;
}
.services-card .ser-tag {
  font-size: 14px;
  font-weight: 500;
  display: -webkit-inline-box;
  padding: 8px 15px 10px;
  line-height: 1;
  margin-bottom: 20px;
  background-color: var(--whiteColor);
}
.services-card h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}
.services-card h3 a {
  color: var(--secondaryColor);
}
.services-card p {
  color: rgba(23, 62, 2, 0.86);
  margin-bottom: 0;
  opacity: 0;
  transition: 0.7s;
}
.services-card .more-btn {
  margin-top: 126px;
}
.services-card.bg-two {
  background-color: var(--warning);
}
.services-card.bg-two .fracture {
  color: var(--secondaryColor);
  background-color: var(--whiteColor);
}
.services-card.bg-two h3 a {
  color: #3d2b05;
}
.services-card.bg-two .more-btn {
  margin-top: 180px;
  color: #3d2b05;
}
.services-card.bg-three {
  background-color: #a4dbfa;
}
.services-card.bg-three h3 a {
  color: #163A55;
}
.services-card.bg-three .more-btn {
  color: #3d2b05;
}
.services-card.bg-four {
  background-color: #02d7fd;
}
.services-card.bg-four h3 a {
  color: #1f2878;
}
.services-card.bg-four .more-btn {
  color: #3d2b05;
}
.services-card:hover .fracture {
  animation: rotate-vertical 1.1s ease-out;
  background-color: var(--secondaryColor);
  color: var(--success);
}
.services-card:hover p {
  opacity: 1;
}

/*
Home Two Services Area CSS
===================================================*/
.services-area.services-two .services-card .services-1 {
  display: block;
  margin-bottom: 90px;
}
.services-area.services-two .services-card p {
  margin-bottom: 90px;
  opacity: 1;
}
.services-area.services-two .services-card .brain-plus {
  top: 0;
  right: 0;
  position: absolute;
}

/*
Home Three Services Area CSS
===================================================*/
.service-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.service-area .service-pagination {
  display: inline-block;
  position: relative;
  margin-top: 65px;
  text-align: center;
}
.service-area .service-pagination .swiper-pagination-bullet {
  width: 19px;
  height: 19px;
  border: 1px solid var(--success);
  background-color: transparent;
  transition: var(--transition);
  position: relative;
  opacity: 1;
}
.service-area .service-pagination .swiper-pagination-bullet::before {
  top: 1px;
  left: 1px;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  transition: var(--transition);
  border-radius: 100%;
  background-color: var(--success);
  visibility: hidden;
  opacity: 0;
  height: 15px;
  width: 15px;
}
.service-area .service-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before, .service-area .service-pagination .swiper-pagination-bullet:hover::before {
  opacity: 1;
  visibility: visible;
}

.single-service .single-image {
  position: relative;
}
.single-service .single-image .icon-image {
  width: 110px;
  height: 110px;
  text-align: center;
  line-height: 108px;
  border-radius: 100%;
  background-color: var(--whiteColor);
  position: absolute;
  left: 20px;
  top: 20px;
}
.single-service .single-image .icon-image .services-1 {
  max-width: 55px;
}
.single-service .single-service-body {
  padding: 30px 25px;
}
.single-service .single-service-body .new {
  margin-bottom: 20px;
}
.single-service .single-service-body .ser-tag {
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-inline-box;
  padding: 8px 15px 10px;
  line-height: 1;
  margin-bottom: 20px;
  background-color: var(--whiteColor);
}
.single-service .single-service-body h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 30px;
}
.single-service .single-service-body h3 a {
  color: #1F2878;
}
.single-service .single-service-body h3 a:hover {
  color: var(--redColor);
}

/*
Customer Care Area CSS
===================================================*/
.customer-care-area .customer-info {
  max-width: 830px;
  text-align: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.customer-care-area .customer-info h4 {
  color: var(--redColor);
  font-size: 54px;
  line-height: 1;
  margin-bottom: 40px;
}
.customer-care-area .customer-info h3 {
  font-size: 96px;
  font-weight: 700;
  color: var(--success);
  line-height: 1;
  border: 3px solid var(--success);
  padding: 8px 38px;
  border-radius: 100px;
  margin-bottom: 40px;
}
.customer-care-area .customer-info .phone {
  margin-bottom: 50px;
}
.customer-care-area .customer-info .phone li {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-right: 95px;
  padding-left: 45px;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--headingFont);
}
.customer-care-area .customer-info .phone li::before {
  top: 3px;
  right: -52px;
  width: 1px;
  height: 30px;
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
}
.customer-care-area .customer-info .phone li i {
  top: 4px;
  left: 0;
  color: var(--primaryColor);
  position: absolute;
  line-height: 1;
  font-size: 30px;
  font-weight: 400;
}
.customer-care-area .customer-info .phone li a {
  color: var(--whiteColor);
}
.customer-care-area .customer-info .phone li a:hover {
  color: var(--redColor);
}
.customer-care-area .customer-info .phone li:last-child {
  margin-right: 0;
}
.customer-care-area .customer-info .phone li:last-child::before {
  display: none;
}
.customer-care-area .customer-info .phone-image {
  top: 30px;
  right: -125px;
  position: absolute;
}
.customer-care-area .shape-image {
  position: relative;
}
.customer-care-area .shape-image .user-image-4 {
  right: 130px;
  bottom: 35px;
  width: 66px;
  height: 66px;
  position: absolute;
}
.customer-care-area .shape-image .user-image-5 {
  top: 130px;
  right: 0;
  width: 74px;
  height: 74px;
  position: absolute;
}
.customer-care-area .shape-image .user-image-6 {
  left: 0;
  width: 95px;
  height: 95px;
  bottom: 35px;
  position: absolute;
}
.customer-care-area .shape-image .user-image-7 {
  top: 95px;
  left: 105px;
  width: 74px;
  height: 74px;
  position: absolute;
}

/*
Home Three Customer Care Area CSS
===================================================*/
.customer-care-area.emergency .customer-info .phone li a:hover {
  color: var(--whiteColor);
}
.customer-care-area.emergency .shape-image .phone-1 {
  top: -40px;
  left: 155px;
  position: absolute;
}
.customer-care-area.emergency .shape-image .user-image-4 {
  width: 75px;
  height: 75px;
  bottom: -25px;
}
.customer-care-area.emergency .shape-image .user-image-6 {
  width: 65px;
  height: 65px;
  bottom: -25px;
}

/*
Appointment Area CSS
===================================================*/
.appointment-area {
  position: relative;
  overflow: hidden;
}
.appointment-area .appointment-info {
  max-width: 665px;
  padding-top: 100px;
}
.appointment-area .appointment-info h3 {
  font-size: 54px;
  line-height: 1.26;
  margin-bottom: 30px;
}
.appointment-area .appointment-info p {
  color: rgba(255, 255, 255, 0.86);
}
.appointment-area .appointment-form {
  position: relative;
  margin-top: -195px;
}
.appointment-area .appointment-form .default-btn.common:hover {
  color: var(--whiteColor);
}
.appointment-area .appointment-form .default-btn.common:hover i {
  color: var(--whiteColor);
}
.appointment-area .appointment-form .default-btn.common:hover::before {
  background-color: var(--redColor);
}

.appointment-form {
  padding: 50px 50px 35px;
}
.appointment-form h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 25px;
}
.appointment-form .form-control {
  color: #7983d6;
  height: 52px;
  border: 1px solid #d0d5f8;
  padding: 10px 20px;
  margin-bottom: 15px;
  background-color: transparent;
}
.appointment-form .form-control::-moz-placeholder {
  font-size: 15px;
  font-weight: 500;
  color: #7983d6;
}
.appointment-form .form-control::placeholder {
  font-size: 15px;
  font-weight: 500;
  color: #7983d6;
}
.appointment-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.appointment-form .form-control:focus::placeholder {
  color: transparent;
}
.appointment-form .form-select {
  color: #7983d6;
}
.appointment-form .form-select option {
  color: var(--titleColor);
}
.appointment-form .textarea {
  min-height: 120px;
}

/*
Portfolio Area CSS
===================================================*/
.portfolio-area {
  position: relative;
  overflow: hidden;
}
.portfolio-area .portfolio-items {
  margin: 0 -150px;
}
.portfolio-area .portfolio-items .swiper-wrapper {
  align-items: center;
}
.portfolio-area .view {
  text-align: center;
  margin-top: 50px;
}
.portfolio-area .portfolio-shape-1 {
  top: 130px;
  right: 255px;
  position: absolute;
}
.portfolio-area .portfolio-shape-2 {
  top: 55px;
  left: 230px;
  position: absolute;
}
.portfolio-area .portfolio-shape-3 {
  right: 395px;
  bottom: 0;
  position: absolute;
}

.portfolio-card {
  position: relative;
}
.portfolio-card::before {
  left: 0;
  right: 0;
  width: 100%;
  height: 0%;
  bottom: 0;
  content: "";
  opacity: 0;
  position: absolute;
  visibility: hidden;
  border-radius: 0px 0px 30px 30px;
  background: linear-gradient(180deg, rgba(6, 31, 72, 0) 0%, #061F48 100%);
  transition: var(--transition);
}
.portfolio-card .portfolio-card-body {
  left: 35px;
  right: 35px;
  bottom: 35px;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  transition: var(--transition);
}
.portfolio-card .portfolio-card-body .new {
  margin-bottom: 20px;
}
.portfolio-card .portfolio-card-body h3 {
  font-size: 24px;
  line-height: 1;
}
.portfolio-card .portfolio-card-body .arrow {
  color: rgb(12, 27, 43);
  display: inline-block;
  width: 45px;
  height: 45px;
  font-size: 20px;
  text-align: center;
  line-height: 46px;
  border-radius: 100%;
  background-color: var(--whiteColor);
}
.portfolio-card:hover::before {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.portfolio-card:hover .portfolio-card-body {
  opacity: 1;
  visibility: visible;
}

/*
Why Choose Us Area CSS
===================================================*/
.why-choose-us-area {
  position: relative;
  overflow: hidden;
}
.why-choose-us-area .choose-image {
  position: relative;
}
.why-choose-us-area .choose-image .logo {
  top: 50%;
  right: -75px;
  width: 130px;
  height: 130px;
  position: absolute;
  transform: translateY(-50%);
  text-align: center;
  line-height: 130px;
}
.why-choose-us-area .choose-image .logo .choose-logo {
  max-width: 55px;
}

.choose-info {
  padding: 50px 65px 60px;
  background-color: rgba(255, 255, 255, 0.07);
}
.choose-info h3 {
  font-size: 54px;
  line-height: 1.26;
  margin-bottom: 25px;
}
.choose-info .content {
  padding-left: 80px;
}
.choose-info .content .click {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.choose-info .content .check-mark li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.86);
}
.choose-info .content .check-mark li i {
  top: 1px;
  left: 0;
  color: var(--primaryColor);
  position: absolute;
  font-size: 22px;
  line-height: 1;
}
.choose-info .content .check-mark li svg {
  top: 1px;
  left: 0;
  filter: invert(53%) sepia(43%) saturate(1102%) hue-rotate(190deg) brightness(101%) contrast(101%);
  position: absolute;
  width: 22px;
  line-height: 1;
}
.choose-info .content .check-mark li:last-child {
  margin-bottom: 0;
}
.choose-info .content .banner-btn {
  display: flex;
  align-items: center;
  margin-top: 55px;
}
.choose-info .content .banner-btn .default-btn {
  margin-right: 35px;
}
.choose-info .content .banner-btn span {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondaryFont);
  color: rgba(255, 255, 255, 0.53);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.choose-info .content .banner-btn p {
  color: var(--warning);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.15px;
}
.choose-info .content .banner-btn p i {
  position: relative;
  top: 2px;
}
.choose-info .content .banner-btn .click-btn {
  color: var(--warning);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.15px;
}
.choose-info .content .banner-btn .click-btn i {
  position: relative;
  top: 2px;
}
.choose-info .content .banner-btn .click-btn .right-svg {
  display: inline-block;
}
.choose-info .content .banner-btn .click-btn .right-svg svg {
  width: 15px;
  filter: invert(94%) sepia(12%) saturate(1633%) hue-rotate(321deg) brightness(103%) contrast(104%);
  display: inline-block;
}
.choose-info .content .banner-btn .click-btn .left-svg {
  display: inline-block;
}
.choose-info .content .banner-btn .click-btn .left-svg svg {
  width: 15px;
  filter: invert(94%) sepia(12%) saturate(1633%) hue-rotate(321deg) brightness(103%) contrast(104%);
  display: inline-block;
}

/*
Home Two Why Choose Us Area CSS
===================================================*/
.why-choose-us-area.tow-style .choose-info {
  background-color: var(--whiteColor);
}
.why-choose-us-area.tow-style .choose-info h3 {
  color: var(--paraColor);
}
.why-choose-us-area.tow-style .choose-info .content .click {
  color: var(--healthColor);
  border-bottom: 1px solid rgba(12, 27, 43, 0.23);
}
.why-choose-us-area.tow-style .choose-info .content .check-mark li {
  color: var(--healthColor);
}
.why-choose-us-area.tow-style .choose-info .content .banner-btn span {
  color: var(--healthColor);
}
.why-choose-us-area.tow-style .choose-info .content .banner-btn p {
  color: var(--secondaryColor);
}

/*
Reviews Area CSS
===================================================*/
.reviews-area {
  padding-top: 315px;
  padding-bottom: 90px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.reviews-area .reviews-item {
  max-width: 700px;
  position: relative;
}
.reviews-area .reviews-btn {
  position: absolute;
  right: -155px;
  bottom: 75px;
}
.reviews-area .reviews-btn .swiper-button-next, .reviews-area .reviews-btn .swiper-button-prev {
  width: 55px;
  height: 55px;
}
.reviews-area .reviews-btn .swiper-button-next i, .reviews-area .reviews-btn .swiper-button-prev i {
  display: inline-block;
  color: rgb(23, 62, 2);
  font-size: 25px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 100%;
  background-color: var(--whiteColor);
  transition: var(--transition);
}
.reviews-area .reviews-btn .swiper-button-next::after, .reviews-area .reviews-btn .swiper-button-prev::after {
  display: none;
}
.reviews-area .reviews-btn .swiper-button-next:hover i, .reviews-area .reviews-btn .swiper-button-prev:hover i {
  background-color: var(--success);
}
.reviews-area .reviews-btn .swiper-button-next {
  left: auto;
  right: 0;
}
.reviews-area .reviews-btn .swiper-button-prev {
  left: auto;
  right: 65px;
}

.reviews-card {
  padding: 45px 45px;
}
.reviews-card .quote {
  margin-bottom: 40px;
}
.reviews-card .quote .left {
  color: rgb(23, 62, 2);
  width: 82px;
  height: 82px;
  font-size: 32px;
  text-align: center;
  line-height: 94px;
  border-radius: 100%;
  background-color: var(--success);
}
.reviews-card .quote h4 {
  font-size: 30px;
}
.reviews-card p {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--headingFont);
  line-height: 1.26;
  margin-bottom: 50px;
}
.reviews-card h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 15px;
}
.reviews-card span {
  color: rgba(255, 255, 255, 0.86);
}

.position-item {
  position: relative;
}
.position-item .review-patient {
  right: 12px;
  bottom: 0;
  position: absolute;
}

.review-info {
  padding: 45px 35px;
  text-align: center;
}
.review-info h3 {
  color: var(--secondaryColor);
  font-size: 54px;
  line-height: 1;
  margin-bottom: 15px;
}
.review-info p {
  color: rgba(23, 62, 2, 0.85);
  line-height: 1;
}

/*
Home Two Testimonials Area CSS
===================================================*/
.testimonials-area .testimonials-items {
  max-width: 875px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 90px 55px 55px 55px;
  position: relative;
}
.testimonials-area .testimonials-items .left-quote {
  top: -40px;
  left: 0;
  right: 0;
  color: var(--whiteColor);
  width: 80px;
  height: 80px;
  position: absolute;
  font-size: 32px;
  text-align: center;
  line-height: 92px;
  background-color: var(--primaryColor);
  margin-left: auto;
  margin-right: auto;
}
.testimonials-area .testimonials-items .testimonials-btn .swiper-button-next, .testimonials-area .testimonials-items .testimonials-btn .swiper-button-prev {
  color: var(--secondaryColor);
  width: 54px;
  height: 54px;
  font-size: 25px;
  text-align: center;
  line-height: 54px;
  border-radius: 100%;
  background-color: var(--whiteColor);
  transition: var(--transition);
}
.testimonials-area .testimonials-items .testimonials-btn .swiper-button-next::after, .testimonials-area .testimonials-items .testimonials-btn .swiper-button-prev::after {
  display: none;
}
.testimonials-area .testimonials-items .testimonials-btn .swiper-button-next:hover, .testimonials-area .testimonials-items .testimonials-btn .swiper-button-prev:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.testimonials-area .testimonials-items .testimonials-btn .swiper-button-next {
  left: auto;
  right: -85px;
}
.testimonials-area .testimonials-items .testimonials-btn .swiper-button-prev {
  left: -85px;
  right: auto;
}

.testimonials-card p {
  font-size: 24px;
  font-family: var(--headingFont);
  color: var(--paraColor);
  line-height: 39px;
  margin-bottom: 30px;
}
.testimonials-card h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--paraColor);
  line-height: 1;
  margin-bottom: 10px;
}
.testimonials-card span {
  color: var(--healthColor);
}

.ts-bg {
  background-image: url(../images/bg-image-9.jpg);
}

/*
Doctor Area CSS
===================================================*/
.doctor-area .top-bar {
  margin-bottom: 50px;
}
.doctor-area .top-bar .section-heading {
  margin-bottom: 0;
}
.doctor-area .top-bar .paragraph {
  max-width: 522px;
  margin-left: auto;
}
.doctor-area .top-bar .paragraph p {
  color: rgba(255, 255, 255, 0.86);
}

.team-max .section-title {
  max-width: 740px;
}

.doctor-card {
  position: relative;
  transition: var(--transition);
}
.doctor-card .doctor-card-body {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 30px;
  position: absolute;
  transition: var(--transition);
}
.doctor-card .doctor-card-body .new {
  color: var(--secondaryColor);
  margin-bottom: 20px;
}
.doctor-card .doctor-card-body h3 {
  color: var(--secondaryColor);
  font-size: 24px;
  line-height: 1;
}
.doctor-card .doctor-card-style {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 30px;
  position: absolute;
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
}
.doctor-card .doctor-card-style .new {
  color: var(--secondaryColor);
  margin-bottom: 20px;
}
.doctor-card .doctor-card-style h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 15px;
}
.doctor-card .doctor-card-style h3 a {
  color: var(--whiteColor);
}
.doctor-card .doctor-card-style h3 a:hover {
  color: var(--redColor);
}
.doctor-card .doctor-card-style p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 30px;
}
.doctor-card .doctor-card-style .more-btn {
  color: var(--whiteColor);
}
.doctor-card .doctor-card-style .more-btn i {
  color: var(--whiteColor);
}
.doctor-card .doctor-card-style .more-btn:hover {
  color: var(--redColor);
}
.doctor-card .doctor-card-style .more-btn:hover i {
  color: var(--redColor);
}
.doctor-card.two .doctor-card-body .new {
  color: var(--primaryColor);
}
.doctor-card.two .doctor-card-style .new {
  color: var(--primaryColor);
}
.doctor-card.three .doctor-card-body .new {
  color: #1f2878;
}
.doctor-card.three .doctor-card-body h3 {
  color: #1f2878;
}
.doctor-card.three .doctor-card-style .new {
  color: #1f2878;
}
.doctor-card.four .doctor-card-body .new {
  color: #163a55;
}
.doctor-card.four .doctor-card-body h3 {
  color: #163a55;
}
.doctor-card.four .doctor-card-style .new {
  color: #163a55;
}
.doctor-card.five .doctor-card-body .new {
  color: #3d2b05;
}
.doctor-card.five .doctor-card-body h3 {
  color: #3d2b05;
}
.doctor-card.five .doctor-card-style .new {
  color: #3d2b05;
}
.doctor-card:hover .doctor-card-body {
  opacity: 0;
  visibility: hidden;
}
.doctor-card:hover .doctor-card-style {
  opacity: 1;
  visibility: visible;
}

.doctor-menu {
  margin-right: 45px;
}
.doctor-menu .nav {
  display: block !important;
}
.doctor-menu .nav-tabs {
  border: none;
}
.doctor-menu .nav-tabs .nav-link {
  font-size: var(--fontSize);
  font-weight: 700;
  font-family: var(--primaryFont);
  color: rgba(255, 255, 255, 0.86);
  width: 100%;
  border: none;
  padding: 0;
  position: relative;
  text-align: start;
  box-shadow: unset !important;
  line-height: 1;
  border-radius: 0;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background-color: transparent;
}
.doctor-menu .nav-tabs .nav-link i {
  top: 0;
  right: 0;
  position: absolute;
}
.doctor-menu .nav-tabs .nav-link.active {
  color: var(--primaryColor);
}

/*
Home Two Doctors Area CSS
===================================================*/
.doctors-area {
  position: relative;
  overflow: hidden;
}
.doctors-area .section-title {
  max-width: 740px;
}
.doctors-area .section-title h2 {
  color: var(--paraColor);
}
.doctors-area .doctors-items {
  margin: 0 -210px;
}
.doctors-area .view {
  text-align: center;
  margin-top: 60px;
}

/*
News Area CSS
===================================================*/
.news-content {
  position: relative;
  max-width: 750px;
  margin-left: auto;
}

.news-card {
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.news-card ul li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  font-size: 14px;
  color: var(--whiteColor);
}
.news-card ul li .new {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.news-card ul li:last-child {
  margin-right: 0;
}
.news-card h3 {
  max-width: 520px;
  font-size: 24px;
  margin-top: 15px;
  line-height: 1.5;
}
.news-card h3 a {
  color: var(--whiteColor);
}
.news-card h3 a:hover {
  color: var(--success);
}
.news-card i {
  color: var(--whiteColor);
  font-size: 40px;
  line-height: 1;
}
.news-card svg {
  width: 40px;
  filter: invert(100%) sepia(1%) saturate(0%) hue-rotate(133deg) brightness(102%) contrast(100%);
}
.news-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0 !important;
}

/*
Home Two News Area CSS
===================================================*/
.news-area.news-two .news-content .section-heading h2 {
  color: var(--paraColor);
}
.news-area.news-two .news-content .news-card {
  border-bottom: 1px solid rgba(12, 27, 43, 0.05);
}
.news-area.news-two .news-content .news-card ul li {
  color: var(--healthColor);
}
.news-area.news-two .news-content .news-card h3 a {
  color: var(--paraColor);
}
.news-area.news-two .news-content .news-card h3 a:hover {
  color: var(--primaryColor);
}
.news-area.news-two .news-content .news-card i {
  color: var(--paraColor);
  transition: var(--transition);
}
.news-area.news-two .news-content .news-card i:hover {
  color: var(--primaryColor);
}

/*
Home Three Blog Area CSS
===================================================*/
.blog-area .section-title {
  max-width: 745px;
}
.blog-area .section-title h2 {
  color: var(--paraColor);
}

.blog-card {
  transition: var(--transition);
  margin-bottom: 30px;
}
.blog-card .blog-card-body {
  padding-top: 30px;
}
.blog-card .blog-card-body ul li {
  display: inline-block;
  margin-right: 15px;
  color: var(--healthColor);
  font-size: 14px;
  font-weight: 500;
}
.blog-card .blog-card-body ul li .new {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.blog-card .blog-card-body ul li:last-child {
  margin-right: 0;
}
.blog-card .blog-card-body h3 {
  font-size: 24px;
  line-height: 1.5;
  margin-top: 20px;
}
.blog-card .blog-card-body h3 a {
  color: var(--paraColor);
}
.blog-card .blog-card-body h3 a:hover {
  color: var(--primaryColor);
}
.blog-card:hover {
  transform: translateY(-5px);
}

.customer-care-area.emergency .customer-info .phone {
  margin-bottom: 0;
}
.customer-care-area.emergency .customer-info .phone li i {
  color: var(--whiteColor);
}

/*
Page Banner Area CSS
===================================================*/
.page-banner-area {
  padding-top: 365px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-banner-area.blog-bg-images {
  background-image: url(../images/bg-image-15.jpg);
}
.page-banner-area .page-banner-content {
  padding: 55px 50px;
  max-width: 645px;
}
.page-banner-area .page-banner-content .banner-title-tags {
  color: var(--paraColor);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 30px;
  letter-spacing: -1.76px;
}
.page-banner-area .page-banner-content p {
  color: var(--healthColor);
}
.page-banner-area .page-banner-content .br-menu {
  line-height: 1;
  margin-bottom: 20px;
}
.page-banner-area .page-banner-content .br-menu li {
  display: inline-block;
  margin-right: 12px;
  padding-right: 16px;
  color: var(--healthColor);
  position: relative;
}
.page-banner-area .page-banner-content .br-menu li:after {
  position: absolute;
  top: 1.5px;
  right: -4px;
  content: "/";
  font-size: 15px;
  color: var(--healthColor);
}
.page-banner-area .page-banner-content .br-menu li a {
  color: var(--secondaryColor);
}
.page-banner-area .page-banner-content .br-menu li a:hover {
  color: var(--primaryColor);
}
.page-banner-area .page-banner-content .br-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
  color: var(--healthColor);
}
.page-banner-area .page-banner-content .br-menu li:last-child:after {
  display: none;
}

/*
Page Banner Area CSS
===================================================*/
.page-banner {
  padding-top: 20px;
}
.page-banner .page-banner-content {
  max-width: 800px;
}
.page-banner .page-banner-content .new {
  color: var(--secondaryColor);
  margin-bottom: 20px;
  background-color: var(--success);
}
.page-banner .page-banner-content .banner-title-tags {
  color: var(--paraColor);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1.76px;
}
.page-banner .page-banner-content p {
  color: var(--healthColor);
}
.page-banner .page-banner-content .mail {
  padding-top: 35px;
  padding-bottom: 35px;
  margin-top: 35px;
  margin-bottom: 35px;
  border-top: 1px solid rgb(217, 217, 217);
  border-bottom: 1px solid rgb(217, 217, 217);
}
.page-banner .page-banner-content .mail li {
  display: inline-block;
  position: relative;
  font-size: 24px;
  font-weight: 600;
  margin-right: 65px;
  padding-left: 45px;
}
.page-banner .page-banner-content .mail li::before {
  top: 3px;
  right: -35px;
  width: 1px;
  height: 30px;
  content: "";
  position: absolute;
  background-color: rgb(217, 217, 217);
}
.page-banner .page-banner-content .mail li i {
  top: 0;
  left: 0;
  color: var(--primaryColor);
  position: absolute;
  font-size: 35px;
  line-height: 1;
}
.page-banner .page-banner-content .mail li a {
  color: var(--paraColor);
}
.page-banner .page-banner-content .mail li a:hover {
  color: var(--primaryColor);
}
.page-banner .page-banner-content .mail li:last-child {
  margin-right: 0;
}
.page-banner .page-banner-content .mail li:last-child::before {
  display: none;
}
.page-banner .page-banner-content .social li {
  display: inline-block;
  margin-right: 10px;
}
.page-banner .page-banner-content .social li a {
  display: inline-block;
  color: var(--paraColor);
  width: 40px;
  height: 40px;
  font-size: 18px;
  text-align: center;
  line-height: 38px;
  border-radius: 100%;
  border: 1px solid #d9d9d9;
}
.page-banner .page-banner-content .social li a:hover {
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
}
.page-banner .page-banner-content .social li:last-child {
  margin-right: 0;
}

/*
Partner Area CSS
===================================================*/
.partner-area {
  position: relative;
  overflow: hidden;
}
.partner-area .col {
  flex: 20%;
}
.partner-area .first-part {
  margin-bottom: 85px;
}

.partner-card {
  width: 285px;
  height: 285px;
  text-align: center;
  border-radius: 100%;
  border: 5px solid var(--whiteColor);
  padding: 55px 30px 0;
}
.partner-card .border-arrow {
  margin-bottom: 25px;
}
.partner-card h3 {
  font-size: 24px;
}

/*
Home Two Partner Area CSS
===================================================*/
.partner-area.two {
  position: relative;
  overflow: hidden;
}
.partner-area.two .partner-card {
  width: 215px;
  height: auto;
  text-align: center;
  border-radius: unset !important;
  border: none;
  padding: 0;
  position: relative;
}
.partner-area.two .partner-card::before {
  top: 50%;
  right: -85px;
  width: 1px;
  height: 95px;
  content: "";
  position: absolute;
  background-color: rgba(12, 27, 43, 0.23);
  transform: translateY(-50%);
}
.partner-area.two .partner-card h3 {
  color: var(--paraColor);
}
.partner-area.two .partner-item {
  position: relative;
  margin-left: -50px;
}

/*
Home Three Partner Area CSS
===================================================*/
.partner-area.partner-three {
  overflow: hidden;
}
.partner-area.partner-three .partner-card {
  border: 5px solid rgb(12, 27, 43);
}
.partner-area.partner-three .partner-card h3 {
  color: var(--paraColor);
}

/*
Footer Area CSS
===================================================*/
.footer-area .col-lg-3:nth-child(2) .footer-weight {
  position: relative;
  margin-left: 55px;
}
.footer-area .col-lg-3:nth-child(5) .footer-weight {
  position: relative;
  margin-left: 55px;
}
.footer-area .col-lg-2:nth-child(3) .footer-weight {
  position: relative;
  margin-left: 20px;
}
.footer-area .col-lg-2:nth-child(4) .footer-weight {
  position: relative;
  margin-left: 20px;
}

.newsletter-area .section-title {
  max-width: 650px;
  margin-bottom: 0;
}
.newsletter-area .section-title h2 {
  font-size: 24px;
  margin-bottom: 30px;
}
.newsletter-area p {
  color: var(--whiteColor);
  margin-bottom: 0;
  margin-top: 20px;
}

.footer-form {
  position: relative;
}
.footer-form .form-control {
  font-size: 14px;
  font-weight: 500;
  height: 52px;
  color: var(--whiteColor);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 170px 10px 25px;
  background-color: transparent;
}
.footer-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer-form .form-control:focus {
  border: 1px solid var(--whiteColor);
}
.footer-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.footer-form .form-control:focus::placeholder {
  color: transparent;
}
.footer-form .default-btn {
  top: 0;
  right: 0;
  position: absolute;
}

.footer-weight {
  padding-bottom: 85px;
}
.footer-weight h3 {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 30px;
}
.footer-weight .contact {
  max-width: 200px;
}
.footer-weight .contact li {
  margin-bottom: 20px;
}
.footer-weight .contact li span {
  color: rgba(255, 255, 255, 0.86);
}
.footer-weight .contact li a {
  color: rgba(255, 255, 255, 0.86);
}
.footer-weight .contact li a:hover {
  color: var(--redColor);
}
.footer-weight .contact li:last-child {
  margin-bottom: 0;
}
.footer-weight .service li {
  margin-bottom: 15px;
}
.footer-weight .service li a {
  color: rgba(255, 255, 255, 0.86);
}
.footer-weight .service li a:hover {
  color: var(--redColor);
}
.footer-weight .service li:last-child {
  margin-bottom: 0;
}
.footer-weight.gallery-footer {
  max-width: 307px;
}
.footer-weight.gallery-footer h3 {
  margin-bottom: 35px;
}
.footer-weight.gallery-footer .row > * {
  padding-left: calc(var(--bs-gutter-x) * 0);
}
.footer-weight.gallery-footer .footer-image {
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
}
.footer-weight.gallery-footer .gallery-image-1 {
  width: 100%;
  border-radius: 0;
}

/*
Copy Area CSS
===================================================*/
.copy-area {
  padding-top: 20px;
  padding-bottom: 20px;
}
.copy-area .left-side li {
  display: inline-block;
  margin-right: 15px;
}
.copy-area .left-side li a {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
}
.copy-area .left-side li a:hover {
  color: var(--whiteColor);
}
.copy-area .left-side li:last-child {
  margin-right: 0;
}
.copy-area .right-side {
  text-align: end;
}
.copy-area .right-side a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}
.copy-area .right-side a:hover {
  color: var(--whiteColor);
}

.copy-left-side li {
  display: inline-block;
  margin-right: 15px;
}
.copy-left-side li a {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
}
.copy-left-side li a:hover {
  color: var(--whiteColor);
}
.copy-left-side li:last-child {
  margin-right: 0;
}

.center-part p {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}
.center-part p a {
  color: var(--whiteColor);
}
.center-part p a:hover {
  color: var(--redColor);
}

/*
Home Two Provide Area CSS
===================================================*/
.provide-area .provide-content {
  max-width: 748px;
}
.provide-area .provide-content h2 {
  font-size: 54px;
  line-height: 68px;
  margin-bottom: 30px;
}
.provide-area .provide-content .community {
  padding-left: 85px;
}
.provide-area .provide-content .community .paragraph {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 40px;
}
.provide-area .provide-content .community .founder {
  padding: 35px 35px;
}
.provide-area .provide-content .community .founder p {
  color: var(--healthColor);
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 30px;
}
.provide-area .provide-content .community .founder h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--paraColor);
  line-height: 1;
  margin-bottom: 15px;
}
.provide-area .provide-content .community .founder span {
  color: var(--paraColor);
}
.provide-area .provide-image {
  position: relative;
}
.provide-area .provide-image .review-info {
  top: 50%;
  left: -110px;
  padding: 40px 30px;
  position: absolute;
  transform: translateY(-50%);
}

/*
Home Two Skills Area CSS
===================================================*/
.skills-area {
  position: relative;
  overflow: hidden;
}
.skills-area .section-heading {
  max-width: 740px;
  margin-bottom: 0;
}
.skills-area .section-heading h2 {
  color: var(--paraColor);
  font-size: 54px;
  margin-bottom: 30px;
}
.skills-area .section-heading p {
  color: var(--healthColor);
  padding-right: 50px;
}

.skills {
  width: 100%;
}
.skills .skill {
  margin-bottom: 45px;
}
.skills .skill .skill-name {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--primaryFont);
  color: #080e43;
  margin-bottom: 8px;
}
.skills .skill:last-child {
  margin-bottom: 0;
}
.skills .skill-bar {
  background-color: rgba(93, 153, 255, 0.26);
  border-radius: 5px;
  position: relative;
  z-index: 1;
  height: 3px;
}
.skills .skill-bar .skill-percentage {
  height: 3px;
  border-radius: 5px;
  background-color: var(--primaryColor);
  border-radius: 5px;
  position: relative;
  animation: fillBars 2.5s 1;
}
.skills .skill-bar .skill-percentage::before {
  font-size: 14px;
  font-weight: 500;
  content: attr(data-progress) !important;
  position: absolute;
  top: -25px;
  right: 0;
  color: #080e43;
}

@keyframes fillBars {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/*
Home Two Fun Fact Area CSS
===================================================*/
.fun-fact-area h2 {
  color: var(--paraColor);
  font-size: 24px;
  line-height: 1.5;
}

/*
Home Two Work Area CSS
===================================================*/
.work-area .top-bar {
  margin-bottom: 60px;
}
.work-area .top-bar h2 {
  color: var(--paraColor);
  font-size: 54px;
}
.work-area .top-bar .book-btn {
  text-align: end;
}

.single-works span {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondaryColor);
  display: block;
  line-height: 25px;
  margin-bottom: 30px;
  letter-spacing: -0.36px;
  line-height: 50px;
  text-align: center;
  height: 50px;
  width: 50px;
}
.single-works h3 {
  color: var(--secondaryColor);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 15px;
}
.single-works p {
  color: var(--healthColor);
}

/*
Home Three Treatment Area CSS
===================================================*/
.treatment-area .top {
  margin-bottom: 50px;
}
.treatment-area .top h2 {
  color: var(--paraColor);
  font-size: 54px;
  line-height: 68px;
}
.treatment-area .top .best {
  max-width: 590px;
  margin-left: auto;
}
.treatment-area .top .best p {
  color: var(--healthColor);
}
.treatment-area .treatment-info {
  max-width: 590px;
  margin-left: auto;
}
.treatment-area .treatment-info h3 {
  color: var(--paraColor);
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.treatment-area .treatment-info .check-mark li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 25px;
  color: var(--healthColor);
}
.treatment-area .treatment-info .check-mark li i {
  top: 4px;
  left: 0;
  color: var(--primaryColor);
  position: absolute;
  line-height: 1;
}
.treatment-area .treatment-info .check-mark li:last-child {
  margin-bottom: 0;
}
.treatment-area .treatment-info .banner-btn {
  display: flex;
  align-items: center;
  margin-top: 55px;
}
.treatment-area .treatment-info .banner-btn .default-btn {
  margin-right: 35px;
}
.treatment-area .treatment-info .banner-btn span {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondaryFont);
  color: var(--healthColor);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.treatment-area .treatment-info .banner-btn p {
  color: var(--secondaryColor);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.15px;
}
.treatment-area .treatment-info .banner-btn p i {
  position: relative;
  top: 2px;
}

/*
Video Area CSS
===================================================*/
.video-area .video-image {
  position: relative;
}
.video-area .video-image .popup-btn {
  top: 50%;
  left: 0;
  right: 0;
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
}
.video-area .video-image .popup-btn i {
  display: inline-block;
  color: var(--whiteColor);
  width: 100px;
  height: 100px;
  font-size: 50px;
  text-align: center;
  line-height: 100px;
  padding-left: 5px;
  border-radius: 100%;
  border-radius: 100px;
  -webkit-backdrop-filter: blur(12.8999996185px);
          backdrop-filter: blur(12.8999996185px);
  background-color: rgba(255, 255, 255, 0.31);
  border: 1px solid rgba(255, 255, 255, 0.56);
  transition: var(--transition);
}
.video-area .video-image .popup-btn i::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  margin: auto;
  text-align: center;
  border-radius: 100%;
  transition: all ease 0.5s;
  animation: ripple 2s linear infinite;
  border: 1px solid var(--whiteColor);
}
.video-area .video-image .popup-btn i:hover {
  color: var(--primaryColor);
  background-color: var(--whiteColor);
}

/*
Features Area CSS
===================================================*/
.features-area .row {
  --bs-gutter-x: 92px;
}

.features-card .top {
  margin-bottom: 30px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(12, 27, 43, 0.14);
}
.features-card .top h3 {
  color: var(--paraColor);
  font-size: 24px;
  line-height: 1.5;
  max-width: 265px;
}
.features-card .top .surgery-room {
  color: var(--primaryColor);
  font-size: 53px;
  line-height: 0;
}
.features-card p {
  color: var(--healthColor);
}

/*
Step Area CSS
===================================================*/
.step-area .step-info h2 {
  font-size: 54px;
  line-height: 1.25;
  margin-bottom: 50px;
}
.step-area .step-items {
  position: relative;
}
.step-area .step-items .step-btn {
  right: 50px;
  bottom: 60px;
  position: absolute;
}
.step-area .step-items .step-btn .swiper-button-next img, .step-area .step-items .step-btn .swiper-button-prev img {
  max-width: 42px;
}
.step-area .step-items .step-btn .swiper-button-next::after, .step-area .step-items .step-btn .swiper-button-prev::after {
  display: none;
}
.step-area .step-items .step-btn .swiper-button-next {
  left: auto;
  right: 70px;
}
.step-area .step-items .step-btn .swiper-button-prev {
  left: auto;
  right: 0;
}
.step-area .appointment-form {
  padding: 50px 50px 35px;
  max-width: 535px;
  margin-left: auto;
}
.step-area .appointment-form h3 {
  color: var(--paraColor);
}

.step-card {
  position: relative;
  transition: var(--transition);
  padding: 40px 40px;
  background-color: #252525;
}
.step-card .top {
  margin-bottom: 50px;
}
.step-card .top i {
  color: var(--primaryColor);
  font-size: 42px;
  line-height: 0;
}
.step-card p {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  line-height: 36px;
  margin-bottom: 70px;
}
.step-card h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 15px;
}
.step-card span {
  color: rgba(255, 255, 255, 0.86);
}

/*
Pricing Area CSS
===================================================*/
.pricing-area {
  position: relative;
  overflow: hidden;
}
.pricing-area .container-fluid.ps-padding {
  max-width: 1395px;
}
.pricing-area h2 {
  color: var(--paraColor);
}
.pricing-area .row {
  --bs-gutter-x: 135px;
}
.pricing-area .col-lg-4:nth-child(1) .pricing-card {
  position: relative;
}
.pricing-area .col-lg-4:nth-child(1) .pricing-card::after {
  top: 50%;
  left: -70px;
  width: 1px;
  height: 100%;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  background-color: rgba(12, 27, 43, 0.14);
}

.pricing-card {
  position: relative;
}
.pricing-card::before {
  top: 50%;
  right: -70px;
  width: 1px;
  height: 100%;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  background-color: rgba(12, 27, 43, 0.14);
}
.pricing-card .title {
  margin-bottom: 30px;
}
.pricing-card .title h3 {
  color: var(--paraColor);
  font-size: 24px;
  line-height: 1;
}
.pricing-card .title h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primaryColor);
  line-height: 1;
}
.pricing-card p {
  color: var(--healthColor);
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(12, 27, 43, 0.14);
}
.pricing-card .check li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: var(--healthColor);
}
.pricing-card .check li i {
  top: 4px;
  left: 0;
  color: var(--primaryColor);
  position: absolute;
  line-height: 1;
}
.pricing-card .check li:last-child {
  margin-bottom: 0;
}
.pricing-card .check li.rs-op {
  padding-right: 25px;
  padding-left: 0;
}
.pricing-card .check li.rs-op i {
  left: auto;
  right: 0;
}
.pricing-card .default-btn {
  margin-top: 40px;
}

/*
Question Area CSS
===================================================*/
.question-faq h2 {
  color: var(--paraColor);
  font-size: 54px;
  line-height: 1.5;
  margin-bottom: 50px;
}
.question-faq .accordion-item {
  border: none;
  border-radius: 3px;
  margin-bottom: 20px;
  background-color: transparent;
  border: 1px solid rgba(12, 27, 43, 0.14);
}
.question-faq .accordion-item .accordion-body {
  padding: 0 15px 20px 20px;
}
.question-faq .accordion-item .accordion-body p {
  padding-top: 15px;
  border-top: 1px solid rgba(18, 18, 18, 0.15);
  color: var(--paraColor);
}
.question-faq .accordion-item:last-child {
  margin-bottom: 0;
}
.question-faq .accordion-button {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--primaryFont);
  color: var(--paraColor);
  padding: 20px 45px 18px 20px;
  line-height: 1;
  background-color: transparent;
}
.question-faq .accordion-button::before {
  top: 50%;
  right: 20px;
  content: "\ea4d";
  position: absolute;
  font-size: 20px;
  transform: translateY(-50%);
  font-family: remixicon !important;
  text-align: center;
  transition: var(--transition);
  color: var(--paraColor);
}
.question-faq .accordion-button::after {
  display: none;
}
.question-faq .accordion-button:not(.collapsed) {
  border-radius: 0;
  background-color: transparent;
  box-shadow: unset !important;
}

/*
About Page CSS
===================================================*/
.about-us-area.about-us .about-left h2 {
  color: var(--paraColor);
}
.about-us-area.about-us .about-right .about-treatment h3 {
  color: var(--paraColor);
}
.about-us-area.about-us .about-right .about-treatment p {
  color: var(--healthColor);
  border-bottom: 1px solid rgba(12, 27, 43, 0.12);
}
.about-us-area.about-us .about-right .check-mark li {
  color: var(--healthColor);
}

.advice-area.advice-about .advice-content ul li a {
  -webkit-text-stroke: 1px rgb(140, 140, 140);
  -webkit-text-fill-color: var(--whiteColor);
}
.advice-area.advice-about .advice-content ul li a:hover {
  -webkit-text-stroke: 1px var(--primaryColor);
  -webkit-text-fill-color: var(--primaryColor);
}

.doctor-area.about-doctor .top-bar h2 {
  color: var(--paraColor);
}
.doctor-area.about-doctor .top-bar p {
  color: var(--paraColor);
}
.doctor-area.about-doctor .doctor-menu .nav-tabs .nav-link {
  color: var(--paraColor);
  border-bottom: 1px solid rgba(12, 27, 43, 0.12);
}

.testimonials-area.about-testimonials .testimonials-items {
  box-shadow: 6px 12px 37.7px 23px rgba(3, 2, 50, 0.03);
}

/*
Appointment Page CSS
===================================================*/
.appointment-page .appointment-image {
  max-width: 815px;
}
.appointment-page .appointment-form h3 {
  color: #080e43;
}
.appointment-page .appointment-form .form-select {
  color: #7983d6;
}
.appointment-page .appointment-form .form-select option {
  color: var(--titleColor);
}
.appointment-page .appointment-form .default-btn.common:hover::before {
  background-color: var(--redColor);
}

/*
Service Details Page CSS
===================================================*/
.service-details-page .testimonials-area .testimonials-items .testimonials-btn .swiper-button-next, .service-details-page .testimonials-area .testimonials-items .testimonials-btn .swiper-button-prev {
  background-color: #f3faff;
  border: 1px solid rgba(75, 98, 98, 0.1);
}
.service-details-page .testimonials-area .testimonials-items .testimonials-btn .swiper-button-next:hover, .service-details-page .testimonials-area .testimonials-items .testimonials-btn .swiper-button-prev:hover {
  background-color: var(--primaryColor);
}
.service-details-page .testimonials-area .testimonials-items .testimonials-btn .swiper-button-next {
  right: -120px;
}
.service-details-page .testimonials-area .testimonials-items .testimonials-btn .swiper-button-prev {
  left: -120px;
}
.service-details-page .testimonials-area .testimonials-card h3 {
  margin: 0;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 24px;
}

.service-details-content h3 {
  color: var(--paraColor);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -1.76px;
  margin: 35px 0 25px;
}
.service-details-content p {
  color: var(--healthColor);
}
.service-details-content .check {
  margin-bottom: 60px;
}
.service-details-content .check li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 25px;
  color: var(--healthColor);
}
.service-details-content .check li i {
  top: 3px;
  left: 0;
  color: var(--primaryColor);
  position: absolute;
  font-size: 18px;
  line-height: 0;
}
.service-details-content .check li:last-child {
  margin-bottom: 0;
}
.service-details-content .care-card {
  padding: 40px 40px;
  border: 1px solid rgba(75, 98, 98, 0.1);
}
.service-details-content .care-card .title {
  position: relative;
  padding-left: 140px;
  margin-bottom: 60px;
}
.service-details-content .care-card .title .care-image {
  top: 0;
  left: 0;
  width: 110px;
  height: 110px;
  position: absolute;
  text-align: center;
  background-color: var(--whiteColor);
  border: 1px solid rgba(75, 98, 98, 0.21);
}
.service-details-content .care-card .title .care-image .services-3 {
  margin-top: 25px;
}
.service-details-content .care-card .title .care-image .services-3 svg {
  width: 55px;
  height: 55px;
  margin: 0 auto;
  display: block;
  line-height: 110px;
}
.service-details-content .care-card .title .care-image .services-3 i {
  color: var(--paraColor);
  font-size: 45px;
}
.service-details-content .care-card .title h4 {
  color: #080e43;
  font-size: 24px;
  line-height: 1.5;
  position: relative;
  top: 18px;
  max-width: 230px;
}
.service-details-content .care-card .title.right-tit {
  padding-left: 0;
  padding-right: 140px;
}
.service-details-content .care-card .title.right-tit .right-op {
  left: auto;
  right: 0;
}
.service-details-content .care-card p {
  max-width: 475px;
}

.service-sidebar .services {
  margin-bottom: 30px;
  padding: 40px 40px;
}
.service-sidebar .services h3 {
  color: var(--paraColor);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 20px;
}
.service-sidebar .services .right-line li {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(12, 27, 43, 0.12);
}
.service-sidebar .services .right-line li i {
  top: 0;
  right: 0;
  position: absolute;
}
.service-sidebar .services .right-line li a {
  color: var(--paraColor);
  font-weight: 700;
}
.service-sidebar .services .right-line li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.service-sidebar .appointment-form {
  border: 1px solid rgba(75, 98, 98, 0.1);
}
.service-sidebar .appointment-form h3 {
  color: #080e43;
}
.service-sidebar .appointment-form .textarea {
  min-height: 120px;
}
.service-sidebar .appointment-form .default-btn.common:hover::before {
  background-color: var(--redColor);
}
.service-sidebar .information {
  padding: 40px 35px;
  margin-bottom: 30px;
  border: 1px solid rgba(75, 98, 98, 0.1);
}
.service-sidebar .information h3 {
  color: #080e43;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 25px;
}
.service-sidebar .information .care li {
  font-size: 15px;
  font-weight: 500;
  color: #7983d6;
  position: relative;
  line-height: 1;
  margin-bottom: 25px;
}
.service-sidebar .information .care li span {
  top: 0;
  left: 100px;
  position: absolute;
}
.service-sidebar .information .care li:last-child {
  margin-bottom: 0;
}

/*
Projects Page CSS
===================================================*/
.appointment-area.projects-page .appointment-info h3 {
  color: var(--paraColor);
}
.appointment-area.projects-page .appointment-info p {
  color: var(--healthColor);
}
.appointment-area.projects-page .appointment-form {
  background-color: #fefefe;
}
.appointment-area.projects-page .appointment-form h3 {
  color: var(--paraColor);
}

/*
Portfolio Area CSS
======================================================*/
.portfolio-area-style {
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-left: 0;
  margin-right: 0;
}
.portfolio-area-style .portfolio-content {
  width: 100%;
  display: flex;
  padding: 0;
  margin-bottom: 30px;
}
.portfolio-area-style .slide {
  width: 300px;
  height: 515px;
  border-radius: 30px;
  margin: 10px;
  cursor: pointer;
  color: var(--whiteColor);
  flex: 1;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: var(--transition);
}
.portfolio-area-style .slide .info {
  transition: var(--transition);
  visibility: hidden;
  position: absolute;
  opacity: 0;
  bottom: 40px;
  left: 40px;
}
.portfolio-area-style .slide .info .new {
  margin-bottom: 20px;
}
.portfolio-area-style .slide h3 {
  font-size: 24px;
  margin: 0;
}
.portfolio-area-style .slide h3 a {
  color: var(--whiteColor);
}
.portfolio-area-style .slide h3 a:hover {
  color: var(--primaryColor);
}
.portfolio-area-style .slide .popup-view {
  display: inline-block;
  position: absolute;
  right: 40px;
  bottom: 50px;
  font-size: 25px;
  visibility: hidden;
  color: var(--paraColor);
  background-color: var(--whiteColor);
  width: 45px;
  height: 45px;
  line-height: 48px;
  border-radius: 50%;
  text-align: center;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-area-style .slide .popup-view:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.portfolio-area-style .slide::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 30px 30px;
  background: linear-gradient(180deg, rgba(6, 31, 72, 0) 0%, #061F48 100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.portfolio-area-style .slide.active {
  flex: 3;
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-area-style .slide.active::before {
  opacity: 1;
  visibility: visible;
}
.portfolio-area-style .slide.active .info {
  opacity: 1;
  visibility: visible;
}
.portfolio-area-style .slide.active .popup-view {
  opacity: 1;
  visibility: visible;
}
.portfolio-area-style .slide.bg-1 {
  background-image: url("../../assets/images/project/project-image-1.jpg");
  margin-left: 0;
}
.portfolio-area-style .slide.bg-2 {
  background-image: url("../../assets/images/project/project-image-2.jpg");
}
.portfolio-area-style .slide.bg-3 {
  background-image: url("../../assets/images/project/project-image-3.jpg");
}
.portfolio-area-style .slide.bg-4 {
  background-image: url("../../assets/images/project/project-image-4.jpg");
  margin-right: 0;
}
.portfolio-area-style .portfolio-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/*
Project Details Page CSS
===================================================*/
.project-details h3 {
  color: var(--paraColor);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -1.76px;
  margin: 70px 0 30px;
}
.project-details p {
  color: var(--healthColor);
}
.project-details h4 {
  color: #080e43;
  font-size: 24px;
  line-height: 1;
}
.project-details .check {
  margin-bottom: 30px;
}
.project-details .check li {
  color: #080e43;
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}
.project-details .check li i {
  top: 3px;
  left: 0;
  color: var(--primaryColor);
  position: absolute;
  font-size: 18px;
  line-height: 1;
}
.project-details .check li:last-child {
  margin-bottom: 0;
}
.project-details .gallery {
  margin-top: 50px;
}
.project-details .gallery .project-image-11 {
  min-height: 452px;
}

/*
Doctor Details Page CSS
===================================================*/
.doctor-details-content {
  max-width: 816px;
  margin-left: auto;
}
.doctor-details-content h3 {
  color: #080e43;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 25px;
}
.doctor-details-content p {
  color: var(--healthColor);
}

/*
Shop Page CSS
===================================================*/
.shop-page .top-bar {
  margin-bottom: 25px;
}
.shop-page .top-bar p {
  color: var(--healthColor);
}
.shop-page .top-bar .form-group .form-select {
  height: 50px;
  border: 1px solid rgba(12, 27, 43, 0.14);
  color: var(--healthColor);
  padding: 12px 20px;
}

.single-product-card {
  margin-bottom: 30px;
  position: relative;
}
.single-product-card .single-product-card-body {
  padding-top: 25px;
}
.single-product-card .single-product-card-body ul li {
  margin-bottom: 10px;
  font-size: 18px;
  color: rgb(255, 147, 122);
}
.single-product-card .single-product-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--primaryFont);
  line-height: 1;
}
.single-product-card .single-product-card-body h3 a {
  color: var(--paraColor);
}
.single-product-card .single-product-card-body h3 a:hover {
  color: var(--primaryColor);
}
.single-product-card .single-product-card-body span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primaryColor);
  line-height: 1;
}
.single-product-card .btn-add-cart {
  bottom: 110px;
  left: 5px;
  right: 5px;
  position: absolute;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transition: 0.7s;
  transform: scale(0);
}
.single-product-card .btn-add-cart .add_to_cart_button {
  padding: 15px 30px 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
  border-radius: 6px;
  background: var(--success);
  -webkit-backdrop-filter: blur(6.5px);
          backdrop-filter: blur(6.5px);
  color: var(--paraColor);
  border: none;
  font-weight: 400;
  font-family: var(--primaryFont);
  width: 95%;
  text-align: center;
  margin: 0 auto;
  text-transform: capitalize;
}
.single-product-card .btn-add-cart .add_to_cart_button:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}
.single-product-card .btn-add-cart .add_to_cart_button.added {
  display: none;
}
.single-product-card .btn-add-cart .added_to_cart {
  padding: 15px 30px 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border: none;
  font-weight: 400;
  font-family: var(--bodyFont);
  width: 95%;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
  text-transform: capitalize;
}
.single-product-card .btn-add-cart .added_to_cart:hover {
  background-color: var(--blackColor);
}
.single-product-card:hover .btn-add-cart {
  opacity: 1;
  transform: scale(1);
}

.shop-sidebar {
  max-width: 340px;
  margin-left: auto;
}
.shop-sidebar .search {
  margin-bottom: 40px;
}
.shop-sidebar .search h3 {
  color: var(--paraColor);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 20px;
}
.shop-sidebar .search form {
  position: relative;
}
.shop-sidebar .search form .form-control {
  height: 50px;
  border: 1px solid rgba(12, 27, 43, 0.14);
  padding: 10px 20px 12px;
}
.shop-sidebar .search form .form-control:focus {
  border-color: var(--redColor);
}
.shop-sidebar .search form .search-btn {
  top: 15px;
  right: 8px;
  color: var(--paraColor);
  position: absolute;
  font-size: 18px;
  line-height: 1;
  border: none;
  box-shadow: unset !important;
  background-color: transparent;
  transition: var(--transition);
}
.shop-sidebar .search form .search-btn:hover {
  color: var(--redColor);
}
.shop-sidebar .categories h3 {
  color: var(--paraColor);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 20px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e4e4e4;
}
.shop-sidebar .categories ul li {
  position: relative;
  margin-bottom: 20px;
}
.shop-sidebar .categories ul li a {
  color: var(--healthColor);
}
.shop-sidebar .categories ul li span {
  top: 0;
  right: 0;
  position: absolute;
}
.shop-sidebar .categories ul li:last-child {
  margin-bottom: 0;
}
.shop-sidebar .news {
  margin-top: 40px;
  margin-bottom: 60px;
}
.shop-sidebar .news h3 {
  color: var(--paraColor);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 20px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e4e4e4;
}
.shop-sidebar .news .nes-feed {
  margin-bottom: 35px;
  position: relative;
}
.shop-sidebar .news .nes-feed img {
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 111px;
  border-radius: 5px;
}
.shop-sidebar .news .nes-feed .news-content {
  position: relative;
  padding-left: 110px;
  top: 10px;
}
.shop-sidebar .news .nes-feed .news-content h4 {
  font-size: var(--fontSize);
  font-weight: 500;
  font-family: var(--primaryFont);
  line-height: 26px;
  margin-bottom: 10px;
}
.shop-sidebar .news .nes-feed .news-content h4 a {
  color: rgb(23, 23, 23);
}
.shop-sidebar .news .nes-feed .news-content h4 a:hover {
  color: var(--primaryColor);
}
.shop-sidebar .news .nes-feed .news-content span {
  font-weight: 700;
  color: var(--primaryColor);
  line-height: 1;
}
.shop-sidebar .news .nes-feed:last-child {
  margin-bottom: 0;
}
.shop-sidebar .filter {
  margin-top: 50px;
  /* Reset style for input range */
  /* Style toddler input range */
  /* Style track input range */
  /* Style for input value block */
  /* Style for active state input */
}
.shop-sidebar .filter h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--primaryFont);
  color: var(--paraColor);
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: -0.4px;
}
.shop-sidebar .filter .filter-price {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
}
.shop-sidebar .filter .price-title {
  position: relative;
  font-weight: 500;
}
.shop-sidebar .filter .price-field {
  position: relative;
  width: 100%;
  height: 0;
  box-sizing: border-box;
  background-color: rgba(248, 247, 244, 0.2);
  border-radius: 0;
  margin-bottom: 25px;
}
.shop-sidebar .filter .price-field input[type=range] {
  position: absolute;
}
.shop-sidebar .filter .price-field input[type=range] {
  width: 100%;
  height: 1px;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  border-radius: 0;
  pointer-events: none;
  -webkit-appearance: none;
}
.shop-sidebar .filter .price-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.shop-sidebar .filter .price-field input[type=range]:active,
.shop-sidebar .filter .price-field input[type=range]:focus {
  outline: 0;
}
.shop-sidebar .filter .price-field input[type=range]::-ms-track {
  width: 100%;
  height: 1px;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  border-radius: 0;
  pointer-events: none;
  background-color: transparent;
  border-color: transparent;
  color: transparent;
}
.shop-sidebar .filter .price-field input[type=range]::-webkit-slider-thumb {
  position: relative;
  -webkit-appearance: none;
  outline: 0;
  margin: 0;
  border: 0;
  width: 8px;
  height: 9px;
  margin-top: -4px;
  border-radius: 0;
  background-color: #171717;
  cursor: pointer;
  z-index: 100;
  pointer-events: all;
}
.shop-sidebar .filter .price-field input[type=range]::-moz-range-thumb {
  position: relative;
  -moz-appearance: none;
       appearance: none;
  outline: 0;
  margin: 0;
  border: 0;
  width: 8px;
  height: 9px;
  margin-top: -4px;
  border-radius: 0;
  background-color: #171717;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}
.shop-sidebar .filter .price-field input[type=range]::-ms-thumb {
  position: relative;
  appearance: none;
  outline: 0;
  margin: 0;
  border: 0;
  width: 8px;
  height: 9px;
  margin-top: -4px;
  border-radius: 0;
  background-color: #171717;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}
.shop-sidebar .filter .price-field input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  border-radius: 0;
  background-color: #171717;
}
.shop-sidebar .filter .price-field input[type=range]::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  border-radius: 0;
  background-color: #171717;
}
.shop-sidebar .filter .price-field input[type=range]::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  border-radius: 0;
  background-color: #171717;
}
.shop-sidebar .filter .price-wrap {
  display: flex;
  margin-bottom: 0;
  justify-content: start;
}
.shop-sidebar .filter .price-wrap-1, .shop-sidebar .filter .price-wrap-2 {
  display: flex;
}
.shop-sidebar .filter .price-wrap .price-title {
  margin-right: 5px;
  color: #171717;
}
.shop-sidebar .filter .price-wrap .price-wrap_line {
  margin: 0 5px;
}
.shop-sidebar .filter .price-wrap #one,
.shop-sidebar .filter .price-wrap #two {
  color: #171717;
  width: 30px;
  margin: 0;
  border: 0;
  outline: 0;
  padding: 0;
  background: 0;
  text-align: start;
  font-weight: 400;
}
.shop-sidebar .filter .price-wrap label {
  text-align: right;
}
.shop-sidebar .filter .price-field input[type=range]:hover::-webkit-slider-thumb {
  box-shadow: unset !important;
  transition-duration: 0.3s;
}
.shop-sidebar .filter .price-field input[type=range]:active::-webkit-slider-thumb {
  box-shadow: unset !important;
  transition-duration: 0.3s;
}

/*
Product Details Page CSS
===================================================*/
.product-details-page .product-details-image {
  text-align: center;
  position: relative;
  margin-bottom: 10px;
}
.product-details-page .product-details-image .nav-tabs {
  border: none;
  position: relative;
  margin-top: -65px;
  justify-content: center;
}
.product-details-page .product-details-image .nav-item {
  margin-right: 20px;
}
.product-details-page .product-details-image .nav-item .nav-link {
  border: none;
  width: 133px;
  height: 145px;
  padding: 0;
  border-radius: 15px;
  border: 1px solid rgba(12, 27, 43, 0.26);
}
.product-details-page .product-details-image .nav-item .nav-link img {
  width: 133px;
  height: 143px;
  border-radius: 15px;
}
.product-details-page .product-details-image .nav-item:last-child {
  margin-right: 0;
}
.product-details-page .product-details-content {
  max-width: 600px;
  margin-left: auto;
}
.product-details-page .product-details-content .title {
  margin-bottom: 35px;
}
.product-details-page .product-details-content .title .star-review {
  margin-bottom: 15px;
}
.product-details-page .product-details-content .title .star-review li i {
  color: rgb(255, 147, 122);
  font-size: 20px;
  margin-right: -4px;
}
.product-details-page .product-details-content .title .star-review li span {
  margin-left: 15px;
  color: var(--healthColor);
}
.product-details-page .product-details-content .title h3 {
  font-size: 44px;
  color: var(--paraColor);
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: -1.76px;
}
.product-details-page .product-details-content .title p {
  color: var(--healthColor);
  margin-bottom: 30px;
}
.product-details-page .product-details-content .title .price {
  font-size: 28px;
  font-weight: 600;
  font-family: var(--headingFont);
  color: var(--primaryColor);
  line-height: 1;
  letter-spacing: -1.12px;
}
.product-details-page .product-details-content .check {
  margin-bottom: 30px;
}
.product-details-page .product-details-content .check li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: var(--healthColor);
}
.product-details-page .product-details-content .check li i {
  top: 3px;
  left: 0;
  color: var(--primaryColor);
  position: absolute;
}
.product-details-page .product-details-content .check li:last-child {
  margin-bottom: 0;
}
.product-details-page .product-details-content .count-warp {
  list-style-type: none;
  margin-bottom: 25px;
}
.product-details-page .product-details-content .count-warp p {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--success);
}
.product-details-page .product-details-content .count-warp li {
  display: inline-block;
  vertical-align: middle;
}
.product-details-page .product-details-content .count-warp li span {
  font-weight: 600;
  color: var(--success);
  margin-right: 15px;
}
.product-details-page .product-details-content .count-warp li .product-quantity .add-to-cart-counter {
  display: flex;
  justify-content: center;
}
.product-details-page .product-details-content .count-warp li .product-quantity .add-to-cart-counter input {
  border: none;
  color: var(--paraColor);
  max-width: 58px;
  text-align: center;
  padding: 10px 15px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.06);
  font-size: var(--fontSize);
  font-weight: 600;
  border-top: 1px solid #E2E7EC;
  border-bottom: 1px solid #E2E7EC;
}
.product-details-page .product-details-content .count-warp li .product-quantity .add-to-cart-counter .minusBtn {
  color: var(--paraColor);
  border: none;
  font-size: 20px;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  transition: var(--transition);
  border: 1px solid #E2E7EC;
  border-right: 0;
}
.product-details-page .product-details-content .count-warp li .product-quantity .add-to-cart-counter .minusBtn:hover {
  color: var(--redColor);
}
.product-details-page .product-details-content .count-warp li .product-quantity .add-to-cart-counter .plusBtn {
  color: var(--paraColor);
  border: none;
  font-size: 20px;
  border-left: 0;
  border-radius: 0 5px 5px 0;
  transition: var(--transition);
  border: 1px solid #E2E7EC;
  border-left: 0;
}
.product-details-page .product-details-content .count-warp li .product-quantity .add-to-cart-counter .plusBtn:hover {
  color: var(--redColor);
}
.product-details-page .product-details-content .count-warp li:first-child {
  font-weight: 700;
  color: var(--success);
  margin-right: 20px;
}
.product-details-page .product-details-content .count-warp li .default-btn i {
  font-size: 20px;
}
.product-details-page .product-details-content .count-warp li .favorite {
  color: rgba(255, 255, 255, 0.61);
  font-size: 14px;
}
.product-details-page .product-details-content .count-warp li .favorite i {
  display: inline-block;
  color: var(--whiteColor);
  font-size: 20px;
  text-align: center;
  transition: var(--transition);
}
.product-details-page .product-details-content .count-warp li .favorite:hover {
  color: var(--primaryColor);
}
.product-details-page .product-details-content .count-warp li .favorite:hover i {
  color: var(--primaryColor);
}
.product-details-page .product-details-content .free-delivery .yellow li {
  font-weight: 700;
  color: var(--paraColor);
  margin-bottom: 10px;
}
.product-details-page .product-details-content .free-delivery .yellow li span {
  color: var(--healthColor);
  font-weight: 400;
  margin-left: 20px;
}
.product-details-page .product-details-content .free-delivery .yellow li:last-child {
  margin-bottom: 0;
}

.description-area .review-tab .nav-tabs {
  padding: 0;
  border-radius: 0;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 20px;
  padding-bottom: 25px;
  justify-content: start;
}
.description-area .review-tab .nav-tabs .nav-item {
  padding-right: 65px;
}
.description-area .review-tab .nav-tabs .nav-item .nav-link {
  font-size: 20px;
  font-family: var(--headingFont);
  color: rgba(12, 27, 43, 0.54);
  border: none;
  border-radius: 0;
  padding: 0;
  position: relative;
  transition: var(--transition);
}
.description-area .review-tab .nav-tabs .nav-item .nav-link.active, .description-area .review-tab .nav-tabs .nav-item .nav-link:hover {
  color: var(--paraColor);
  background-color: transparent;
}
.description-area .review-tab .nav-tabs .nav-item:last-child {
  padding-right: 0;
}
.description-area .review-tab .tab-content .review-tab .review-card {
  background-color: var(--whiteColor);
}
.description-area .review-tab .tab-content .review-card {
  position: relative;
}
.description-area .review-tab .tab-content .review-card .review-form {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}
.description-area .review-tab .tab-content .review-card .review-form p {
  color: var(--healthColor);
  line-height: 1.7;
}
.description-area .review-tab .tab-content .review-card .review-form h5 {
  font-size: var(--fontSize);
  font-family: var(--primaryFont);
  line-height: 1;
  margin-bottom: 15px;
}
.description-area .review-tab .tab-content .review-card .review-form .jonathan-card {
  padding: 35px 35px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  margin-bottom: 50px;
}
.description-area .review-tab .tab-content .review-card .review-form .jonathan-card ul {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.description-area .review-tab .tab-content .review-card .review-form .jonathan-card ul li {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding-bottom: 24px;
}
.description-area .review-tab .tab-content .review-card .review-form .jonathan-card ul li .inappropriate {
  position: relative;
  padding-left: 80px;
  margin-bottom: 25px;
}
.description-area .review-tab .tab-content .review-card .review-form .jonathan-card ul li .inappropriate img {
  position: absolute;
  top: -4px;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
.description-area .review-tab .tab-content .review-card .review-form .jonathan-card ul li .inappropriate .star {
  color: var(--warning);
  font-size: 15px;
  line-height: 0;
  margin-bottom: 6px;
}
.description-area .review-tab .tab-content .review-card .review-form .jonathan-card ul li .inappropriate h4 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1;
}
.description-area .review-tab .tab-content .review-card .review-form .jonathan-card ul li .inappropriate span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.description-area .review-tab .tab-content .review-card .review-form .jonathan-card ul li .inappropriate a {
  font-weight: 700;
  color: var(--redColor);
}
.description-area .review-tab .tab-content .review-card .review-form .jonathan-card ul li .inappropriate a:hover {
  color: var(--titleColor);
}
.description-area .review-tab .tab-content .review-card .review-form .jonathan-card ul li .inappropriate .reply {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  border-radius: 4px;
  border: 1px solid var(--primaryColor);
  padding: 8px 18px 10px;
  color: var(--primaryColor);
}
.description-area .review-tab .tab-content .review-card .review-form .jonathan-card ul li .inappropriate .reply:hover {
  color: var(--warning);
  border: 1px solid var(--warning);
}
.description-area .review-tab .tab-content .review-card .review-form .jonathan-card ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.related-products .container {
  max-width: 1100px;
}

/*
Checkout Page CSS
===================================================*/
.checkout-area h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--seventeenColor);
  line-height: 1;
  letter-spacing: -0.24px;
}
.checkout-area .checkout-info {
  margin-right: 25px;
}
.checkout-area .checkout-info .form-group .form-label {
  font-size: 16px;
  font-family: var(--headingFont);
  color: var(--seventeenColor);
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: -0.32px;
}
.checkout-area .checkout-info .form-group .form-control {
  border: 1px solid #e6e6e6;
  padding: 14px 20px 14px;
  height: 50px;
  color: var(--seventeenColor);
  margin-bottom: 30px;
  background-color: var(--whiteColor);
}
.checkout-area .checkout-info .form-group .form-control::-moz-placeholder {
  color: rgba(112, 112, 112, 0.72);
}
.checkout-area .checkout-info .form-group .form-control::placeholder {
  color: rgba(112, 112, 112, 0.72);
}
.checkout-area .checkout-info .form-group .form-control:focus {
  border-color: var(--redColor);
}
.checkout-area .checkout-info .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.checkout-area .checkout-info .form-group .form-control:focus::placeholder {
  color: transparent;
}
.checkout-area .checkout-info .form-group .form-control option {
  font-size: 18px;
  color: var(--seventeenColor);
}
.checkout-area .checkout-info .form-group .textarea {
  height: 165px;
  margin-bottom: 0;
}
.checkout-area .checkout-info .form-check {
  margin-bottom: 20px;
}
.checkout-area .checkout-info .form-check .form-check-input {
  width: 15px;
  height: 15px;
  margin-top: 5px;
  border-radius: 4px;
  border: 1px solid var(--seventeenColor);
  background-color: transparent;
}
.checkout-area .checkout-info .form-check .form-check-input:focus {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  box-shadow: unset !important;
}
.checkout-area .checkout-info .form-check .form-check-label {
  color: var(--seventeenColor);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.32px;
}

.checkout-sidebar .order-list {
  background-color: #f4f4f4;
  padding: 35px 35px;
}
.checkout-sidebar .order-list h3 {
  font-size: 24px;
  font-weight: 500;
  color: #101010;
  line-height: 1;
  margin-bottom: 15px;
}
.checkout-sidebar .order-list ul li {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  color: #444444;
  line-height: 1;
  margin-bottom: 25px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
}
.checkout-sidebar .order-list ul li span {
  top: 0;
  right: 0;
  color: #444444;
  position: absolute;
}
.checkout-sidebar .order-list ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
  font-weight: 700;
  color: var(--seventeenColor);
}
.checkout-sidebar .order-list ul li:last-child span {
  color: var(--primaryColor);
  font-weight: 700;
}
.checkout-sidebar .order-list ul .shipping {
  color: var(--seventeenColor);
  font-weight: 700;
}
.checkout-sidebar .payment-card {
  background-color: #e8e8e8;
  padding: 35px 35px;
}
.checkout-sidebar .payment-card h3 {
  font-size: 27px;
  line-height: 1;
  margin-bottom: 20px;
}
.checkout-sidebar .payment-card p {
  color: var(--healthColor);
  margin-bottom: 25px;
}
.checkout-sidebar .payment-card .form-check {
  display: flex;
  margin-bottom: 15px;
}
.checkout-sidebar .payment-card .form-check .form-check-input {
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid var(--seventeenColor);
  margin-top: 0;
}
.checkout-sidebar .payment-card .form-check .form-check-input:focus {
  border-color: var(--seventeenColor);
  box-shadow: unset !important;
}
.checkout-sidebar .payment-card .form-check .form-check-input:checked[type=radio] {
  filter: brightness(0) !important;
}
.checkout-sidebar .payment-card .form-check .form-check-label {
  font-weight: 700;
  font-family: var(--primaryFont);
  color: var(--seventeenColor);
  line-height: 1;
  margin-left: 10px;
}

/*
Cart Page CSS
===================================================*/
.shopping-cart-table {
  border-radius: 10px 10px 0 0;
  background-color: rgba(255, 255, 255, 0.08);
}
.shopping-cart-table .table {
  margin-bottom: 0;
  --bs-table-bg: transparent;
}
.shopping-cart-table .table thead tr {
  border: 1px solid #f5f5f5;
  border-radius: 4px 4px 0px 0px;
}
.shopping-cart-table .table thead tr th {
  color: var(--paraColor);
  vertical-align: middle;
  white-space: nowrap;
  font-weight: 700;
  padding: 15px 30px;
  font-family: var(--headingFont);
  background-color: #f5f5f5;
}
.shopping-cart-table .table thead tr th:first-child {
  border-radius: 5px 0 0 5px;
  padding-left: 0;
  text-align: start;
}
.shopping-cart-table .table thead tr th:last-child {
  text-align: center;
  border-right: 0;
  border-radius: 0;
}
.shopping-cart-table .table tbody tr {
  margin-bottom: 25px;
  border-bottom: 1px solid #e2e2e2;
}
.shopping-cart-table .table tbody tr .close i {
  display: inline-block;
  color: var(--redColor);
  font-size: 11px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 100%;
  background-color: rgba(241, 35, 21, 0.12);
  border: 1px solid rgba(241, 35, 21, 0.14);
  cursor: pointer;
}
.shopping-cart-table .table tbody tr td {
  vertical-align: middle;
  white-space: nowrap;
  padding: 30px;
  font-family: var(--primaryFont);
}
.shopping-cart-table .table tbody tr td.remove a i {
  font-size: 26px;
  color: var(--success);
  transition: var(--transition);
}
.shopping-cart-table .table tbody tr td.remove a i:hover {
  color: var(--primaryColor);
}
.shopping-cart-table .table tbody tr td.product-image {
  text-align: center;
}
.shopping-cart-table .table tbody tr td.product-image a img {
  min-height: 54px;
}
.shopping-cart-table .table tbody tr td .name {
  font-size: var(--fontSize);
  font-weight: 400;
  font-family: var(--primaryFont);
  color: var(--healthColor);
}
.shopping-cart-table .table tbody tr td .name:hover {
  color: var(--primaryColor);
}
.shopping-cart-table .table tbody tr td.product-name {
  padding-right: 0;
}
.shopping-cart-table .table tbody tr td.product-name a {
  font-size: var(--fontSize);
  font-weight: 400;
  font-family: var(--primaryFont);
  color: var(--healthColor);
  line-height: 1;
}
.shopping-cart-table .table tbody tr td.product-name a:hover {
  color: var(--primaryColor);
}
.shopping-cart-table .table tbody tr td.product-price .unit-amount {
  color: var(--healthColor);
  font-weight: 500;
}
.shopping-cart-table .table tbody tr td.product-quantity .add-to-cart-counter {
  display: flex;
  justify-content: start;
}
.shopping-cart-table .table tbody tr td.product-quantity .add-to-cart-counter input {
  border: none;
  color: var(--healthColor);
  padding: 7px 15px 6px;
  max-width: 50px;
  text-align: center;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
  outline: 0;
}
.shopping-cart-table .table tbody tr td.product-quantity .add-to-cart-counter .minusBtn {
  border: 1px solid #e2e2e2;
  border-right: 0;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 5px 0 0 5px;
  font-size: 18px;
  outline: 0;
}
.shopping-cart-table .table tbody tr td.product-quantity .add-to-cart-counter .plusBtn {
  border: 1px solid #e2e2e2;
  border-left: 0;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 0 5px 5px 0;
  font-size: 18px;
  outline: 0;
}
.shopping-cart-table .table tbody tr td.product-subtotal .subtotal-amount {
  color: var(--healthColor);
  font-weight: 500;
}
.shopping-cart-table .table tbody tr td:first-child {
  padding-right: 0;
  width: auto;
  text-align: center;
}
.shopping-cart-table .table tbody tr td:last-child {
  text-align: center !important;
}
.shopping-cart-table .table tbody tr:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.shopping-cart-table .table tbody:not(:first-child) {
  border-top: unset;
  border-bottom: unset;
}

.shopping-cart-buttons {
  text-align: end;
  border-left: 0px solid rgba(40, 40, 40, 0.1);
  border-right: 0px solid rgba(40, 40, 40, 0.1);
  border-bottom: 0px solid rgba(40, 40, 40, 0.1);
  background-color: rgba(255, 255, 255, 0.08);
  margin-top: 50px;
}
.shopping-cart-buttons .form-control {
  display: block;
  outline: 0;
  min-height: 52px;
  box-shadow: none;
  background-color: transparent;
  font-size: 14px;
  border: 1px solid #e2e2e2;
  padding: 14px 25px 14px;
  transition: var(--transition);
  color: var(--seventeenColor);
}
.shopping-cart-buttons .form-control::-moz-placeholder {
  color: #707070;
}
.shopping-cart-buttons .form-control::placeholder {
  color: #707070;
}
.shopping-cart-buttons .form-control:focus {
  outline: 0;
  box-shadow: none;
  border: 1px solid var(--redColor);
}
.shopping-cart-buttons .form-control:focus::-moz-placeholder {
  color: transparent;
}
.shopping-cart-buttons .form-control:focus::placeholder {
  color: transparent;
}
.shopping-cart-buttons .shopping-btn {
  text-align: start;
}
.shopping-cart-buttons .shopping {
  background-color: transparent;
  border: 1px solid #d9d9d9;
  color: var(--seventeenColor);
}
.shopping-cart-buttons .shopping i {
  color: var(--seventeenColor);
}

.shopping-cart-totals {
  max-width: 450px;
  margin-left: auto;
  border-radius: 6px;
  border: 1px solid #e2e2e2;
}
.shopping-cart-totals .box {
  padding-bottom: 35px;
}
.shopping-cart-totals .box h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--seventeenColor);
  padding: 15px 35px;
  line-height: 1;
  border: 1px solid #d6e2dc;
  border-radius: 4px 4px 0px 0px;
  background-color: #f5f5f5;
}
.shopping-cart-totals .box ul {
  padding: 35px 35px;
}
.shopping-cart-totals .box ul li {
  font-size: 16px;
  color: var(--healthColor);
  font-weight: 500;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
}
.shopping-cart-totals .box ul li span {
  color: var(--paraColor);
  font-weight: 700;
  font-size: 16px;
}
.shopping-cart-totals .box ul li p {
  display: block;
  text-align: end;
  margin-bottom: 5px;
  font-size: 16px;
}
.shopping-cart-totals .box ul li p b {
  color: var(--healthColor);
}
.shopping-cart-totals .box ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  font-weight: 700;
  color: var(--paraColor);
  border-bottom: none;
}
.shopping-cart-totals .box .box-btn {
  padding-left: 35px;
}

.print {
  padding-bottom: 40px;
}
.print .title h4 {
  font-size: 20px;
}
.print span {
  font-size: 20px;
  font-weight: 700;
  color: var(--success);
}

/*
Blog Details Page CSS
===================================================*/
.page-banner.blog .page-banner-content {
  max-width: 715px;
}
.page-banner.blog .page-banner-content.page-banner-content-max {
  max-width: 100%;
}
.page-banner.blog .page-banner-content .banner-tags {
  margin-bottom: 20px;
}
.page-banner.blog .page-banner-content .banner-tags li {
  color: var(--healthColor);
  display: inline-block;
  margin-right: 25px;
  font-weight: 500;
}
.page-banner.blog .page-banner-content .banner-tags li.new {
  color: var(--whiteColor);
  padding: 8px 15px;
  margin-bottom: 0;
  background-color: var(--primaryColor);
}
.page-banner.blog .page-banner-content .banner-tags li.new a {
  color: var(--whiteColor);
}
.page-banner.blog .page-banner-content .banner-tags li:last-child {
  margin-right: 0;
}
.page-banner.blog .page-banner-content .banner-title-tags {
  color: var(--paraColor);
  font-size: 54px;
  line-height: 1.26;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
}
.page-banner.blog .page-banner-content p {
  color: var(--healthColor);
  margin-bottom: 35px;
}
.page-banner.blog .page-banner-content .user .user-image-1 {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}
.page-banner.blog .page-banner-content .user h4 {
  color: var(--paraColor);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 5px;
}
.page-banner.blog .page-banner-content .user span {
  color: var(--healthColor);
}

.blog-details-content h2 {
  color: var(--paraColor);
  font-size: 24px;
  line-height: 1;
}
.blog-details-content p {
  color: var(--healthColor);
}
.blog-details-content .check {
  list-style: none;
  padding-left: 0;
}
.blog-details-content .check li {
  color: var(--healthColor);
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  list-style: none;
}
.blog-details-content .check li i {
  top: 2px;
  left: 0;
  color: var(--primaryColor);
  position: absolute;
  font-size: 18px;
}
.blog-details-content .check li:last-child {
  margin-bottom: 0;
}
.blog-details-content figure img {
  border-radius: var(--bs-border-radius-xxl) !important;
}
.blog-details-content blockquote {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 35px 30px;
  position: relative;
  background-color: #f9f9f9;
}
.blog-details-content blockquote p {
  color: var(--healthColor);
  margin-bottom: 20px;
}
.blog-details-content blockquote strong {
  position: relative;
  color: var(--paraColor);
  padding-left: 55px;
}
.blog-details-content blockquote strong::before {
  content: "";
  top: 12px;
  left: 0;
  width: 45px;
  height: 1px;
  position: absolute;
  background-color: var(--paraColor);
}
.blog-details-content blockquote .arrow-border {
  right: 35px;
  bottom: 35px;
  position: absolute;
  max-width: 30px;
}
.blog-details-content blockquote::before {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  background-image: url(../images/arrow-border.svg);
}
.blog-details-content .comments h4 {
  color: var(--paraColor);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 30px;
}
.blog-details-content .comments ul {
  padding: 35px 35px;
  background-color: #f9f9f9;
}
.blog-details-content .comments ul li {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
}
.blog-details-content .comments ul li .title {
  margin-bottom: 20px;
}
.blog-details-content .comments ul li .title .user-image-5 {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}
.blog-details-content .comments ul li .title h6 {
  color: var(--paraColor);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}
.blog-details-content .comments ul li .title span {
  color: var(--healthColor);
  line-height: 1;
}
.blog-details-content .comments ul li .title p {
  color: var(--healthColor);
}
.blog-details-content .comments ul li .reply {
  font-size: 14px;
  font-weight: 500;
  top: 0;
  right: 0;
  color: var(--primaryColor);
  padding: 10px 18px;
  position: absolute;
  background-color: var(--whiteColor);
  line-height: 1;
  display: inline-block;
}
.blog-details-content .comments ul li .reply:hover {
  color: var(--redColor);
  background-color: var(--success);
}
.blog-details-content .comments ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
  padding-left: 55px;
}
.blog-details-content .comments.comments-reply ul li {
  padding-left: 0;
}

.leave h3 {
  font-size: 24px;
  color: var(--paraColor);
  line-height: 1;
  margin-bottom: 30px;
}
.leave .leave-form .col-form-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--paraColor);
  padding: 0;
  line-height: 1;
  vertical-align: middle;
}
.leave .leave-form .form-control {
  color: var(--seventeenColor);
  height: 52px;
  margin-bottom: 18px;
  border-radius: 2px;
  border: 1px solid rgba(12, 27, 43, 0.13);
  background-color: transparent;
}
.leave .leave-form .form-control::-moz-placeholder {
  color: var(--healthColor);
}
.leave .leave-form .form-control::placeholder {
  color: var(--healthColor);
}
.leave .leave-form .form-control:focus {
  border-color: var(--redColor);
}
.leave .leave-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.leave .leave-form .form-control:focus::placeholder {
  color: transparent;
}
.leave .leave-form .textarea {
  min-height: 205px;
}

.blog-sidebar {
  padding: 30px 25px;
  background-color: #f4f4f4;
}
.blog-sidebar h3 {
  font-size: 20px;
  color: var(--paraColor);
  line-height: 1;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
}
.blog-sidebar .search-box {
  margin-bottom: 40px;
}
.blog-sidebar .search-box h3 {
  font-size: 20px;
  color: var(--paraColor);
  line-height: 1;
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: 0 solid #e4e4e4;
}
.blog-sidebar .search-box .search-form {
  position: relative;
}
.blog-sidebar .search-box .search-form .form-control {
  border: none;
  height: 50px;
  border-radius: 5px;
  border: 1px solid rgba(12, 27, 43, 0.14);
  background-color: transparent;
  padding: 8px 30px 10px 15px;
  color: var(--seventeenColor);
}
.blog-sidebar .search-box .search-form .form-control::-moz-placeholder {
  color: var(--healthColor);
}
.blog-sidebar .search-box .search-form .form-control::placeholder {
  color: var(--healthColor);
}
.blog-sidebar .search-box .search-form .form-control:focus {
  border: 1px solid var(--redColor);
}
.blog-sidebar .search-box .search-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.blog-sidebar .search-box .search-form .form-control:focus::placeholder {
  color: transparent;
}
.blog-sidebar .search-box .search-form .search-btn {
  top: 12px;
  right: 8px;
  color: var(--seventeenColor);
  position: absolute;
  border: none;
  box-shadow: unset !important;
  background-color: transparent;
}
.blog-sidebar .categories ul li {
  position: relative;
  margin-bottom: 15px;
}
.blog-sidebar .categories ul li a {
  color: var(--healthColor);
}
.blog-sidebar .categories ul li span {
  top: 0;
  right: 0;
  position: absolute;
}
.blog-sidebar .categories ul li:last-child {
  margin-bottom: 0;
}
.blog-sidebar .news {
  margin-top: 40px;
  margin-bottom: 70px;
}
.blog-sidebar .news .nes-feed {
  margin-bottom: 40px;
  position: relative;
}
.blog-sidebar .news .nes-feed img {
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 111px;
}
.blog-sidebar .news .nes-feed .news-content {
  position: relative;
  padding-left: 110px;
  top: 12px;
}
.blog-sidebar .news .nes-feed .news-content h4 {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--primaryFont);
  line-height: 26px;
  margin-bottom: 10px;
}
.blog-sidebar .news .nes-feed .news-content h4 a {
  color: var(--seventeenColor);
}
.blog-sidebar .news .nes-feed .news-content h4 a:hover {
  color: var(--primaryColor);
}
.blog-sidebar .news .nes-feed .news-content span {
  font-size: 14px;
  font-weight: 500;
  color: var(--healthColor);
  line-height: 1;
}
.blog-sidebar .news .nes-feed:last-child {
  margin-bottom: 0;
}
.blog-sidebar .tags ul {
  list-style-type: none;
}
.blog-sidebar .tags ul li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  transition: var(--transition);
}
.blog-sidebar .tags ul li a {
  display: inline-block;
  color: var(--healthColor);
  padding: 8px 15px 8px;
  border-radius: 2px;
  background-color: var(--whiteColor);
}
.blog-sidebar .tags ul li a:hover {
  color: var(--seventeenColor);
  background-color: var(--success);
}
.blog-sidebar .tags ul li:last-child {
  margin-right: 0;
  margin-bottom: 0;
  margin-bottom: -15px;
}

/*
Contact Us Page CSS
===================================================*/
.contact-card {
  padding: 40px 40px;
  background-color: rgba(12, 27, 43, 0.04);
}
.contact-card h3 {
  color: var(--paraColor);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(12, 27, 43, 0.14);
}
.contact-card ul li {
  color: var(--healthColor);
  position: relative;
  margin-bottom: 30px;
  padding-left: 30px;
}
.contact-card ul li i {
  top: 4px;
  left: 0;
  color: var(--primaryColor);
  position: absolute;
  font-size: 18px;
  line-height: 1;
}
.contact-card ul li a {
  color: var(--healthColor);
}
.contact-card ul li a:hover {
  color: var(--primaryColor);
}
.contact-card ul li:last-child {
  margin-bottom: 0;
}

.contact-us .contact-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.contact-map {
  position: relative;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 590px;
  display: block;
}

/*
Privacy Policy Page CSS
=================================================*/
.privacy-policy-area .privacy-policy-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.privacy-policy-area .privacy-policy-content .information-collection {
  margin-bottom: 25px;
}
.privacy-policy-area .privacy-policy-content .information-collection h4 {
  font-size: 24px;
  margin-bottom: 12px;
}
.privacy-policy-area .privacy-policy-content .information-collection p {
  color: var(--healthColor);
}

/*
404 Error Page CSS
=================================================*/
.error-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.error-area .container {
  max-width: 700px;
}
.error-area .error-content-wrap {
  z-index: 1;
  position: relative;
}
.error-area .error-content-wrap p {
  margin: 30px 0 25px;
  font-size: 18px;
  font-weight: 500;
}
.error-area .error-content-wrap .default-btn {
  padding: 12px 50px 13px;
}
.error-area .health-shape-1 {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
}

/*
Service Pagination CSS
==================================================*/
.service-pagination .pagination {
  justify-content: center;
  margin-top: 50px;
}
.service-pagination .pagination .page-item {
  margin-right: 15px;
  border-radius: 0;
}
.service-pagination .pagination .page-item .page-link {
  font-weight: 700;
  border: none;
  box-shadow: none;
  color: var(--paraColor);
  width: 45px;
  height: 45px;
  font-weight: 700;
  line-height: 34px;
  border-radius: 100%;
  text-align: center;
  transition: var(--transition);
  background-color: rgba(229, 232, 255, 0.45);
}
.service-pagination .pagination .page-item .page-link span {
  font-size: 25px;
  position: relative;
  top: 0;
  right: 0;
  color: var(--paraColor);
  transition: var(--transition);
}
.service-pagination .pagination .page-item .page-link.right span {
  right: 3px;
}
.service-pagination .pagination .page-item .page-link:hover {
  color: var(--primaryColor);
}
.service-pagination .pagination .page-item .page-link:hover span {
  color: var(--primaryColor);
}
.service-pagination .pagination .page-item:last-child {
  margin-right: 0;
}

/*
Page-navigation Area Style
======================================================*/
.pagination-area {
  margin-top: 20px;
}
.pagination-area .page-numbers {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  font-weight: 600;
  font-size: 18px;
  color: var(--paraColor);
  text-decoration: none;
  transition: var(--transition);
  border-radius: 50px;
  background-color: rgba(229, 232, 255, 0.45);
  border: none;
  position: relative;
}
.pagination-area .page-numbers i {
  font-size: 22px;
  font-weight: normal;
  color: var(--paraColor);
  transition: var(--transition);
}
.pagination-area .page-numbers:hover {
  color: var(--primaryColor);
  background-color: rgba(229, 232, 255, 0.45);
}
.pagination-area .page-numbers:hover i {
  color: var(--primaryColor);
}
.pagination-area .page-numbers.prev {
  top: 5px;
}
.pagination-area .page-numbers.next {
  top: 5px;
}
.pagination-area .page-numbers.next:hover {
  color: var(--primaryColor);
  background-color: rgba(229, 232, 255, 0.45);
}
.pagination-area .page-numbers:hover {
  color: var(--primaryColor);
  background-color: rgba(229, 232, 255, 0.45);
}
.pagination-area .page-numbers.current {
  color: var(--primaryColor);
  background-color: rgba(229, 232, 255, 0.45);
}
.pagination-area.mt-0 {
  margin-bottom: 0;
}

/*
Go Top Button CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 50%;
  right: 25px;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  width: 45px;
  height: 45px;
  opacity: 0;
  font-size: 25px;
  text-align: center;
  visibility: hidden;
  transition: var(--transition);
  line-height: 45px;
  border-radius: 100%;
  z-index: 4;
}
.go-top.active {
  top: 98%;
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}
.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: -1;
  background-color: var(--warning);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-radius: 100%;
}
.go-top:hover {
  color: var(--primaryColor);
}
.go-top:hover::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

/*
Timetable and Schedule CSS
===================================================*/
.calender-area .tab-content {
  position: relative;
  margin-left: -60px;
}

.table-sidebar h3 {
  color: var(--paraColor);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.72px;
}
.table-sidebar .nav-tabs {
  border: none;
  display: block !important;
  box-shadow: unset !important;
}
.table-sidebar .nav-tabs .nav-item {
  margin-bottom: 15px;
}
.table-sidebar .nav-tabs .nav-item .nav-link {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--primaryFont);
  color: var(--primaryColor);
  line-height: 1;
  border-radius: 5px;
  transition: var(--transition);
  border: 1px solid var(--primaryColor);
}
.table-sidebar .nav-tabs .nav-item .nav-link:hover, .table-sidebar .nav-tabs .nav-item .nav-link.active {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.doctor-calendar-table {
  background-color: transparent;
  border-radius: 30px;
  box-shadow: 6px 12px 37.7px 23px rgba(3, 2, 50, 0.03);
  border: none;
}
.doctor-calendar-table table {
  margin-bottom: 0;
  background-color: transparent;
}
.doctor-calendar-table table thead tr th {
  vertical-align: middle;
  text-align: center;
  color: var(--paraColor);
  border: none;
  font-size: 16px;
  font-weight: 600;
  padding-top: 17px;
  white-space: nowrap;
  padding-bottom: 15px;
  background-color: #d8eefd;
}
.doctor-calendar-table table thead tr th:first-child {
  border-radius: 20px 0 0 0;
}
.doctor-calendar-table table thead tr th:last-child {
  border-radius: 0 20px 0 0;
}
.doctor-calendar-table table tbody {
  border-radius: 0 0 20px 20px;
}
.doctor-calendar-table table tbody tr td {
  vertical-align: middle;
  padding: 20px 30px;
  text-align: center;
  border-top: none;
  white-space: nowrap;
  transition: var(--transition);
  border: 1px solid rgba(12, 27, 43, 0.05);
}
.doctor-calendar-table table tbody tr td.bg-color {
  background-color: #f3faff;
}
.doctor-calendar-table table tbody tr td:first-child {
  border-left: none;
}
.doctor-calendar-table table tbody tr td:last-child {
  border-right: none;
}
.doctor-calendar-table table tbody tr td h3 {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--primaryFont);
  margin-top: 5px;
  margin-bottom: 5px;
  color: #2b3e3e;
  transition: var(--transition);
  line-height: 1;
  letter-spacing: -0.36px;
}
.doctor-calendar-table table tbody tr td .name {
  color: var(--healthColor);
  font-size: 14px;
}
.doctor-calendar-table table tbody tr td .time {
  font-size: var(--fontSize);
  font-weight: 400;
  font-family: var(--primaryFont);
  color: var(--healthColor);
  display: inline-block;
  transition: var(--transition);
}
.doctor-calendar-table table tbody tr td:last-child td {
  border-bottom: none;
}
.doctor-calendar-table table tbody tr td:hover {
  background-color: var(--success);
  border-color: var(--success);
}
.doctor-calendar-table table:not(caption) {
  background-color: transparent;
}

.mptt-shortcode-wrapper {
  padding-left: 170px;
  position: relative;
}
.mptt-shortcode-wrapper.mptt-table-fixed {
  overflow-x: auto !important;
}
.mptt-shortcode-wrapper .mptt-navigation-tabs {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
}
.mptt-shortcode-wrapper .mptt-navigation-tabs li {
  border: none;
  display: block !important;
  box-shadow: unset !important;
  margin-bottom: 15px;
  padding: 0;
}
.mptt-shortcode-wrapper .mptt-navigation-tabs li a {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--primaryFont);
  color: var(--primaryColor);
  line-height: 1;
  border-radius: 5px;
  transition: var(--transition);
  border: 1px solid var(--primaryColor);
  padding: 7px 12px;
  display: inline-block;
}
.mptt-shortcode-wrapper .mptt-navigation-tabs li a:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.mptt-shortcode-wrapper .mptt-navigation-tabs li.active a {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}
.mptt-shortcode-wrapper .mptt-shortcode-table {
  background-color: var(--whiteColor);
  border-radius: 30px;
  box-shadow: 6px 12px 37.7px 23px rgba(3, 2, 50, 0.03);
  border: none;
  margin: 0;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tr.mptt-shortcode-row th {
  vertical-align: middle;
  text-align: center;
  color: var(--paraColor);
  border: none;
  font-size: 16px;
  font-weight: 600;
  padding-top: 17px;
  white-space: nowrap;
  padding-bottom: 15px;
  background-color: #d8eefd;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tr.mptt-shortcode-row th:first-child {
  border-radius: 20px 0 0 0;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tr.mptt-shortcode-row th:last-child {
  border-radius: 0 20px 0 0;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody tr {
  border: none;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody tr:last-child {
  border-radius: 30px;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody tr:first-child {
  border-radius: 30px;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody tr:first-child {
  border-radius: 30px;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody tr td {
  vertical-align: middle;
  padding: 0;
  text-align: center;
  border: none;
  white-space: nowrap;
  transition: all ease 0.5s;
  border-left: 1px solid rgba(12, 27, 43, 0.05);
  border-top: 1px solid rgba(12, 27, 43, 0.05);
  background-color: var(--whiteColor) !important;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody tr td:first-child {
  border-left: none !important;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody tr td.event {
  background-color: rgb(243, 250, 255) !important;
  transition: all ease 0.5s;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody tr td.event:hover {
  background-color: #cdedbc !important;
  border-color: #cdedbc;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody tr .mptt-shortcode-hours {
  background-color: var(--whiteColor) !important;
  padding: 20px 24px !important;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--primaryFont);
  color: var(--healthColor);
  transition: all ease 0.5s;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container {
  position: inherit;
  justify-content: center;
  padding: 20px 20px;
  outline: none;
  top: unset;
  left: unset;
  right: unset;
  height: auto !important;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-title {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--primaryFont);
  margin-top: 5px;
  margin-bottom: 5px;
  color: #2b3e3e;
  transition: var(--transition);
  line-height: 1;
  letter-spacing: -0.36px;
  transition: 0.7s;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-title:hover {
  color: var(--primaryColor);
  text-decoration: none;
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .event-subtitle {
  color: var(--healthColor);
  font-size: 14px;
  font-family: var(--primaryFont);
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container .timeslot {
  color: var(--healthColor);
  font-size: 14px;
  font-family: var(--primaryFont);
}
.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container:hover .event-title {
  text-decoration: none !important;
  color: var(--primaryColor);
}

.mptt-sidebar {
  padding: 27px 30px 5px;
  background-color: #f4f4f4;
  border-radius: 15px !important;
}
.mptt-sidebar .widgettitle {
  position: relative;
  color: var(--paragraphColor);
  font-family: var(--headingFont);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 2.8px;
  margin-bottom: 25px;
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
}
.mptt-sidebar .widget {
  margin-bottom: 30px;
}
.mptt-sidebar .widget ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.mptt-sidebar .widget ul li {
  font-size: 15px;
  display: block;
  border: none;
  margin-bottom: 18px;
}
.mptt-sidebar .widget ul li a {
  color: var(--paragraphColor);
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
}

.blog-details-content .timeslots-title {
  display: none;
}
.blog-details-content .timeslot {
  margin-bottom: 20px;
  display: none;
}
.blog-details-content .timeslot a {
  text-decoration: none;
}
.blog-details-content .events-list {
  list-style-type: none;
  display: none;
}
.blog-details-content .events-list li {
  list-style: none;
}
.blog-details-content .events-list li.event {
  list-style: none !important;
}

.serviceination-card-ld {
  display: none;
}

.lt-btn {
  color: var(--secondaryColor);
  display: inline-block;
  position: relative;
  box-shadow: unset !important;
  font-weight: 500;
  background-color: transparent;
  transition: var(--transition);
  padding: 14px 30px;
  z-index: 1;
  border: 1px solid var(--secondaryColor);
}
.lt-btn:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.ft-social-link {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.ft-social-link li {
  display: inline-block;
  margin-right: 10px;
}
.ft-social-link li:last-child {
  margin-right: 0;
}
.ft-social-link li a {
  color: var(--success);
  transition: 0.7s;
}
.ft-social-link li:hover a {
  color: var(--primaryColor);
}

/*
Preloader Area CSS
=================================================*/
.preloader-area {
  z-index: 9999;
  background-color: var(--success);
}
.preloader-area .loader {
  transform: translateY(-50%);
  top: 50%;
}
.preloader-area .wavy {
  font-size: 50px;
  margin-top: 10px;
  -webkit-box-reflect: below -35px linear-gradient(transparent, rgb(0, 81, 255));
}
.preloader-area .wavy span {
  font-weight: 700;
  font-family: var(--headingFont);
  color: var(--paraColor);
  animation-delay: 0.1s;
  animation: wavy 1s infinite;
}
.preloader-area .wavy span:nth-child(2) {
  animation-delay: 0.2s;
}
.preloader-area .wavy span:nth-child(3) {
  animation-delay: 0.3s;
}
.preloader-area .wavy span:nth-child(4) {
  animation-delay: 0.4s;
}
.preloader-area .wavy span:nth-child(5) {
  animation-delay: 0.5s;
}
.preloader-area .wavy span:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes wavy {
  0%, 40%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-20px);
  }
}
/*
Keyframes
=================================================*/
@keyframes pop {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes rotate-vertical {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}/*# sourceMappingURL=medak-main-style.css.map */