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

:root {
  --color-default: #000;
  --color-primary: #3d354a;
  --color-secondary: #3d354a;
  --color-teritary: #f4efe9;
}

@font-face {
  font-family: "Minerva Modern";
  src: url(../webfont/minerva-modern/minerva-modern-black.otf);
  src: url(../webfont/minerva-modern/minerva-modern-bold.otf);
  src: url(../webfont/minerva-modern/minerva-modern-regular.otf);
  display: swap;
}

.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: "Open Sans", serif;
}

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

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

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

.main-menu .navigation > li .active {
  color: #fff;
  background: var(--color-primary);
  margin-top: 3px;
}

.main-menu .navigation > li .active i {
  color: #fff;
}

.main-menu .navigation > li .active:hover {
  color: #fff;
  background: var(--color-secondary);
}

.main-menu .navigation > li .active .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: -99;
  /* background-image: url(../gallery/bg.png); */
  background-image: url(../gallery/bg.jpg);
  filter: grayscale(1);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

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

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

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

.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 li .submenu {
  position: absolute;
  width: 150px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  background-color: #f2fcff;
  z-index: 25;
  box-shadow: 0 3px 3px #6e6e6e;
  right: -42px;
  padding: 14px;
  text-align: left;
}

.main-menu li .submenu li {
  display: block;
}

.main-menu li .submenu li a {
  padding: 6px 5px 1px;
  border-bottom: 1px solid #a2a2a27a;
  display: block;
  font-weight: 500;
  text-transform: initial;
  color: var(--color-default);
  font-size: 15px;
  transition: all 500ms ease;
  position: relative;
}

.main-menu li .submenu li a:before {
  position: absolute;
  content: "_";
  font-size: 15px;
  color: #fff;
  left: 0px;
  opacity: 0;
  transition: all 0.5s ease-out;
  top: -2px;
  bottom: 0px;
  margin: auto;
}

.main-menu li .submenu li a:hover:before {
  opacity: 1;
  left: 20px;
}

.main-menu li .submenu li a:hover {
  padding-left: 40px;
}

.main-menu li .submenu li a:hover {
  background: var(--color-secondary);
  color: #fff;
}

.main-menu li:hover > .submenu.mega-menu {
  width: 640px;
}

.main-menu li:hover > .submenu {
  left: -200px;
}

.mega-menu .row .col-md-6 {
  border-right: 1px dashed #a2a2a27a;
}

.mega-menu .col-md-6:nth-child(1) li:last-child a,
.mega-menu .col-md-6:nth-child(2) li:last-child a {
  border-bottom: 0px;
}

.mega-menu .row .col-md-6:last-child {
  border-right: 0px;
}

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

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

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

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

.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: 2px 10px;
  opacity: 1;
  color: var(--color-default);
}

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

.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;
  left: 0;
  width: 1230px;
  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: #393939;
  -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: 100vh;
  max-height: 100vh;
  overflow-y: hidden;
  overflow-x: hidden;
  background: linear-gradient(to top, #00101c, var(--color-primary));
  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 .menu-box::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/menu-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.1;
  bottom: 0px;
  top: 0px;
  margin: auto;
}

.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 li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > ul > li {
  border-top: 1px solid #0000001a;
}

.mobile-menu .navigation li > ul > li > ul > li {
  border-top: 1px solid rgba(23, 23, 23, 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: none;
}

.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  padding: 18px 23px;
  color: #ffffff;
  font-size: 25px;
  line-height: 24px;
  letter-spacing: 0.5px;
  font-weight: 300;
  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: 18px;
  font-weight: 400;
  /* margin-left: 20px; */
  padding: 10px 16px;
  text-transform: capitalize;
  position: relative;
  color: #fff;
}

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

.main-menu .navigation > li > ul .dropdown-btn {
  display: none;
}

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

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

.mobile-menu .navigation li > ul {
  display: none;
  background: var(--color-secondary);
  /* height: 280px; */
  /* overflow-y: auto; */
  position: absolute;
  z-index: 2;
  box-shadow: 0px 0px 16px #1c1c1c9e;
}

.mobile-menu .navigation li > ul > li > ul {
  display: none;
  background: #fff;
  position: absolute;
  z-index: 55;
  box-shadow: 0px 0px 16px #ffffff9e;
  width: 225px;
}

.mobile-menu .navigation li > ul::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.mobile-menu .navigation li > ul::-webkit-scrollbar-track {
  background: #dbdbdb;
}

/* Handle */
.mobile-menu .navigation li > ul::-webkit-scrollbar-thumb {
  background: #000000;
}

/* Handle on hover */
.mobile-menu .navigation li > ul::-webkit-scrollbar-thumb:hover {
  background: #555;
}

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

.banner-one__slide {
  height: 100vh;
  background: #f4efe9;
  clip-path: polygon(0 0, 0 56%, 8% 78%, 68% 92%, 100% 48%, 100% 0);
}

.slide-one {
  background-image: url(../gallery/banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/***
====================================================================
	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);
}

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

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

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

.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: var(--color-secondary);
  text-align: center;
  line-height: 34px;
  font-size: 14px;
  margin: 0px 1px;
  transition: all 300ms ease;
  border-radius: 8px;
  background: #000;
}

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

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

.top-social li a:hover {
  color: var(--color-primary);
}

/***
====================================================================
	Desktop Menu
====================================================================
***/
.desktop-nav-toggler {
  margin-top: 30px;
  cursor: pointer;
}

.inner1::before {
  content: " ";
  position: absolute;
  width: 78px;
  height: 100px;
  background: var(--color-secondary);
  top: -43px;
  left: -20px;
  right: 0px;
  margin: auto;
  z-index: -1;
  border-radius: 0px 0px 88px 88px;
}

.inner1 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.inner1 img {
  width: 35px;
  filter: brightness(0) invert(1);
}

.inner1 span {
  font-size: 27px;
  text-transform: uppercase;
  color: var(--color-default);
  display: inline-block;
}

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

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

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

.menu-box-centered {
  position: relative;
  /* display: flex;  */
  justify-content: center;
  height: 100%;
  width: 100%;
  padding-top: 65px;
}

.menu-left-side {
  position: relative;
  width: 100%;
  height: 1000px;
}

.menu-left-side::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/surgical-procedure-made-by-doctor.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 0px;
  bottom: 0px;
  margin: auto;
  filter: grayscale(0.5);
}

.menu-left-side h2 {
  font-weight: 800;
  text-transform: uppercase;
  position: absolute;
  writing-mode: sideways-lr;
  opacity: 0.2;
  color: #ffffff;
  font-size: 62px;
  top: 30px;
  left: 30px;
}

.locat-menu {
  position: relative;
  color: #fff;
  margin-top: 40px;
}

.locat-menu h2 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.locat-menu p {
  margin-bottom: 15px;
  color: #ffffffcf;
}

.social-menu {
  position: relative;
  color: #fff;
  margin-top: 30px;
  padding-top: 30px;
}

.social-menu h2 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.social-menu ul li {
  display: inline-block;
}

.social-menu ul li a {
  background: var(--color-teritary);
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--color-primary);
  border-radius: 50%;
  transition: all 300ms ease;
}

.social-menu ul li a:hover {
  background: var(--color-teritary);
  color: var(--color-default);
}

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

/* .abt-sec::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 233%;
  background: linear-gradient(to right, #fff8cd, #ffffff00);
  left: 0px;
  transform: skewY(10deg) rotate(45deg);
  top: 0px;
  border-radius: 145px;
  z-index: -99;
  opacity: 0.3;
  right: 0px;
  margin: auto;
} */

.abt-sec::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 233%;
  background: linear-gradient(to right, #f4efe9, #ffffff00);
  left: 0px;
  transform: skewY(10deg) rotate(45deg);
  top: 0px;
  border-radius: 145px;
  z-index: -99;
  opacity: 0.5;
  right: 0px;
  margin: auto;
}

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

.doc-img::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  z-index: -1;
  top: -15px;
  left: -21px;
}

.doc-img img {
  box-shadow: 12px 12px 20px -10px #0000007d;
}

.abt-head {
  position: absolute;
}

/* .abt-head h2 {
  writing-mode: sideways-rl;
  font-size: 130px;
  opacity: 0.08;
  color: var(--color-primary);
  z-index: 2;
  text-transform: uppercase;
  position: relative;
  top: -95px;
  font-family: "Minerva Modern";
  font-weight: 300;
} */
.abt-head h2 {
  font-size: 130px;
  opacity: 0.08;
  color: var(--color-primary);
  z-index: 2;
  text-transform: uppercase;
  position: relative;
  top: 46px;
  font-family: "Minerva Modern";
  font-weight: 300;
  transform: rotate(90deg);
  left: -132px;
}

.doc-matter {
  padding: 20px 78px;
  width: 640px;
  position: relative;
  left: -96px;
  color: #fff;
  position: relative;
}

.doc-matter::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  z-index: -1;
  left: 0px;
  top: 0px;
  transform: skewX(10deg);
}

.doc-matter::after {
  content: " ";
  position: absolute;
  width: 88%;
  height: 81%;
  z-index: -2;
  top: 0px;
  transform: skewX(10deg);
  box-shadow: 0px 0px 8px #000;
  bottom: 0px;
  right: 0px;
  margin: auto;
}

.doc-matter h2 {
  text-transform: uppercase;
  font-size: 38px;
}

.doc-matter h3 {
  font-size: 18px;
  font-weight: 400;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin-bottom: 7px;
  padding-bottom: 8px;
  display: inline-block;
}

.doc-matter h4 {
  font-size: 18px;
  font-weight: 400;
}

.doc-content {
  margin-top: 30px;
}

.doc-content p {
  line-height: 30px;
  font-size: 15px;
}

.doc-content a {
  background: var(--color-primary);
  color: #fff;
  padding: 4px 20px 6px;
}

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

.serv-sec .container {
  max-width: 1230px;
}

.serv-head-bg {
  position: relative;
  width: 100%;
  height: 600px;
}

.serv-head-bg::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to top, var(--color-default), var(--color-primary)); */
  background: #023965;
  z-index: -1;
  right: 0px;
  top: 0px;
  border-radius: 999px;
}

.serv-head-bg::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/about-right.jpg);
  filter: grayscale(1);
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  right: 0px;
  top: 0px;
  opacity: 0.2;
  border-radius: 999px;
}

.serv-head {
  position: absolute;
  color: #ffffff;
  top: 25px;
  right: 10px;
  opacity: 0.2;
}

.serv-head h2 {
  position: relative;
  writing-mode: tb;
  right: 0px;
  left: 0px;
  margin: auto;
  width: fit-content;
  font-size: 85px;
  text-transform: uppercase;
  font-family: "Minerva Modern";
  font-weight: 300;
}

.serv-block {
  top: 0px;
  transition: all 300ms ease;
  position: relative;
  margin: 65px 0px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid #fff;
  box-shadow: 0px 13px 6px -10px #00000063;
}

.serv-block .serv-main-img::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 0px;
  background: linear-gradient(45deg, var(--color-default), var(--color-secondary) 50%);
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 1;
  opacity: 0.5;
  transition: all 0.8s ease;
}

.serv-block:hover .serv-main-img::before {
  height: 100%;
}

.serv-block:hover .serv-main-box {
  bottom: 0px;
}

.serv-main-box {
  position: absolute;
  bottom: -200px;
  left: 0px;
  right: 0px;
  margin: auto;
  text-align: center;
  padding: 20px 10px;
  transition: all 1s ease;
  z-index: 2;
}

.serv-main-box::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  border-top: 2px solid #fff;
  bottom: 0px;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  opacity: 0.8;
}

.serv-main-box h2 {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 400;
}

.serv-main-box h2 a {
  color: #fff;
}

.serv-main-icon {
  margin-bottom: 10px;
}

.serv-main-icon img {
  width: 60px !important;
  filter: brightness(0) invert(1);
  margin: auto;
}

.serv-block .serv-main-img img {
  filter: grayscale(0.5);
  transition: all 300ms ease;
  right: 0px;
  position: relative;
}

.serv-block:hover .serv-main-img img {
  filter: grayscale(1) blur(1px);
  transform: scale(1.5);
  right: -30px;
}

.serv-main-row .serv-block.serv-block1 {
  top: 50px;
}

.serv-main-row .owl-nav {
  position: relative;
  top: 0px;
  right: 0;
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.serv-main-row.owl-carousel .owl-nav .owl-prev {
  position: relative;
  left: 0px;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  text-align: center;
  line-height: 40px;
  top: 0px;
  bottom: 0px;
  color: #fff;
}

.serv-main-row.owl-carousel .owl-nav .owl-next {
  position: relative;
  left: 0px;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  text-align: center;
  line-height: 40px;
  top: 0px;
  bottom: 0px;
  color: #fff;
}

.serv-main-head {
  position: relative;
  text-align: right;
  margin-left: 200px;
}

.serv-main-head::before {
  content: " ";
  position: absolute;
  width: 75%;
  height: 2px;
  background: linear-gradient(to left, var(--color-secondary), #ffffff00);
  bottom: -15px;
  right: 0px;
  margin: auto;
}

.serv-main-head::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  bottom: -19px;
  right: 0px;
  margin: auto;
}

.serv-main-head h2 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

.testimonial-sec {
  position: relative;
}

.testimonial-inner {
  position: relative;
  min-height: 60vh;
}

.testimonial-inner::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 118%;
  /* background: #f4efe9; */
  background: #f9fcff;
  left: 0px;
  top: -50px;
  margin: auto;
  /* clip-path: polygon(0 0, 100% 0, 100% 73%, 0 100%); */
  clip-path: polygon(0 17%, 100% 0, 100% 83%, 0 100%);
  z-index: -1;
}

.testimonial-inner::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 140%;
  background-image: url(../gallery/testimonial-img.png);
  background-repeat: no-repeat;
  left: -410px;
  background-position: center;
  background-size: 40%;
  top: -128px;
  z-index: -1;
}

.testimonial-head h2 {
  font-size: 78px;
  opacity: 0.2;
  color: var(--color-primary);
  z-index: 2;
  text-transform: uppercase;
  position: relative;
  top: -50px;
  font-weight: 300;
  left: 60px;
  text-align: right;
  font-family: "Minerva Modern";
}

.testimonial-review {
  position: absolute;
  right: 0px;
  opacity: 0.2;
  width: 200px;
}

.testimonial-quote {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 138px;
}

.testimonial-block {
  padding-top: 150px;
}

.testimonial-box {
  position: relative;
  margin-left: 50px;
  z-index: 1;
}

.testimonial-box::before {
  content: " ";
  position: absolute;
  width: 60%;
  height: 1px;
  background: var(--color-default);
  bottom: -20px;
  right: 0px;
}

.testimonial-box::after {
  content: " ";
  position: absolute;
  width: 1px;
  height: 145%;
  background: var(--color-default);
  bottom: -53px;
  right: 38px;
}

.testimonial-box h2 {
  font-size: 30px;
  text-transform: capitalize;
  color: var(--color-default);
}

.testimonial-box p {
  font-size: 15px;
  padding-right: 100px;
}

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

.appnt-inner {
  position: relative;
  min-height: 60vh;
}

.appnt-inner::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: #e9f2f9; */
  background: #a6a294;
  left: 0px;
  bottom: 200px;
  margin: auto;
  z-index: -2;
}

.appointment-form h2 {
  position: absolute;
  font-weight: 300;
  display: inline-block;
  color: #fff;
  font-size: 38px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Minerva Modern";
  top: -30px;
  right: 35px;
  background: #a6a294;
  padding: 5px 62px;
  clip-path: polygon(0 0, 83% 0, 100% 100%, 16% 100%);
}

.appointment-form p {
  font-size: 15px;
  color: #ffffffab;
  margin-bottom: 30px;
  font-weight: 300;
}

.appointment-form {
  padding: 38px 48px 28px;
  position: relative;
  z-index: 2;
  border-radius: 10px;
  margin-top: 135px;
}

.appointment-form::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/appnt-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  left: 0px;
  opacity: 0.2;
}

.appointment-form::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  left: 0px;
  top: 0px;
  z-index: -1;
  border-radius: 10px;
}

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

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

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

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

.appointment-form .form-control {
  color: #ffffffab;
  border-bottom: none;
  background: #e2fbf912;
  padding: 11px 45px;
  font-size: 15px;
  border-bottom: 1px solid #ffffff8d;
  border-radius: 58px;
}

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

.appnt-box {
  position: relative;
}

.appnt-box::before {
  content: " ";
  position: absolute;
  width: 70%;
  height: 2px;
  background: var(--color-primary);
  top: -10px;
  right: -58px;
}

.appnt-box::after {
  content: " ";
  position: absolute;
  width: 70%;
  height: 2px;
  background: var(--color-primary);
  bottom: -10px;
  left: -58px;
}

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

.faq-head h2 {
  color: var(--color-secondary);
  font-size: 50px;
  font-family: "Minerva Modern";
  font-weight: 300;
}

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

.main-timeline {
  position: relative;
  margin-top: 20px;
}

.main-timeline:after {
  content: "";
  display: block;
  clear: both;
}

.main-timeline .timeline {
  /* width: 50%; */
  padding: 0 0 0 45px;
  margin: 0 0 30px 5px;
  float: right;
}

.main-timeline .timeline-content {
  color: #777;
  background: linear-gradient(#fff 50%, #f9f9f9 50%);
  padding: 15px 15px 15px 70px;
  border: 10px solid #fff;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  display: block;
  position: relative;
}

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

.main-timeline .timeline-content:before {
  content: "";
  background: linear-gradient(to right bottom, var(--color-secondary) 50%, #4b4357 50%);
  width: 100px;
  height: 100px;
  border-radius: 0 0 0 100px;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  left: -75px;
}

.main-timeline .timeline-icon {
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  line-height: 35px;
  transform: translateY(-50%);
  position: absolute;
  left: -35px;
  top: 50%;
}

.main-timeline .timeline-icon img {
  width: 50px;
  filter: brightness(0) invert(1);
}

.main-timeline .title {
  color: var(--color-primary);
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.main-timeline .description {
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

.main-timeline .timeline:nth-child(even) {
  padding: 0 45px 0 0;
  margin: 0 5px 30px 0;
  float: left;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
  padding: 20px 70px 20px 20px;
}

.main-timeline .timeline:nth-child(even) .timeline-content:before {
  transform: translateY(-50%) rotate(225deg);
  left: auto;
  right: -75px;
}

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

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

  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content {
    text-align: center;
    padding: 60px 5px 20px;
  }

  .main-timeline .timeline-content:before,
  .main-timeline .timeline:nth-child(even) .timeline-content:before {
    transform: translateY(0) translateX(-50%) rotate(135deg);
    top: -75px;
    left: 50%;
    right: 0;
  }

  .main-timeline .timeline-icon,
  .main-timeline .timeline:nth-child(even) .timeline-icon {
    transform: translateY(0) translateX(-50%);
    left: 50%;
    right: auto;
    top: -35px;
  }
}

.faq-row {
  position: relative;
}

.faq-row::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 60%;
  background: #f4efe9;
  bottom: 70px;
  box-shadow: 0px 0px 20px -10px #000;
}

.faq-row-outer {
  position: relative;
}

.faq-row-outer::before {
  content: " ";
  position: absolute;
  width: 30px;
  height: 42%;
  background: var(--color-primary);
  left: -30px;
  bottom: 0px;
  z-index: 1;
  top: 125px;
  margin: auto;
  border-radius: 60px;
}

.faq-row-outer::after {
  content: " ";
  position: absolute;
  width: 30px;
  height: 42%;
  background: var(--color-primary);
  right: -30px;
  bottom: 0px;
  z-index: 1;
  top: 125px;
  margin: auto;
  border-radius: 60px;
}

.faq-head {
  position: relative;
  margin-bottom: 30px;
}

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

.faq-img img {
  box-shadow: 0px 20px 12px -10px #00000052;
  border: 8px solid #fff;
}

.treatment-sec {
  position: relative;
  margin-bottom: 166px;
}

.treatment-sec::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 200px;
  background: #f4efe9;
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.treatment-sec .container {
  max-width: 1390px;
}

.treatment-block {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0px 0px 20px -10px #000000c2;
  border-radius: 10px;
  margin: 16px;
  background: var(--color-primary);
}

.treatment-block.head-block::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/treatments/head-and-neck-oncology.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translateX(0);
  animation: slowZoom 10s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(1px);
  }
}

.treatment-block.breast-block::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/treatments/breast-oncology.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1) translateX(0);
  animation: slowZoom 10s ease-in-out infinite alternate;
}

.treatment-block.bone-cancer-block::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/treatments/soft-tissue-bone-cancer.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1) translateX(0);
  animation: slowZoom 10s ease-in-out infinite alternate;
}

.treatment-block.gynec-block::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/treatments/gynecology-oncology.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1) translateX(0);
  animation: slowZoom 10s ease-in-out infinite alternate;
}

.treatment-block.uro-block::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/treatments/uro-oncology.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1) translateX(0);
  animation: slowZoom 10s ease-in-out infinite alternate;
}

.treatment-block.robotic-block::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/treatments/robotic-oncology.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1) translateX(0);
  animation: slowZoom 10s ease-in-out infinite alternate;
}

.treatment-block.peritoneal-cancer-block::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/treatments/peritoneal-cancer-surgery.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1) translateX(0);
  animation: slowZoom 10s ease-in-out infinite alternate;
}

.treatment-thumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  z-index: 2;
  position: absolute;
  bottom: -63px;
  right: 50px;
  animation: upDown 2s infinite ease-in-out;
}

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

  50% {
    transform: translateY(8px);
  }
}

.treatment-thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  /* opacity: 0.5; */
  border-radius: 50%;
  transition: 0.3s ease;
  filter: grayscale(1) brightness(0.5);
}

.treatment-thumbs img.thumbs-1 {
  width: 60px;
  height: 60px;
}

.treatment-thumbs img.thumbs-2 {
  width: 80px;
  height: 80px;
}

.treatment-thumbs img.thumbs-3 {
  width: 100px;
  height: 100px;
}

.treatment-thumbs img.thumbs-4 {
  width: 120px;
  height: 120px;
}

.treatment-thumbs img.thumbs-5 {
  width: 130px;
  height: 130px;
}

.treatment-thumbs img.thumbs-6 {
  width: 145px;
  height: 145px;
}

.treatment-thumbs img.thumbs-7 {
  width: 160px;
  height: 160px;
}

.treatment-thumbs img.thumbs-8 {
  width: 180px;
  height: 180px;
}

.treatment-thumbs img.active {
  filter: grayscale(0);
  border: 2px solid #fff;
  box-shadow: 0px 0px 11px #00000063;
}
.treatment-block::after {
  content: " ";
  position: absolute;
  width: 800px;
  height: 800px;
  background: var(--color-secondary);
  left: -138px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  border-radius: 50%;
  opacity: 0.9;
}

.treatment-inner {
  position: relative;
  color: #fff;
  z-index: 1;
  padding-top: 200px;
  margin-left: 100px;
  width: 500px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.treatment-scroll .owl-item.active .treatment-inner {
  opacity: 1;
  transform: translateY(0);
}

.treatment-inner h2 {
  font-weight: 300;
  font-family: "Minerva Modern";
  font-size: 40px;
  margin-bottom: 13px;
  position: relative;
  padding-bottom: 10px;
}

.treatment-inner h2::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--color-teritary), #ffffff00);
  bottom: 0px;
}

.treatment-inner p {
  font-size: 13px;
}

.treatment-inner a {
  color: #fff;
  border: 1px solid var(--color-teritary);
  padding: 2px 10px 3px;
  font-size: 13px;
  border-radius: 20px;
}

.treatment-main-block {
  position: relative;
}

.treatment-main-head {
  position: absolute;
  z-index: 2;
  top: 78px;
}

.treatment-main-head h2 {
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 50px;
  font-family: "Minerva Modern";
  font-weight: 300;
  background: #f4efe9;
  padding: 3px 23px;
}

.treatment-icon {
  margin-bottom: 10px;
  position: relative;
}

.treatment-icon img {
  width: 90px !important;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.footer-sec {
  position: relative;
}

.footer-sec::before {
  content: " ";
  position: absolute;
  width: 800px;
  height: 800px;
  background: linear-gradient(to bottom, #f4efe9, #ffffff00);
  transform: rotate(45deg);
  border-radius: 40px;
  z-index: -1;
  opacity: 0.6;
}

.footer-sec::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/ribbon.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  top: 158px;
  border-radius: 40px;
  z-index: -1;
  opacity: 0.1;
  right: 0px;
  transform: rotate(-15deg);
}

.footer-box {
  position: relative;
}

.contact-box {
  position: relative;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  z-index: 1;
  border-radius: 10px;
}

.contact-box::before {
  content: " ";
  position: absolute;
  width: 97%;
  height: 97%;
  border: 1px solid #fff;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  opacity: 0.3;
  border-radius: 10px;
}

.address {
  position: relative;
  margin-bottom: 15px;
  font-size: 16px;
}

.address .text {
  font-size: 16px;
  letter-spacing: 0.4px;
}

.address i {
  position: relative;
  margin: 0px auto 5px;
  left: 0px;
  width: 32px;
  height: 32px;
  background: var(--color-teritary);
  color: var(--color-primary);
  font-size: 15px;
  text-align: center;
  line-height: 31px;
  display: block;
  border-radius: 50%;
}

.address-box {
  position: relative;
  padding: 26px 16px 35px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

.address-box::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(1);
  background-size: contain;
  opacity: 0.1;
}

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

.footer-about {
  position: relative;
}

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

.footer-matter {
  padding-top: 10px;
}

.footer-matter p {
  font-size: 15px;
  line-height: 30px;
}

.footer-matter p a {
  color: var(--color-primary);
  font-weight: 600;
}

.footer-links {
  position: relative;
  padding-top: 20px;
  margin-bottom: 18px;
}

.footer-links::after {
  content: " ";
  position: absolute;
  width: 60%;
  height: 1px;
  background: var(--color-primary);
  left: 25px;
  bottom: 0px;
}

.footer-links::before {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 25px;
  bottom: 0px;
  margin: auto;
  background: var(--color-secondary);
  z-index: 1;
}

.links-head::before {
  content: " ";
  position: absolute;
  width: 90%;
  height: 1px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  background: var(--color-primary);
}

.links-head::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  background: var(--color-secondary);
}

.footer-links .links-head {
  position: relative;
  width: 500px;
  margin: 0px auto 8px;
}

.footer-links .links-head h2 {
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  position: relative;
  background: var(--color-secondary);
  padding: 3px 10px;
}

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

.useful-links {
  display: inline-block;
  padding: 6px 38px 12px;
}

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

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

.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: 15px;
}

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

.footer-social {
  position: relative;
}

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

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

.footer-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-primary));
  border-radius: 50%;
}

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

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

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

.footer-social {
  position: absolute;
  width: auto;
  bottom: -49px;
  right: 15px;
}

.footer-timings {
  position: relative;
  padding: 13px;
  width: 420px;
  margin: auto;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: 68px;
  background: var(--color-secondary);
  border-radius: 14px;
}

.footer-timings h2 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 5px;
  display: inline-block;
  border-bottom: 1px dashed;
  padding-bottom: 5px;
}

.footer-timings p {
  color: #fff;
  margin-bottom: 0;
}

.bottom-footer {
  padding: 5px 0;

  margin-top: 35px;
}

.bottom-footer p {
  margin: 0;
  font-size: 15px;
  display: inline-block;
  padding: 7px 15px 4px;
  border-top: 1px solid var(--color-default);
}

.bottom-footer a {
  color: var(--color-secondary);
  font-weight: 600;
}

.addre-widget h2 {
  text-transform: uppercase;
  opacity: 0.1;
  margin-bottom: 10px;
}

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

.certificate-head h2 {
  font-weight: 400;
  color: #000;
  margin: 0px 75px;
  font-size: 28px;
  line-height: 40px;
  position: relative;
  padding: 20px 0px;
}

.certificate-head {
  position: relative;
  margin-bottom: 30px;
}

.certificate-head:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f4efe9;
  z-index: -1;
  clip-path: polygon(0 0, 4% 50%, 0 100%, 100% 100%, 96% 50%, 100% 0);
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  opacity: 0.7;
}

.certificate-head h2 span {
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-secondary);
  font-size: 32px;
  font-family: "Minerva Modern";
}

.box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0px 15px 10px -10px #0000003d;
  border: 3px solid #f5f5f5;
}
.box img {
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease 0s;
  filter: grayscale(1);
}
.box:hover img {
  transform: scale(1.2);
  filter: grayscale(0.7) blur(2px);
}
.box .box-content {
  color: #fff;
  text-align: center;
  width: 100%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) scale(0);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transition: all 0.6s ease;
}
.box:hover .box-content {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%) scale(1);
  transition-delay: 0.2s;
}
.box .title {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin: 0 0 7px;
}
.box .post {
  font-size: 16px;
  font-style: italic;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 13px;
  display: block;
}
.box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
}
.box .icon li {
  margin: 0 4px;
  display: inline-block;
}
.box .icon li a {
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
  height: 35px;
  width: 35px;
  display: block;
  transition: all 0.3s;
  border-radius: 10px;
  background: var(--color-secondary);
}
.box .icon li a:hover {
  background: var(--color-primary);
  box-shadow: 0 0 10px #fff;
}
.box .icon li a i {
  line-height: inherit;
  font-size: 14px;
}
@media only screen and (max-width: 990px) {
  .box {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .box .title {
    font-size: 20px;
  }
}

.certificate-block {
  position: relative;
  margin-bottom: 30px;
}

.certificate-block h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

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

.top-wrap1 {
  position: relative;
}

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

.inner-section1 {
  position: relative;
  padding: 38px 0 98px;
}
.serv-matter p {
  text-align: justify;
  line-height: 30px;
  margin-bottom: 10px;
  font-size: 15px;
}

.serv-matter p a {
  font-weight: 600;
}
.serv-matter strong {
  font-weight: 600;
}
.serv-matter h2 {
  color: var(--color-secondary);
  font-size: 20px;
  margin: 15px 0px 6px;
  font-weight: 600;
  text-transform: uppercase;
}
.serv-matter h3 {
  color: var(--color-secondary);
  font-size: 18px;
  margin: 22px 0px 8px;
}
.inner-serv-img {
  text-align: center;
  position: relative;
}
.inner-serv-img img {
  box-shadow: 0px 0px 14px #00000021;
  border-radius: 8px;
  border: 1px solid var(--color-secondary);
  padding: 6px;
}

.ol_styles {
  padding: 0;
  padding-left: 20px;
}

.ol_styles li {
  position: relative;
  margin-bottom: 5px;
  line-height: 26px;
  font-size: 15px;
  text-align: justify;
  list-style: disc;
}

.breadcrumb {
  position: relative;
  padding: 138px 0 128px;
  margin-bottom: 0;
  z-index: 2;
  background: transparent;
  display: block;
  overflow: hidden;
}

.breadcrumb::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f4efe9;
  clip-path: polygon(0 0, 0 56%, 8% 78%, 68% 92%, 100% 48%, 100% 0);
  top: 0px;
  z-index: -1;
}

.breadcrumb .container {
  max-width: 1200px;
}

.bread-inner {
  position: relative;
}
.bread-bg {
  padding: 33px 0px 0px;
  position: relative;
}

.bread-inner {
  position: relative;
  text-align: center;
}

.breadcrumb h1 {
  color: #000;
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 11px;
  padding: 0px 10px;
  position: relative;
}

.breadcrumb ul li a {
  font-weight: 400;
  color: #fff;
}

.breadcrumb ul li.active a {
  font-weight: 500;
}

.breadcrumb ul li:last-child::before {
  content: none;
}

.breadcrumb ul li {
  font-size: 18px;
  display: inline-block;
  position: relative;
  text-transform: capitalize;
  padding: 0px 12px;
  margin: 0;
}

.breadcrumb ul {
  position: relative;
  display: inline-block;
  background: var(--color-secondary);
  padding: 4px 8px;
  border-radius: 30px;
  box-shadow: 5px 6px 0px #818181;
}

.breadcrumb ul i {
  font-size: 18px;
  color: #fff;
}

.adr-row {
  justify-content: center;
}
.adr-row .col-md-4 {
  border-right: 2px dotted var(--color-primary);
  padding: 11px 22px;
}
.adr-row .col-md-4:nth-child(3) {
  border-right: 0px;
}
.adr-blk {
  text-align: center;
  color: #eee;
}
.adr-blk h4 {
  color: #63c6ff;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.adr-blk i {
  width: 45px;
  height: 45px;
  background: linear-gradient(to top, #894242, #cbaeae);
  color: #ffffff;
  border-radius: 50%;
  font-size: 20px;
  line-height: 46px;
}
.adr-blk p {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-default);
}
.adr-blk a {
  display: block;
  color: var(--color-default);
}

.adr-txt h2 {
  color: var(--color-default);
  font-size: 24px;
  border-bottom: 1px dashed var(--color-default);
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 500;
}

.adr-txt p span {
  text-transform: uppercase;
  font-weight: 600;
}

.adr-blk .adr-icon {
  width: 90px;
  position: relative;
  margin: auto;
}

._cform {
  position: relative;
  padding: 23px 23px;
  max-width: 1000px;
  text-align: center;
  border-right: 1px dashed;
}
._cform h3 {
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 34px;
  color: var(--color-secondary);
  display: inline-block;
  border-bottom: 1px solid;
  padding-bottom: 9px;
}
._cform .form-control {
  height: 50px;
}
._cform textarea {
  height: 100px !important;
}
iframe {
  box-shadow: 0 0 10px #ccc;
  border: 7px solid #fff;
}
._cform .form-control::placeholder {
  color: #000000;
  opacity: 1;
}
._cform .form-control:focus {
  color: #000;
}
._cform .btn {
  background: var(--color-primary);
  border-color: transparent;
}
.c-form-row {
  position: relative;
  background-color: #fff;
  padding: 25px 15px;
  margin-top: 19px;
  box-shadow: 0 10px 10px #00000038;
  background: linear-gradient(to top, #fff, #fff0);
}
.c-form-row::before {
  content: "";
  position: absolute;
  height: 8px;
  width: 70%;
  background: linear-gradient(to left, var(--color-secondary), #fff0, var(--color-secondary));
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 25px;
}

:root {
  --main-color: #07b67b;
}
.main-timeline1::after {
  content: "";
  display: block;
  clear: both;
}
.main-timeline1 .timeline1 {
  width: 50%;
  padding: 15px;
  margin: 0 2px 0 0;
  float: left;
  position: relative;
  z-index: 1;
}
.main-timeline1 .timeline1-content {
  color: #777;
  background-color: #fff;
  text-align: center;
  padding: 82px 15px 15px;
  border: 10px solid #f4efe9;
  border-top-color: transparent;
  border-left-color: transparent;
  box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.7);
  display: block;
  position: relative;
}
.main-timeline1 .timeline1-content:hover {
  text-decoration: none;
}
.main-timeline1 .timeline1-content:before {
  content: "";
  background: linear-gradient(to top, var(--color-secondary), #f4efe9);
  width: 150px;
  position: absolute;
  right: -25px;
  top: -25px;
  bottom: -25px;
  z-index: -2;
}
.main-timeline1 .timeline1-icon {
  background-color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  line-height: 60px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 5px;
}
.main-timeline1 .timeline1-icon i {
  line-height: inherit;
}
.main-timeline1 .title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px;
}
.main-timeline1 .description {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-default);
  margin: 0;
}
.main-timeline1 .timeline1:nth-child(even) {
  margin: 0 0 0 2px;
  float: right;
}
.main-timeline1 .timeline1:nth-child(even) .timeline1-content:before {
  right: auto;
  left: -25px;
}
.main-timeline1 .timeline1:nth-child(even) .timeline1-content {
  border: 10px solid #f4efe9;
  border-right-color: transparent;
  border-top-color: transparent;
}
@media screen and (max-width: 767px) {
  .main-timeline1 .timeline1,
  .main-timeline1 .timeline1:nth-child(even) {
    width: 100%;
    margin: 12px 0px;
  }
}

.main-timeline-review {
  position: absolute;
  top: 0;
  right: 27px;
  background: var(--color-secondary);
  padding: 9px 12px 4px;
  text-align: center;
  border-radius: 10px;
}

.main-timeline-review a {
  color: #fff;
}

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

.main-timeline-review a p img {
  display: block;
  margin: 10px auto 0px;
}

.main-timeline-review a i {
  font-size: 38px;
}

.main-timeline-review a img {
  width: 121px;
  filter: brightness(0) invert(1);
}

.doc-img-page {
  position: relative;
  z-index: 1;
}
.doc-img-page img {
  box-shadow: 12px 12px 20px -10px #0000007d;
}

.doc-img-page::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  z-index: -1;
  top: -15px;
  right: -18px;
}

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

.about-page h2 {
  text-transform: uppercase;
  color: var(--color-primary);
  font-size: 20px;
  margin: 15px 0px 10px;
  display: inline-block;
  border-bottom: 2px solid;
}

.about-doc-page {
  position: relative;
}

.about-doc-page h3 span {
  font-size: 38px;
  text-transform: uppercase;
  background: var(--color-secondary);
  display: inline-block;
  color: var(--color-teritary);
  padding: 14px 10px;
  margin: 10px 0px;
  font-weight: 600;
}
.about-doc-page h3 {
  font-size: 25px;
  text-transform: capitalize;
  color: var(--color-default);
  font-weight: 500;
  display: block;
}

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

.blog-inner-img img {
  border: 1px solid var(--color-secondary);
  padding: 8px;
  filter: grayscale(1);
}

.blog-inner-content h2 {
  font-size: 23px;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.blog-inner-content p {
  line-height: 30px;
  font-size: 15px;
  text-align: justify;
}

.blog-inner-content a {
  background: var(--color-secondary);
  color: #fff;
  padding: 8px 10px;
}

.extra-ribbon {
  position: relative;
  margin-top: 30px;
}
.extra-ribbon h6 {
  background: var(--color-secondary);
  padding: 10px 52px;
  display: inline-block;
  color: #fff;
  font-size: 20px;
  clip-path: polygon(0 100%, 2% 50%, 0 0, 100% 0, 98% 50%, 100% 100%);
  font-weight: 400;
}

.video-blk iframe {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.doc-matter h1 {
  font-size: 23px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 8px;
}
