/***
====================================================================
	Reset
====================================================================
***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
  line-height: inherit;
}
:root {
  --color-default: #3c3c3c;
  --color-primary: #9b0163;
  --color-secondary: #ffd8f1;
  --color-teritary: #fecd04;
}
.container {
  position: relative;
}
/*** 
====================================================================
	Global Settings
====================================================================
 ***/
body {
  font-size: 15px;
  color: var(--color-default);
  line-height: 1.6em;
  /* background: #fff3ef; */
  /* background: #fbf3f0; */
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: 'Martel Sans', sans-serif;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: var(--color-primary);
}
a:hover {
  color: var(--color-secondary);
}
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;
}
.main-menu .navigation>li .active {
  color: var(--color-primary);
  /* border-radius: 50px;
  padding: 2px 10px; */
}
.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: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../gallery/bg.jpg);
  background-attachment: fixed;
  opacity: 0.7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.top-wrap {
  position: relative;
  height: 100vh;
}
.top-wrap::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--color-primary), var(--color-primary));
  z-index: 1;
}
/**header-main**/
.header-main {
  position: absolute;
  width: 100%;
  z-index: 5;
}
.header-one {
  position: relative;
}
.header-one .container {
  position: relative;
}
.header-one .lower-box {
  position: relative;
  height: 100%;
}
.lower-box .logo {
  top: 20px;
  position: absolute;
  display: inline-block;
  z-index: 999;
  width: 255px;
}
.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: 50px 0 0;
  top: 0;
}
.main-menu .navbar-collapse {
  padding: 0px;
  display: block !important;
}
.main-menu .navigation {
  position: relative;
  display: block;
  padding: 0 11px;
  border-radius: 24px 0 1px 24px;
}
.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: 8px 12px;
  opacity: 1;
  color: var(--color-default);
}
.header-top {
  position: relative;
  background: var(--color-primary);
  min-height: 50px;
}
.header-top .container {
  max-width: 1060px;
}
.header-top-social {
  position: absolute;
  right: 129px;
  top: 13px;
}
.header-top-social ul li {
  display: inline-block;
}
.header-top-social ul li a {
  width: 30px;
  height: 30px;
  background: #fff;
  color: var(--color-primary);
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  margin-right: 6px;
  font-size: 18px;
  display: block;
}
.header-contact ul li {
  display: inline-block;
}
.header-menu-nav ul li {
  display: inline-block;
}
.header-menu-nav {
  position: absolute;
  top: 14px;
  right: 379px;
}
.header-contact {
  position: absolute;
  top: 14px;
}
.header-menu-nav ul li a {
  color: #fff;
  padding: 0px 10px;
  border-right: 1px dashed;
}
.header-contact ul li:nth-child(2) a {
  border-right: 0px;
}
.header-contact ul li a {
  color: #fff;
  padding: 0px 10px;
  border-right: 1px dashed;
}
.logins_section {
  position: absolute;
  right: 0px;
  z-index: 99;
  display: inline-block;
  top: 10px;
}
.logins_section span {
  display: inline-block;
  color: #fff;
  padding: 4px 10px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  border-radius: 5px;
  background: var(--color-secondary);
}
.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: var(--color-default);
  -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-primary);
  padding: 45px 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 li>ul>li {
  border-top: 1px solid rgb(0 0 0 / 10%);
}
.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li>ul>li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li>a {
  position: relative;
  display: block;
  padding: 10px 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;
  color: var(--color-primary);
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  color: var(--color-primary);
  font-size: 16px;
  line-height: 38px;
  background: var(--color-secondary);
  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;
}
.main-menu .navigation>li>a:hover {
  color: var(--color-primary);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
  display: none;
  background: #fff;
}
.main-menu .navigation>li>ul {
  border-top: 2px solid var(--color-primary);
  position: absolute;
  top: 100%;
  visibility: hidden;
  left: 0;
  width: 230px;
  opacity: 0;
  z-index: 100;
  background-color: #ffffff;
  box-shadow: 0px 0px 5px #a5a5a5;
}
.main-menu .navigation>li>ul>li>ul {
  border-top: 2px solid var(--color-primary);
  position: absolute;
  top: -5%;
  visibility: hidden;
  left: 230px;
  width: 250px;
  opacity: 0;
  z-index: 100;
  background-color: #ffffff;
  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 {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #929292;
}
.main-menu .navigation>li>ul>li>ul>li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #929292;
}
.main-menu .navigation>li>ul>li>a:hover {
  background:linear-gradient(to right,var(--color-primary),var(--color-secondary));
  color: #fff;
}
.main-menu .navigation>li>ul>li>ul>li>a:hover {
  background:linear-gradient(to right,var(--color-primary),var(--color-secondary));
  color: #fff;
}
.main-menu .navigation>li>ul>li>a {
  position: relative;
  display: block;
  padding: 5px 20px;
  line-height: 24px;
  font-weight: 500;
  font-size: 15px;
  color: var(--color-default);
  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-weight: 500;
  font-size: 15px;
  color: var(--color-default);
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.main-menu .navigation>li>ul>li:last-child {
  border-bottom: none;
}
.main-menu .navigation>li>ul>li>ul>li:last-child {
  border-bottom: none;
}
.main-menu .navigation .cstmwidth {
  width: 160px;
}
/*
* 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.png);
}
/***
====================================================================
	Scroll To Top style
====================================================================
***/
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  color: #ffffff;
  font-size: 20px;
  line-height: 51px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  background: linear-gradient(to right, var(--color-primary), 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: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}
.sec-title h3 {
  font-size: 20px;
  margin-bottom: 7px;
  position: relative;
}
.sec-circle {
  position: relative;
  width: 9px;
  height: 9px;
  background: var(--color-primary);
  margin: auto;
  transform: rotate(45deg);
}
.sec-separator {
  position: relative;
  margin-bottom: 7px;
}
.sec-separator::before {
  content: " ";
  position: absolute;
  width: 4%;
  height: 1px;
  background: var(--color-default);
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 45%;
}
.sec-separator::after {
  content: " ";
  position: absolute;
  width: 4%;
  height: 1px;
  background: var(--color-default);
  top: 0px;
  bottom: 0px;
  margin: auto;
  left: 45%;
}
.abt-sec .sec-title h1 {
  font-weight: 700;
  font-size: 40px;
}
.sec-title h1 {
  text-transform: uppercase;
  color: var(--color-primary);
  font-size: 40px;
}
.abt-sec {
  position: relative;
  margin-bottom: 125px;
  padding-top: 50px;
}
.abt-content p {
  line-height: 30px;
  font-size: 15px;
  text-align: justify;
  padding-top: 15px;
}
.top-border {
  position: relative;
  width: 70%;
  height: 6px;
  background: var(--color-primary);
  margin: auto;
  border-radius: 30px;
}
.doc-img img {
  border-radius: 7%;
  box-shadow: 0px 0px 12px #565656;
  border: 8px solid #fff;
  width: 400px;
  margin: auto;
}
.doc-img {
  position: relative;
  text-align: center;
  margin-top: -95px;
}
.doc-matter {
  margin-top: 20px;
}
.doc-matter h2 {
  text-transform: uppercase;
  font-size: 37px;
  color: var(--color-primary);
}
.doc-matter h3 {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 13px;
  line-height: 28px;
}
.doc-matter a {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 5px 8px 0px;
  border-radius: 6px;
}
.mvv-block {
  width: 242px;
  margin: auto;
  padding: 42px 24px;
  background: #fff9f8;
  box-shadow: 0px 0px 20px #c0c0c0;
  border-radius: 115px;
  border: 6px solid #fff;
}
.mvv-block p {
  margin-bottom: 0px;
}
.mvv-list {
  margin-bottom: 90px;
  position: relative;
}
.abt-sec::after {
  content: "";
  width: 100%;
  height: 65%;
  background-image: url(../gallery/bg-1.png);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
  bottom: -255px;
  background-size: cover;
  z-index: -1;
}
.mvv-block h3 {
  font-size: 22px;
  border: 1px solid var(--color-primary);
  display: inline-block;
  padding: 5px 9px 0px;
  margin-bottom: 10px;
}
.abtleftbg {
  left: 0px;
  width: 55%;
  top: 308px;
  opacity: .4;
  float: right;
}
.bgs img {
  width: 100%;
}
.bgs {
  position: absolute;
}
.docbg {
  right: 0px;
  width: 47%;
  top: -104px;
  opacity: 0.5;
  transform: rotate(230deg);
}
/* .mvv-row .col-md-3:nth-child(3) .mvv-block {
  margin-top: -175px;
  margin-left: 130px;
}
.mvv-row .col-md-3:nth-child(2) .mvv-block {
  margin-top: -51px;
  margin-left: 155px;
}
.mvv-row .col-md-3:nth-child(1) .mvv-block {
  margin-top: 98px;
  margin-left: 201px;
} */
.mvv-row {
  position: relative;
  left: 140px;
}
.ad-sec-img img {
  filter: drop-shadow(2px 4px 6px rgba(117, 117, 117, 0.11));
}
.ad-section {
  position: relative;
}
.ad-sec-content {
  position: relative;
  /* border-top: 2px solid var(--color-primary); */
  margin-top: 50px;
}
.conrow {
  position: relative;
  left: 300px;
}
.shape {
  position: relative;
  width: 100%;
  height: 2px;
  top: -25px;
  background-color: var(--color-primary);
}
.shape::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background-color: var(--color-primary);
  top: -8px;
  left: -14px;
}
.shape2 {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  height: 2px;
  bottom: -5px;
  background-color: var(--color-primary);
}
.shape2::after {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  right: -10px;
  top: -8px;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.ad-appt {
  position: relative;
  border-radius: 15px;
  padding: 45px 10px 30px;
  background: #f4f4f4;
  box-shadow: 0px 0px 20px #c0c0c0;
  border: 6px solid #fff;
  z-index: 99;
}
.btn.hover-border-2::before,
.btn.hover-border-2::after {
  width: 10%;
  height: 25%;
  transition: 0.35s;
}
.btn.hover-border-2::before {
  bottom: 0;
  left: 0;
  border-left: 1px solid rgb(28, 31, 30);
  border-bottom: 1px solid rgb(28, 31, 30);
}
.btn.hover-border-2::after {
  top: 0;
  right: 0;
  border-right: 1px solid rgb(28, 31, 30);
  border-top: 1px solid rgb(28, 31, 30);
}
.btn.hover-border-2:hover::before,
.btn.hover-border-2:hover::after {
  width: 99%;
  height: 99%;
}
.appt-hover::before,
.appt-hover::after {
  width: 10%;
  height: 25%;
  transition: 0.35s;
}
.appt-hover::before {
  bottom: 0;
  left: 0;
  border-left: 1px solid rgb(28, 31, 30);
  border-bottom: 1px solid rgb(28, 31, 30);
}
.appt-hover::after {
  top: 0;
  right: 0;
  border-right: 1px solid rgb(28, 31, 30);
  border-top: 1px solid rgb(28, 31, 30);
}
.appt-hover:hover::before,
.appt-hover:hover::after {
  width: 99%;
  height: 99%;
}
.ad-appt a:hover {
  color: var(--color-secondary);
}
.ad-appt h2 {
  text-transform: uppercase;
  padding-bottom: 12px;
  font-size: 25px;
}
.ad-sec-content span {
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 700;
}
.ol_styles {
  padding: 0;
  padding-left: 20px;
}
.ol_styles li {
  position: relative;
  /* padding-left: 20px; */
  margin-bottom: 7px;
  text-align: justify;
  line-height: 28px;
  font-size: 15px;
  list-style: disc;
}
/* .ol_styles li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  line-height: 28px;
  color: var(--color-secondary);
  font-weight: 900;
  content: "\f1ae";
  font-family: "Font Awesome 5 Free";
} */
.ad-appt-sec {
  position: relative;
}
.btn-3 {
  padding: 5px;
}
.btn {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0px 25px 15px;
  min-width: 150px;
}
.btn.hover-border-2::before {
  bottom: 0;
  left: 0;
  border-left: 1px solid rgb(28, 31, 30);
  border-bottom: 1px solid rgb(28, 31, 30);
  position: absolute;
  content: "";
}
.btn.hover-border-2::before,
.btn.hover-border-2::after {
  width: 10%;
  height: 25%;
  transition: 0.35s;
  position: absolute;
  content: "";
}
.btn-3::before,
.btn-3::after {
  background: transparent;
  z-index: 2;
  position: absolute;
  content: "";
}
.btn-3 span {
  color: rgb(255, 255, 255);
  background-color: rgb(54, 56, 55);
}
.btn span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 18px;
  transition: 0.3s;
  z-index: 99;
}
.btn span a {
  color: #fff;
}
.btn span a:hover{
  color: #fff;
}
.serv-section {
  position: relative;
  min-height: 500px;
  margin-bottom: 100px;
  margin-top: -85px;
  padding-top: 145px;
  padding-bottom: 90px;
}
.serv-section .sec-circle {
  background: #fff;
}
.serv-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
  background-image: url(../gallery/ser-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(1);
  z-index: -1;
}
.serv-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #a7287082;
  /* background: linear-gradient(to left, rgb(71 165 174 / 50%), rgb(0 104 113 / 59%), rgb(71 165 174 / 50%)); */
  /* background: linear-gradient(to left, rgb(237, 179, 213), rgba(145, 100, 205, 0.59), rgb(237, 179, 213)); */
  /* background: linear-gradient(to left, rgb(53 32 99 / 50%), rgb(53 32 99 / 59%), rgb(53 32 99 / 50%)); */
  top: 0px;
  left: 0;
  z-index: 0;
}
/* .serv-section::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/serv-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  filter: grayscale(1);
  opacity: 0.2;
  z-index: -1;
} */
.serv-section .sec-title h3,
.serv-section .sec-title h2 {
  color: #fff;
}
.services_list {
  position: relative;
  padding-bottom: 55px;
}
.services_pic {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid #333;
  padding: 10px;
  background: #fff;
}
.services_pic img {
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0px 0px 10px #ccc;
}
.services_info {
  position: relative;
  padding: 0 7px;
}
.services_info h3 {
  text-transform: uppercase;
  margin: 0 0 9px;
  font-size: 25px;
  font-weight: 700;
}
.services_info p {
  text-align: justify;
}
.services_info a {
  background: var(--color-secondary);
  display: inline-block;
  color: #fff;
  padding: 3px 13px;
  border-radius: 19px;
  margin: 0px 0 0;
}
.servicrs_row .col-md-5::before {
  content: "";
  position: absolute;
  width: 37%;
  height: 40%;
  background: linear-gradient(to top, var(--color-default), transparent);
  left: 0;
  right: 0;
  margin: auto;
  bottom: -53px;
}
.serbtm_qoute {
  text-align: center;
  text-transform: uppercase;
  font-size: 48px;
  margin-top: 75px;
  color: #fff;
  font-weight: 300;
}
.serv-scroll::before {
  content: "";
  position: absolute;
  width: 96%;
  height: 6px;
  background: #333;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.servicrs_row .col-md-7 {
  padding-left: 0px;
}
.serv-scroll .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  bottom: -40px;
  background: #fff;
  width: 11%;
  height: 40px;
  padding: 10px;
  border-radius: 0px 0px 30px 30px;
}
.serv-scroll .owl-dots .owl-dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #333;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 4px;
}
.serv-scroll .owl-dots .owl-dot.active {
  background-color: var(--color-secondary);
}
.serv-scroll {
  padding-top: 50px;
}
.testi-section {
  position: relative;
}
.testi-txt-blk {
  width: 400px;
  height: 400px;
  padding-left: 100px;
  padding-top: 25px;
  position: relative;
  z-index: 999;
}
.testi-section .testi-blk {
  position: relative;
  padding-top: 25px;
}
.testi-sp1 {
  position: absolute;
  height: 412px;
  width: 600px;
  background-image: url(../gallery/testiblk.png);
  background-repeat: no-repeat;
  z-index: -1;
  left: 25px;
}
.testi-ptxt {
  position: relative;
  padding-top: 104px;
  padding-left: 7px;
  padding-bottom: 10px;
}
.ratings .fa {
  color: var(--color-primary);
}
.testi-ptxt h2 {
  text-transform: uppercase;
  font-size: 25px;
}
.sec-title p {
  padding: 0 250px;
}
.faq_section {
  padding: 0 0 35px;
  position: relative;
  margin-top: -50px;
}
.faq_timeline.main-timeline {
  padding-top: 50px;
  position: relative;
}
.faq_timeline.main-timeline:after {
  content: '';
  display: block;
  clear: both;
}
.faq_timeline.main-timeline .timeline {
  width: calc(48%);
  padding: 0px 15px 10px 0;
  margin: 0 0 30px 10px;
  float: right;
  position: relative;
}
.faq_timeline.main-timeline .timeline:before {
  content: "";
  background: #c8c8c8;
  border-radius: 0 10px 10px 0;
  position: absolute;
  top: 60px;
  left: 0;
  bottom: 0;
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 93%);
}
.faq_timeline.main-timeline .timeline-content {
  color: #e34856;
  background: #fff;
  min-height: 230px;
  padding: 20px 20px 20px 175px;
  border-radius: 15px 15px 15px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: block;
  position: relative;
}
.faq_timeline.main-timeline .timeline-content:before {
  content: "";
  background: linear-gradient(to top, var(--color-secondary), var(--color-primary));
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 140px;
}
/* .faq_timeline.main-timeline .timeline-content:after {
  content: "";
  background: #f7c7d9;
  width: 15px;
  height: 30%;
  position: absolute;
  bottom: 0;
  left: 135px;
} */
.faq_timeline.main-timeline .timeline-content:hover {
  text-decoration: none;
}
.faq_timeline.main-timeline .timeline-icon {
  color: #474747;
  font-size: 50px;
  line-height: 50px;
  position: absolute;
  bottom: 20px;
  left: 45px;
}
.faq_timeline.main-timeline .timeline-year {
  color: #252525;
  font-size: 66px;
  font-weight: 600;
  text-align: center;
  line-height: 100px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: 21px;
  left: 20px;
}
.faq_timeline.main-timeline .timeline-year span {
  font-size: 35px;
  color: var(--color-primary);
}
.faq_timeline.main-timeline .title {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0 0 8px;
  color: var(--color-default);
}
.faq_timeline.main-timeline .description {
  color: #222;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}
.faq_timeline.main-timeline .timeline:nth-child(even) {
  float: left;
  padding: 0px 0 10px 15px;
  margin: 0 10px 30px 0;
}
.faq_timeline.main-timeline .timeline:nth-child(even):before {
  border-radius: 10px 0 0 10px;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content {
  padding: 20px 175px 20px 20px;
  border-radius: 15px 15px 0 15px;
}
.faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content:before {
  left: auto;
  right: 140px;
}
.faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content:after {
  left: auto;
  right: 135px;
}
.faq_timeline.main-timeline .timeline:nth-child(even) .timeline-icon {
  left: auto;
  right: 45px;
}
.faq_timeline.main-timeline .timeline:nth-child(even) .timeline-year {
  left: auto;
  right: 20px;
}
@media screen and (max-width:767px) {
  .faq_timeline.main-timeline .timeline {
    width: 100%;
  }
}
@media screen and (max-width:479px) {
  .faq_timeline.main-timeline .timeline .timeline-content,
  .faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content {
    text-align: center;
    padding: 115px 15px 15px;
  }
  .faq_timeline.main-timeline .timeline-content:before,
  .faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content:before {
    width: 100%;
    height: 3px;
    top: 85px;
    left: 0;
  }
  .faq_timeline.main-timeline .timeline-content:after {
    width: 30%;
    height: 15px;
    top: 79px;
    bottom: auto;
    left: auto;
    right: 0;
  }
  .faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content:after {
    left: 0;
  }
  .faq_timeline.main-timeline .timeline-icon {
    top: 15px;
    bottom: auto;
    right: 25px;
    left: auto;
  }
  .faq_timeline.main-timeline .timeline:nth-child(even) .timeline-content .timeline-icon {
    right: auto;
    left: 25px;
  }
}
.appointment-form {
  position: relative;
  z-index: 1;
  text-align: center;
  border-top: 4px solid #f77fcb;
  border-bottom: 4px solid #f77fcb;
  border-radius: 2px;
  padding: 42px 44px;
  border-right: 0px;
  background: var(--color-primary);
  box-shadow: 0px 6px 9px #00000057;
}
.appointment-form p {
  padding-top: 10px;
}
.appointment-form .btn-style-one {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
  padding: 4px 11px 0px;
  font-weight: 500;
  overflow: hidden;
  min-width: 110px;
  border-radius: 30px;
  border: none;
  background: #000;
  color: #fff;
  margin-top: 25px;
}
.appointment-form textarea.form-control {
  height: 91px;
}
.appointment-form .form-control::placeholder {
  color: #000000;
}
.appointmeent_section {
  padding-top: 30px;
  padding-bottom: 87px;
}
.app_mnt_block {
  position: relative;
  left: -15px;
}
.app_mnt_block::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 200px;
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: 0px;
  box-shadow: 0px 0px 55px #0c0c0c;
}
.approw .col-md-6 {
  padding: 0px;
}
.appointment-form {}
.appointment-form h2 {
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
.appointment-form p {
  font-size: 18px;
  color: #ffffff;
}
.appointment-form .form-control {
  border: none;
  background-color: transparent;
  border-bottom: 1px dashed #fff;
  border-radius: 0px;
  height: 50px;
  color: #fff;
}
.appointment-form .form-control::placeholder {
  color: #fff;
}
::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.appt-section {
  position: relative;
  margin-bottom: 125px;
}
.appt-section::after {
  position: absolute;
  content: "";
  height: 55%;
  width: 100%;
  background: url(../gallery/appt-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  top: 0;
  left: 0;
  margin: auto;
  bottom: 0;
  opacity: 0.7;
}
.appt-section::before {
  position: absolute;
  content: "";
  height: 55%;
  width: 100%;
  background: linear-gradient(to left, rgb(250 205 234 / 10%), rgb(155, 1, 99), rgb(250 205 234 / 10%));
  background: -webkit-gradient(linear, to left, rgb(250 205 234 / 10%), rgb(155, 1, 99), rgb(250 205 234 / 10%));
  background: -webkit-linear-gradient(to left, rgb(250 205 234 / 10%), rgb(155, 1, 99), rgb(250 205 234 / 10%));
  top: 0;
  left: 0;
  margin: auto;
  bottom: 0;
}
button {
  cursor: pointer;
}
.footer_section {
  position: relative;
}
.footer_section .footer_add_row {
  position: relative;
}
/* .footer_section .footer_add_row::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: var(--color-primary);
  z-index: -1;
  border-radius: 15px;
} */
/* .footer_section .footer_add_row::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: var(--color-primary);
  z-index: -1;
} */
.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;
  /*! margin-bottom: 15px; */
  /*! box-shadow: 0px 0px 0px 5px #adadad; */
}
.address_info_sec span {
  display: block;
  line-height: 24px;
}
.bottom-footer {
  padding: 5px 0;
  border-top: 1px solid var(--color-default);
}
.bottom-footer p {
  margin: 0;
  font-size: 15px;
}
.bottom-footer span {
  color: var(--color-primary);
}
.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 25px;
}
.footer_section .footer_top h2 {
  color: var(--color-primary);
  font-size: 22px;
  text-transform: uppercase;
}
.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;
}
.social-icon-two {
  position: relative;
  margin: 2px 0px;
}
.social-icon-two li {
  position: relative;
  display: inline-block;
}
.social-icon-two li a {
  position: relative;
  display: block;
  font-size: 24px;
  width: 38px;
  height: 38px;
  line-height: 37px;
  color: var(--color-default);
  border-radius: 50%;
  font-weight: 400;
  margin: 0 1px;
}
.footer_top .footer_wid_text:after,
.footer_top .footer_wid_text:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 3px;
}
.footer_wid li a {
  color: var(--color-default);
}
.footer-logo img {
  width: 270px;
  margin-bottom: 25px;
}
.footer_section .footer_wid ul li::before {
  content: "\f192";
  position: absolute;
  left: 14px;
  display: block;
  font-size: 12px;
  line-height: 21px;
  color: var(--color-primary);
  font-family: "Font Awesome 5 Free";
}
.footer_section .footer_wid ul li {
  padding-left: 20px;
}
.footer-widget__social {
  display: inline-block;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  border-top: 1px dashed var(--color-default);
  border-bottom: 1px dashed var(--color-default);
  padding: 10px 0;
}
.footer-widget__social span {
  color: #06334d;
  font-size: 24px;
  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: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 41px;
  color: #333;
  background-color: #fff;
  margin: 0 4px;
  box-shadow: 0px 0px 5px #6464649e;
  font-size: 19px;
}
.footer-widget__social li a:hover {
  color: #ffffff;
  background: var(--color-primary);
}
.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: 14px;
  line-height: 25px;
  margin: 0;
  padding: 0px 0px 25px;
}
.footer-about p a {
  color: var(--color-primary);
}
.footer-ad {
  border: 8px solid #fff;
  box-shadow: 0px 0px 6px #ccc;
}
.card--1 .card__img,
.card--1 .card__img--hover {
  background-image: url(../gallery/services/iui.jpg);
}
.card--2 .card__img,
.card--2 .card__img--hover {
  background-image: url(../gallery/services/icsi.jpg);
}
.card--3 .card__img,
.card--3 .card__img--hover {
  background-image: url(../gallery/services/ivf.jpg);
}
.card--4 .card__img,
.card--4 .card__img--hover {
  background-image: url(../gallery/services/Blastocyst-culture.jpg);
}
.card--5 .card__img,
.card--5 .card__img--hover {
  background-image: url(../gallery/services/fibroids.jpg);
}
.card--6 .card__img,
.card--6 .card__img--hover {
  background-image: url(../gallery/services/high-risk-pregnancies.jpg);
}
.card--7 .card__img,
.card--7 .card__img--hover {
  background-image: url(../gallery/services/laparoscopy-hysteroscopy.jpg);
}
.card--8 .card__img,
.card--8 .card__img--hover {
  background-image: url(../gallery/services/fertility-enhancing-surgeries.jpg);
}
.card__time {
  font-size: 12px;
  color: #AD7D52;
  vertical-align: middle;
  margin-left: 5px;
}
.card__clock-info {
  float: right;
}
.card__img {
  visibility: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 235px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.card__info-hover {
  position: absolute;
  padding: 16px;
  width: 100%;
  opacity: 0;
  top: 0;
}
.card__img--hover {
  transition: 0.2s all ease-out;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  position: absolute;
  height: 235px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  top: 0;
}
.pcard {
  transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
  background-color: #fff;
  /* width: 33.3%; */
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 13px 10px -7px rgba(0, 0, 0, 0.1);
}
.pcard:hover {
  box-shadow: 0px 30px 18px -8px rgba(0, 0, 0, 0.1);
  transform: scale(1.10, 1.10);
}
.card__info {
  z-index: 2;
  background: linear-gradient(to left, #dfdfdf, #fff, #dfdfdf);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 16px 5px;
  text-align: center;
}
.card__category {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #868686;
}
.card__title {
  margin-top: 5px;
  font-size: 17px;
  margin-bottom: 8px;
}
.card__by {
  font-size: 12px;
  font-weight: 500;
}
.card__author {
  font-weight: 600;
  text-decoration: none;
  color: var(--color-primary);
}
.pcard:hover .card__img--hover {
  height: 100%;
  opacity: 0.3;
  filter: grayscale(1);
}
.pcard:hover .card__info {
  background: transparent;
  position: relative;
}
.pcard:hover .card__info-hover {
  opacity: 1;
}
/* figure.effect-layla {
	background: #18a367;
}
figure.effect-layla img {
	height: 390px;
}
figure.effect-layla figcaption {
	padding: 3em;
}
figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after {
	position: absolute;
	content: '';
	opacity: 0;
}
figure.effect-layla figcaption::before {
	top: 50px;
	right: 30px;
	bottom: 50px;
	left: 30px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}
figure.effect-layla figcaption::after {
	top: 30px;
	right: 50px;
	bottom: 30px;
	left: 50px;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
}
figure.effect-layla h2 {
	padding-top: 26%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}
figure.effect-layla p {
	padding: 0.5em 2em;
	text-transform: none;
	opacity: 0;
	-webkit-transform: translate3d(0,-10px,0);
	transform: translate3d(0,-10px,0);
}
figure.effect-layla img,
figure.effect-layla h2 {
	-webkit-transform: translate3d(0,-30px,0);
	transform: translate3d(0,-30px,0);
}
figure.effect-layla img,
figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after,
figure.effect-layla p {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}
figure.effect-layla:hover img {
	opacity: 0.7;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
figure.effect-layla:hover figcaption::before,
figure.effect-layla:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
figure.effect-layla:hover h2,
figure.effect-layla:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
figure.effect-layla:hover figcaption::after,
figure.effect-layla:hover h2,
figure.effect-layla:hover p,
figure.effect-layla:hover img {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	min-width: 320px;
	max-width: 480px;
	max-height: 360px;
	width: 48%;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}
.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}
.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}
.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}
.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}
.grid figure h2 span {
	font-weight: 800;
}
.grid figure h2,
.grid figure p {
	margin: 0;
}
.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
} */
.serv-txt {
  position: relative;
  padding: 45px 0px;
  text-align: center;
  color: #fff;
  margin-top: 25px;
}
.serv-txt h2 {
  font-size: 30px;
  padding: 0 65px;
}
.serv-row {
  padding-top: 25px;
}
.card__info span {
  /* border-bottom: 1px solid var(--color-default); */
  padding: 2px 5px 0px;
  position: relative;
  transition: 0.3s;
}
.card__info span::after {
  content: "";
  position: absolute;
  width: 55%;
  height: 1px;
  background-color: var(--color-default);
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: all cubic-bezier(0.5, 0, 0.5, 1) 0.5s;
}
.pcard:hover .card__info span {
  background-color: var(--color-primary);
  color: #fff;
}
.pcard:hover .card__info span a {
  color: #fff;
}
.pcard:hover .card__info span::after {
  width: 100%;
}
.serv-txt .shape2 {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  height: 2px;
  bottom: -22px;
  background-color: var(--color-primary);
}
.serv-txt .shape2,
.serv-txt .shape {
  background-color: #fff;
}
.serv-txt .shape::before,
.serv-txt .shape2::after {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background-color: #fff;
}
.why_blocks {
  position: relative;
  text-align: center;
  padding: 50px 15px;
  background: #f4f4f4;
  box-shadow: 0px 5px 5px #ccc;
  transition: all ease-in-out .8s;
  bottom: 0px;
  border-radius: 50%;
  width: 200px;
  height: 200px;
}
/* .why_blocks:hover {
  bottom: 20px;
} */
.why_row .col-md-2:nth-child(3) .why_blocks {
  margin-left: 69px;
  margin-top: 90px;
}
.why_row .col-md-2:nth-child(2) .why_blocks {
  margin-left: 82px;
  margin-top: -30px;
}
.why_row .col-md-2:nth-child(4) .why_blocks {
  margin-top: 225px;
  margin-left: -290px;
}
.why_row .col-md-2:nth-child(2) .why_blocks,
.why_row .col-md-2:nth-child(4) .why_blocks {
  background: #ffe0f2;
}
.why_blocks h2 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}
.why_blocks p {
  font-size: 43px;
  font-weight: 500;
  margin-top: 20px;
  color: #363837;
}
.mvv-side-content p {
  line-height: 35px;
  font-size: 15px;
  padding-top: 60px;
}
.mvv-side-content {
  position: relative;
  left: 60px;
}
.social-icons {
  position: absolute;
  bottom: 100px;
  z-index: 99;
  left: 100px;
}
.social-icons::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 150px;
  left: -100px;
  background-color: var(--color-primary);
}
.social-icons li {
  display: inline-block;
}
.social-icons li a {
  position: relative;
  display: block;
  font-size: 19px;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  line-height: 34px;
  margin: 3px 0;
}
.social-icons span {
  font-weight: 600;
}
.top-info {
  position: absolute;
  right: 50px;
  top: 24px;
  z-index: 1;
}
.top-info ul li a {
  background: var(--color-primary);
  color: #fff;
  padding: 6px 17px 2px;
  border-radius: 30px;
}
.serv-section .sec-title p {
  color: #fff;
}
.bread_cumb_wrap {
  position: relative;
  text-align: center;
  left: 0;
  right: 0;
  padding: 170px 0 60px
}

.bread_cumb_wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 320px;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url(../gallery/inner-bread.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .2
}

.bread_cumb_wrap h1 {
  text-transform: capitalize;
  color: #000000;
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 600;
}
.bread_cumb_wrap h2 {
  text-transform: capitalize;
  color: var(--color-default);
  font-size: 23px;
  margin-bottom: 10px;
  font-weight: 600;
}

.bread_cumb_wrap ul {
  display: inline-block;
  box-shadow: 0 5px 4px #ccc;
  padding: 7px 15px 4px;
  border-radius: 30px;
  background: #fff;
  border: 4px solid #ccc;
}

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

.bread_cumb_wrap ul li:last-child:before {
  display: none
}

.bread_cumb_wrap i {
  transform: rotate(-103deg);
  font-size: 13px;
  top: -2px;
  position: relative;
  color: var(--color-primary);
}

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

.top_wrap1 {
  position: relative;
}

.inner-section {
  position: relative;
  min-height: 45vh;
  padding: 40px 0px 60px;
}
.contact-form {
  background: #f1f1f1;
  border: 10px solid #3c907f;
}

.contact-form .app-title h2 {
  color: #3c907f;
}

.contact-form .form-control::placeholder {
  color: #000;
}

.contact-details h3 {
  font-size: 30px;
  text-transform: uppercase;
  color: #40887d;
  border-bottom: 3px solid #e68a3e;
  width: fit-content;
  margin: auto;
  margin-bottom: 20px;
}

.contact-details h6 {
  font-size: 25px;
  font-weight: 600;
  color: #e68a3e;
}

.contact-details h6 span {
  color: #34a390;
  font-size: 35px;
}
.contact-details .row .col-md-4:nth-child(2){
  border-left: 1px dashed var(--color-default);
  border-right: 1px dashed var(--color-default);
}
.contact-details {
  text-align: center;
  padding: 10px 25px;
  border: 2px solid #cfcece;
  padding-top: 20px;
  box-shadow: 0px 0px 0 10px #eee;
}

.contact-form .app-form .btn {
  background-color: #e86914;
  color: #fff;
}

.contact-form::before {
  content: none;
}

.contact-details iframe {
  width: 100%;
  height: 145px;
  outline: 2px dashed #e86914;
  padding: 5px;
}
.contact-details .contact-icon {
  color: var(--color-primary);
  width: fit-content;
  padding: 10px 12px;
  font-size: 23px;
  /* box-shadow: 0px 0px 10px #c1c1c1c4; */
  margin: auto;
  margin-bottom: 20px;
  border: 3px solid #f0eeee;
}
.icon-content p a{
  color: var(--color-default);
}
.icon-content p{
  margin-bottom: 0px;
}
.contact-app {
  padding: 20px;
  background: var(--color-primary);
  text-align: center;
  margin-top: 50px;
}
.contact-app .app-form {
  background: transparent;
  border: none;
  box-shadow: none;
}
.map{
  margin-top: 50px;
}
.app-form .form-group {
  margin-bottom: 12px;
}
.app-form .form-control {
  height: 50px;
  background-color: transparent;
  border: none;
  border-bottom: 1px dashed #ccc;
  color: #fff;
  border-radius: 0px;
  font-size: 17px;
}
.app-form .form-control::placeholder{
  color: #fff;
}
.map iframe {
  width: 100%;
  height: 320px;
  border: 5px solid #f5f5f5;
  box-shadow: 0px 0px 5px #000;
}
.app-title h2{
  color: #fff;
}
.app-form .btn{
  background: #fff;
  color: var(--color-primary);
  margin-top: 25px;
  margin-bottom: 0px;
  padding: 10px 7px 5px;
}

.teatimonila_blocks {
  text-align: center;
}

.teatimonila_blocks i {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(to left, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-size: 31px;
  border-radius: 6px;
  line-height: 49px;
  margin-bottom: 17px;
}

.teatimonila_blocks h3 {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-primary);
}

.teatimonila_blocks p {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 6px;
}

.rattings {
  color: orange;
  font-size: 19px;
}

.tesmnal_row .col-md-6 {
  padding: 20px 10px;
  box-shadow: 0px 0px 10px #ccc;
}

.tesmnal_row .col-md-12 {
  border-bottom: 1px dashed #333;
}
.about-inner-text p{
  line-height: 30px;
  font-size: 15px;
  text-align: justify;
}
.doc-inner-img {
  border: 1px solid;
  padding: 10px;
}
.doc-inner-img img {
  border-radius: 20px;
  box-shadow: 0px 0px 4px #000;
}
.about-inner-text .doc-matter h2{
  font-size: 30px;
  margin-bottom: 0px;
}
.about-inner-text .doc-matter h3 {
  font-size: 15px;
}
.about-inner-text h2{
  color: var(--color-primary);
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 15px;
}
.serv-matter p{
  font-size: 15px;
  line-height: 30px;
  text-align: justify;
}
.serv-img img{
  border: 7px solid #f5f5f5;
  box-shadow: 0px 0px 10px #9f9f9f;
}
.serv-matter h2 {
  color: var(--color-primary);
  font-size: 20px;
  margin: 7px 0px;
}
.serv-matter h3,
.serv-matter h4 {
  color: var(--color-default);
  font-size: 18px;
  margin: 7px 0px;
}
.ad-sec-content .ol_styles li{
  text-align: left;
}


.t-bq-quote-jenny .t-bq-quote-jenny-base {
  background: #f5f5f5;
  padding:35px 40px 25px 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1);
}

.t-bq-quote-jenny .t-bq-quote-jenny-base:after {
  content: "";
  position: absolute;
  background: #ffffff;
  transform: rotate(45deg);
  width: 30px;
  height: 30px;
  margin: 0 auto;
  bottom: -15px;
  left: calc(100% - 100px - 15px);
  z-index: -1;
}

.t-bq-quote-jenny .t-bq-quote-jenny-base .t-bq-quote-jenny-text {
 text-indent: 5em;
 line-height: 30px;
 font-size: 16px;
}

.t-bq-quote-jenny .t-bq-quote-jenny-base .t-bq-quote-jenny-text:before {
  content: "\201C";
  position: absolute;
  left: -55px;
  top: 55px;
  font-family: Georgia, serif;
  font-size: 160pt;
  color: #cecece;

}

.t-bq-quote-jenny .t-bq-quote-jenny-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.t-bq-quote-jenny .t-bq-quote-jenny-meta .t-bq-quote-jenny-meta-info {
  flex-basis: calc(100% - 50px);
}

.t-bq-quote-jenny .t-bq-quote-jenny-meta .t-bq-quote-jenny-author,
.t-bq-quote-jenny .t-bq-quote-jenny-meta .t-bq-quote-jenny-source {
  text-align: right;
  flex-basis: 100%;
  padding-right: 15px;
  line-height: 1.38em;
}

.t-bq-quote-jenny .t-bq-quote-jenny-meta .t-bq-quote-jenny-author cite {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 17pt;
  font-weight: bold;
}

.t-bq-quote-jenny .t-bq-quote-jenny-meta .t-bq-quote-jenny-source span {
  font-size: 11pt;
}

.t-bq-quote-jenny .t-bq-quote-jenny-meta .t-bq-quote-jenny-userpic {
  flex-basis: 50px;
  flex-grow: 0;
  width: 50px;
  height: 50px;
  background: url("../gallery/google.jpg") center center no-repeat;
  background-size: cover;
  border-radius: 50%;
  margin-left: auto;
}
.t-bq-section{
  position: relative;
  display: inline-block;
}


.address_info_sec a{
  color: var(--color-default);
  display: block;
}
.video-pages iframe{
  width: 100%;
  height: 200px;
  border: 8px solid #fff;
    box-shadow: 0px 0px 6px #ccc;
    margin-bottom: 20px;
}

.blog-inner-content h2{
  font-size: 20px;
  color: var(--color-primary);
}
.blog-inner-content{
  margin-top: 10px;
}
.blog-inner-content p{
  margin-bottom: 0px;
}
.blog-inner-block {
  position: relative;
  padding: 10px;
  border: 6px solid #f5f5f5;
  border-radius: 10px;
  box-shadow: 0px 0px 5px #9b9b9b;
  background: #fffcfe;
  margin-bottom: 30px
}

.blog-inner-img img{
  border: 4px solid #f5f5f5;
    box-shadow: 0px 0px 10px #ccc;
}


._blog_nav {
  position: relative;
  padding: 17px 18px;
  margin: 0 0 32px;
  border-top: 4px solid var(--color-primary);
  background: #f5f5f5;
}

._blog_nav h4 {
  text-transform: capitalize;
  font-size: 29px;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: 1px solid;
  color: var(--color-primary);
  font-weight: 600;
}

._blog_nav ul {
  padding: 0;
  list-style: none;
}

._blog_nav ul li a {
  display: block;
  position: relative;
  border-bottom: 1px dashed #282828;
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-left: 17px;
  color: #141414;
  font-size: 16px;
}

._blog_nav ul li a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid;
  left: 0;
  border-radius: 50%;
  top: 8px;
}

._blog_nav ul li:last-child a {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.blog-text a {
  color: red;
}
.serv-matter a:hover{
  color: var(--color-primary);
}
.appointment-form p a{
  color: var(--color-secondary);
}