@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

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

:root {
  --color-default: #292929;
  --color-primary: #e67db0;
  --color-secondary: #52194e;
  /* --color-secondary: #7d2674; */
}

@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: "Lato", 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: var(--color-secondary);
  margin-top: 3px;
  border-bottom: 2px solid;
  padding: 2px 7px;
}


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

.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/bg1.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

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

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

.header-one {
  position: relative;
}

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

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

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

.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: 63px 0 0;
  /* border-top: 1px solid var(--color-secondary); */
  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 8px;
  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;
  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: #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: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: var(--color-secondary);
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}

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

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

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

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

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

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

.mobile-menu .navigation 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-default);
}

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

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

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

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

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

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

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

.main-menu .navigation>li>ul>li>ul {
  position: absolute;
  left: 100%;
  top: 0%;
  width: 240px;
  padding: 0px 0px;
  z-index: 100;
  background: var(--color-secondary);
  transition: all 200ms linear;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  opacity: 0;
}

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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


.top-social li a {
  display: block;
  width: 30px;
  height: 30px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  margin: 0px 1px;
  background: var(--color-secondary);
  transition: all 300ms ease;
  border-radius: 8px;
}

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

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

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

.abt-head h3 {
  font-weight: 400;
  font-size: 20px;
  display: inline-block;
  border-radius: 20px;
  color: var(--color-default);
  position: relative;
}

.abt-head h2 {
  font-family: "Minerva Modern";
  font-weight: 500;
  text-transform: uppercase;
  font-size: 70px;
  color: var(--color-secondary);
}

.sec-head h2 {
  font-family: "Minerva Modern";
  font-weight: 500;
  text-transform: capitalize;
  font-size: 56px;
  color: var(--color-primary);
  line-height: 45px;
  margin-bottom: 6px;
}

.sec-head h3 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 15px;
  background: var(--color-secondary);
  display: inline-block;
  padding: 2px 13px;
  border-radius: 20px;
  color: #fff;
  position: relative;
}

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

.abt-right {
  padding-top: 28px;
}

.stats-block {
  background: var(--color-secondary);
  border-radius: 50%;
  width: 250px;
  height: 250px;
  cursor: pointer;
  margin: auto;
  padding: 30px 0px;
  /* animation: jumpping 6s infinite linear; */
  color: #fff;
  border: 10px solid;
}

.specialised-box {
  padding: 13px 35px 0px;
  position: relative;
  cursor: pointer;

}

.specialised-box:hover .spcl-outer-img {
  transform: scale(1.05);
}

.spcl-content {
  margin-top: 10px;
  position: relative;
  padding-top: 10px;
}

.spcl-content h3 {
  font-weight: 500;
  font-size: 18px;
  color: var(--color-default);
}

.specialised-box:hover .spcl-content::before {
  width: 100%;
}

.spcl-content::before {
  content: " ";
  position: absolute;
  width: 40%;
  height: 1px;
  border-top: 1px solid var(--color-default);
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  transition: all 300ms ease;
}

.specialised-img {
  position: relative;
}

.spcl-outer-img {
  transition: all 300ms ease;
}

.spcl-outer-img img {
  width: 138px;
}

.specialised-img img {
  width: 58px;
}

.specialised-sec h2 {
  font-weight: 500;
  color: var(--color-secondary);
  font-family: "Minerva Modern";
  text-transform: capitalize;
  font-size: 35px;
  line-height: 30px;
  margin-bottom: 5px;
}

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

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

.specialised-sec .col-md-4:nth-child(2)::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 51%;
  background: linear-gradient(to top, #ffffff00, var(--color-secondary), #ffffff00);
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  opacity: 0.5;
}

.specialised-sec .col-md-4:nth-child(2)::after,
.specialised-sec .col-md-4:nth-child(5)::after,
.specialised-sec .col-md-4:nth-child(6)::after,
.specialised-sec .col-md-4:nth-child(8)::after {
  content: " ";
  position: absolute;
  width: 1px;
  height: 51%;
  background: linear-gradient(to top, #ffffff00, var(--color-secondary), #ffffff00);
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  opacity: 0.5;
}

.stats-row .col-md-6 {
  padding: 0px;
}

.stats-row .col-md-4:nth-child(1) .stats-block {
  margin-left: 318px;
}

.stats-row .col-md-4:nth-child(2) .stats-block {
  margin-left: 212px;
  margin-top: 62px;
}

.stats-row .col-md-4:nth-child(3) .stats-block {
  margin-left: 108px;
  margin-top: 108px;
}

.stats-row {
  position: relative;
}

.abt-matter p {
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 15px;
}

.abt-matter .abt-btm-btn {
  margin-bottom: 25px;
  display: inline-block;
  border: 1px solid;
  padding: 0px 10px;
}


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

.stats-img {
  position: relative;
}

.stats-img::before {
  content: " ";
  position: absolute;
  width: 77px;
  height: 77px;
  background: #ffffff21;
  border-radius: 50%;
  z-index: -1;
  top: -16px;
  left: -33px;
  right: 0px;
  margin: auto;
}

.stats-img img {
  width: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 25px;
}

.stats-content span {
  font-size: 49px;
  font-family: "Minerva Modern";
  font-weight: 400;
}

.stats-content p {
  font-size: 20px;
  margin-top: 4px;
  font-weight: 300;
}


.serv-sec {
  position: relative;
  margin-bottom: -128px;
  /* padding-bottom: 90px; */
  padding-bottom: 279px;
}

.serv-sec::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/serv-top-bg1.png);
  top: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}

.serv-sec::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/serv-girl-bg.png);
  background-size: contain;
  top: -158px;
  left: -98px;
  right: 0px;
  background-repeat: no-repeat;
  filter: brightness(0.5);
  z-index: -1;
}

.serv-box-row .sec-head h2 {
  color: #fff;
}

.serv-box-row .sec-head p {
  color: #fff;
}

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

.serv-content {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  margin: auto;
  height: fit-content;
  width: fit-content;
  padding: 25px 11px 25px 260px;
  color: #fff;
  text-align: left;
}

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

.serv-block1 {
  left: 88px;
  margin-bottom: 10px;
}

.serv-block {
  position: relative;
  text-align: center;
  cursor: pointer;
  margin-bottom: 33px;
}

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

.serv-content h2 {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}

.serv-content p {
  line-height: 21px;
  font-size: 14px;
  color: #e2e2e2;
}

.serv-content a {
  color: #e2e2e2;
  border-bottom: 1px solid;
  padding-bottom: 1px;
}

.serv-box-row {
  padding-top: 30px;
}

.serv-block-img {
  position: relative;
}

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

.serv-block-inner-img img {
  width: 185px !important;
  transition: all 300ms ease;
}

.serv-sec .container:nth-child(2) {
  max-width: 1200px;
}

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

.serv-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 5px;
  opacity: 1;
  margin: 13px 2px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  background: var(--color-primary);
}

.serv-scroll .owl-dot:hover,
.serv-scroll .owl-dot.active {
  opacity: 1;
  background: #fff;
}

.serv-scroll {
  /* padding-top: 30px; */
}

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

.docs-sec::before {
  content: " ";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  /* background: linear-gradient(to bottom, #e67db01a, #ffffff00); */
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.doc-img img {
  box-shadow: 0px 0px 6px 0px #0000008a;
  border: 6px solid #fff3f9;
  width: 325px;
}

.doc-block {
  position: relative;
}

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

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

.doc-content h2 {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  font-size: 29px;
  margin-bottom: 3px;
}

.doc-content h3 {
  font-size: 18px;
  color: var(--color-default);
  font-weight: 400;
  margin-bottom: 3px;
}

.doc-content h4 {
  font-size: 19px;
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 10px;
}

.doc-content a {
  border: 1px solid;
  color: var(--color-primary);
  padding: 3px 10px;
}

/* .doc-row .col-md-4:nth-child(1),
.doc-row .col-md-4:nth-child(3) {
  margin-top: 80px;
} */

.doc-btm {
  text-align: center;
  position: relative;
  padding-top: 10px;
}

.doc-btm::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  left: -35px;
  right: 0px;
  top: 0px;
  margin: auto;
}

/* .doc-btm::after{
  content: " ";
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--color-primary);
  left: 0px; 
  top: -35px;
  bottom: 0px;
  margin: auto;
} */
.doc-inner-btm::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 132%;
  background-image: url(../gallery/appnt-side.png);
  left: -35px;
  top: -169px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.2;
  filter: grayscale(1);
}

.doc-inner-btm {
  position: relative;
  /* left: 23px;
    top: 11px; */
}

.doc-btm h2 {
  font-weight: 500;
  color: var(--color-secondary);
}

.doc-btm p {
  line-height: 32px;
  font-size: 19px;
}

.doc-btm .btm-btn {
  background: var(--color-default);
  color: #fff;
  padding: 6px 10px;
  display: inline-block;
  cursor: pointer;
}

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

.doc-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 5px;
  opacity: 1;
  margin: 13px 2px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  background: var(--color-primary);
}

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

.doc-strip {
  position: relative;
  /* background: var(--color-secondary);  */
  margin-top: -50px;
  padding: 20px 10px;
  margin-bottom: 50px;
  box-shadow: 0px 19px 15px -10px #00000091;
}

.doc-strip::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/d-strip.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  top: 0px;
  left: 0px;
}

.doc-main-img {
  z-index: -1;
}

.doc-strip::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #441240ed;
  top: 0px;
  opacity: 0.9;
  left: 0px;
}

.doc-inner-box {
  margin: 15px 5px;
  position: relative;
  color: #fff;
  padding: 10px 0px;
  z-index: 1;
}

.doc-inner-box::before {
  content: " ";
  position: absolute;
  width: 10%;
  height: 100%;
  border: 1px solid #e6e6e636;
  border-right: none;
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.doc-inner-box::after {
  content: " ";
  position: absolute;
  width: 10%;
  height: 100%;
  border: 1px solid #e6e6e636;
  border-left: none;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.doc-inner-box h2 {
  font-size: 23px;
  text-transform: uppercase;
}

.doc-inner-box h3 {
  font-weight: 400;
  font-size: 16px;
  margin: 3px 0px 6px;
  color: #ffffffa3;
}

.doc-inner-box h4 {
  font-weight: 400;
  font-size: 18px;
  color: #ffffffa3;
}

.doc-btm {
  /* margin: 0px 140px; */
  margin: 0px 200px;
  position: relative;
}

.doc-btm::before {
  content: " ";
}

.doc-btm h2 {
  font-weight: 400;
  line-height: 37px;
  font-size: 25px;
  position: relative;
  /* padding-bottom: 20px; */
}



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

.testimonials-box {
  padding: 30px 55px;
  position: absolute;
  top: 11px;
  width: 415px;
  left: 96px;
}

.testimonials-box::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 69%;
  background: var(--color-secondary);
  top: -57px;
  bottom: 0px;
  margin: auto;
  left: 34px;
}

.testimonials-box::after {
  content: "\f10d";
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: "FontAwesome";
  top: -3px;
  bottom: 0px;
  margin: auto;
  left: -172px;
  color: var(--color-secondary);
}

.testimonial-row {
  padding-top: 50px;
}

.test-blk p {
  margin-bottom: 0px;
  text-align: left;
}

.test-blk h2 {
  font-weight: 500;
  color: var(--color-default);
  text-transform: uppercase;
  font-size: 28px;
}

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

.testimonials-quote1 img {
  width: 105px;
}

.testimonials-quote1 {
  position: absolute;
  left: 32px;
  top: -63px;
}

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

.test-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 5px;
  opacity: 1;
  margin: 13px 2px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  background: var(--color-secondary);
}

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

.testimonials-bg {
  position: relative;
}

.testimonials-bg::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/feed-top-bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.6;
  left: 0px;
}


/* 
=============================================
appointment form style 
=============================================
*/


.appointment-form h2 {
  font-weight: 500;
  color: #fff;
  font-family: "Minerva Modern";
  text-transform: capitalize;
  font-size: 40px;
  line-height: 30px;
  margin-bottom: 11px;
}

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

.appointment-form {
  padding: 18px 18px 18px;
  position: relative;
  background: var(--color-secondary);
}

.appointment-head {
  position: relative;
  z-index: 1;
}

.appointment-form::after {
  content: " ";
  position: absolute;
  width: 80%;
  height: 80%;
  /* top: 0px; */
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  box-shadow: 0px 9px 40px #000;
  z-index: -2;
}

.appointment-inner-form {
  padding: 20px 18px 0px;
  z-index: 1;
  position: relative;
  margin-bottom: 15px;
}

.appointment-form::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100px;
  /* border: 1px solid #52194e; */
  left: 0px;
  right: 0px;
  top: -44px;
  border-radius: 7px;
  /* bottom: 0px; */
  margin: auto;
  background: #52194e;
  z-index: -1;
  transform: skewY(10deg);
}

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

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

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

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

.appointment-form .form-control {
  color: #eeeeeec7;
  border-bottom: 1px solid #dedede4a;
  padding: 11px 35px;
  font-size: 15px;
  border-radius: 0px;
}

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

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

.appnt-bg {
  position: relative;
  z-index: 1;
}

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

.appoint-addre {
  position: relative;
  z-index: 1;
  padding-top: 30px;
}

.appoint-addre::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  border-top: 1px dashed #fff;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  opacity: 0.4;
}

.appoint-addre p {
  color: #fff;
}

.address-icon i {
  position: relative;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 8px;
}

.footer-add {
  padding-top: 20px;
}

















.counter-content {
  text-align: center;
  padding: 25px 15px;
  border-radius: 15px;
}

.counter-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
  border-bottom: 1px solid;
  display: inline-block;
  color: var(--color-secondary);
  padding-bottom: 5px;
}

.counter .counter-value {
  font-size: 38px;
  font-weight: 600;
  line-height: 30px;
  margin: 0 0 15px;
  display: block;
}

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

.faq-row .col-md-3:nth-child(2),
.faq-row .col-md-3:nth-child(4) {
  margin-top: 70px;
}

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

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

.faq-content {
  position: absolute;
  top: -15px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: fit-content;
  height: fit-content;
  margin: auto;
  padding: 0px 18px;
}

.faq-block {
  position: relative;
}

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

.ol_styles li {
  position: relative;
  padding-left: 1px;
  margin-bottom: 5px;
  line-height: 28px;
  text-align: justify;
  list-style: disc;
}

.myths-block {
  position: relative;
  color: #fff;
  padding: 30px 20px 30px 20px;
}

.myths-block::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  z-index: -1;
  left: 0px;
  border-radius: 28px;
  bottom: 0px;
  margin: auto;
  background: var(--color-secondary);
  transform: skewX(10deg);
}

.myths-facts-sec {
  position: relative;
  margin-bottom: 100px;
  min-height: 45vh;
}



.footer_section {
  position: relative;
}

.footer_section .footer_add_row {
  position: relative;
}

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

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

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

}

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

.bottom-footer {
  padding: 5px 0;
}

.bottom-footer p {
  margin: 0;
  font-size: 15px;
  display: inline-block;
  padding: 7px 15px 4px;
  border-top: 1px solid #30303038;
}

.bottom-footer a {
  font-weight: 600;
}

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

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

.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: 40px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 3px;
}

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

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

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

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

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

.footer-widget__social {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 2px;
  margin-top: 15px;
}

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

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

.footer-widget__social li a:hover {
  color: #ffffff;
  background: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

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

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

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

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

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

.footer_wid .address_info_sec {
  position: relative;
}

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

.footer-about p {
  font-size: 15px;
  line-height: 30px;
  margin: 0;
  padding: 0px 0px 25px;
  color: var(--color-default);
}

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

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

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

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

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

.footer_links {
  text-align: center;
}

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

.footer_section .f-call i,
.footer_section .f-mail i,
.footer_section .f-ad i {
  font-size: 19px;
  display: inline-block;
  background-color: var(--color-default);
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}

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

.footer_section .f-ad {
  text-align: center;
  padding-top: 6px;
}

.footer_section .f-call {
  position: relative;
}

.footer_section .f-call,
.footer_section .f-mail,
.footer_section .f-ad {
  text-align: center;
  margin-bottom: 10px;
}

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

.footer_section .footer-btm a {
  color: var(--color-secondary);
  font-size: 15px;
  display: block;
}

.footer_section .shape {
  position: relative;
  width: 70%;
  height: 5px;
  border-radius: 15px;
  background: linear-gradient(to left, var(--color-primary), transparent, var(--color-secondary));
}

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

.footer_links1 {
  text-align: center;
}

.footer_links1 ul {
  display: inline-block;
  /* padding: 0px 80px 6px; */
  margin: 0 0 15px;
}

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

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

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

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

.subscribe-block {
  position: relative;
  padding: 25px 20px;
  background-color: var(--color-secondary);
  margin: 30px 0px;
  border-radius: 12px;
}

.subscribe-block::before {
  content: "";
  position: absolute;
  height: 120%;
  width: 95%;
  top: -10px;
  left: 0;
  right: 0;
  bottom: -10px;
  background-color: #0a3b5921;
  margin: auto;
  z-index: -1;
}

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

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

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

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

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

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

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

.footer_section .fd-img img {
  width: 350px;
  border: 5px solid #fff;
  box-shadow: 0px 0px 13px #8c8c8c;
}

.footer_section::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../gallery/footer-bg.png);
  background-position: bottom;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.09;
  filter: grayscale(1);
  background-size: auto;
  background-repeat: no-repeat;
  bottom: 0;
}

.footer-logo {
  position: relative;
  display: inline-block;
  padding: 10px;
  border-radius: 15px;
  margin: auto;
  left: 0;
  right: 0;
}

.footer-txt {
  position: relative;

}

.footer-adr {
  padding: 25px 0 10px;
}

.footer-adr .fad-txt h3 {
  font-size: 20px;
  color: var(--color-primary);
}

.footer-adr .f-icon {
  width: 45px;
  margin-right: 10px;
}

.f-adr {
  display: flex;
}


.footer-adr .col-md-4:nth-child(2) {
  border-left: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
}

.main-footer .footer-widget {
  position: relative;
  margin-bottom: 40px;
}

.social-icon-two {
  position: relative;
  margin: 13px 0px;

}

.social-icon-two li {
  position: relative;
  display: inline-block;
}

.social-icon-two li:first-child {
  margin-left: 0;
}

.social-icon-two li a {
  position: relative;
  display: block;
  font-size: 18px;
  width: 38px;
  height: 38px;
  line-height: 37px;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 400;
  margin: 0 1px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  background: rgb(255 255 255 / 25%);
}

.social-icon-two li a:hover {
  background: var(--color-secondary);
}

.main-footer-two .footer-bottom {
  position: relative;
  line-height: 24px;
}

.main-footer-two .footer-bottom .inner {
  position: relative;
  display: block;
  padding: 9px 0px 13px;
  border-top: 2px solid var(--color-secondary);
}

.main-footer-two .footer-bottom .copyright {
  position: relative;
  width: 100%;
  line-height: 24px;
  text-align: center;
  color: #e9e9e9;
  font-size: 16px;
  font-weight: 300;
}

.main-footer-two .footer-bottom .copyright a {
  text-transform: capitalize;
  color: var(--color-secondary);
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  font-weight: 300;
}

.main-footer-two .upper-logo-box h2 {
  position: relative;
  display: block;
  line-height: 25px;
  font-size: 14px;
  text-transform: capitalize;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  color: #d7d7d7;
}

.social-links-bottom {
  padding: 26px 0px;
}

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

.social-links-bottom ul li {
  padding-left: 18px;
}

.main-footer .footer-widget {
  position: relative;
}

.main-footer-two .widget-title {
  position: relative;
  margin-bottom: 20px;
}

.main-footer-two .widget-title h4 {
  position: relative;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin: 0 0;
  font-size: 21px;
  font-weight: 500;
}

.main-footer-two .widget-title h4::before {
  content: '';
  position: absolute;
  left: 0px;
  height: 2px;
  width: 64px;
  border-bottom: 2px solid var(--color-primary);
  bottom: -7px;

}

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

.main-footer-two .links-widget .links li a {
  position: relative;
  display: block;
  line-height: 28px;
  font-size: 15px;
  text-transform: capitalize;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  color: var(--color-default);
}

.main-footer-two .links-widget .links {
  padding-left: 23px;
  position: relative;
}

.main-footer-two .address {
  position: relative;
  margin-bottom: 14px;
  color: var(--color-default);
  padding-left: 24px;
}

.main-footer-two .address i {
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 15px;
  text-align: center;
  line-height: 26px;
}

.main-footer-two .address .text {
  font-size: 15px;
}

.footer_links {
  text-align: center;
  margin: 10px 100px 0px;
  padding: 35px 0px 0px;
  position: relative;
}

.footer_links::before {
  content: " ";
  position: absolute;
  width: 61%;
  height: 1px;
  background: var(--color-secondary);
  top: 18px;
  left: 0px;
  right: 0px;
  margin: auto;
  opacity: 0.4;
}


.footer_links ul {
  display: inline-block;
  /* padding: 6px 100px; */
  margin: 6px 35px 0px;
}

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

.footer_links ul li a {
  font-size: 16px;
  line-height: 19px;
  border-right: 1px dashed;
  padding: 0 11px;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--color-default);
}

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

.footer_links h2 {
  position: absolute;
  color: var(--color-secondary);
  top: 0px;
  left: 0px;
  right: 0px;
  background: #fff;
  width: fit-content;
  margin: auto;
  padding: 3px 16px;
  border-radius: 10px;
  font-size: 24px;
  box-shadow: 0px 0px 3px #402e2a;
  font-weight: 500;
}

.footer-add .col-md-4:nth-child(2)::before {
  content: " ";
  position: absolute;
  width: 2px;
  height: 70%;
  background: linear-gradient(to top, #ffffff00, var(--color-secondary), #ffffff00);
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.footer-add .col-md-4:nth-child(2)::after {
  content: " ";
  position: absolute;
  width: 2px;
  height: 70%;
  background: linear-gradient(to top, #ffffff00, var(--color-secondary), #ffffff00);
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

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

.extra-ad-head h2 {
  font-weight: 500;
  font-size: 30px;
  color: #fff;
  position: relative;
  padding-bottom: 22px;
}

.extra-ad-head h2::before {
  content: " ";
  position: absolute;
  width: 64%;
  height: 1px;
  border-bottom: 1px solid #fff;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  opacity: 0.3;
}

.extra-ad-head h2 span {
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-top: 10px;
}

.extra-ad-head {
  position: relative;
  background: var(--color-secondary);
  width: 635px;
  height: 635px;
  border-radius: 50%;
  padding: 138px 58px;
  box-shadow: -10px 0px 13px #0000003b;
  border: 3px solid #fff;
  z-index: 1;
}

.extra-ad-head::before {
  content: " ";
  position: absolute;
  width: 635px;
  height: 635px;
  background-image: url(../gallery/extra-bg.png);
  background-position: center;
  top: 0px;
  left: 0px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
  z-index: -1;
  /* filter: brightness(0) invert(1); */
}

.extra-ad-head p {
  color: #ffffffb8;
  padding-top: 16px;
  line-height: 32px;
}

.extra-right-img {
  position: relative;
  right: 86px;
}

.extra-right-img img {
  max-width: 500px;
}

.extra-right-content {
  position: absolute;
  top: 0px;
  padding-top: 30px;
}

.extra-right-content::before {
  content: " ";
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(to bottom, #e67db01a, #ffffff00);
  right: -28px;
  top: 18px;
}

.extra-right-content p {
  margin-bottom: 10px;
}

.extra-right-content p strong {
  font-size: 18px;
}

.extra-right-btm {
  position: relative;
  padding-right: 80px;
  padding-top: 14px;
  margin-top: 15px;
}

.extra-right-btm .extra-down-btn {
  border: 1px solid var(--color-primary);
  padding: 5px 10px;
  font-size: 18px;
  margin-top: 0px;
  display: inline-block;
}

.extra-right-btm::before {
  content: " ";
  position: absolute;
  width: 58%;
  height: 1px;
  border-top: 1px solid var(--color-default);
  left: 0px;
  top: 0px;
}


.footer-addre-row .col-md-3 {
  background: #e67db014;
}

.footer-addre-row .col-md-3:nth-child(1) .footer-addre,
.footer-addre-row .col-md-3:nth-child(3) .footer-addre {
  padding: 50px 20px;
}

.footer-addre-row .col-md-3:nth-child(2) .footer-addre {
  padding: 33px 0px 10px;
}

.footer-addre-row .col-md-3:nth-child(4) .footer-addre {
  padding: 47px 0px 20px;
}

.footer-addre-row .col-md-3:nth-child(even) {
  background: var(--color-secondary);
  color: #fff;
}

.footer-addre-row .col-md-3:nth-child(even)::before {
  content: " ";
  position: absolute;
  width: 97%;
  height: 96%;
  border: 1px solid #fff;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  margin: auto;
  opacity: 0.5;
}

.footer-addre {
  padding: 20px 20px;
}

.footer-addre-icon {
  position: relative;
  width: 40px;
  height: 38px;
  background: var(--color-primary);
  color: #fff;
  line-height: 38px;
  margin: auto;
}

.footer-addre-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}

.footer-addre-row {
  padding-bottom: 20px;
}

.serv-row .serv-img {
  position: absolute;
  border-radius: 50%;
  height: 250px;
  width: 250px;
  overflow: hidden;
  bottom: 0;
  box-shadow: 0px -2px 8px #5f5f5f;
  margin: 9px;

}

.serv-row .serv-img-blk {
  position: relative;
  width: 340px;
  height: 415px;
  transition: all 0.6s ease 0s;
  margin-top: 75px;
  top: 0px;
}

.serv-row .serv-img-blk .serv-img-bg {
  z-index: 1;
  position: relative;
}

.serv-img-blk .serv-txt-blk {
  position: absolute;
  top: 38px;
  right: 0;
  margin-right: 19px;
  padding-left: 77px;
  padding-right: 8px;
  z-index: 1;
}

.serv-img-blk .serv-txt-blk h2 {
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
}

.serv-txt-blk p {
  color: #fff;
  margin-bottom: 9px;
  font-size: 15px;
  line-height: 18px;
}

.serv-txt-blk a {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  padding: 5px 10px;
  border-radius: 32px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}

.serv-img:before {
  content: '';
  background: #fff;
  width: 200px;
  opacity: 0.6;
  transform: skew(-20deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  box-shadow: 0 0 100px #fff;
  transition: all 0.6s ease;
  z-index: 99;
}

.serv-img-blk:hover .serv-img:before {
  opacity: 1;
  left: 200%;
}

.serv-img img {
  width: 100%;
  height: auto;
  transition: all 0.6s ease 0s;
}

.serv-img-blk:hover .serv-img img {
  opacity: 0.3;
  transform: scale(1.2);
  transform-origin: left;
}

.serv-scroll .owl-item.center.active .serv-img-blk {
  top: -55px !important;

}

.breast-cancer-awar {
  position: relative;
  margin-bottom: 68px;
}

.breast-awar-head h2 {
  font-size: 44px;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  background: var(--color-secondary);
  padding: 5px 23px;
  font-weight: 400;
}

.breast-awar-head h2::before {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-right: 28px solid var(--color-primary);
  border-bottom: 18px solid transparent;
  left: -20px;
  top: 5px;
}

.breast-awar-head h3 {
  position: relative;
  right: -80px;
  font-weight: 400;
  color: var(--color-default);
  margin-top: 15px;
}

.breast-awar-head h3::before {
  content: " ";
  position: absolute;
  width: 32%;
  height: 1px;
  background: var(--color-secondary);
  top: 0px;
  bottom: 0px;
  margin: auto;
  left: 0px;
}

.breast-awar-box {
  padding-top: 18px;
}

.breast-awar-box p {
  margin-bottom: 0px;
  line-height: 30px;
}

.breast-awar-box h3 {
  font-size: 20px;
  color: var(--color-secondary);
  display: inline-block;
  font-weight: 500;
  margin: 8px 0px 4px;
  border-left: 3px solid;
  padding-left: 8px;
}

.breast-side-img {
  padding-top: 30px;

}


.about-main-tag {
  margin-top: 60px;
}

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


.top-wrap1 {
  position: relative;
}

.breadcrumb {
  position: relative;
  text-align: center;
  padding: 170px 0 30px;
  margin-bottom: 0;
  z-index: 2;
  display: block;
  /* background: linear-gradient(to bottom, #fcecf0, transparent); */
  background: transparent;
}

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

.bread-bg::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #420d3d;
  left: 0px;
  top: 0px;
  opacity: 0.85;
}

.bread-bg::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/breadcrumb.jpg);
  background-size: cover;
  background-position: center;
  left: 0px;
  top: 0px;
  z-index: -1;
}

.breadcrumb h1 {
  color: #fff;
  font-size: 45px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 0px;
  font-family: "Minerva Modern";
}

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


.breadcrumb ul li::before {
  content: "/";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  color: #fff;
}

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

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

.breadcrumb ul {
  padding: 6px 9px;
  position: relative;
}

.breadcrumb ul::before {
  content: " ";
  position: absolute;
  width: 34%;
  height: 3px;
  background: linear-gradient(to right, #ffffff00, #fff, #ffffff00);
  bottom: -12px;
  left: 0px;
  right: 0px;
  margin: auto;
}

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

.inner-section1 {
  position: relative;
  padding: 101px 0 88px;
}

.serv-matter p {
  text-align: justify;
  line-height: 29px;
  margin-bottom: 10px;
}

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

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

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

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

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

.c-map iframe {
  border: 8px solid #fff;
  box-shadow: 0 0 10px #bfbfbf;
}

._cform {
  position: relative;
  padding: 23px 23px;
  margin: auto;
  text-align: center;
  box-shadow: 0 0 10px #ccc;
  border: 7px solid #f5f5f5;
  background: linear-gradient(to top, #e886b53d, #fff, #e8202300);
}

._cform h3,
.c-map h3 {
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 34px;
  color: var(--color-secondary);
  font-family: "Minerva Modern";
  border-bottom: 1px solid;
  display: inline-block;
}

._cform .form-control {
  border-bottom: 1px solid #52194e36;
  height: 50px;
  border-radius: 0px;
}

._cform .form-group textarea {
  height: 100px !important;
}

._cform .theme-btn {
  color: #fff;
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  padding: 4px 10px;
}


.gallbox .box {
  background: linear-gradient(-45deg, var(--color-secondary), var(--color-primary), var(--color-secondary));
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
  height: 191px;
  margin-bottom: 22px;
  border: 5px solid #f5f5f5;
  box-shadow: 0px 0px 6px #00000047;
}

.gallbox .box:before {
  content: "";
  border: 2px solid #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: rotate3d(0, 0, 1, 45deg) scale3d(1.5, 0, 1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all .35s;
}

.gallbox .box:hover:before {
  opacity: 1;
  transform: rotate3d(0, 0, 1, 45deg) scale3d(1.5, 1, 1);
}

.gallbox .box img {
  width: 100%;
  height: auto;
  transform: translate3d(0, 0, 0) scale(1.2);
  transition: all 0.5s ease 0s;
}

.gallbox .box:hover img {
  opacity: 0.3;
  transform: translate3d(-12px, 0, 0) scale(2.3) rotate(3deg);
}

.gallbox .box .box-content {
  color: #fff;
  width: 100%;
  padding: 15px 10px;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.gallbox .box:hover .box-content {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%);
}

.gallbox .box .title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin: 0 0 3px;
}

.gallbox .box .post {
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  text-transform: capitalize;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  margin: 0 0 10px;
  display: block;
}

.gallbox .box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
}

.gallbox .box .icon li {
  display: inline-block;
  margin: 0 2px;
}

.gallbox .box .icon li a {
  color: #355C7D;
  background: #fff;
  font-size: 15px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  display: block;
  transition: all .35s;
}

.gallbox .box .icon li a:hover {
  color: #6C5B7B;
  background: #fff;
  box-shadow: 4px 4px rgba(0, 0, 0, 0.5);
}

.gallrow .col-md-3 {
  padding: 0 8px;
}

.events-gall-head h2 {
  margin-bottom: 18px;
  border-left: 4px solid var(--color-secondary);
  padding-left: 18px;
  background: linear-gradient(to right, #e67db024, #ffffff00);
  color: var(--color-secondary);
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 25px;
  text-transform: capitalize;
  display: inline-block;
}

.events-gall-head h3 {
  font-weight: 400;
  font-size: 21px;
  margin-bottom: 20px;
  margin-top: -8px;
}

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

.gall-mar-top {
  margin-top: 60px;
}

.video_list iframe {
  width: 100%;
  height: 250px;
  margin-bottom: 30px;
  border: 7px solid #ffffff;
  box-shadow: 1px 20px 20px -10px #00000040;
}




.pricingTable {
  color: var(--color-secondary);
  background: #fff;
  text-align: center;
  padding: 25px 0 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  margin-bottom: 40px;
}

.pricingTable:before {
  content: "";
  background: linear-gradient(to bottom, #ffcde5, #ffffff00);
  width: 30px;
  height: 95px;
  position: absolute;
  top: 0;
  left: 10px;
}

.pricingTable .pricingTable-header {
  color: #fff;
  margin: 0 0 30px 50px;
  border-bottom: 2px solid var(--color-secondary);
}

.pricingTable .title {
  background: var(--color-secondary);
  font-size: 28px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 12.5px 10px;
  margin: 0 0 10px;
}

.pricingTable .pricing-content {
  padding: 0;
  margin: 0 0 25px;
  list-style: none;
  display: inline-block;
}

.pricingTable .pricing-content li {
  color: #000000;
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
  padding: 0px;
  margin: 0 0 10px;
  position: relative;
}

.pricingTable .pricing-content li:last-child {
  margin: 0;
}

.pricingTable .pricing-content li.disable:before {
  content: "\f00d";
  color: #FF3A39;
}

.pricingTable .price-value {
  margin: 0 0 20px;
  position: relative;
}

.price-value::before {
  content: " ";
  position: absolute;
  width: 46%;
  height: 1px;
  background: var(--color-secondary);
  bottom: -8px;
  left: 0px;
  right: 0px;
  margin: auto;
  opacity: 0.3;
}

.pricingTable .price-value .amount {
  font-size: 48px;
  line-height: 60px;
  font-weight: 600;
  margin: 0 0 5px;
  display: block;
}

.pricingTable .duration {
  color: #002C3B;
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
  display: block;
}

.pricingTable .pricingTable-signup {
  background: #002C3B;
  padding: 6px 0;
}

.pricingTable .pricingTable-signup a {
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s;
}

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

.pricingTable .pricing-content li a {
  color: #000000;
}

.togglepackages {
  text-decoration: none;
  color: #000000;
  padding: 10px 10px;
  line-height: 20px;
  margin-bottom: -1px;
}

.togglepackages:hover {
  color: #555;
}

.fa-plus {
  color: var(--color-primary);
  margin-top: 8px;
  position: relative;
  left: 4px;
}

.fa-minus {
  color: var(--color-primary);
  margin-top: 8px;
  position: relative;
  left: 4px;
}

.sub-expand p {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  margin: 0 0 4px;
  padding: 0 0 4px;
  border-bottom: 1px solid #ccc;
}

.sub-expand {
  display: none;
  background: #fff;
  padding: 10px 15px 3px 15px;
  box-shadow: 0px 0px 9px #00000038;
  margin: 10px 0px;
}

.sub-expand p:last-child {
  border-bottom: 0px;
}

.dexa {
  margin-bottom: 20px;
}

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

.ngs_items {
  position: relative;
  cursor: pointer;
  padding: 20px 20px;
}

.ngs img {
  border: 4px solid #f5f5f5;
  box-shadow: 0px 12px 14px -10px #000;
}

.ngs h3 {
  font-weight: 400;
  color: var(--color-secondary);
}

.abt-inner-content p {
  text-align: center;
  line-height: 29px;
  margin-bottom: 10px;
}

.abt-inner-content h2 {
  color: var(--color-secondary);
  font-size: 25px;
  font-weight: 600;
}

.abt-inner-content h3 {
  color: #cd4185;
  font-size: 20px;
  font-weight: 500;
}

.why-abt-cu p {
  text-align: justify;
}

.abt_ol_styles {
  position: relative;
  list-style: none;
  padding-left: 0;
  border-left: 2px solid;
  padding-top: 13px;
  margin-top: 14px;
  margin-bottom: 40px;
}

.abt_ol_styles li {
  position: relative;
  padding-left: 47px;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
  text-align: left;
}

.abt_ol_styles li::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  border-bottom: 2px solid var(--color-default);
  left: 0;
  top: 12px;
}

.abt-hos-img {
  position: relative;
  cursor: pointer;
}

.abt-hos-img img {
  box-shadow: 1px 20px 10px -10px #0000009e;
  border: 10px solid #f5f5f5;
}

.abt-inner-matt {
  margin-bottom: 20px;
}

.abt_ol_styles1 {
  position: relative;
  list-style: none;
  padding-left: 0;
  padding-top: 13px;
}

.abt_ol_styles1 li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
  text-align: left;
  padding-left: 20px;
}

.abt_ol_styles1 li::before {
  font-family: FontAwesome;
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  color: var(--color-secondary);
  font-size: 13px;
}

.panel_heading h3 {
  display: inline-block;
  background: linear-gradient(to left, rgb(0 0 0 / 0%), #e67db057);
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 32px;
  padding: 5px 22px;
  border-left: 4px solid;
  margin: 32px 0 20px;
}

.panel_heading {
  position: relative
}

.panel_row .col-md-3 {
  padding: 0 10px
}

.panel_list {
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
}

.panel_list img {
  box-shadow: 0 0 10px #ccc;
  border-radius: 10px
}



.main-timeline .timeline {
  width: 50%;
  margin: 0 5px 0 0;
  float: left;
}

.main-timeline .timeline-content {
  padding: 50px 80px 0 20px;
  display: block;
  position: relative;
}

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

.main-timeline .timeline-content:before {
  content: '';
  background: linear-gradient(to left, #e67db0, #fff2f8);
  height: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.main-timeline .timeline-icon {
  color: var(--color-primary);
  background-color: #fff;
  font-size: 40px;
  text-align: center;
  line-height: 63px;
  width: 110px;
  height: 110px;
  border: 25px solid var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  right: -55px;
  top: 0;
}

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

.main-timeline .title {
  color: var(--color-secondary);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 7px;
}

.main-timeline .description {
  color: #353535;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  /* letter-spacing: 1px; */
  margin: 0;
}

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

.main-timeline .timeline:nth-child(even) .timeline-content:before {
  background: linear-gradient(to right, #e67db0, #fff2f8);
}

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

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

@media screen and (max-width:767px) {
  .main-timeline .timeline-icon {
    font-size: 23px;
    line-height: 43px;
    width: 90px;
    height: 90px;
  }

  .main-timeline .timeline,
  .main-timeline .timeline:nth-child(even) {
    width: 100%;
    margin: 0 0 30px;
  }

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

  .main-timeline .timeline-content:before,
  .main-timeline .timeline:nth-child(even) .timeline-content:before {
    width: calc(100% - 55px);
    left: 0;
    right: auto;
  }

  .main-timeline .timeline:nth-child(even) .timeline-content:before {
    transform: rotateY(180deg);
  }

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

.doc-abt-img img {
  border: 7px solid #f5f5f5;
  box-shadow: 6px -5px 11px #00000026;
}

.doc-abt-content p {
  text-align: justify;
  line-height: 29px;
  margin-bottom: 10px;
}

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

.doc-abt-name h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #353535;
}

.doc-abt-name h4 {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 400;
}

.doc-abt-name {
  position: relative;
  padding: 15px 0px;
  margin-bottom: 10px;
  background: linear-gradient(to right, #e782b324, transparent);
  padding-left: 20px;
  border-left: 4px solid var(--color-secondary);
}

.sec-doc-row {
  position: relative;
  margin-top: 18px;
  padding-top: 32px;
}

.sec-doc-row::before {
  content: " ";
  position: absolute;
  width: 80%;
  height: 1px;
  background: var(--color-default);
  left: 0px;
  right: 0px;
  margin: auto;
  top: 0px;
  opacity: 0.2;
}

.thre-doc-row::before {
  content: " ";
  position: absolute;
  width: 80%;
  height: 1px;
  background: var(--color-default);
  left: 0px;
  right: 0px;
  margin: auto;
  top: 0px;
  opacity: 0.2;
}

.thre-doc-row {
  position: relative;
  margin-top: 18px;
  padding-top: 32px;
}

.doc-abt-content h3 {
  font-size: 18px;
  color: var(--color-primary);
}


.hightlight-ribbon {
  background: var(--color-secondary);
  color: #fff;
  font-size: 30px;
  padding: 10px 20px;
}

.hightlight-ribbon p {
  text-align: center;
  line-height: 44px;
}

.inner-serv-top {
  margin-top: 30px;
}

.doc-abt-new {
  margin-top: 20px;
  text-align: center;
  padding-left: 0px;
  border-left: 0px;
}

.inner-serv-2{
  margin-top: 40px;
}