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

:root {

  --color-primary: #884691;
  --color-secondary: #ac8eb3;
  --color-default: #444444;
  --color-teritary: #1354a0;
  --color-four: #7da029;
}

/*** 
====================================================================
	Global Settings
====================================================================
 ***/
body {
  font-size: 16px;
  color: #292929;
  line-height: 1.6em;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: "Noto Sans", serif;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

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

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

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;
}

.mobile-view {
  display: none;
}

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

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

.main-menu .navigation>li .active {
  color: #fff;
  background-color: var(--color-four);
  border-top-left-radius: 14px;
}

.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%;
  background-image: url(../gallery/bg.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -999;
  opacity: 0.3;
}

.page-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/body-bg-icon.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22%;
  z-index: -999;
  top: 0px;
  opacity: 0.08;
  filter: grayscale(1);
}

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

/**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: 20px;
  position: absolute;
  display: inline-block;
  z-index: 999;
  width: 250px;
}

.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: 52px 0 0;
  top: 0;
}

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

.main-menu .navigation {
  position: relative;
  display: block;
  padding: 4px;
  border-bottom: 1px solid var(--color-four);
}

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

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

.logins_section {
  position: absolute;
  right: 34px;
  z-index: 99;
  display: inline-block;
  top: 0px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.logins_section span {
  display: inline-block;
  color: #fff;
  padding: 4px 10px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  border-radius: 20px;
  /* background: var(--color-primary); */
}

.social-links-1 {
  position: relative;
  z-index: 9;
  right: -175px;
  text-align: center;
  top: -77px;
}

.main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0;
  width: 50px;
  height: 42px;
  border-left: 1px solid #04102a;
  text-align: center;
  font-size: 16px;
  line-height: 42px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  z-index: 5;
}

/*** 
========================================
    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: #2d2d2d;
  -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: var(--color-default);
  padding: 0px 0px;
  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;
}

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

.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 25px;
  color: #ffffff;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  -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;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 32px;
  background: var(--color-four);
  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;
}

.mobile-menu .social-links {
  position: relative;
  text-align: center;
  padding: 30px 25px;
}

.mobile-menu .social-links li {
  position: relative;
  display: inline-block;
  margin: 0px 5px 10px;
}

.mobile-menu .social-links li a {
  position: relative;
  color: #ffffff;
  font-size: 20px;
  line-height: 32px;
  -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 .social-links li a:hover {
  color: #dddddd;
}

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

.main-menu .navigation>li>ul>li>a i {
  position: absolute;
  right: 7px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  height: fit-content;
}

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

.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.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,
.main-menu .navigation>li>ul>li>ul>li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #faf8f859;
}

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

.main-menu .navigation>li>ul>li>a {
  position: relative;
  display: block;
  padding: 5px 20px;
  line-height: 24px;
  font-size: 15px;
  text-transform: capitalize;
  color: #fff;
  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>ul>li>a {
  position: relative;
  display: block;
  padding: 5px 20px;
  line-height: 24px;
  font-size: 15px;
  text-transform: capitalize;
  color: #fff;
  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;
}

/*
* 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/banner.jpg);
}

.custom-container {
  max-width: 1190px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  text-align: right;
}

/***
====================================================================
	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: 100;
  cursor: pointer;
  background: linear-gradient(to right, var(--color-teritary), var(--color-four));
  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: linear-gradient(to right, var(--color-teritary), var(--color-four));
}

/***
====================================================================
	Section-headings
====================================================================
***/
.sec-title {
  position: relative;
  display: inline-block;
  border-left: 2px solid var(--color-default);
  padding-left: 10px;
  z-index: 99;
}

.sec-title::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  transform: rotate(45deg);
  top: -7px;
  left: -6px;
  background-color: var(--color-default);
}

.sec-title::after {
  content: "";
  position: absolute;
  height: 86%;
  width: 100%;
  background-color: #f4f4f4;
  top: 20px;
  left: 19px;
  z-index: -1;
  box-shadow: -1px 8px 12px -10px #000000ad;
}

.sec-title h3 {
  color: #fff;
  font-weight: 400;
  font-size: 21px;
  display: inline-block;
  background: var(--color-four);
  padding: 2px 11px;
}

.sec-title h2 {
  font-size: 42px;
  text-transform: uppercase;
  color: var(--color-teritary);
  padding-left: 25px;
}

.abt-sec {
  position: relative;
  padding-top: 45px;
  margin-bottom: 45px;
}

.abt-matter p {
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 0px;
}

.abt-matter {
  margin-top: 3px;
  padding-left: 13px;
}

.doc-deg p {
  margin-bottom: 0px;
  padding-left: 13px;
  margin-top: 21px;
  font-weight: 400;
  font-size: 21px;
}

.doc-deg p span {
  color: var(--color-four);
  display: block;
  margin-top: 5px;
}


.img-blk {
  position: relative;
}

.img-blk .txt {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto;
}

.txt h2 {
  color: #fff;
  font-weight: 500;
  font-size: 19px;
  padding: 5px 15px;
  text-transform: uppercase;
  top: -1px;
  background: linear-gradient(to left, #00000063, #ac8eb300);
  border-radius: 10px;
  text-align: right;
}


.doc-btm-ad {
  position: relative;
  margin-top: 50px;
}

.doc-btm-side {
  position: relative;
}

.doc-btm-box p {
  padding-top: 10px;
  font-size: 15px;
  line-height: 30px;
}

.doc-btm-one {
  font-size: 60px;
}

.serv-sec {
  position: relative;
  margin-bottom: 78px;

}

.sec-title-blk p {
  display: block;
  text-align: left;
  padding: 0 350px 0 0;
  margin-top: 18px;
  font-size: 15px;
}

.test-sec .sec-title-blk p,
.blogs-sec .sec-title-blk p {
  color: var(--color-default);
}

.ser-img1 {
  position: absolute;
  height: 1200px;
  width: 1200px;
  background-image: url(../gallery/serv-bg1.png);
  background-position: center;
  background-repeat: no-repeat;
  top: 50px;
  left: -108px;
  background-size: 85%;
  opacity: 0.8;
  filter: grayscale(1);
  z-index: -1;
}

.serv-img {
  position: relative;
}

.serv-inner-img {
  position: absolute;
  top: -14px;
  bottom: 0px;
  right: -13px;
  left: 0px;
  margin: auto;
  width: fit-content;
  height: fit-content;
  border-radius: 16px;
  overflow: hidden;
}

.serv-inner-img img {
  width: 230px !important;
}

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

.serv-row .col-md-7 {
  position: relative;
  right: -30px;
}

.serv-inner-img::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, #50205a, #76268200);
  top: 0;
  left: 0;
  z-index: 1;
}

.serv-txt h2 {
  color: #fff;
  position: absolute;
  bottom: 28px;
  font-weight: 400;
  font-size: 20px;
  right: 12px;
  text-align: right;
  line-height: 24px;
  z-index: 99;
  text-transform: uppercase;
  padding: 0 6px;
}

.serv-img .effect {
  opacity: 0.4;
}

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

.serv-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 5px;
  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-teritary);
}

.serv-scroll .owl-dot:hover,
.serv-scroll .owl-dot.active {
  opacity: 1;
  background: var(--color-four);
}


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

.test-main-blk {
  position: relative;
}

.test-main-blk::before {
  content: " ";
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(to top, #ffffff00, #7c7c7c);
  border-radius: 50%;
  opacity: 0.1;
  top: -48px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: -1;
}

.test-scroll {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  /* padding: 113px 25px 0 228px; */
  padding: 100px 25px 0 208px;

}

.test-blk {
  position: relative;

}

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

.test-img-left {
  position: relative;
  text-align: center;
}

.test-img-left::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--color-default);
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  box-shadow: 0px 2px 5px 0 #000000;
}

.test-left-btm {
  background: linear-gradient(45deg, var(--color-four), var(--color-teritary));
  padding: 17px 29px 9px;
  text-align: center;
  color: #fff;
  margin-top: 28px;
  display: inline-block;
  border-radius: 7px;
}

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

.test-blk h2 {
  color: var(--color-teritary);
  font-weight: 500;
  font-size: 25px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 25px;
  padding-left: 0px;
}

.test-blk h2::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to left, #e7e7e7, #fff0);
  left: -15px;
  z-index: -1;
  border-radius: 26px;
}

.test-blk .testi-star {
  color: var(--color-teritary);
}

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

.appointment-form {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  background: var(--color-default);
  padding: 130px 125px;
  border-right: 0px;
  width: 800px;
  height: 800px;
  margin: auto;
}

.appointment-inner-form {
  margin-top: 25px;
}

.appointment-form::before {
  content: " ";
  position: absolute;
  width: 780px;
  height: 780px;
  border: 1px solid #ffffff9c;
  border-radius: 50%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: -1;
}

.appointment-form::after {
  content: " ";
  position: absolute;
  width: 780px;
  height: 780px;
  background-image: url(../gallery/appt-bg.png);
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: -1;
  opacity: 0.2;
  filter: grayscale(1);
}

.appointment-form .sec-title-blk p {
  padding: 0px;
  color: #fff;
}

.appointment-form h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 600;
}

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

}

.appointment-form .btn-style-one {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
  padding: 3px 11px;
  font-weight: 400;
  letter-spacing: 1px;
  overflow: hidden;
  min-width: 110px;
  border-radius: 30px;
  border: none;
  background: var(--color-four);
  color: #fff;
  margin-top: 25px;
}

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

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

.appointment-form .form-control:focus {
  color: #fff;
  background-color: #ffffff00;
  border-color: transparent;
  outline: 0;
  box-shadow: 0 0 10px #fff;
}

.appointment-form .form-control {
  color: #fff;
  border-bottom: 1px solid #dfdfdf73;
}

.apt-img {
  position: absolute;
  height: 1200px;
  width: 1200px;
  background: url(../gallery/appt-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  top: -190px;
  right: 0px;
  background-size: 85%;
  opacity: 0.7;
  filter: grayscale(1);
}


.apt-sec .sec-title::after {
  content: "";
  position: absolute;
  height: 86%;
  width: 100%;
  background-color: #ffffffc7;
  top: 20px;
  left: 19px;
  z-index: -1;
}

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

}



.blog-txt h2 {
  color: var(--color-default);
  font-weight: 600;
  font-size: 18px;
}

.blog-txt p {
  margin-bottom: 0px;
  font-size: 15px;
  padding-top: 5px;
}

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

.blog-txt {
  position: relative;
  padding: 4px 14px;
  padding-right: 86px;
  text-align: center;
  margin-top: -80px;
}

/* .blog-row .col-md-4:nth-child(odd){
  margin-top: 75px;
} */

.facebook {
  position: relative;
}

.facebook iframe {
  position: relative;
  height: 500px;
  border: 6px solid #fff;
  box-shadow: 0 0 10px #7da02957;
}


.footer_section {
  position: relative;
}

.footer_section .footer_add_row {
  position: relative;
}

.footer_add_row .col-md-4:nth-child(1),
.footer_add_row .col-md-4:nth-child(2) {
  border-right: 1px solid #fff;
}

.address_info_sec {
  position: relative;
  text-align: center;
}

.address_info_sec i {
  position: relative;
  left: 0px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  text-align: center;
  color: var(--color-primary);
  border-radius: 50%;
  line-height: 40px;
  display: inline-block;
}

.address_info_sec span {
  display: block;
  color: #000;
  line-height: 24px;
}

.bottom-footer p {
  margin: 0;
  font-size: 15px;
  display: inline-block;
  padding: 10px 15px;
}

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

.footer_section .footer_wid p a {
  color: var(--color-primary);
}

.footer_section .footer_wid .footer_logo {
  width: 300px;
}

.footer_section .footer_top {
  position: relative;
  padding: 15px 10px 7px;
}

.footer_section .footer_wid p {
  font-size: 14px;
  line-height: 25px;
  display: block;
}

.footer_section .footer_wid_text {
  position: relative;
  padding-bottom: 12px;
  margin: 10px 0px;
}

.footer_section .footer_wid_text li {
  font-size: 14px;
}

.footer_top .footer_wid_text:after,
.footer_top .footer_wid_text:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 3px;
}

.footer_top .footer_wid_text:after {
  left: 44px;
  width: 4px;
  background-color: var(--color-primary);
}

.footer_wid li a {
  color: var(--color-default);
}

.footer-logo img {
  width: 268px;
  margin-bottom: 9px;
}

.footer_section .footer_wid ul li::before {
  content: "\f0da";
  position: absolute;
  left: 14px;
  display: block;
  font-size: 14px;
  line-height: 26px;
  color: var(--color-primary);
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}

.footer_section .footer_wid ul li {
  padding-left: 20px;
}

.footer_add_row .col-md-3:nth-child(1) {
  background: linear-gradient(to right, transparent, #ddd);
}

.footer_add_row .col-md-3:nth-child(2) {
  background: linear-gradient(to right, transparent, #ddd, transparent);
}

.footer_add_row .col-md-3:nth-child(3) {
  background: linear-gradient(to left, transparent, #ddd);
}

.footer_mp iframe {
  border: 5px solid #f5f5f5;
  background: #fff;
  box-shadow: 0px 0px 11px #919191;
}

.as_inner_textad h2 a {
  color: var(--color-default);
  font-weight: 600;
}

.footer_wid .address_info_sec {
  position: relative;
}

.footer_wid .address_info_sec:nth-child(3) {
  border-top: 1px dashed var(--color-default);
  border-bottom: 1px dashed var(--color-default);
}

.footer-about p {
  font-size: 15px;
  line-height: 30px;
  margin: 0;
}

.footer-about p a {
  color: var(--color-primary);
}

.footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-bottom: 25px;
}

.footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 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;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background-color: var(--color-default);
  /* background: linear-gradient(to right, var(--color-primary),var(--color-secondary)); */
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.footer_links {
  text-align: center;
}

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

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

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

.footer_links ul li a {
  color: var(--color-default);
  font-size: 17px;
  line-height: 19px;
  border-right: 1px solid;
  padding: 0 11px;
  text-transform: uppercase;
  font-weight: 600;
}

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

.footer_section .footer-left-sec a {
  color: #000;
  font-size: 15px;
}

.footer_section .f-call i,
.footer_section .f-mail i,
.footer-section .f-ad i {
  margin-right: 15px;
  font-size: 20px;
}

.f-ad p {
  margin-bottom: 0px;
}

.footer_section .f-ad {
  text-align: center;
  padding-top: 6px;
  border-bottom: 1px dashed #000;
  margin-bottom: 8px;
}

.footer_section .f-call {
  border-right: 1px dashed #000;
  left: 17px;
  position: relative;
}

.f-ad p {
  font-size: 15px;
  color: var(--color-default);
}

.f-reach {
  margin-top: 15px;
}

.subscribe-block {
  position: relative;
  padding: 25px 20px;
  background: linear-gradient(to right, var(--color-four), var(--color-teritary));
  margin: 0px 0px 25px;
  border-radius: 12px;
}

.sub-title h4 {
  text-transform: uppercase;
  color: #fff;
  font-size: 33px;
}

.subscribe-input {
  position: relative;
  margin-top: 8px;
}

.sub-title p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.subscribe-input .form-control {
  height: 58px;
  background-color: white;
  border: 1px solid #e4e4e4;
  color: var(--color-secondary);
}

.subscribe-input .form-control::placeholder {
  color: #6b6b6b;
}

.subscribe-input .btn {
  position: absolute;
  top: 7px;
  right: 8px;
  background: var(--color-four);
  border: none;
  border-radius: 0;
  padding: 11px 16px;
  color: #fff;
}

.footer_links1 p span {
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 21px;
}

.frow-2 {
  background-color: var(--color-primary);
}

.footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin: 15px 0;
}

.footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 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;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background-color: var(--color-secondary);
  /* background: linear-gradient(to right, var(--color-primary),var(--color-secondary)); */
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.footer_timings p {
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 20px;
}

.footer_timings h2 {
  color: var(--color-primary);
  font-size: 24px;
}

.address p {
  margin-bottom: 0px;
  font-size: 15px;
  color: var(--color-default);
}

.address {
  position: relative;
  margin-bottom: 14px;
  color: var(--color-secondary);
  padding-left: 44px;
}

.address i {
  position: absolute;
  left: 0px;
  width: 32px;
  height: 32px;
  background: #7f7f7f;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 31px;
  border-radius: 50%;
}

.footer-timings-blk {
  display: inline-block;
  background: #f3f3f3;
  position: relative;
  margin: auto;
  left: 0;
  right: 0;
  padding: 0 55px;
  border-radius: 25px;
  border: 4px solid #fff;
  box-shadow: 0 0 10px #bdbdbd;
  padding-bottom: 25px;
  padding-top: 10px;
}

.footer-socialt-top {
  position: relative;
  text-align: center;
  width: 100%;
  margin: auto;
}

.subscribe-block::after {

  content: "";
  position: absolute;
  height: 110%;
  width: 102%;
  top: 0;
  left: -10px;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid var(--color-default);

}

@keyframes smoothBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(0);
  }

  70% {
    transform: translateY(-10px);
  }

  90% {
    transform: translateY(0);
  }
}

.main-serv-inner-img img {
  width: 168px !important;
  border-radius: 50%;
  border: 3px solid #fff;
}

.main-serv-inner-img {
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  height: fit-content;
  left: 22px;
}

.main-serv-inner-img:hover {
  transform: scale(1.05);
}

.main-serv-block {
  position: relative;
  padding: 25px 0px;
  width: 460px;
}

.main-serv-content {
  position: absolute;
  top: 0px;
  bottom: 0px;
  height: fit-content;
  margin: auto;
  right: 0px;
  padding: 26px 10px 20px 217px;
  cursor: pointer;
}

.main-serv-content h2 {
  font-size: 21px;
  color: var(--color-teritary);
  text-transform: uppercase;
  position: relative;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.main-serv-inner-img img {
  transition: all 300ms ease;
}

.main-serv-block:hover .main-serv-inner-img img {
  transform: scale(1.09);
  filter: grayscale(1);
}

.main-serv-content h2::before {
  content: " ";
  position: absolute;
  width: 60%;
  height: 1px;
  background: var(--color-default);
  left: 0px;
  bottom: 0px;
  opacity: 0.5;
}

.main-serv-content p {
  font-size: 14px;
  line-height: 23px;
  margin-bottom: 6px;
}

.main-serv-content a {
  background: var(--color-default);
  color: #fff;
  padding: 2px 7px;
  font-size: 14px;
}

.main-serv-side {
  margin-left: 160px;
}





.extra-round {
  width: 180px;
  height: 180px;
  background: linear-gradient(45deg, var(--color-four), var(--color-teritary));
  border-radius: 50%;
  margin: auto;
  padding: 15px;
  color: #ffffff;
  transition: all 0.8s ease 0s;
}

.extra-block:hover .extra-round {
  transform: scale(1.1);
}

.extra-box .col-md-4:nth-child(2) {
  padding-top: 90px;
}

.extra-block {
  position: relative;
  text-align: center;
  cursor: pointer;
}

.extra-box .col-md-4:nth-child(2) .extra-block::before {
  bottom: initial;
  top: -45px;
}

.extra-block::before {
  content: " ";
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--color-default);
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: -45px;
  z-index: -1;
}

.extra-box .col-md-4:nth-child(2) .extra-block::after {
  bottom: initial;
  top: -45px;
}

.extra-block::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-four);
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: -45px;
  z-index: -1;
}

.extra-round img {
  width: 45px;
  filter: brightness(0) invert(1);
  margin-bottom: 17px;
  opacity: 0.4;
}

.extra-round p {
  font-size: 45px;
  font-weight: 400;
  margin-bottom: 0px;
  font-family: "Cinzel", serif;
}

.extra-round h2 {
  font-size: 17px;
  font-weight: 300;
  margin-top: 8px;
  text-transform: capitalize;
}

.main-tag h1 {
  font-weight: 500;
  text-transform: capitalize;
  color: var(--color-default);
}

.extra-box {
  padding-top: 10px;
  margin-bottom: 30px;
}

.animation-5 {
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.3s ease;
}

.animate-on-visible {
  animation: infinite-spinning 2s cubic-bezier(0, 1.81, 1, 0.91) forwards;
  opacity: 1;
}

@keyframes infinite-spinning {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.test-left-btm p {
  margin-bottom: 7px;
  line-height: 35px;
  font-size: 21px;
}

.test-left-btm a {
  padding: 6px 15px;
  border-radius: 3px;
  background-color: #fff;
  color: var(--color-default);
  font-size: 18px;
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 10px;
}

.footer-add-block {
  position: relative;
  margin-bottom: 25px;
}

.footer-add-icon {
  width: 35px;
  height: 35px;
  background: var(--color-four);
  line-height: 35px;
  margin: auto;
  color: #fff;
}

.footer-add-text p {
  font-size: 15px;
}



.extra-right-side h2 {
  font-size: 40px;
  font-weight: 300;
  line-height: 52px;
  border-left: 4px solid var(--color-teritary);
  padding-left: 14px;
  margin-bottom: 12px;
  background: linear-gradient(to right, #7da0291a, transparent);
  padding-bottom: 9px;
}

.extra-right-side h2 span {
  text-transform: uppercase;
  font-size: 60px;
  color: var(--color-four);
  font-weight: 600;
}

.extra-right-side p {
  text-align: justify;
  line-height: 30px;
}

.extra-right-side h3 {
  font-size: 20px;
  color: var(--color-teritary);
  margin-bottom: 10px;
}

.ol_styles {
  position: relative;
  margin-bottom: 12px;
  list-style-type: none;
}

.ol_styles li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 4px;
  font-weight: 400;
}

.ol_styles li::before {
  font-family: "FontAwesome";
  content: "\f14a";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-four);
  font-size: 13px;
}

.extra-right-side-row .col-md-6:nth-child(1)::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 80%;
  background: linear-gradient(to top, #444444, var(--color-default), #444444);
  right: 8px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.extra-sec {
  position: relative;
  margin-bottom: 38px;

}

.extra-left-side {
  position: relative;
}

.extra-left-side::before {
  content: " ";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #f3f6eb;
  border-radius: 50%;
  z-index: -1;
  left: 0px;
  right: 0px;
  margin: auto;
  top: 0px;
  bottom: 0px;
  box-shadow: 0px 0px 12px #1354a030;
}

.extra-right-side {
  position: relative;
}

.extra-right-side::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/liver.png);
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.03;
  background-position: center;
}

.extra-left-side img {
  transition: all 300ms ease;
  cursor: pointer;
}

.extra-left-side:hover img {
  transform: scale(1.05);
}

.footer-btm-box {
  padding: 40px 20px 13px;
  position: relative;
}

.footer-btm-box::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #15151561;
  background: #fff;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  border-radius: 10px;
  z-index: -2;
}

.footer-btm-box::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/stomach.png);
  background-position: center;
  background-size: 34%;
  background-repeat: no-repeat;
  opacity: 0.03;
  z-index: -1;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.footer-title {
  position: absolute;
  top: -35px;
  left: 59px;
}

.footer-title h2 {
  color: var(--color-teritary);
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  font-weight: 500;
  background-color: #fbfbfb;
  border-bottom: 2px solid var(--color-teritary);
  padding: 4px 21px;
  border-radius: 25px;
  box-shadow: 0px 3px 5px #c1c1c1;
}

.footer_links1 {
  text-align: center;
}

.footer_links1 ul {
  display: inline-block;
  margin: 0 44px 15px;
}

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

.footer_links1 ul li a {
  color: #292929;
  font-size: 15px;
  line-height: 19px;
  border-right: 1px dashed;
  padding: 0 11px;
}

.footer-adr {
  position: relative;
  color: var(--color-default);
  padding-top: 20px;
}

.footer-adr::before {
  content: " ";
  position: absolute;
  width: 70%;
  height: 100%;
  border-top: 1px solid #15151533;
  top: 0px;
}

.footer-adr .f-icon {
  width: 35px;
  height: 35px;
  background: var(--color-four);
  line-height: 33px;
  margin: auto;
  color: #fff;
  text-align: center;
}

.footer-adr .fad-txt h3 {
  font-size: 20px;
  color: var(--color-teritary);
  margin: 9px 0px 3px;
}

.fad-txt p {
  font-size: 15px;
  color: var(--color-default);
}

.footer-widget__social {
  margin: 0px 0 -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-widget__social span {
  color: #1e2123;
  font-size: 20px;
  font-weight: 600;
}

.footer-widget__social ul {
  display: flex;
  list-style: none;
  margin: 0 8px 0;
  padding: 0;
}

.footer-widget__social li a {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  color: #fff;
  background-color: var(--color-four);
  margin: 0 4px;
  font-size: 16px;
}

.footer-widget__social li a img {
  width: 17px;
  filter: brightness(0) invert(1);
}

.footer-about {
  margin-bottom: 30px;
}


.top-social {
  position: absolute;
  z-index: 1;
  text-align: center;
  top: 33%;
  left: 17px;
  width: auto;
}


.top-social li {
  margin-bottom: 5px;
}

.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: var(--color-four);
  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;
}


.top-wrap1 {
  position: relative;
}

.bread_cumb_wrap {
  position: relative;
  text-align: center;
  left: 0;
  right: 0;
  padding: 185px 0 20px
}

.bread_cumb_wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(to top, #dcf2a7fa, #ffffff);
  opacity: .2;
}

/* .bread_cumb_wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-image: url(../gallery/breadcrumb-img.png);
  opacity: .2;
  transform: skewY(10deg);
  background-repeat: no-repeat;
  background-position: center right;
  filter: grayscale(1);
} */
.bread_cumb_wrap h1 {
  text-transform: capitalize;
  color: var(--color-default);
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 400
}

.bread_cumb_wrap ul {
  display: inline-block;
  border-radius: 10px;
}

.bread_cumb_wrap ul li {
  display: inline-block;
  position: relative;
  padding: 2px 10px;
  color: #ffffff;
  background: var(--color-teritary);
  margin: 0px 4px;
}

.bread_cumb_wrap ul li.active {
  background: var(--color-four);
}

.bread_cumb_wrap ul i {
  color: var(--color-default);
  font-size: 20px;
}

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

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

.inner-section1 {
  position: relative;
  padding: 60px 0 70px;
}

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

.serv-matter h2 {
  color: var(--color-teritary);
  font-size: 23px;
  margin: 15px 0px 5px;
}

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

.inner-serv-img img {
  border: 6px solid #f5f5f5;
  box-shadow: 0px 0px 8px #00000052;
}

.contact_form {
  position: relative;
  padding: 40px 68px 18px;
  margin-bottom: 32px;
  margin: 0;
  text-align: center;
}

.contact-page-row {
  position: relative;
  margin: 28px 0px 10px;
}


.contact-page-row::before {
  content: " ";
  position: absolute;
  width: 72%;
  height: 72%;
  background: #fff;
  top: 0px;
  left: 54px;
  margin: auto;
  box-shadow: 0px 0px 9px #bcbcbc;
  border-radius: 8px;
  border: 9px solid #f5f5f5;
}

.contact_form .form-group i {
  position: absolute;
  left: 15px;
  top: 15px;
  color: #00000078;
  font-size: 14px;
}

.contact_form h4 {
  margin-bottom: 18px;
  font-size: 33px;
  color: var(--color-four);
}

.contact_form .col-md-6,
.contact_form .col-md-12 {
  padding: 0px 8px;
}

.contact_form .form-control {
  height: 45px;
  background-color: #eef1e800;
  font-size: 15px;
  border-radius: 0px;
  padding-left: 28px;
}

.left_address {
  /* padding: 18px 26px;
  margin-bottom: 30px; */
  border-radius: 5px;
}

.left-con-icon i {
  width: 38px;
  height: 38px;
  background: var(--color-four);
  color: #fff;
  border-radius: 8px;
  font-size: 18px;
  line-height: 38px;
  text-align: center;
  margin-right: 6px;
}

.left-con-icon h4 {
  color: var(--color-teritary);
  font-size: 19px;
  line-height: 35px;
}

.left-con-icon {
  display: flex;
  margin-bottom: 4px;
}

.left-con-box p {
  font-size: 15px;
}

.left-con-box {
  margin-bottom: 28px;
}

.left_address h3 {
  margin-bottom: 3px;
  font-size: 33px;
  color: var(--color-four);
}

.left-row .col-md-6 {
  /* padding: 0px 8px; */
}

.left-con-box span {
  line-height: 33px;
  display: block;
  margin-right: 10px;
}

.left-row .col-md-12 .left-con-box {
  display: inline-flex;
  position: relative;
}

.left-row .col-md-12 .left-con-box::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  top: -14px;
  background: var(--color-default);
  left: 0px;
  opacity: 0.4;
}

.left-con-box li {
  display: inline-block;
  margin-right: 1px;
}

.left-con-box 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-teritary), var(--color-four));
  border-radius: 50%;
}

.left_address ol {
  padding-left: 20px;
}

.left_address ol li {
  border-bottom: 1px dashed #ccc;
  margin-bottom: 10px;
  padding-bottom: 10px;
  list-style-type: circle;
  font-size: 15px;
}

.c_map {
  position: relative;
  margin-top: 50px;
}

.c_map iframe {
  width: 100%;
  height: 243px;
  border: 5px solid #ffffff;
  box-shadow: 0 0 10px #00000033;
}

.contact_form textarea.form-control {
  height: 88px;
}

.docsection .btn-danger {
  margin-top: 12px;
  color: #fff;
  background-color: var(--color-teritary);
  border-color: var(--color-teritary);
}


.main-timeline:before {
  content: '';
  height: 100%;
  width: 2px;
  /* border: 1px dashed #7c7c7c; */
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: 30px;
}

.main-timeline .timeline {
  width: 50%;
  padding: 100px 70px 0 25px;
  margin: 0 50px 0 0;
  float: left;
  position: relative;
}

.main-timeline .timeline-content {
  padding: 15px;
  border-right: 1px solid var(--color-default);
  /* border-radius: 15px 0 15px 15px; */
  display: block;
  position: relative;
  background: linear-gradient(to left, #dcdcdc4f, transparent);
}

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

.main-timeline .timeline-content:after {
  content: '';
  background-color: var(--color-default);
  height: 18px;
  width: 15px;
  position: absolute;
  right: -15px;
  top: -2px;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}

.main-timeline .timeline-year {
  color: #fff;
  background-color: var(--color-four);
  font-size: 41px;
  font-weight: 900;
  text-align: center;
  line-height: 91px;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  position: absolute;
  right: -120px;
  top: -85px;
}

.main-timeline .timeline-year:after {
  content: '';
  height: 108px;
  width: 108px;
  border: 4px solid var(--color-four);
  border-left-color: transparent;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-20deg);
  position: absolute;
  left: 50%;
  top: 50%;
}

.main-timeline .timeline-icon {
  color: #fff;
  background-color: var(--color-four);
  font-size: 35px;
  text-align: center;
  line-height: 50px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: -25px;
  transition: all 0.3s;
}

.main-timeline .timeline-icon i {
  line-height: inherit;
}

.main-timeline .title {
  color: var(--color-teritary);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 7px 0;
}

.main-timeline .description {
  color: #222;
  font-size: 15px;
  text-align: justify;
  margin: 0 0 5px;
}

.main-timeline .timeline:nth-child(even) {
  padding: 100px 25px 0 70px;
  margin: 0 0 0 50px;
  float: right;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
  padding: 15px;
  border-left: 1px solid var(--color-default);
  border-right: 0px;
  background: linear-gradient(to right, #dcdcdc4f, transparent);
}

.main-timeline .timeline:nth-child(even) .timeline-content:after {
  transform: rotateY(180deg);
  right: auto;
  left: -15px;
}

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

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

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

@media screen and (max-width:767px) {
  .main-timeline:before {
    display: none;
  }

  .main-timeline .timeline {
    width: 100%;
    padding-top: 80px;
    padding-right: 12px;
    margin-bottom: 20px;
  }

  .main-timeline .timeline:nth-child(even) {
    padding-left: 10px;
    padding-top: 80px;
    margin-bottom: 20px;
  }

  .main-timeline .timeline-content,
  .main-timeline .main-timeline .timeline:nth-child(even) .timeline-content {
    background-color: #fff;
    padding-top: 25px;
  }

  .main-timeline .timeline-content:after {
    display: none;
  }

  .main-timeline .timeline-year {
    font-size: 24px;
    line-height: 70px;
    height: 70px;
    width: 70px;
    right: 0;
    top: -65px;
  }

  .main-timeline .timeline-year:after {
    display: none;
  }

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

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

.main-timeline-review {
  position: absolute;
  top: 0;
  right: 27px;
  box-shadow: 0px 17px 18px -10px #404040;
  padding: 9px 12px 4px;
  text-align: center;
}

.main-timeline-review a {
  color: var(--color-default);
}

.main-timeline-review a p {
  margin-bottom: 8px;
  font-size: 20px;

}

.main-timeline-review a img {
  width: 150px;
}

.testimonial-page {
  position: relative;
}

.get-in-touch {
  background: linear-gradient(45deg, var(--color-four), var(--color-teritary));
  color: #fff;
  padding: 30px 18px;
  position: relative;
}

.get-in-touch h3 {
  text-transform: uppercase;
  font-size: 30px;
  color: #fff;
  text-align: center;
  margin-bottom: 9px;
}

._g-i-tc-list {
  line-height: 25px;
  padding-left: 36px;
  border-bottom: 2px dotted #ffffff75;
  padding-bottom: 17px;
  position: relative;
  margin-bottom: 19px;
}

._g-i-tc-list i {
  top: 0;
  position: absolute;
  left: 0;
  color: #ececec;
  font-size: 28px;
  text-align: center;
  border-radius: 50%;
}

._g-i-tc-list a {
  color: #fff;
}

.contact-inner-box {
  position: relative;
  margin-top: 68px;
}

.clinic-timings p {
  font-size: 19px;
  margin-top: 48px;
  margin-bottom: 0px;
  line-height: 32px;
}

.appnt-btn a {
  background: var(--color-default);
  color: #fff;
  padding: 7px 10px;
}

.appnt-btn {
  margin-top: 10px;
}

.contact_form::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/contact-inner-left.png);
  /* z-index: -1; */
  background-position: center top;
  left: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
  filter: grayscale(1);
  top: -20px;
}

.about-inner-content h3 {
  font-size: 20px;
  color: var(--color-default);
  margin-top: 5px;
  margin-bottom: 4px;
  background: linear-gradient(45deg, #1354a017, transparent);
  display: inline-block;
  border-left: 3px solid;
  padding: 8px 20px 8px 10px;
  color: var(--color-teritary);
}

.about-inner-content p {
  font-size: 15px;
  text-align: justify;
}

.about-inner-img img {
  border: 8px solid #ffffff;
  box-shadow: 0px 0px 16px 0px #0000004d;
}

.abt-doc-name h2 {
  font-size: 42px;
  text-transform: uppercase;
  color: var(--color-four);
}

.abt-doc-name h3 {
  background: transparent;
  border-left: 0px;
  padding: 0px;
  margin-top: 4px;
  margin-bottom: 4px;
  color: var(--color-default);
}

.abt-doc-name h4 {
  font-size: 20px;
  color: var(--color-teritary);
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}

.about-inner-img {
  margin-bottom: 30px;
}




.gal_row .col-md-3 {
  padding: 0 12px;
}

.gallery_block .box {
  background-color: var(--color-default);
  overflow: hidden;
  position: relative;
  height: 170px;
  margin-bottom: 32px;
  box-shadow: 0px 17px 10px -10px #0000005c;
}

.gallery_block .box:before,
.gallery_block .box:after {
  content: '';
  background: linear-gradient(to right, var(--color-four), var(--color-teritary));
  height: 50%;
  width: 100%;
  opacity: 0.8;
  position: absolute;
  top: -50%;
  left: 0;
  z-index: 1;
  transition: all 0.3s ease-in 0s;
}

.gallery_block .box:after {
  top: auto;
  bottom: -50%;
}

.gallery_block .box:hover:before {
  top: 0;
}

.gallery_block .box:hover:after {
  bottom: 0;
}

.gallery_block .box img {
  width: 100%;
  height: auto;
}

.gallery_block .box .box-content {
  color: #fff;
  text-align: center;
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 40%;
  left: 0;
  z-index: 2;
  transition: all 0.3s ease-out 0.1s;
}

.gallery_block .box:hover .box-content {
  opacity: 1;
  top: 20%;
}

.gallery_block .box .title {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin: 0;
}

.gallery_block .box .title:after {
  content: '';
  height: 2px;
  width: 70px;
  border-top: 2px dashed rgba(255, 255, 255, 0.7);
  margin: 7px auto 10px;
  display: block;
  clear: both;
}

.gallery_block .box .post {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

.gallery_block .box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: 40%;
  z-index: 2;
  transition: all 0.3s ease-out 0.1s;
}

.gallery_block .box:hover .icon {
  opacity: 1;
}

.gallery_block .box .icon li {
  margin: 0 3px;
  display: inline-block;
}

.gallery_block .box .icon li a {
  color: #444;
  background-color: #fff;
  font-size: 15px;
  text-align: center;
  line-height: 33px;
  height: 35px;
  width: 35px;
  border-radius: 10px;
  display: block;
  transition: all 0.3s ease 0s;
}

.gallery_block .box .icon li a:hover {
  color: #fff;
  background: var(--color-four);
}

.video-row iframe {
  box-shadow: -1px 8px 12px -10px #000000ad;
  height: 250px;
  width: 100%;
  margin-bottom: 30px;
}

.ai-txt-img img {
  width: 470px;
  margin-bottom: 10px;
}

.ai-endo h4 span {

  font-weight: 600;
  color: var(--color-teritary);
  font-size: 23px;
  margin: 15px 0px 5px;
}

.ai-endo h4 {

  font-weight: 400;
  color: var(--color-default);
  font-size: 16px;
  line-height: 30px;
  text-align: justify;

}

.ai-endo h5 {
  color: var(--color-four);
  font-size: 25px;
}

.inner-serv-img1 img {
  border: 6px solid #f5f5f5;
  box-shadow: 0px 0px 8px #00000052;
  width: 250px;
  margin: 20px 0;
}

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

.highlights-ai-txt .ol_styles {
  margin-bottom: 2px;
}

.highlights-blk {
  margin-bottom: 10px;
}

.ai-endo h5 {
  background-color: var(--color-four);
  color: #fff;
  padding: 5px 7px;
}

.modal-dialog {
  max-width: 620px;
  margin: 4.75rem auto;
}
.pp-header.modal-header {
  display: block;
  padding: 0;
  border: none;
}
button.pp-close.close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background-color: var(--color-four);
  opacity: 1;
  color: #fff;
  font-size: 35px;
  padding: 0 6px 2px;
}

.footer-adr .col-md-3:nth-child(1) {
  border-right: 1px solid #15151533;
}
