/***
====================================================================
	Reset
====================================================================
***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
  line-height: inherit;
}

.mobile-view {
  display: none;
}

:root {
  --color-default: #292929;
  --color-primary: #292929;
  --color-secondary: #484fa1;
  --color-teritary: #1999a0;
}

.container {
  position: relative;
}

.mobile-view {
  display: none;
}

/*** 
====================================================================
	Global Settings
====================================================================
 ***/
body {
  font-size: 16px;
  color: var(--color-default);
  line-height: 1.6em;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: "IBM Plex Sans", sans-serif;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--color-secondary);
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
  color: var(--color-teritary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: 600;
  margin: 0px;
  background: none;
  line-height: 1.2em;
}

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

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

ol,
li {
  margin: 0;
  padding: 0;
}

.top-wrap::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--color-teritary), var(--color-secondary), var(--color-teritary));
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 2;
}

.main-menu .navigation > li .active {
  color: var(--color-teritary);
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.page-wrapper {
  margin: 0 auto;
  width: 100%;
  min-width: 320px;
  overflow: hidden;
  position: relative;
}

.page-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -11;
  background-image: url(../gallery/bg.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  top: 0px;
  left: 0;
}

.top-wrap {
  position: relative;
  height: 100vh;
}

.top-border {
  width: 60%;
  height: 2px;
  position: relative;
  margin: auto;
  background: var(--color-secondary);
  z-index: 99;
}

.top-border::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: var(--color-secondary);
  top: -4px;
  transform: rotate(45deg);
}

.top-border::after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  right: 0;
  top: -3px;
}

/**header-main**/
.header-main {
  position: absolute;
  width: 100%;
  z-index: 5;
}

.header-one {
  position: relative;
}

.header-one .container {
  position: relative;
  max-width: 1200px;
}

.header-one .lower-box {
  position: relative;
  height: 100%;
}

.lower-box .logo {
  top: 30px;
  position: absolute;
  display: inline-block;
  z-index: 999;
  width: 399px;
}

.lower-box .nav-outer {
  position: relative;
  display: inline-block;
  text-align: right;
  margin-left: 0;
  width: 100%;
  padding: 0;
  margin-top: 0;
}

.nav-outer .mobile-nav-toggler {
  position: relative;
  display: none;
  float: right;
  cursor: pointer;
  padding: 25px 0;
}

.nav-outer .mobile-nav-toggler .inner {
  position: relative;
  display: block;
  padding: 3px 5px;
}

.main-menu {
  position: relative;
  display: inline-block;
  text-align: center;
  margin: 58px 0 0;
  top: 0;
}

.main-menu .navbar-collapse {
  padding: 0px;
  display: block !important;
}

.main-menu .navigation {
  position: relative;
  display: block;
  padding: 3px 11px;
}

.main-menu .navigation > li {
  position: relative;
  display: inline-table;
  padding: 10px 0px;
}

.main-menu .navigation > li > a:hover {
  color: var(--color-primary);
}

.main-menu .navigation > li > a {
  position: relative;
  display: block;
  font-size: 19px;
  line-height: 30px;
  border-right: 0px;
  padding: 0px 10px;
  opacity: 1;
  color: var(--color-default);
  border-radius: 5px;
}

.main-menu .navigation > li > a i {
  font-size: 14px;
  color: var(--color-primary);
}

/*** 
========================================
    Mobile Menu
========================================
***/
.nav-outer .mobile-nav-toggler {
  position: relative;
  display: none;
  float: right;
  cursor: pointer;
  padding: 25px 0;
}

.nav-outer .mobile-nav-toggler .inner {
  position: relative;
  display: block;
  padding: 3px 5px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 100%;
  height: 100%;
  padding-right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}

.mobile-menu .menu-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #555555;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 0.7;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .mCSB_inside > .mCSB_container {
  margin-right: 5px;
}

.mobile-menu .navbar-collapse {
  display: block !important;
}

.mobile-menu .nav-logo {
  position: relative;
  padding: 30px 25px;
  text-align: left;
}

.mobile-menu .nav-logo a {
  position: relative;
  display: inline-block;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-teritary));
  padding: 45px 0px 100px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
  z-index: 90;
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > ul > li {
  border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  padding: 10px 18px;
  color: #ffffff;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.5px;
  font-weight: 400;
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li.current > a:before {
  height: 100%;
}

.mobile-menu .navigation li ul li > a {
  font-size: 15px;
  font-weight: 400;
  margin-left: 20px;
  text-transform: capitalize;
  position: relative;
  color: var(--color-default);
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  color: var(--color-teritary);
  font-size: 16px;
  line-height: 32px;
  background: #fff;
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
  display: none;
  background: #fff;
}

.main-menu .navigation > li > .custom-width {
  width: 133px;
}

.main-menu .navigation > li > ul.cstmwidth {
  width: 105px;
}

.main-menu .navigation > li > ul.cstmwidth1 {
  width: 235px;
}

.main-menu .navigation > li > ul > li > a:hover {
  padding-left: 30px;
}

.main-menu .navigation > li > ul {
  position: absolute;
  top: 100%;
  visibility: hidden;
  left: 0;
  width: 270px;
  opacity: 0;
  z-index: 100;
  background-color: var(--color-teritary);
  box-shadow: 0px 0px 5px #a5a5a5;
}

.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  top: 0%;
  visibility: hidden;
  left: 100%;
  width: 300px;
  opacity: 0;
  z-index: 100;
  background-color: var(--color-teritary);
  box-shadow: 0px 0px 5px #a5a5a5;
}

.main-menu .navigation > li.dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li.dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d6d6d621;
}

.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d6d6d621;
}

.main-menu .navigation > li > ul > li > a:hover {
  background: linear-gradient(45deg, var(--color-secondary), var(--color-teritary));
  color: #fff;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover {
  background: linear-gradient(45deg, var(--color-secondary), var(--color-teritary));
  color: #fff;
}

.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 5px 20px;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: #ffffff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.right-icon i {
  position: absolute;
  right: 20px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  height: fit-content;
}

.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 5px 20px;
  line-height: 24px;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  color: #ffffff;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li:last-child {
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li:last-child {
  border-bottom: none;
}

/*
* 4. banner style
*/
.banner-wrapper {
  position: relative;
}

.banner-one__slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.slide-one {
  background-image: url(../gallery/banners/banner1.png);
}

.slide-two {
  background-image: url(../gallery/banners/banner2.png);
}

/***
====================================================================
	Scroll To Top style
====================================================================
***/
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  color: #ffffff;
  font-size: 20px;
  line-height: 48px;
  text-align: center;
  z-index: 9999;
  cursor: pointer;
  background: var(--color-secondary);
  display: none;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.scroll-to-top:hover {
  background: var(--color-secondary);
}

.sec-head {
  position: relative;
}

.sec-head h3 {
  font-weight: 400;
  font-size: 20px;
  display: inline-block;
  background: linear-gradient(to left, var(--color-secondary), var(--color-teritary));
  background-color: var(--color-secondary);
  padding: 2px 14px;
  color: #fff;
}

.sec-head h1 {
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: -10px;
}

.sec-head h2 {
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-secondary);
  margin: 5px 0px;
}

.sec-head p {
  width: 555px;
  font-size: 16px;
  margin: auto;
}

.about-sec {
  position: relative;
  margin-bottom: 40px;
}

.about-sec .sec-head h1 {
  color: var(--color-secondary);
  text-transform: uppercase;
  font-size: 63px;
  font-family: "Cinzel", serif;
  margin-top: 10px;
  font-weight: 500;
}

.abt-matter p {
  line-height: 35px;
}

.abt-matter p a {
  font-weight: 500;
}

.mvv-sec {
  position: relative;
  margin-bottom: 80px;
}

.mvv-txt-head {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 66px 15px;
}

.mvv-blk {
  position: relative;
  cursor: pointer;
}

.mvv-txt-btm {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
}

.mvv-txt-head h2 {
  /* color: var(--color-secondary); */
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 51px;
  line-height: 39px;
  font-weight: 300;
  margin-bottom: 7px;
}

.mvv-img img {
  filter: brightness(0) invert(1);
}

.mvv-txt-btm p {
  color: #fff;
  margin-bottom: 0px;
  font-size: 15px;
}

.mvv-txt-head h3 {
  font-weight: 400;
  /* color: var(--color-primary); */
  color: #fff;
  font-size: 19px;
}

.mvv-block {
  position: relative;
  border-radius: 7px;
}

.mvv-block::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(/gallery/numb-bg.jpg);
  background-position: center;
  top: 0px;
  left: 0px;
  background-size: cover;
  z-index: -2;
  border-radius: 7px;
  /* background-attachment: fixed; */
}

.mvv-block::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-teritary));
  top: 0px;
  left: 0px;
  background-size: contain;
  border-radius: 7px;
  z-index: -1;
  opacity: 0.3;
}

.mvv-box {
  /* background: linear-gradient(45deg,var(--color-secondary),var(--color-teritary)); */
  padding: 30px;
  position: relative;
  border-radius: 7px;
}

.mvv-box::before {
  content: " ";
  position: absolute;
  width: 88%;
  height: 50%;
  box-shadow: 0px 16px 20px #0000004a;
  bottom: 0px;
  right: 0px;
  margin: auto;
  left: 0px;
  z-index: -2;
}

.mvv-img {
  position: relative;
}

.mvv-img::before {
  content: " ";
  position: absolute;
  width: 92%;
  height: 83%;
  /* background: linear-gradient(to top, var(--color-teritary), #ffffff00); */
  /* background: linear-gradient(to top, #f5f5f5,#f5f5f5, #ffffff00); */
  bottom: 6px;
  left: 0px;
  right: 0px;
  margin: auto;
  border-radius: 12px;
  opacity: 0.9;
}

.serv-sec {
  position: relative;
  margin-bottom: 100px;
  padding: 65px 0;
}

.serv-sec .sec-head h2,
.serv-sec .sec-head p {
  color: #fff;
}

.serv-sec .sec-head p a {
  color: #fff;
  font-weight: 500;
}

.serv-top-img {
  position: absolute;
  margin-top: -96px;
  left: 0;
  top: 0;
}

.serv-btm-img {
  position: absolute;
  margin-bottom: -96px;
  right: 0;
  bottom: 0;
  transform: scaleX(-1) scaleY(-1);
}

.serv-sec::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../gallery/serv-bg-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.3;
}

.serv-sec::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  /* background: linear-gradient(to right,#291a99,var(--color-teritary)); */
  background: linear-gradient(to right, #2f3690, var(--color-teritary));
  top: 0;
  left: 0;
  z-index: -2;
}

.doc-row {
  position: relative;
  padding-top: 55px;
}

.doc-row .doc-txt,
.doc-row1 .doc-txt {
  padding: 15px 0;
}

.doc-row .doc-txt::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 145%;
  top: 0;
  left: -124px;
  background: linear-gradient(to left, #6c648b00, #6d658b21);
  z-index: -1;
}

.doc-row1 .doc-txt::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 145%;
  top: 0;
  right: -124px;
  background: linear-gradient(to right, #6c648b00, #6d658b21);
  z-index: -1;
}

.doc-row1 {
  margin-top: -50px;
}

.serv-blk .serv-img {
  transition: all 500ms ease;
}

.serv-row {
  padding-top: 25px;
}

.serv-blk:hover .serv-img {
  filter: grayscale(1);
  transform: scale(1.05);
}

.serv-blk:hover .serv-info a {
  background: #fff;
  color: var(--color-secondary);
}

.serv-blk {
  position: relative;
  cursor: pointer;
  margin: 30px 6px;
}

.serv-info {
  position: absolute;
  bottom: 7%;
  left: -11px;
  padding: 0px 25px;
}

.serv-info h2 {
  color: #fff;
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.serv-info p {
  color: #fff;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 21px;
  font-weight: 300;
}

.serv-info a {
  background: var(--color-teritary);
  color: #fff;
  font-size: 15px;
  padding: 3px 10px;
  transition: all 500ms ease;
}

.serv-row .serv-blk1 .serv-info {
  bottom: initial;
  top: 7%;
}

.serv-scroll .owl-dots {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.serv-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 30px;
  border: 2px solid #fff;
  opacity: 1;
  margin: -13px 2px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  background: var(--color-secondary);
}

.serv-scroll .owl-dot:hover,
.serv-scroll .owl-dot.active {
  opacity: 1;
  border: 2px solid var(--color-teritary);
}

.serv-btm {
  margin-top: 30px;
  padding: 30px 105px 30px;
  position: relative;
}

.serv-btm::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
}

.serv-btm h2 {
  color: #ffffff8c;
  font-weight: 300;
}

.appointment-form h2 {
  font-weight: 500;
  color: #fff;
}

.appointment-form p {
  font-size: 16px;
  color: #fff;
}

.appointment-form p a {
  color: #fff;
  font-weight: 500;
}

.appointment-form {
  padding: 45px 40px 25px;
  position: relative;
}

.btn-style-one {
  margin-top: 25px;
  background: #fff;
  color: var(--color-secondary);
  padding: 2px 10px;
  border-radius: 24px;
}

.form-group i {
  position: absolute;
  left: 25px;
  top: 15px;
  color: #eeeeeef0;
  font-size: 15px;
}

.custom-select {
  position: relative;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: transparent;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #ffffff transparent transparent transparent;
}

.appointment-form textarea {
  height: 100px;
}

.appointment-form .form-control::placeholder {
  color: #eeeeeef0;
}

.appointment-form .form-control {
  color: #eeeeeef0;
  border-bottom: none;
  background: #00000000;
  border-bottom: 1px solid #f5f5f53b;
  border-radius: 0px;
  padding: 11px 35px;
  font-size: 15px;
}

::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #ffffff transparent;
  top: 7px;
}

.select-selected {
  color: #eeeeeef0;
  padding: 0px 0px;
  font-family: "IBM Plex Sans", sans-serif;
  border-color: transparent transparent rgba(0, 0, 0) transparent;
  cursor: pointer;
  user-select: none;
  text-align: justify;
}

.select-items div {
  color: #000000;
  padding: 4px 12px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
  text-align: left;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
}

.select-items {
  position: absolute;
  background-color: #f2f2f2;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  font-family: "IBM Plex Sans", sans-serif;
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: var(--color-teritary);
  color: #fff !important;
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 10px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background-color: transparent;
  border-bottom: 1px solid #ced4da93;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.appont-add-sec {
  position: relative;
  margin-bottom: 115px;
}

.appont-add-box {
  position: relative;
  background: linear-gradient(to right, var(--color-secondary), var(--color-secondary), var(--color-teritary));
  padding: 30px;
}

.appont-add-box::before {
  content: " ";
  position: absolute;
  width: 20%;
  height: 100%;
  bottom: 0px;
  top: 0px;
  right: 0px;
  margin: auto;
}

.appont-add-box::after {
  content: " ";
  position: absolute;
  width: 88%;
  height: 50%;
  box-shadow: 0px 16px 20px #0000004a;
  bottom: 0px;
  right: 0px;
  margin: auto;
  left: 0px;
  z-index: -2;
}

.widget-title {
  position: relative;
  margin-bottom: 19px;
}

.widget-title h2 {
  position: relative;
  color: #fff;
  text-transform: capitalize;
  margin: 0 0;
  font-size: 30px;
  font-weight: 500;
}

.widget-title h2::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 38px;
  height: 2px;
  width: 90px;
  border-bottom: 2px solid #fff;
}

.address {
  position: relative;
  margin-bottom: 31px;
  padding-left: 44px;
  font-size: 16px;
}
.address a {
  color: #fff;
}

.address i {
  position: absolute;
  left: 0px;
  width: 32px;
  height: 32px;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-teritary));
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  line-height: 31px;
}

.address-box {
  position: relative;
  padding: 40px 45px;
  border-radius: 10px;
  color: #fff;
}

.address-box::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/contact-bg.png);
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(1);
  background-size: contain;
  opacity: 0.15;
}

.appont-row {
  position: relative;
  z-index: 1;
}

.appont-row .col-md-5:nth-child(3)::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to top, #ffffff00, #fff, #ffffff00);
  left: -30px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.contact-social-links p {
  position: relative;
  top: 0px;
  left: -113px;
  font-size: 19px;
  color: #fff;
}

.contact-social-links {
  position: relative;
  margin-top: 30px;
  text-align: center;
}

.contact-social-links li {
  display: inline-flex;
  margin-right: 5px;
}

.contact-social-links li a {
  position: relative;
  left: 0px;
  width: 32px;
  height: 32px;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-teritary));
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  line-height: 31px;
}

.contact-social-links li img {
  width: 15px;
  filter: brightness(0) invert(1);
}

.appont-outer {
  position: relative;
}

.appont-outer::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/appnt-bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: 0px;
  top: 0px;
  opacity: 0.18;
  filter: grayscale(1);
  z-index: 1;
}

.faq-sec {
  position: relative;
  margin-bottom: 100px;
}

.faq-row {
  padding-top: 25px;
}

.faq-blk {
  position: relative;
}

.faq-txt {
  position: absolute;
  bottom: 30px;
}

.faq-txt h2 {
  font-weight: 600;
  font-size: 19px;
  color: var(--color-secondary);
}

.faq-txt p {
  font-size: 15px;
}

.blogs-sec {
  position: relative;
  margin-bottom: 80px;
}

.blog-row {
  padding-top: 20px;
}

.blog-info {
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  padding: 20px 6px 24px 105px;
}

.blog-info p {
  font-size: 14px;
  margin-bottom: 0px;
  line-height: 22px;
}

.blog-info h2 {
  font-size: 18px;
  color: var(--color-secondary);
  font-weight: 500;
}

.blog-block {
  position: relative;
}

.blog-info a {
  /* background: var(--color-primary); */
  background: linear-gradient(45deg, var(--color-secondary), var(--color-teritary));
  color: #fff;
  font-size: 13px;
  padding: 2px 7px;
}

.docs-sec {
  position: relative;
  margin-bottom: 100px;
}

.docs-sec .sec-head p a {
  font-weight: 500;
}

.main-footer {
  position: relative;
}

.main-footer::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(/gallery/favicon.png);
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.06;
  filter: grayscale(1);
}

.footer-logo {
  position: relative;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 355px;
}

.footer-about p {
  line-height: 30px;
  font-size: 16px;
}

.footer-about p a {
  font-weight: 500;
}

.footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

.footer-newsletter form input[type="submit"] {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: 0 0;
  font-size: 16px;
  padding: 0 20px;
  background-color: var(--color-teritary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.footer_links {
  text-align: center;
  padding-top: 25px;
}

.footer_links ul {
  display: inline-block;
  padding: 6px 10px;
  margin: 0 0 15px;
}

.footer_links ul li {
  display: inline-block;
  line-height: 35px;
}

.footer_links ul li a {
  font-size: 17px;
  line-height: 19px;
  padding: 0 11px;
  color: var(--color-default);
  position: relative;
}

.footer_links ul li a:hover {
  color: var(--color-teritary);
}

.footer-bottom p {
  margin-bottom: 0px;
  display: inline-block;
  color: #000000ce;
  padding: 6px 17px;
  font-size: 15px;
}

.footer-bottom p a {
  color: var(--color-teritary);
}

.footer-links-head h2 {
  font-size: 19px;
  /* border-bottom: 2px solid var(--color-secondary); */
  display: inline-block;
  padding: 5px 11px;
  color: #323232;
  font-weight: 500;
  border-radius: 30px;
  box-shadow: 0px 0px 2px #000;
  border-bottom: 5px solid var(--color-teritary);
}

.footer_links ul li a::before {
  content: " ";
  position: absolute;
  width: 8px;
  height: 1px;
  background: var(--color-primary);
  top: 0;
  bottom: 0;
  right: -7px;
  margin: auto;
}

.footer_links ul li:nth-child(4) a::before,
.footer_links ul li:nth-child(6) a::before {
  display: none;
}

.doc-txt h2 {
  color: var(--color-secondary);
  text-transform: uppercase;
}

.doc-img {
  position: relative;
  padding: 8px;
  padding-bottom: 0px;
}

.doc-txt p {
  margin-bottom: 0px;
}

.docs-row {
  padding-top: 45px;
  position: relative;
}

.docs-row::before {
  content: " ";
  position: absolute;
  width: 50%;
  height: 80px;
  background: linear-gradient(to right, #ffffff00, var(--color-teritary), #ffffff00);
  left: 0px;
  right: 0px;
  margin: auto;
}

.top-social {
  position: absolute;
  z-index: 91;
  text-align: center;
  top: 21px;
  right: 28px;
  width: auto;
  display: inline-flex;
}

.top-social::before {
  content: " ";
  position: absolute;
  width: 20%;
  height: 1px;
  background: var(--color-secondary);
  left: -76px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.top-social::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-secondary);
  left: -76px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.top-social li {
  display: inline-block;
  margin-right: 1px;
}

.top-social li:last-child {
  border-right: 0;
}

.top-social li img {
  filter: brightness(0) invert(1);
}

.top-social li a {
  display: block;
  width: 34px;
  height: 34px;
  color: #fff;
  text-align: center;
  line-height: 34px;
  font-size: 14px;
  margin: 0px 1px;
  background: linear-gradient(to left, var(--color-secondary), var(--color-teritary));
  border-radius: 50%;
}

.top-social li a img {
  width: 15px;
}

.top-social span {
  line-height: 33px;
  display: block;
  margin-right: 10px;
}

.top-social li a:hover {
  color: #fff;
}

.extra-sec {
  position: relative;
  margin-bottom: 75px;
  min-height: 55vh;
}

.doc-img img {
  border-radius: 50%;
}

.doc-main-row {
  padding-top: 30px;
  margin-bottom: 30px;
  position: relative;
}

.doc-main-row .col-md-3:nth-child(2) .doc-txt::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 71%;
  background: linear-gradient(to left, #6c648b00, #6d658b21);
  left: -48px;
  top: 0px;
  z-index: -1;
  bottom: 0px;
  margin: auto;
}

.doc-main-row .col-md-3:nth-child(3) .doc-txt::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 71%;
  background: linear-gradient(to right, #6c648b00, #6d658b21);
  right: -48px;
  top: 0px;
  z-index: -1;
  bottom: 0px;
  margin: auto;
}

.doc-main-row1 .col-md-3:nth-child(1) .doc-txt::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 71%;
  background: linear-gradient(to right, #6c648b00, #6d658b21);
  right: -48px;
  top: 0px;
  z-index: -1;
  bottom: 0px;
  margin: auto;
}

.doc-main-row1 .col-md-3:nth-child(4) .doc-txt::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 71%;
  background: linear-gradient(to left, #6c648b00, #6d658b21);
  left: -48px;
  top: 0px;
  z-index: -1;
  bottom: 0px;
  margin: auto;
}

.doc-txt {
  text-align: center;
  padding: 40px 0px;
}

.team_list {
  position: relative;
}

.team_row {
  /* align-items: center;
  align-self: center;
  justify-self: center;
  justify-items: center;
  justify-content: center; */
  margin: 0px;
}

.team_img {
  position: relative;
  display: inline-block;
  border-radius: 50%;
}

.team_img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 6px;
  top: -10px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
}

.team_img img {
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0px 14px 4px -10px #0000006e;
}

.team_doc_info {
  position: relative;
}

.team_doc_info h3 {
  color: var(--color-teritary);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}

.team_doc_info p {
  color: var(--color-default);
  padding: 1px 0;
  line-height: 24px;
  position: relative;
  margin-bottom: 0px;
  font-size: 16px;
}

.team_doc_info h4 {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 16px;
  margin-top: 2px;
  margin-bottom: 8px;
}

.team_rowmainrow {
  padding-top: 15px;
}

.team_rowmainrow .col-md-6.team-side:nth-child(1):before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: var(--color-secondary);
  border-radius: 50%;
  z-index: 1;
}

.team_row {
  position: relative;
}

.team_rowmainrow {
  padding-top: 25px;
}

.team_rowmainrow .col-md-6.team-side {
  padding: 35px 5px;
  border-right: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
}

.team_rowmainrow .col-md-6.team-side:nth-child(2),
.team_rowmainrow .col-md-6.team-side:nth-child(4) {
  border-right: none;
}

.team_rowmainrow .col-md-6.team-side:nth-child(3),
.team_rowmainrow .col-md-6.team-side:nth-child(4) {
  border-bottom: none;
}

.team_rowmainrow .col-md-6:nth-child(2) .team_row .col-md-6:nth-child(1) {
  padding-left: 0px;
  padding-right: 0px;
}

.team_row .col-md-6 {
  padding: 0px 8px;
}

.team_rowmainrow .col-md-6:nth-child(3) .team_row .col-md-6.team-side:nth-child(1) .team_doc_info {
  text-align: right;
}

.team_rowmainrow .col-md-6:nth-child(2) .team_row .col-md-6:nth-child(1) .team_doc_info {
  text-align: right;
}

.team_doc_info a {
  background: var(--color-teritary);
  color: #fff;
  font-size: 14px;
  padding: 3px 5px;
}

.team_rowmainrow .col-md-6.team-side:nth-child(1),
.team_rowmainrow .col-md-6.team-side:nth-child(4) {
  background: #484fa10d;
}

.team_rowmainrow .col-md-6.team-side:nth-child(2) {
  background: #1999a00a;
}

.team_list:hover .team_img {
  transform: scale(1.05);
}

.team_list .team_img {
  transition: all 500ms ease;
  position: relative;
  cursor: pointer;
  margin: 32px 0px;
}

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

.gastric-sec {
  position: relative;
}

.ad-sec .left li {
  text-align: right;
  border-right: 2px solid var(--color-default);
  padding-right: 15px;
  position: relative;
  background: linear-gradient(to left, #f6f6f6, #ffffff00);
  background: -webkit-linear-gradient(to left, #f6f6f6, #ffffff00);
  padding: 13px 15px 13px 0px;
  font-size: 14px;
  line-height: 22px;
}

.left li:nth-child(1) {
  margin-right: 35px;
}

.left li:nth-child(2) {
  margin-right: 55px;
}

.right li:nth-child(2) {
  margin-left: 68px;
  margin-bottom: 14px !important;
}

.ad-sec .left li,
.ad-sec .right li {
  margin-bottom: 90px;
}

.ad-sec .left li::before {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  background-color: var(--color-primary);
  border-radius: 50%;
  border: 1px solid var(--color-default);
  top: 0;
  bottom: 0;
  margin: auto;
  right: -118px;
}

.ad-sec .left li span,
.ad-sec .right li span {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 500;
  color: var(--color-teritary);
}

.ad-sec .left li::after {
  content: "";
  position: absolute;
  width: 105px;
  height: 2px;
  top: 0;
  bottom: 0;
  right: -106px;
  margin: auto;
  border-top: 1px dashed;
}

.ad-sec .right li {
  text-align: left;
  border-left: 2px solid var(--color-default);
  padding-left: 15px;
  position: relative;
  background: linear-gradient(to right, #f6f6f6, #ffffff00);
  background: -webkit-linear-gradient(to right, #f6f6f6, #ffffff00);
  padding: 13px 0px 13px 15px;
  font-size: 14px;
  line-height: 22px;
}

.right li:nth-child(1) {
  margin-left: 35px;
}

.ad-sec .right li::before {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  background-color: var(--color-primary);
  border-radius: 50%;
  border: 1px solid var(--color-default);
  top: -1px;
  bottom: 0;
  margin: auto;
  left: -118px;
}

.ad-sec .right li::after {
  content: "";
  position: absolute;
  width: 105px;
  height: 2px;
  top: 0;
  bottom: 0;
  left: -106px;
  margin: auto;
  border-top: 1px dashed;
}

.center-gut-image {
  position: relative;
  z-index: -1;
}

.gastric-row {
  padding-top: 20px;
}

.gastric-head p {
  line-height: 30px;
}

.gastric-head h2 {
  color: var(--color-secondary);
  margin-bottom: 10px;
  font-size: 50px;
}

.gastric-block {
  position: relative;
}

.gastric-block::before {
  content: " ";
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(to bottom, #1999a09c, #ffffff00);
  opacity: 0.1;
  border-radius: 50%;
  top: 88px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: -1;
}

.left-icon1 img {
  width: 45px;
  margin-bottom: 10px;
}

.left-icon1 {
  position: relative;
  z-index: 1;
}

.left-icon1::before {
  content: " ";
  position: absolute;
  width: 60px;
  height: 60px;
  background: #f5feff;
  border-radius: 50%;
  z-index: -1;
  right: 0px;
  top: -7px;
}

.right-icon1 img {
  width: 45px;
  margin-bottom: 10px;
}

.right-icon1 {
  position: relative;
  z-index: 1;
}

.right-icon1::before {
  content: " ";
  position: absolute;
  width: 60px;
  height: 60px;
  background: #f5feff;
  border-radius: 50%;
  z-index: -1;
  left: 0px;
  top: -7px;
}

.gynec-img-side img {
  border-radius: 200px 200px 0px 0px;
  box-shadow: 17px 17px 20px -10px #000000a1;
}

.gynec-side-ad::before {
  content: " ";
  position: absolute;
  width: 92%;
  height: 94%;
  border: 1px solid var(--color-secondary);
  border-radius: 220px 220px 0px 0px;
  left: -24px;
  top: -23px;
  z-index: -1;
}

.gynec-sec {
  position: relative;
  margin-bottom: 100px;
}

.acne-head span {
  font-size: 29px;
  font-weight: 300;
  color: #fff;
  background: linear-gradient(to left, var(--color-secondary), var(--color-teritary));
  text-transform: capitalize;
  padding: 3px 10px;
}

.acne-head h2 {
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-secondary);
  font-size: 50px;
  display: block;
}

.acne-side-content h3 {
  font-size: 21px;
  color: var(--color-secondary);
  margin-bottom: 6px;
}

.acne-side-content p {
  font-size: 15px;
}

.gynec-side-ad {
  position: relative;
  right: -30px;
}

.abt-extra-content-left {
  position: relative;
  margin-bottom: 10px;
  margin-top: 18px;
}

.abt-extra-content-left {
  margin-bottom: 10px;
  margin-top: 18px;
}

.abt-extra-content-left {
  position: relative;
}

.abt-extra-content-left p {
  margin-bottom: 0px;
}

.abt-extra-box {
  padding: 25px 5px;
  font-size: 17px;
  position: relative;
  transition: all 0.4s ease 0s;
  cursor: pointer;
}

.abt-extra-box::before {
  content: " ";
  position: absolute;
  width: 85px;
  height: 85px;
  opacity: 0.07;
  z-index: -1;
  left: 0px;
  right: 0px;
  margin: auto;
  border-radius: 50%;
  transform: rotate(45deg);
}

.abt-extra-box:hover::after {
  width: 30%;
}

.abt-extra-content-right::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 183%;
  top: 8px;
  background: var(--color-secondary);
  left: -32px;
}

.abt-extra-icon {
  position: relative;
  margin-bottom: 5px;
}

.abt-extra-icon img {
  width: 45px;
  filter: grayscale(1);
}

.abt-matter {
  margin-bottom: 30px;
}

.abt-extra-content-left .col-md-4:nth-child(1)::before,
.abt-extra-content-left .col-md-4:nth-child(2)::before,
.abt-extra-content-left .col-md-4:nth-child(4)::before,
.abt-extra-content-left .col-md-4:nth-child(5)::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to top, #ffffff00, #1998a0, #ffffff00);
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.abt-extra-content-left .col-md-4:nth-child(1)::after,
.abt-extra-content-left .col-md-4:nth-child(2)::after,
.abt-extra-content-left .col-md-4:nth-child(3)::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #ffffff00, #1998a0, #ffffff00);
  right: 0px;
  left: 0px;
  bottom: 0px;
  margin: auto;
}

.test-sec {
  position: relative;
  margin-bottom: 100px;
}

.test-txt {
  padding: 151px 45px 130px 0px;
}

.test-txt::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../gallery/test-right.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: 38%;
  top: 0px;
}

.test-txt p {
  margin-bottom: 0px;
  font-size: 15px;
}

.test-right-img {
  position: relative;
  padding-left: -25px;
}

.testi-star {
  color: var(--color-secondary);
}

.test-txt h2 {
  color: var(--color-teritary);
}

.usefull {
  text-align: center;
  position: relative;
  border-top: 1px solid #0000001f;
  padding-top: 10px;
}

.useful-links {
  display: inline-block;
  /* margin: 16px 0 0px; */
  margin-bottom: 10px;
  padding: 6px 7px;
}

.footer-newsletter {
  margin-bottom: 15px;
}

.useful-ul {
  text-align: center;
  margin: 0;
  padding: 0;
  display: inline;
}

.useful-links span {
  display: inline-block;
  margin-right: 20px;
  text-transform: uppercase;
  color: #1e2123;
  font-weight: 600;
  font-size: 20px;
}

.usefull .useful-ul li {
  display: inline-block;
  margin-bottom: 8px;
}

.usefull .useful-ul li a:hover {
  color: var(--color-secondary);
}

.usefull .useful-ul li a {
  padding: 0 7px;
  border-right: 1px solid #818181;
  color: #1e2123;
  font-size: 16px;
}

.usefull .useful-ul li:last-child a {
  border-right: 0px;
}

.useful-links span {
  display: inline-block;
  margin-right: -5px;
  text-transform: uppercase;
  color: var(--color-teritary);
  font-weight: 600;
  font-size: 20px;
}

.mobile-menu-visible .mobile-menu .mbl-contact {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mbl-contact {
  position: relative;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  text-align: left;
  bottom: 0px;
  width: 100%;
  transition: all 0.7s ease;
  transform: translateX(101%);
}

.mbl-contact span {
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
  display: block;
  padding-bottom: 7px;
  font-size: 18px;
}

.mbl-contact::before {
  content: " ";
  position: absolute;
  width: 85%;
  height: 1px;
  background: #ffffff47;
  top: 99px;
  left: 0px;
}

.mbl-contact li {
  display: inline-block;
  margin-right: 1px;
}

.mbl-contact li a {
  display: block;
  color: #ffffffcf;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.mobile-menu-visible .mobile-menu .top-social1 {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.top-social1 {
  position: relative;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  text-align: left;
  bottom: -30px;
  width: 100%;
  transition: all 0.7s ease;
  transform: translateX(101%);
}

.top-social1 span {
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
  display: block;
  padding-bottom: 7px;
  font-size: 18px;
}

.top-social1 li {
  display: inline-block;
  margin-right: 1px;
}

.top-social1 li:last-child {
  border-right: 0;
}

.top-social1 li a {
  display: block;
  width: 34px;
  height: 32px;
  color: #ffffffcf;
  text-align: center;
  line-height: 31px;
  font-size: 14px;
  margin: 0px 1px;
  border: 1px solid #ffffff8a;
  border-radius: 5px;
}

.top-social1 li a img {
  width: 15px;
  filter: brightness(0) invert(1);
}

.top-social1 li a:hover {
  color: var(--color-secondary);
}

.mbl-menu-btm {
  position: relative;
  padding-left: 20px;
  padding-top: 115px;
}

.fac-sec {
  position: relative;
  margin-bottom: 100px;
  /* min-height: 45vh; */
}

.fac-row {
  padding-top: 30px;
  position: relative;
}

.fac-row::before {
  content: " ";
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(to bottom, #dff9fa, #ffffff00);
  border-radius: 50%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: -1;
}

.fac-row::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/fac-bg.png);
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
  filter: grayscale(1);
  background-size: auto;
}

.fac-img {
  margin-bottom: 40px;
}

.fac-scroll .owl-dots {
  position: relative;
  left: 0;
  bottom: 37px;
  width: 100%;
  text-align: center;
  margin-top: 0px;
}

.fac-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 20px;
  border: 2px solid var(--color-teritary);
  opacity: 1;
  margin: -13px 2px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  background: var(--color-secondary);
}

.fac-scroll .owl-dot:hover,
.fac-scroll .owl-dot.active {
  opacity: 1;
  border: 2px solid var(--color-secondary);
}

.fac-hos-img {
  position: relative;
}

.fac-hos-img::before {
  content: " ";
  position: absolute;
  width: 99%;
  height: 99%;
  /* background: linear-gradient(45deg, #484fa1, #1a99a000); */
  background: linear-gradient(45deg, #19989f, #1a99a000);
  z-index: 1;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  opacity: 0.7;
}

.fac-hos-img img {
  filter: grayscale(1);
  border: 3px solid #ffffff;
  box-shadow: 0px 14px 15px -10px #8a8a8a;
}

.addre-widget1 h4 {
  color: #fff;
  margin-bottom: 10px;
}

.addre-widget1 .address {
  color: #fff;
  font-size: 16px;
}

.left-abt-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.left-abt-content a {
  color: #fff;
  border: 1px solid;
  padding: 6px 15px;
  font-weight: 500;
}

.left-abt-content p {
  color: #fff;
}

.footer-upper-out::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #d2d2d2;
  top: -7px;
  left: -9px;
  z-index: -1;
}

.footer-upper-out .col-md-4:nth-child(2) {
  padding-right: 0px;
}

.footer-upper-out {
  position: relative;
  background: linear-gradient(to right, var(--color-secondary), var(--color-teritary));
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 10px 10px -10px #000;
}

.footer-qr img {
  width: 130px;
}

.addre-widget1 {
  position: relative;
}

.addre-widget1::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to top, #ffffff00, #fff, #ffffff00);
  left: -25px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.addre-widget1 .address {
  margin-bottom: 0px;
}

.footer-upper {
  position: relative;
  margin-bottom: 50px;
}

.footer-qr h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 7px;
}

.facilities-btm h2 {
  background: #363636;
  padding: 7px 21px;
  font-weight: 300;
  font-size: 21px;
  color: #fff;
  display: inline-block;
  letter-spacing: 1px;
}

.inner-section {
  position: relative;
  min-height: 47vh;
  padding: 170px 0 80px;
}

.top-wrap1 {
  position: relative;
}

.bread_cumb_wrap {
  position: relative;
  text-align: right;
  left: 0;
  right: 0;
  padding: 251px 0 140px;
  margin: 0px 0px 15px;
}

/* .bread_cumb_wrap::before{
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%; 
  background-position: center ;
  background-size: contain;
  left: 0px;
  top: 0px;
  z-index: -2;   
} */
.bread_cumb_wrap.contact-page::before {
  background-image: url(../gallery/breadcrumbs-bg/contact.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.testimonials-page::before {
  background-image: url(../gallery/breadcrumbs-bg/testimonials.png);
  z-index: -2;
}

.bread_cumb_wrap.images-page::before {
  background-image: url(../gallery/breadcrumbs-bg/images.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.videos-page::before {
  background-image: url(../gallery/breadcrumbs-bg/videos.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.blog-page::before {
  background-image: url(../gallery/breadcrumbs-bg/blog.png);
}

.bread_cumb_wrap.facilities-page::before {
  background-image: url(../gallery/breadcrumbs-bg/facilities.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.our-team-page::before {
  background-image: url(../gallery/breadcrumbs-bg/our-team.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.panel-page::before {
  background-image: url(../gallery/breadcrumbs-bg/panel.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.about-page::before {
  background-image: url(../gallery/breadcrumbs-bg/about-hospital.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.gastro-page::before {
  background-image: url(../gallery/breadcrumbs-bg/gastro.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.gynec-page::before {
  background-image: url(../gallery/breadcrumbs-bg/gynec.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.neuro-page::before {
  background-image: url(../gallery/breadcrumbs-bg/neurology.png);
  filter: brightness(0.6);
}
.bread_cumb_wrap.vascular-page::before {
  background-image: url(../gallery/breadcrumbs-bg/vascular.png);
  filter: brightness(0.6);
}
.bread_cumb_wrap.paediatrics-page::before {
  background-image: url(../gallery/breadcrumbs-bg/paediatrics.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.general-medicine-page::before {
  background-image: url(../gallery/breadcrumbs-bg/general-medicine.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.general-surgery-page::before {
  background-image: url(../gallery/breadcrumbs-bg/general-surgery.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.urology-page::before {
  background-image: url(../gallery/breadcrumbs-bg/urology.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.ent-page::before {
  background-image: url(../gallery/breadcrumbs-bg/ent.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.orthopaedics-page::before {
  background-image: url(../gallery/breadcrumbs-bg/orthopaedics.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.plastic-surgery-page::before {
  background-image: url(../gallery/breadcrumbs-bg/plastic-surgery.png);
  filter: brightness(0.6);
}

.bread_cumb_wrap.radiology-page::before {
  background-image: url(../gallery/breadcrumbs-bg/radiology.png);
  filter: brightness(0.6);
}

/* .bread_cumb_wrap::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #14959d, #484fa1);
  left: 0px;
  top: 0px;
  z-index: -1;
  opacity: 0.7;
}  */
.bread_cumb_wrap::before {
  content: " ";

  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
}

.bread_cumb_wrap::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: url(../gallery/i-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.bread_cumb_wrap h1 {
  text-transform: uppercase;
  color: #fff;
  font-size: 33px;
  margin-top: 35px;
  font-weight: 400;
}

.bread_cumb_wrap ul {
  display: inline-block;
  padding: 4px 15px;
}

.bread_cumb_wrap ul li {
  display: inline-block;
  position: relative;
  padding: 0 7px;
}

.bread_cumb_wrap ul i {
  color: #fff;
}

.bread_cumb_wrap ul li a {
  display: block;
  color: #fff;
  font-size: 17px;
}

.serv-matter p {
  font-size: 16px;
  text-align: justify;
  line-height: 30px;
  margin-bottom: 10px;
}

.serv-image {
  position: relative;
  border: 1px solid var(--color-secondary);
  padding: 10px;
  margin-bottom: 10px;
}

.serv-image img {
  box-shadow: 0px 0px 10px #1a97a087;
  border-radius: 10px;
}

.ol_styles {
  padding: 0;
}

.ol_styles li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
  line-height: 28px;
  font-size: 16px;
  text-align: justify;
}

.ol_styles li::before {
  content: " ";
  position: absolute;
  width: 14px;
  height: 30px;
  background-image: url(../gallery/inner-services/check.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0px;
  background-position: left;
  margin: auto;
}

.serv-matter h2 {
  color: var(--color-secondary);
  font-size: 23px;
  margin: 15px 0px 9px;
  font-weight: 500;
}

.serv-matter h2 a {
  color: var(--color-teritary);
}

.serv-matter h3 {
  color: var(--color-primary);
  font-size: 20px;
  margin: 15px 0px;
}

.inner-section1 {
  position: relative;
  padding: 30px 0px 55px;
}

.counter {
  color: var(--color-secondary);
  text-align: center;
  /* width: 200px;
  height: 200px; */
  padding: 19px 17px 10px;
  margin: 10px auto;
  border-radius: 30px;
  border: 1px solid var(--color-teritary);
  position: relative;
  z-index: 1;
}

.counter:before,
.counter:after {
  content: " ";
  background: linear-gradient(45deg, var(--color-secondary), var(--color-teritary));
  border-radius: 30px 30px 0 0px;
  position: absolute;
  right: -10px;
  top: -10px;
  bottom: 50%;
  left: -10px;
  z-index: -1;
}

.counter:after {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.5);
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
}

.counter .counter-icon {
  color: var(--color-secondary);
  font-size: 35px;
  line-height: 35px;
  padding: 5px 0;
  margin: 0 0 5px;
}

.counter h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0 5px 5px;
}

.counter p {
  color: var(--color-default);
  font-size: 16px;
}

.counter .counter-value {
  font-size: 35px;
  font-weight: 600;
  display: block;
}

@media screen and (max-width: 990px) {
  .counter {
    margin-bottom: 40px;
  }
}

.contact-row .col-md-4:nth-child(2) .counter {
  width: 300px;
}

.contact-img img {
  width: 150px;
}

.inner-pages .header-one {
  background: #fff;
  padding-bottom: 10px;
}

.inner-pages .lower-box .logo {
  top: 21px;
  width: 378px;
}

.inner-pages .top-social {
  top: 17px;
}

.inner-pages .main-menu {
  margin: 46px 0 0;
}

.inner-pages .main-menu .navigation > li > a {
  font-size: 19px;
}

.contact-form {
  position: relative;
  text-align: center;
  padding: 21px 35px 27px;
  /* border: 7px solid #f5f5f5;
  box-shadow: 0px 0px 3px #0000007a; */
  background: linear-gradient(to top, #f2f2f2, #ffffff);
  margin-top: 95px;
  /* box-shadow: 0px 14px 12px -10px #00000042; */
  box-shadow: 0px 0px 12px 0px #00000042;
}

.contact-form::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-teritary);
  left: -12px;
  z-index: -1;
  top: -12px;
}

.contact-form h2 {
  margin-bottom: 17px;
  color: var(--color-secondary);
  font-size: 33px;
  font-weight: 500;
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid;
}

.contact-form .form-control {
  height: 49px;
  /* background-color: #e6f2f3; */
  color: #000;
  border-bottom: 1px solid #00000045;

  border-radius: 0;
  font-size: 16px;
}

.contact-form .btn-danger {
  color: #fff;
  background: linear-gradient(to left, var(--color-secondary), var(--color-teritary));
  border-color: initial;
}

.contact-form textarea.form-control {
  height: 95px;
}

.contact-page-map h2 {
  margin-bottom: 23px;
  color: #ffffff;
  font-size: 28px;
  display: inline-block;
  padding-bottom: 5px;
  padding-top: 5px;
  font-weight: 300;
  position: relative;
}

.contact-page-map h2::before {
  content: " ";
  position: absolute;
  width: 131%;
  height: 100%;
  background: var(--color-secondary);
  z-index: -1;
  left: -60px;
  top: 0px;
  /* border-radius: 0px 40px 40px 0px; */
  transform: skewX(10deg);
}

.contact-page-map iframe {
  width: 100%;
  height: 200px;
  border: 5px solid #fff;
  box-shadow: 0px 0px 9px #0000003b;
}

.contact-page-map {
  margin-top: 125px;
}

.bread-bg {
  position: relative;
  right: 0px;
  font-weight: 600;
  font-size: 75px;
  opacity: 0.1;
  color: #fff;
  bottom: 0px;
  margin: auto;
  text-transform: capitalize;
}

.bread-container {
  position: relative;
}

.about-mvv {
  padding: 44px 20px 50px;
  margin: 19px auto 0;
  border-radius: 999px;
  position: relative;
  background: #fff;
  box-shadow: 0px 0px 14px 0px #0000003d;
  width: 240px;
  height: 406px;
}

.about-mvv.about-mvv1 {
  padding: 65px 20px 39px;
  margin: -65px auto 0;
}

.about-mvv::before {
  content: " ";
  position: absolute;
  width: 230px;
  height: 398px;
  border: 1px solid var(--color-secondary);
  border-radius: 999px;
  left: 0px;
  right: 0px;
  margin: auto;
  top: 0px;
  bottom: 0px;
}

.about-mvv-content p {
  text-align: center;
  z-index: 1;
  position: relative;
  font-size: 15px;
  line-height: 27px;
}

.about-mvv-icon {
  z-index: 1;
  position: relative;
  width: 120px;
  height: 120px;
  margin: auto;
  line-height: 120px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--color-secondary), var(--color-teritary));
  box-shadow: -5px 3px 7px #0000004a;
}

.about-mvv-icon img {
  width: 60px;
  filter: brightness(0) invert(1);
}

.about-mvv-head h2 {
  color: var(--color-secondary);
  font-size: 23px;
  margin: 15px 0px 5px;
  font-weight: 500;
}

.mvv-about-row {
  margin-top: 80px;
}
.serv-doc-block2 {
  position: relative;
  z-index: 1;
}

.serv-doc-block2 .tab-content h2 {
  font-size: 20px;
}
.serv-doc-block1 {
  position: relative;
  z-index: 1;
}

.serv-doc-block1::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/mother.png);
  background-repeat: no-repeat;
  z-index: -1;
  background-position: right top;
  background-size: 50%;
  opacity: 0.06;
  top: 0px;
}

.serv-doc-block {
  position: relative;
  z-index: 1;
}

.serv-doc-block::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/stomach.png);
  background-repeat: no-repeat;
  z-index: -1;
  background-position: right top;
  background-size: 50%;
  opacity: 0.06;
  top: 0px;
}

.serv-doc-bg {
  position: relative;
}

.dr-about-page h3 {
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  color: #484fa1;
  /* background: var(--color-secondary); */
  /* padding: 5px 16px; */
  margin-bottom: 0px;
}

.serv-doc-bg1 {
  position: relative;
}

.dr-about-page1 h3 {
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  color: #484fa1;
  /* background: var(--color-secondary); */
  /* padding: 5px 16px; */
  margin-bottom: 0px;
}

.dr-about-page h4 {
  font-size: 16px;
  line-height: 27px;
  color: var(--color-default);
  font-weight: 400;
  margin: 4px 0 0px;
  padding-bottom: 6px;
}

.dr-about-page h5 {
  font-size: 17px;
  line-height: 27px;
  border-bottom: 1px dashed;
  color: var(--color-default);
  font-weight: 500;
  margin: 0px 0 12px;
  padding-bottom: 1px;
  display: inline-block;
}

.dr-about-page p {
  font-size: 16px;
  text-align: justify;
  line-height: 30px;
}

.dr-about-page1 h4 {
  font-size: 16px;
  line-height: 27px;
  color: var(--color-default);
  font-weight: 400;
  margin: 4px 0 0px;
  padding-bottom: 0px;
}

.dr-about-page1 h5 {
  font-size: 17px;
  line-height: 27px;
  border-bottom: 1px dashed;
  color: var(--color-default);
  font-weight: 500;
  margin: 0px 0 12px;
  padding-bottom: 1px;
  display: inline-block;
}

.dr-about-page1 p {
  font-size: 16px;
  text-align: justify;
  line-height: 30px;
}

.serv-doc-img {
  position: relative;
  text-align: center;
}

.serv-doc-img img {
  box-shadow: 0px 0px 4px #00000052;
}

.serv-doc-img1 {
  position: relative;
  text-align: center;
}

.serv-doc-img1 img {
  box-shadow: 0px 0px 4px #00000052;
}

.vertical-tab {
  display: table;
  padding-top: 30px;
  width: 100%;
}

.vertical-tab .nav-tabs {
  width: 100%;
  /* min-width: 27%; */
  border: none;
  vertical-align: top;
  /* padding-top: 15px; */
  /* display: inline-block; */
}

.vertical-tab .nav-tabs li a {
  color: #fff;
  background-color: var(--color-secondary);
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  /* text-transform: uppercase; */
  padding: 12px 10px;
  /* margin: 0 0px 12px 0; */
  border-radius: 0;
  border: 1px solid #e4e9f3;
  border-right: 0px;
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.dr-2-page .vertical-tab .nav-tabs li a {
  background-color: #f180bb;
}

.vertical-tab .nav-tabs li a.active,
.vertical-tab .nav-tabs li a.active a:hover {
  color: #f2f2f2;
  background-color: var(--color-teritary);
  border-right: none;
  font-weight: 500;
}

.dr-2-page .vertical-tab .nav-tabs li a.active,
.dr-2-page .vertical-tab .nav-tabs li a.active a:hover {
  color: #f2f2f2;
  background-color: var(--color-secondary);
  border-right: none;
  font-weight: 500;
}

.vertical-tab .tab-content {
  color: #000000;
  background: rgb(251 251 251);
  font-size: 14px;
  /* border: 3px solid #ccc; */
  /* letter-spacing: 1px; */
  line-height: 23px;
  padding: 20px;
  padding-right: 0px;
  display: block;
  box-shadow: 0 0 10px #cacaca;
}

.vertical-tab .tab-content h3 {
  font-size: 20px;
  font-weight: 500;
  padding-left: 10px;
  text-transform: capitalize;
  margin: 0 0 20px;
  color: #000000;
  border-left: 4px solid #47a5ae;
}

.vertical-tab .tab-content a {
  color: #36b5ae;
}

.vertical-tab .tab-content p {
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
}

.clinical-link {
  color: #36b5ae;
  font-size: 16px;
}

.clinical-link:hover {
  color: #36b5ae;
}

@media only screen and (max-width: 479px) {
  .vertical-tab .nav-tabs {
    width: 100%;
    padding-left: 0px;
    display: block;
  }

  .vertical-tab .nav-tabs li a {
    padding: 15px 10px 14px;
  }

  .vertical-tab .tab-content {
    font-size: 14px;
    display: block;
    width: 100%;
  }
}

.tab-content .ol_styles {
  margin-bottom: 0px;
  padding-left: 0px;
}

.tab-content .ol_styles li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 29px;
  text-align: left;
}

.tab-content .ol_styles li p {
  text-align: justify;
}

.tab-content .ol_styles li::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-weight: 600;
  left: 0;
  width: 24px;
  height: 24px;
  padding-left: 0px;
  text-align: center;
  line-height: 31px;
  font-size: 7px;
  background-image: none;
}

.tab-pane img {
  border: 7px solid #f5f5f5;
  box-shadow: 0px 0px 10px #9f9f9f;
}

.tab-pane h4 {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.sec-tab .tab-pane {
  height: 240px;
}

.tab-pane {
  height: 360px;
  overflow-y: auto;
  padding-right: 20px;
  overflow-x: hidden;
}

.tab-pane strong {
  font-weight: 600;
  color: var(--color-secondary);
}

.test-innner-sec .test-box1 {
  position: relative;
  padding: 18px;
  background-color: #fff;
  box-shadow: 1px 1px 5px #00000021;
  margin: 15px 7px;
  border-radius: 20px;
}

.test-innner-sec .test-box1::before {
  content: " ";
  position: absolute;
  width: 35%;
  height: 55%;
  background-image: url(../gallery/left-quote.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 107%;
  left: 0px;
  top: -29px;
  opacity: 0.04;
}

.test-box1 .test-pp1 {
  height: 45px;
  width: 45px;
  line-height: 45px;
  border-radius: 50%;
  background-color: #6c6c6c;
  margin-right: 5px;
}

.test-box1 .test-pp1 p {
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 0px;
}

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

.test-box1 .test-name1 h2 {
  color: var(--color-secondary);
  display: block;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: -1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: capitalize;
  line-height: 25px;
}

.test-box1 .test-name1 p {
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  opacity: 0.9;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.test-box1 .test-ratings1 {
  text-align: left;
}

.test-box1 .test-ratings1 .fa {
  font-size: 14px;
  color: #f8b90c;
}

.test-box1 .test-txt1 {
  margin-top: 5px;
}

.test-box1 .test-txt1 p {
  font-size: 14px;
  margin-bottom: 0px;
}

.test-top1 .col-md-2:nth-child(3) {
  padding: 0px;
}

.test-g1 {
  padding: 4px;
  background: #fff;
  box-shadow: 2px 2px 5px #00000047;
  border-radius: 50%;
  width: 40px;
}

.test-innner-sec .col-md-4 {
  padding: 0px;
}

.sub-serv-doc1 h3 {
  color: var(--color-default);
  font-size: 20px;
  margin: 15px 0px 2px;
  font-weight: 500;
}

.sub-serv-doc h3 {
  color: var(--color-default);
  font-size: 20px;
  margin: 15px 0px 2px;
  font-weight: 500;
}

.serv-doc-bg h2 {
  color: var(--color-secondary);
  font-size: 23px;
  margin: 15px 0px 2px;
  font-weight: 500;
  padding-left: 7px;
  border-left: 3px solid var(--color-teritary);
}

.serv-doc-bg1 h2 {
  color: var(--color-secondary);
  font-size: 23px;
  margin: 15px 0px 2px;
  font-weight: 500;
  padding-left: 7px;
  border-left: 3px solid var(--color-teritary);
}

.tab-content strong {
  font-weight: 500;
  color: #000;
}

:root {
  --main-color: var(--color-secondary);
}

.serviceBox {
  color: var(--color-default);
  text-align: center;
  padding: 5px 1px 10px 17px;
  margin: 20px 15px 30px 0;
  border-radius: 5px 5px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.serviceBox-img {
  position: relative;
  overflow: hidden;
}

.serviceBox-img img {
  transition: all ease-in-out 0.6s;
}

.serviceBox:hover .serviceBox-img img {
  transform: scale(1.1);
}

.serviceBox-img::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--color-default), transparent);
  bottom: 0px;
  z-index: 1;
  transition: all ease 0.6s;
}

.serviceBox:hover .serviceBox-img::before {
  height: 100%;
}

.serviceBox:before,
.serviceBox:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 5px 5px;
  position: absolute;
  top: -20px;
  right: -16px;
  z-index: -1;
}

.serviceBox:after {
  background: #fff;
  top: -10px;
  left: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.serviceBox .service-icon {
  font-size: 45px;
  transition: all 0.3s;
  margin: 0px auto 15px;
}

.serviceBox .service-icon i {
  line-height: inherit;
}

.serviceBox .title {
  color: var(--color-default);
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0 11px;
}

.serviceBox .description {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 22px;
  text-align: justify;
  margin: 0;
}

@media only screen and (max-width: 1199px) {
  .serviceBox {
    margin: 20px 15px 13px 0;
  }
}

.main-timeline {
  position: relative;
}

.main-timeline .timeline {
  float: left;
  width: 50.5%;
  margin: 0 10px 0 0;
}

.main-timeline .timeline-content {
  color: #666;
  padding: 0 140px 15px 0;
  /* border-bottom: 5px solid var(--color-secondary); */
  display: block;
  position: relative;
}

.main-timeline .timeline-content::before {
  content: " ";
  position: absolute;
  width: 95%;
  height: 5px;
  background: linear-gradient(to left, #484fa1, #1999a000);
  bottom: -6px;
  left: -28px;
  right: 0px;
  margin: auto;
  z-index: 1;
}

.main-timeline .timeline:nth-child(even) .timeline-content::before {
  right: -9px;
  left: initial;
  background: linear-gradient(to right, #484fa1, #1999a000);
}

.main-timeline .timeline-content:hover {
  text-decoration: none;
}

.main-timeline .timeline-icon {
  color: #fff;
  font-size: 40px;
  line-height: 40px;
  margin: 0 0 10px;
}

.main-timeline .title {
  color: var(--color-secondary);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 3px;
}

.main-timeline .description {
  font-size: 16px;
  margin: 0;
}

.main-timeline .timeline-year {
  color: #fff;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-teritary));
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  line-height: 95px;
  height: 95px;
  width: 95px;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  bottom: 8px;
}

.main-timeline .timeline-year:before {
  content: "";
  width: 120px;
  height: 120px;
  border: 3px solid #484fa1;
  border-right-color: transparent;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
}

.main-timeline .timeline:nth-child(even) {
  float: right;
  text-align: right;
  margin: 0 0 0 10px;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
  padding: 0 0 15px 140px;
}

.main-timeline .timeline:nth-child(even) .timeline-year {
  right: auto;
  left: 20px;
}

.main-timeline .timeline:nth-child(even) .timeline-year:before {
  transform: translateX(-50%) translateY(-50%) rotateY(180deg) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .main-timeline .timeline,
  .main-timeline .timeline:nth-child(even) {
    width: 100%;
    margin: 0 0 30px 0;
  }

  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content {
    text-align: left;
    padding: 0 150px 15px 0;
  }

  .main-timeline .timeline-year,
  .main-timeline .timeline:nth-child(even) .timeline-year {
    left: auto;
    right: 28px;
  }

  .main-timeline .timeline:nth-child(even) .timeline-year:before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
}

@media screen and (max-width: 576px) {
  .main-timeline .title {
    font-size: 20px;
  }

  .main-timeline .description {
    font-size: 15px;
  }

  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content {
    border-bottom-width: 7px;
    padding: 0 95px 15px 0;
  }

  .main-timeline .timeline-icon {
    font-size: 30px;
    margin: 0 0 5px;
  }

  .main-timeline .timeline-year {
    font-size: 20px;
    line-height: 60px;
    height: 60px;
    width: 60px;
    bottom: 4px;
    right: 13px;
  }

  .main-timeline .timeline:nth-child(even) .timeline-year {
    right: 13px;
  }

  .main-timeline .timeline-year:before {
    height: 77px;
    width: 77px;
  }

  .main-timeline .timeline:nth-child(even) .timeline-content::before {
    right: 20px;
    background: linear-gradient(to left, #484fa1, #1999a000);
  }
}

@media screen and (max-width: 399px) {
  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 0 77px 15px 0px;
  }
}

.test-innner-sec .timeline-content img {
  width: 110px;
}

.fac-inner-img {
  margin-bottom: 30px;
  position: relative;
}

.fac-inner-content {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: fit-content;
  height: fit-content;
  margin: auto;
}

.fac-inner-box {
  position: relative;
}

.fac-inner-content img {
  width: 227px;
  box-shadow: 0px 0px 17px #00000021;
}

.fac-head-btm h2 {
  font-weight: 400;
  font-size: 21px;
  text-align: center;
  color: #111111;
  margin-top: 5px;
}

.fac-outer-box {
  position: relative;
  width: 245px;
  margin: 0px auto 27px;
  cursor: pointer;
}

.call-us {
  position: fixed;
  bottom: 85px;
  right: 23px;
  line-height: 60px;
  width: 60px;
  text-align: center;
  height: 60px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  border-radius: 50%;
  background: linear-gradient(45deg, #484fa1, #1999a0);
  z-index: 1;
}

.call-us-i {
  text-align: center;
  z-index: 100;
  cursor: pointer;
  font-size: 36px;
}

.call-us-i a {
  color: #fff;
}

.call-us h2 {
  margin-left: 10px;
  font-size: 20px;
}

.videos-row iframe {
  width: 100%;
  height: 250px;
  border: 6px solid #f5f5f5;
  box-shadow: 0px 0px 12px #0000005c;
  margin-bottom: 30px;
}

.gallery_list .box {
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  text-align: center;
  overflow: hidden;
  position: relative;
  height: 163px;
  margin-bottom: 30px;
  border-radius: 9px;
  border: 5px solid #f5f5f5;
  box-shadow: 0 0 12px #c2c2c2;
}

.gallery_list .box:after,
.gallery_list .box:before {
  content: "";
  width: 20%;
  height: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: rotate(-40deg);
  transform-origin: top right;
  position: absolute;
  top: -6px;
  right: 0;
  z-index: 1;
  transition: 0.5s;
}

.gallery_list .box:after {
  transform-origin: left bottom;
  top: auto;
  bottom: -6px;
  right: auto;
  left: 0;
}

.box:hover:after,
.box:hover:before {
  width: 30%;
  opacity: 1;
}

.box img {
  width: 100%;
  height: auto;
  transition: 0.4s;
}

.box:hover img {
  opacity: 0.3;
  filter: grayscale(100%);
}

.box .box-content {
  color: #fff;
  width: 85%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transition: 0.6s;
}

.box .title {
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.5px;
  margin: 0 0 3px;
}

.box .post {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px;
  display: block;
}

.box .icon {
  margin: 0;
}

.box .icon li {
  margin: 0 5px;
}

.box .icon li a {
  color: var(--color-secondary);
  background-color: rgb(255 255 255);
  font-size: 15px;
  line-height: 33px;
  width: 33px;
  height: 33px;
  display: block;
  transition: 0.35s;
  margin: auto;
}

.box .icon li a:hover {
  color: #104627;
  background: #fff;
  box-shadow: 3px 3px 1px rgba(255, 255, 255, 0.4);
}

@media only screen and (max-width: 990px) {
  .box {
    margin: 0 0 30px;
  }
}

.box:hover .box-content {
  opacity: 1;
}

.blog-main-block {
  position: relative;
  background-color: #fff;
  border: 6px solid #f5f5f5;
  box-shadow: 0px 10px 15px -10px #0000008f;
  margin-bottom: 20px;
}

.blog-content h2 {
  font-size: 20px;
  color: var(--color-teritary);
}

.blog-content p {
  margin-bottom: 0px;
}

.blog-content {
  padding: 10px;
}

.accordion {
  background: #ededed;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.accordion-header {
  border: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background-color: transparent;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  padding: 8px;
}

.accordion-header h3 {
  max-width: 100%;
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  font-size: 16px;
  display: inline;
  font-weight: 500;
  margin-bottom: 0px;
  color: #393939;
  margin-top: 0px;
}

.accordion-body {
  color: #333;
  font-size: 14px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s;
}

.accordion-body.active {
  height: 100%;
  opacity: 1;
  padding: 5px;
}

.arrow {
  transition: transform 0.2s linear;
}

.accordion:has(.active) .arrow {
  transform: rotate(180deg);
}

.service-faq i {
  font-size: 18px;
}

.serv-faq {
  margin-top: 20px;
  margin-bottom: 50px;
}

.blog-videos {
  position: relative;
  margin-bottom: 30px;
}

.blog-videos iframe {
  width: 100%;
  height: 400px;
  border: 8px solid #fff;
  box-shadow: 0px 0px 12px #0000005c;
}

.blog-videos a {
  border: 8px solid #fff;
  box-shadow: 0px 0px 12px #0000005c;
  position: relative;
  display: block;
  border-radius: 10px;
}

.blog-videos h2 {
  color: var(--color-secondary);
  display: inline-block;
  font-size: 25px;
  margin-bottom: 23px;
  text-align: center;
  /* border-left: 5px solid var(--color-teritary);
   padding-left: 12px;
   padding-bottom: 6px; */
}

.yt-blog {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 100px;
}

.hand-down-yt {
  position: relative;
  cursor: pointer;
  text-align: center;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-teritary));
  border-radius: 50%;
  margin: 0px auto 20px;
  animation: bounce 1.5s infinite ease-in-out;
}

.hand-down-yt img {
  width: 40px;
  margin: auto;
  filter: brightness(0) invert(1);
}

/* Keyframes for bounce */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
    /* height of the bounce */
  }
}

.inner-right-icon i {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 15px;
  margin: auto;
  height: fit-content;
}

.testimonial-scroll .owl-dots {
  position: relative;
  left: 0;
  top: -82px;
  width: 100%;
  text-align: center;
  margin-top: 0px;
}

.testimonial-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 20px;
  border: 2px solid var(--color-secondary);
  opacity: 1;
  margin: -13px 2px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.testimonial-scroll .owl-dot:hover,
.testimonial-scroll .owl-dot.active {
  opacity: 1;
  border: 2px solid var(--color-teritary);
}
.blog-navigation {
  position: relative;
  background: #f2f3ff;
  padding: 20px;
  box-shadow: 0px 0px 6px #0000002b;
  margin-top: 20px;
}
.blog-navigation ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 5px;
  border-bottom: 1px solid;
  padding-bottom: 5px;
  font-size: 15px;
}

.blog-navigation ul li:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.blog-navigation ul li::before {
  content: " ";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-teritary);
  left: 0px;
  margin: auto;
  top: 9px;
  border-radius: 50%;
}
.blog-navigation ul li a {
  color: #000;
  display: block;
}

.blog-navigation h5 {
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-teritary);
}

.panel-block {
  position: relative;
  margin-bottom: 40px;
  border: 1px solid #b1b1b1;
  padding: 8px;
  cursor: pointer;
}

.panel-block img {
  box-shadow: 0px 14px 10px -10px #0000003d;
  border-radius: 15px;
}
