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

:root {
  --color-default: #292929;
  --color-primary: #46a1c3;
  --color-secondary: #b51e74;
}

.container {
  position: relative;
}

.mobile-view {
  display: none;
}

/*** 
====================================================================
	Global Settings
====================================================================
 ***/
body {
  font-size: 16px;
  color: var(--color-default);
  line-height: 1.6em;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: "Open Sans", 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);
}

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

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

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

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

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

.header-one {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.main-menu .navigation > li > a i {
  font-size: 14px;
  color: var(--color-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: #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-default);
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}

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

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

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

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

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

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

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

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

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

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

.main-menu .navigation > li > ul > li > ul > li > ul {
  position: absolute;
  top: -7%;
  visibility: hidden;
  left: 200px;
  width: 155px;
  opacity: 0;
  z-index: 100;
  background-color: #ffffff;
  box-shadow: 0px 0px 5px #a5a5a5;
}

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

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

.main-menu .navigation > li > ul > li > 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 #3030304d;
}

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

.main-menu .navigation > li > ul > li:hover > a,
.main-menu .navigation > li > ul > li > ul > li:hover > a {
  background: var(--color-secondary);
  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: 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-size: 15px;
  text-transform: capitalize;
  color: #2e2d2d;
  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.jpg);
}

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

.font-change {
  /* font-family: "Open Sans", sans-serif; */
}

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

.fac-scroll {
  padding-top: 38px;
}

.fac-content {
  padding: 10px;
}

.abt-head h3 {
  font-weight: 400;
  font-size: 22px;
  color: #3087a8;
  display: inline-block;
  position: relative;
}

/* .abt-head h3::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-secondary);
  z-index: -1;
  right: -5px;
} */

.abt-head h2 {
  font-size: 45px;
  color: var(--color-default);
  font-weight: 500;
  margin-top: 8px;
  line-height: 48px;
  font-family: "Raleway", sans-serif;
}

.abt-head h2 span {
  text-transform: uppercase;
  color: var(--color-secondary);
  font-size: 60px;
  font-weight: 600;
  position: relative;
}

.abt-head h2 span::before {
  content: " ";
  position: absolute;
  width: 40%;
  height: 1px;
  /* background: linear-gradient(to right, #ffffff00, var(--color-default)); */
  background: var(--color-primary);
  right: -25px;
  bottom: 0px;
}

.abt-head h2 span::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  right: -25px;
  bottom: 0px;
  margin: auto;
}

.abt-matter p {
  line-height: 30px;
  padding-top: 10px;
  font-size: 15px;
}

.abt-matter a {
  background: var(--color-secondary);
  color: #fff;
  font-size: 14px;
  padding: 2px 6px;
}

.mvv-block {
  position: relative;
}

.mvv-img {
  position: relative;
}

.mvv-content {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 43px 18px 13px 168px;
  z-index: 1;
}

.mvv-content h2 {
  font-size: 23px;
  font-weight: 500;
  color: var(--color-secondary);
  text-transform: uppercase;
}

.mvv-content p {
  font-size: 15px;
  margin-bottom: 0px;
}

.mvv-row {
  margin-top: 68px;
  margin-bottom: 94px;
}

.abt-btm h2 {
  font-weight: 500;
  font-size: 25px;
  line-height: 37px;
}

.abt-btm {
  position: relative;
  padding-top: 13px;
  margin: 14px 113px 0px;
}

.abt-btm h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 37px;
}

.abt-btm a {
  background: var(--color-secondary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
}

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

.sec-title h3 {
  font-weight: 400;
  font-size: 22px;
  color: #3087a8;
  display: inline-block;
  position: relative;
}

.sec-title h2 {
  font-size: 40px;
  color: var(--color-default);
  font-weight: 500;
  margin-top: 8px;
  line-height: 48px;
  font-family: "Raleway", sans-serif;
}

.sec-title h2 span {
  text-transform: uppercase;
  color: var(--color-secondary);
  font-size: 50px;
  font-weight: 600;
  position: relative;
}

.sec-title h2 span::before {
  content: " ";
  position: absolute;
  width: 40%;
  height: 1px;
  background: var(--color-primary);
  right: -25px;
  bottom: 0px;
}

.sec-title h2 span::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  right: -25px;
  bottom: 0px;
  margin: auto;
}

.serv-sec {
  position: relative;
  margin-bottom: 85px;
  /* padding: 171px 0px 168px; */
  padding: 75px 0 68px;
}

.serv-sec::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #750545;
  /* clip-path: polygon(0 0, 50% 10%, 100% 0, 100% 100%, 50% 90%, 0 100%); */
  top: 0px;
  left: 0px;
  z-index: -2;
  transform: skewY(6deg);
}

.serv-sec::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/serv-bg.jpg);
  /* clip-path: polygon(0 0, 50% 10%, 100% 0, 100% 100%, 50% 90%, 0 100%); */
  top: 0px;
  left: 0px;
  z-index: -1;
  filter: grayscale(1);

  transform: skewY(6deg);
  opacity: 0.2;
}

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

.serv-sec-bg::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 91%;
  background: #e4a7cb;
  z-index: -2;
  transform: skewX(13deg);
  top: 0px;
  bottom: 0px;
  margin: auto;
  box-shadow: 14px 16px 10px -10px #0000002f;
}

.serv-sec-bg::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 91%;
  border: 1px solid #ffffff69;
  z-index: -2;
  transform: skewX(-13deg);
  border-top: 0px;
  border-bottom: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

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

.serv-sec .sec-title h2 span {
  color: #fff;
}

.serv-sec .sec-title h2 {
  color: #fff;
}

.serv-sec .sec-title h3 {
  color: #fff;
}

.serv-sec .sec-title p {
  color: #fff;
}

.sec-title p {
  font-size: 15px;
  margin-top: 10px;
}

.serv-sec .sec-title h2 span::before,
.serv-sec .sec-title h2 span::after {
  background: #fff;
}

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

.serv-info {
  position: absolute;
  top: -88px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.serv-img img {
  width: 250px !important;
  border-radius: 50%;
  margin: auto;
}

.serv-content {
  padding: 30px 20px 0px;
  color: #fff;
}

.serv-content h2 {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

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

.serv-content a {
  background: #fff;
  color: var(--color-secondary);
  padding: 0px;
  font-size: 18px;
  width: 30px;
  height: 30px;
  display: block;
  margin: auto;
  line-height: 30px;
}

.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: 10px;
  height: 10px;
  opacity: 1;
  margin: 13px 2px;
  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;
  background: var(--color-primary);
}

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

.box {
  text-align: center;
  overflow: hidden;
  position: relative;
  width: 250px !important;
  border-radius: 50%;
  margin: auto;
  border: 3px solid #fff;
  box-shadow: 1px 4px 9px #000;
}

.box:before,
.box:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(172 33 108 / 27%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  transform: scaleX(0);
  transition: all 0.6s ease 0s;
}

.box:after {
  transform: scaleY(0);
}

.serv-block:hover .box:before {
  transform: scaleX(1);
}

.serv-block:hover .box:after {
  transform: scaleY(1);
}

.box img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease 0s;
}

.serv-block:hover .box img {
  transform: scale(1.3);
}

.box .box-content {
  width: 100%;
  position: absolute;
  top: 42%;
  left: 0;
  z-index: 2;
}

.box .title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px 0;
  opacity: 0;
  transition: all 0.3s ease 0s;
}

.serv-block:hover .box .title {
  opacity: 1;
}

.box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
  transform: scaleX(0);
  transition: all 0.6s ease 0s;
}

.serv-block:hover .box .icon {
  transform: scaleX(1);
}

.box .icon li {
  display: inline-block;
}

.box .icon li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  border: 1px solid #fff;
  margin-right: 5px;
  transition: all 0.3s ease 0s;
}

.box .icon li a:hover {
  background: #fff;
  color: #444;
  text-decoration: none;
}

.fac-content h2 {
  font-size: 19px;
  font-weight: 500;
  margin-top: 7px;
  color: var(--color-default);
}

.fac-block {
  position: relative;
  text-align: center;
  padding: 20px 10px;
  cursor: pointer;
}

.fac-block::before {
  content: " ";
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--color-primary);
  z-index: -1;
  opacity: 0.1;
  left: 0px;
  top: 0px;
}

.fac-sec {
  position: relative;
}

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

.fac-sec h3 {
  margin-bottom: 10px;
  font-weight: 500;
  font-family: "Raleway", sans-serif;
}

.fac-img img {
  transition: all 300ms ease;
  width: 140px !important;
  margin: auto;
}

.fac-block:hover .fac-img img {
  transform: scale(1.05);
}

.fac-sec h3 span {
  text-transform: uppercase;
  color: var(--color-secondary);
  font-size: 50px;
  font-weight: 600;
  position: relative;
}

.fac-sec p {
  font-size: 15px;
}

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

.eimgs-row {
  padding-top: 45px;
}

.eimgs-right {
  margin-top: 75px;
}

.eimgs-blk {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  cursor: pointer;
}

.eimgs-blk img {
  border-radius: 17px;
  margin-bottom: 8px;
  box-shadow: 2px 4px 6px #ffe6f4c2;
  border: 2px solid #e6a9cd;
}

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

.appt-right-blk {
  position: relative;
  /* background-color: #292929; */
  /* padding: 158px 0 35px; */
  /* margin-top: -112px; */
  z-index: 99;
  border-radius: 25px;
  /* box-shadow: 0 0 14px #8a4c5985; */
  /* border-top-left-radius: 220px;
  border-top-right-radius: 220px; */
  overflow: hidden;
  /* margin-bottom: 60px; */
}

/* .appt-right-blk::before {
  content: "";
  background: url(../gallery/apt-bg.jpg);
  width: 100%;
  height: 100%;
  border-radius: 25px;
  position: absolute;
  top: 0px;
  left: 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
} */

.appointment-form {
  padding: 14px 68px;
}

.appointment-form .btn-style-one {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;

  font-weight: 500;
  overflow: hidden;
  min-width: 110px;
  border-radius: 30px;
  border: none;
  background-color: var(--color-secondary);
  color: #fff;
  margin-top: 25px;
}

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

.appointment-form .form-control {
  color: #fff;
  border-bottom: 1px solid #ffffff24;
  font-size: 15px;
  border-radius: 0px;
  padding-left: 30px;
}

.appt-right-blk .title-txt h2 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}

.appt-right-blk .title-txt p {
  color: #fff;
  font-size: 15px;
}

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

.form-control:focus {
  color: #fff;
}

.ht-talk-sec {
  position: relative;
}

.ht-talk {
  position: relative;
  padding: 13px;
  margin: auto;
  width: 328px;
}

.ht-talk img {
  box-shadow: 0 0 14px #46a1c370;
  border: 5px solid #f5f5f5;
}

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

.ht-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 20px;
  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);
}

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

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

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

.footer_section {
  position: relative;
  padding-top: 10px;
}

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

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

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

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

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

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

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

.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);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

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

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

.footer-widget__social li a {
  display: block;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  text-align: center;
  line-height: 41px;
  color: #fff;
  background: var(--color-secondary);
  margin: 0 4px;
  box-shadow: 0px 3px 5px #c1c1c1;
  font-size: 19px;
}

.footer-txt {
  position: relative;
}

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

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

.footer_section .footer_top h2 {
  color: var(--color-secondary);
  font-size: 21px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 500;
  background-color: #fbfbfb;
  border-bottom: 2px solid var(--color-default);
  padding: 2px 10px;
  border-radius: 25px;
  box-shadow: 0px 3px 5px #c1c1c1;
}

.footer_links1 {
  text-align: center;
}

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

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

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

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

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

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

.f-adr {
  display: flex;
}

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

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

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

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

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

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

.test-blk {
  padding: 25px;
  border-radius: 25px;
  padding-top: 50px;
  padding-bottom: 20px;
}

.test-blk h2 {
  color: var(--color-secondary);
  font-weight: 500;
  text-transform: uppercase;
}

.test-blk p {
  padding: 25px;
  border-radius: 26px;
  margin-bottom: 5px;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.test-blk::after {
  content: "";
  position: absolute;
  height: 400px;
  width: 400px;
  background: linear-gradient(to left, #ffceea, #46a1c300);
  top: 0;
  left: -10px;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  z-index: -1;
  margin: auto;
}

.test-btm-img {
  opacity: 0.5;
}

.contact-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-info li {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-default);
  margin-top: 20px;
  text-align: center;
  padding: 19px 53px;
  box-shadow: 0 8px 8px #c9c9c9;
  background: linear-gradient(to bottom, #fff, #ebebeb);
}

.contact-info li:nth-child(1)::after,
.contact-info li:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 75px;
  background: var(--color-default);
  right: 0;
  top: 33%;
}

.contact-info li h3 {
  text-transform: uppercase;
  color: var(--color-default);
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 12px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 15px;
}

.contact-info p a {
  color: var(--color-default);
}

.contact-info li .icon {
  position: relative;
  display: table;
  left: 0;
  top: 0;
  margin: 0 auto 2px;
  font-size: 17px;
  line-height: 34px;
  width: 34px;
  height: 34px;
  background: var(--color-secondary);
  text-align: center;
  color: #fff;
  border-radius: 50%;
}

.contact-info li:last-child {
  border-right: 0px;
}

.top-phn-btn {
  position: absolute;
  right: 248px;
  top: 24px;
  z-index: 1;
}

.top-phn-btn a {
  color: var(--color-default);
  font-size: 16px;
}

.top-phn-btn a i {
  background: var(--color-secondary);
  color: #fff;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  border-radius: 8px;
  font-size: 15px;
}

.phn-first {
  padding-right: 18px;
  border-right: 1px solid var(--color-default);
}

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

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

.top-social p {
  margin-bottom: 0px;
  line-height: 28px;
  margin-right: 10px;
  color: #a47dab;
  font-weight: 600;
}

.top-social li a {
  display: block;
  width: 34px;
  height: 32px;
  color: var(--color-secondary);
  text-align: center;
  line-height: 31px;
  font-size: 14px;
  margin: 0px 1px;
  border: 1px solid #a47dab52;
}

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

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

.ht-talk-sec h3 span {
  text-transform: uppercase;
  color: var(--color-secondary);
  font-size: 50px;
  font-weight: 600;
  position: relative;
}

.ht-talk-sec h3 {
  margin-bottom: 10px;
  font-weight: 500;
  font-family: "Raleway", sans-serif;
}

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

.apt-blk {
  background-color: var(--color-default);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  padding: 58px 0 28px;
  filter: drop-shadow(2px 4px 6px black);
}

.apt-blk-outer::after {
  content: " ";
  position: absolute;
  width: 99%;
  height: 98%;
  border: 1px solid #ffffffcf;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: 0px;
}

.apt-blk::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/appt-bg.png);
  background-repeat: no-repeat;
  opacity: 0.7;
  background-position: center right;
  background-size: cover;
  top: 0px;
}

.apt-blk::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background: var(--color-default);
  top: 0px;
}

.apt-circle {
  position: absolute;
  height: 587px;
  width: 587px;
  border-radius: 50%;
  top: -70px;
  left: -101px;
  background: linear-gradient(to bottom, #ff7cc757, transparent);
  z-index: 1;
}

.ht-head h2 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-block;
  padding-bottom: 5px;
}

.ht-head h2::before {
  content: " ";
  position: absolute;
  width: 40%;
  height: 1px;
  background: #fff;
  right: -25px;
  bottom: 0px;
}

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

.ht-head h2::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  right: -25px;
  bottom: 0px;
  margin: auto;
}

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

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

.equip-sec {
  position: relative;
  margin-bottom: 50px;
}

.equip-row {
  padding-top: 18px;
  position: relative;
}

.equip-img {
  width: 220px;
  margin: auto;
  cursor: pointer;
  margin-bottom: 23px;
}

.equip-img h2 {
  font-size: 17px;
  color: var(--color-default);
  font-weight: 500;
  text-transform: capitalize;
  /*! background-color: var(--color-secondary); */
  display: inline-block;
  padding: 2px 25px;
  background: linear-gradient(to left, #fff0, #b51e741f, #fff0);
}

.extra-left {
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.383));
}

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

.extra-right h2 span {
  text-transform: uppercase;
  color: var(--color-secondary);
  font-size: 70px;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
}

.extra-right h2 {
  line-height: 57px;
  font-weight: 600;
  font-size: 27px;
}

.extra-right h3 {
  font-weight: 500;
  font-size: 19px;
}

.extra-right p {
  font-size: 15px;
  padding-top: 8px;
  line-height: 30px;
  margin-bottom: 10px;
  position: relative;
}

.extra-right p::before {
  content: " ";
  position: absolute;
  width: 70%;
  height: 1px;
  background: var(--color-secondary);
  left: 0px;
}

.extra-right p::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-secondary);
  right: 134px;
  top: -1px;
}

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

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

.extra-right h4 {
  font-size: 16px;
  margin-top: 7px;
}

.extra-right {
  position: relative;
}

.abt-head h1 {
  font-size: 35px;
  color: var(--color-default);
  font-weight: 500;
  margin: 15px 0;
}

.top-wrap1 {
  position: relative;
}

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

.bread_cumb_wrap h1 {
  text-transform: capitalize;
  color: #000000;
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 600;
}

.bread_cumb_wrap ul {
  display: inline-block;
  box-shadow: 0 5px 4px #94949482;
  padding: 7px 15px 4px;
  /*! border-radius: 30px; */
  background: #fff5f8;
  border-top: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}

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

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

.inner-section {
  position: relative;
  min-height: 45vh;
  padding: 40px 0px 60px;
}

.inner-section1 {
  position: relative;
  padding: 38px 0 13px;
}

.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;
  margin-bottom: 29px;
}

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

.main-timeline {
  position: relative;
}

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

.main-timeline .timeline {
  width: calc(50% + 30px);
  padding: 0 60px 0 0;
  margin: 0 10px 10px 0;
  float: left;
}

.main-timeline .timeline-content {
  color: var(--color-default);
  background: linear-gradient(to right, #ffdfeb, #fff0);
  padding: 20px 70px 30px 35px;
  border-radius: 0 0 0 100px;
  /* border: 15px solid #01B3B2; */
  display: block;
  position: relative;
  margin-bottom: 30px;
}

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

.main-timeline .timeline-content:after {
  content: "";
  background: linear-gradient(to top, #ffb2de00, #b9b9b9);
  width: 60px;
  height: calc(50% + 15px);
  border-radius: 0 100px 0 0;
  transform: translateX(0) translateY(0);
  position: absolute;
  top: -15px;
  right: -75px;
}

.main-timeline .timeline-icon {
  color: var(--color-secondary);
  background: linear-gradient(to right, #fff, #dfe6e9);
  font-size: 45px;
  text-align: center;
  line-height: 101px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: -50px;
  z-index: 1;
}

.main-timeline .timeline-icon:before {
  content: "";
  background: linear-gradient(to right, #dfe6e9, #fff);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}

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

.main-timeline .title {
  color: var(--color-default);
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 3px;
}

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

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

.main-timeline .timeline:nth-child(even) .timeline-content {
  padding: 20px 35px 30px 70px;
  border-radius: 0 0 100px 0;
  background: linear-gradient(to left, #ffdfeb, #fff0);
}

.main-timeline .timeline:nth-child(even) .timeline-content:after {
  border-radius: 100px 0 0 0;
  right: auto;
  left: -75px;
}

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

/* .main-timeline .timeline:nth-child(4n+2) .timeline-content{ border-color: #864578; }
.main-timeline .timeline:nth-child(4n+2) .timeline-content:after{ background-color: #864578; }
.main-timeline .timeline:nth-child(4n+2) .timeline-icon,
.main-timeline .timeline:nth-child(4n+2) .title{
    color: #864578;
}
.main-timeline .timeline:nth-child(4n+3) .timeline-content{ border-color: #F66158; }
.main-timeline .timeline:nth-child(4n+3) .timeline-content:after{ background-color: #F66158; }
.main-timeline .timeline:nth-child(4n+3) .timeline-icon,
.main-timeline .timeline:nth-child(4n+3) .title{
    color: #F66158;
}
.main-timeline .timeline:nth-child(4n+4) .timeline-content{ border-color: #5C686B; }
.main-timeline .timeline:nth-child(4n+4) .timeline-content:after{ background-color: #5C686B; }
.main-timeline .timeline:nth-child(4n+4) .timeline-icon,
.main-timeline .timeline:nth-child(4n+4) .title{
    color: #5C686B;
} */
@media screen and (max-width: 990px) {
  .main-timeline .timeline {
    width: 70%;
  }
}

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

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

@media screen and (max-width: 479px) {
  .main-timeline .timeline,
  .main-timeline .timeline:nth-child(even) {
    padding: 60px 0 0 0;
  }

  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content {
    text-align: center;
    padding: 65px 25px 20px;
    border-radius: 0 0 100px 0;
  }

  .main-timeline .timeline-content:after,
  .main-timeline .timeline:nth-child(even) .timeline-content:after {
    width: calc(50% + 15px);
    height: 70px;
    border-radius: 100px 0 0 0;
    top: -75px;
    left: -15px;
    right: auto;
  }

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

  .main-timeline .title {
    font-size: 22px;
  }
}

.main-menu .navigation > li > ul.cstmwidth3 {
  width: 190px;
}

.adr {
  margin-bottom: 10px;
}

.adr h2 {
  color: var(--color-secondary);
  text-transform: uppercase;
  font-size: 18px;
}

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

.adr-a-img {
  position: relative;
  width: 70px;
  margin: auto;
  margin-bottom: 20px;
}

.contact-blk .brdr {
  border-right: 1px dashed var(--color-default);
}

.contact-blk .one {
  border-bottom: 1px dashed var(--color-default);
  padding-bottom: 23px;
}

.map iframe {
  width: 100%;
  height: 178px;
  border: 6px solid #f5f5f5;
}

.app-form .form-group {
  margin-bottom: 12px;
}

.app-form .form-control {
  height: 50px;
  background-color: #ffeff514;
  border: none;
  /*! border-bottom: 1px solid #ccc; */
  color: #fff;
  border-radius: 0px;
  font-size: 17px;
  border-radius: 35px;
}

.app-form .form-control::placeholder {
  color: #ffffff87;
}

.app-title h2 {
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 15px;
}

.app-form .btn {
  background: #fff;
  color: var(--color-default);
  margin-top: 25px;
  margin-bottom: 0px;
  padding: 7px 18px 5px;
}

.contact-app {
  padding: 20px;
  background: var(--color-default);
  text-align: center;
  border: 6px solid #f0f0f0;
}

.contact-app .app-form {
  background: transparent;
  border: none;
  box-shadow: none;
}

.contact-blk .two {
  padding-top: 55px;
}

.counter {
  color: var(--color-secondary);
  background: var(--color-secondary);

  text-align: center;
  width: 100%;
  padding: 25px 20px;
  border-radius: 30px 30px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  min-height: 285px;
}

.counter:before {
  content: "";
  background: #fff;
  border: 2px dashed #b51e7454;
  width: 100%;
  height: calc(100% - 10px);
  border-radius: 30px 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 10px;
  left: 0;
  z-index: -1;
}

.counter .counter-icon {
  font-size: 30px;
  line-height: 30px;
  margin: 0 0 15px;
}

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

.counter.m-dark .counter-value {
  color: var(--color-default);
}

.counter h3 {
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 25px;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.counter.m-light {
  background: var(--color-secondary);
}

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

.abt-inner-page-matter p {
  text-align: justify;
  line-height: 27px;
  margin-bottom: 10px;
  font-size: 15px;
}

.abt-hos-imgs {
  position: relative;

  background-color: #f1e4e8;
  border-radius: 25px;
  margin: 25px 0;
  padding: 25px;
}

.abt-hos-img-blk {
  border: 2px solid #fff;
  box-shadow: 0 6px 4px #969696;
}

.abt-mvv-icons {
  margin-bottom: 10px;
}

.abt-mvv-icons img {
  width: 49px;
  margin: auto;
  filter: brightness(0) invert(1);
}

.abt-mvv-box {
  color: var(--color-secondary);
  background: linear-gradient(to bottom, #cecece, #fff0);

  text-align: center;
  padding: 20px 25px 15px;
  margin: 0 0 30px;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 1;
}

.abt-mvv-box:before {
  content: "";
  background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.9));
  border-radius: 0 0 100px 100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 60px;
  left: 15px;
  right: 15px;
  bottom: -30px;
  z-index: -1;
}

.abt-mvv-box .abt-mvv-icons {
  color: #fff;
  background: linear-gradient(to left, var(--color-secondary), var(--color-default));

  line-height: 80px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.abt-mvv-box .abt-mvv-icon i {
  line-height: inherit;
}

.abt-mvv-box .title {
  font-size: 23px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 5px;
  display: inline-block;
  border-bottom: 1px dashed;
}

.abt-mvv-box .description {
  color: var(--color-default);
  font-size: 14px;

  line-height: 24px;
  margin: 0;
  padding: 10px;
}

@media only screen and (max-width: 1199px) {
  .abt-mvv-box {
    margin: 0 0 60px;
  }
}

.abt-mvv {
  margin-top: 75px;
}

.abt-doctor-blk {
  margin-top: 75px;
  background: linear-gradient(to right, #f1e4e8, #46a1c300);
  padding: 25px;
  position: relative;
}

.abt-doctor-info {
  position: relative;
  text-align: center;
  margin: 16px 0 9px;
}

.abt-doctor-info h2 {
  text-transform: uppercase;

  font-size: 26px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 5px;
  margin-bottom: 6px;
}

.abt-doctor-info h3 {
  color: var(--color-default);
  font-size: 20px;
  margin: 0;
}

.abt-doctor-info h4 {
  color: var(--color-primary);
  font-size: 17px;
  position: relative;
}

.abt-doctor-info p {
  font-size: 15px;
  line-height: 30px;
  text-align: justify;
  margin: 10px 0;
}

.abt-doctor-name h4::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: linear-gradient(to left, var(--color-secondary), #fff0);
  right: 0;
  bottom: -11px;
}

.abt-doc-team-blk {
  margin-top: 35px;
}

.doc-img-blk a {
  /*! background: var(--color-default); */
  color: #343434;
  padding: 2px 14px;

  background: linear-gradient(to top, #f5d3e6, #fff0);
  border-bottom: 1px solid var(--color-secondary);
}

.doc-img-blk img {
  border: 6px solid aliceblue;
  box-shadow: 0 8px 5px #d2d2d2;
}

.abt-doc-head h2 {
  text-transform: uppercase;
  display: inline-block;
  color: var(--color-secondary);
}

.abt-doc-head {
  position: relative;
  margin: 44px 0;
}

.abt-doc-head h2::before {
  content: " ";
  position: absolute;
  width: 40%;
  height: 1px;
  /* background: linear-gradient(to right, #ffffff00, var(--color-default)); */
  background: var(--color-primary);
  right: -25px;
  bottom: 0px;
}

.abt-doc-head h2::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  right: -25px;
  bottom: 0px;
  margin: auto;
}

.modal-box .show-modal {
  background: linear-gradient(#444, #222);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 1px;
  padding: 12px 20px;
  margin: 80px auto 0;
  border: none;
  outline: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: block;
  transition: all 0.3s ease 0s;
}

.modal-box .show-modal:hover,
.modal-box .show-modal:focus {
  color: #fff;
  outline: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.modal-backdrop.in {
  opacity: 0;
}

.modal-box .modal-dialog {
  max-width: 550px;
  margin: 70px auto 0;
}

.modal.in .modal-dialog {
  transform: translate(0);
}

.modal-box .modal-dialog .modal-content {
  text-align: center;
  border: none;
  box-shadow: none;
  background: #fff;
  border-radius: 18px;
  z-index: 999;
  width: 650px;
}

/* .modal-box .modal-dialog .modal-content:before{
   content: "";
  background: linear-gradient(to right,#fff0,var(--color-secondary));
  border-radius: 3px 4px 0 0;
  width: 100%;
  height: 9px;
  display: block;
  clear: both;
} */

.modal-content:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../gallery/modal-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  border-radius: 18px;
  opacity: 0.8;
}

.modal-box .modal-dialog .modal-content .close {
  color: #fff;
  background: var(--color-secondary);
  font-size: 30px;
  font-weight: 300;
  text-align: center;
  line-height: 25px;
  width: 35px;
  height: 35px;
  padding-left: 1px;
  border-radius: 0 5px 5px 0;
  overflow: hidden;
  opacity: 1;
  position: absolute;
  left: auto;
  top: 35px;
  right: -35px;
  z-index: 1;
  transition: all 0.3s ease 0s;
}

.modal-box .modal-dialog .modal-content .close span {
  margin: -6px 0 0;
  display: block;
}

.modal-box .modal-dialog .modal-content .modal-body {
  padding: 45px 30px 30px !important;
  overflow-y: auto;
  height: 500px;
  border-radius: 18px;
}

@media only screen and (max-width: 767px) {
  .modal-dialog {
    width: 85% !important;
  }
}

.abt-doctor-info2 {
  text-align: left;
}

.abt-doctor-info2 .abt-doctor-name2 h2 {
  color: var(--color-secondary);
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
}

.abt-doctor-name2 {
  margin-bottom: 7px;
  border-bottom: 1px dashed var(--color-secondary);
  padding-bottom: 15px;
}

.abt-doctor-name2 h3 {
  font-size: 24px;
}

.abt-doctor-name2 h4 {
  color: var(--color-primary);
  font-size: 20px;
}

.abt-doctor-info2 p {
  font-size: 15px;
  line-height: 30px;
  text-align: justify;
}

.modal-body ::-webkit-scrollbar-track {
  /* -webkit-box-shadow: outset 0 0 6px rgba(0,0,0,0.3); */
  border-radius: 10px;
}

.modal-body ::-webkit-scrollbar {
  width: 8px;
  /* background-color: #F5F5F5; */
}

.modal-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); */
  background-color: #eaeaea;
}

.ibox {
  overflow: hidden;
  position: relative;
  height: 168px;
  background: linear-gradient(to left, var(--color-primary), var(--color-secondary));
  border: 7px solid #ffffff;
  box-shadow: 0px 0px 5px #00000045;
  margin-bottom: 25px;
}

.ibox:before {
  content: "";
  background: var(--color-secondary);
  width: 0;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.ibox:hover:before {
  width: 100%;
}

.ibox img {
  width: 100%;
  height: auto;
  transition: all 0.45s;
}

.ibox:hover img {
  opacity: 0.3;
  filter: grayscale(90%);
  transform: scale(1.2);
}

.ibox .ibox-content {
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 0 30px;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.45s ease;
}

.ibox .iicon {
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: -29px;
  transition: all 0.3s ease;
}

.ibox:hover .ibox-content,
.ibox:hover .iicon {
  opacity: 1;
}

.ibox .iicon li {
  display: inline-block;
  margin: 0 2px;
}

.ibox .iicon li a {
  color: #fff;
  background-color: var(--color-default);
  font-size: 14px;
  text-align: center;
  line-height: 35px;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: block;
  transition: all 0.3s;
}

.ibox .iicon li a:hover {
  color: #fff;
  background-color: var(--color-secondary);
}

.ibox .iicon li a i {
  line-height: inherit;
}

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

.vid-blk {
  display: block;
  position: relative;
  z-index: 1;
}

.vid-blk iframe {
  width: 100%;
  height: 250px;
  margin-bottom: 25px;

  box-shadow: 0 4px 1px #fccddb;
  border-radius: 20px;
  border-bottom: 5px solid #fff;
}
.vid-dwn video {
  width: 100%;
  margin-bottom: 25px;
  box-shadow: 0 4px 1px #fccddb;
  border-radius: 20px;
  border-bottom: 5px solid #fff;
  object-fit: cover;
  height: 250px;
}
.e-head {
  text-align: center;
  margin-bottom: 25px;
}

.e-head h2 {
  color: #fff;
  display: inline-block;
  padding: 2px 11px;

  background: var(--color-secondary);
  font-size: 24px;
  font-weight: 500;
  box-shadow: 6px 6px 0px #c6e1eb;
  margin-bottom: 15px;
}

.e-head h3 {
  font-size: 18px;
  font-weight: 500;
}

.events-row {
  margin-bottom: 55px;
}

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

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

.section-content {
  line-height: 30px;
  background: var(--color-secondary);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.section-content a {
  color: #fff;
}

.blood-doc-img img {
  border: 7px solid #fff;
  box-shadow: 0px 13px 18px -10px #000;
}

.blood-doc-img h2 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
}

.blood-doc-img h3 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
}

.docotor_profile_img img {
  box-shadow: -20px 19px 15px -10px #c3c3c3;
  border: 7px solid #f5f5f5;
  margin-bottom: 20px;
}

.serv-matter1 .inner-serv-img {
  margin-bottom: 20px;
  margin-top: 8px;
}

.serv-matter1 .inner-serv-img img {
  box-shadow: none;
}

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

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

.panel-blk .p-img {
  margin-bottom: 19px;
}

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

.dexa {
  margin-bottom: 30px;
}

.panel-one {
  margin-bottom: 25px;
}

.panel-head {
  margin-bottom: 25px;
}

.panel-head h2 {
  color: #fff;
  display: inline-block;
  padding: 2px 11px;
  background: var(--color-secondary);
  font-size: 24px;
  font-weight: 500;
  box-shadow: 6px 6px 0px #c6e1eb;
  margin-bottom: 15px;
}

.labi {
  margin-bottom: 35px;
}

.lab-img-row {
  margin-top: 55px;
}

.ngs-main-blk {
  position: relative;
  margin-top: 75px;
  background-color: #f1e4e8;
  padding: 25px;
  border-radius: 25px;
}

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

.ngs-blk {
  text-align: center;
}

.ngs-blk h3 {
  color: var(--color-secondary);
  font-size: 20px;
  margin: 15px 0px 5px;

  padding-top: 13px;
}

.ngs-blk h3::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 80%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: linear-gradient(to left, #fff0, var(--color-secondary), #fff0);
}

.ngs-slider .owl-dots {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.ngs-slider .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);
}

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

.inner-sec-img {
  margin-top: 30px;
}

.abt-doctor-info2 .ol_styles li span {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 18px;
}

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

.img-down-row {
  position: relative;
  padding-top: 30px;
  margin-top: 10px;
}

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

.iimg-inner-head h2 {
  margin-bottom: 20px;
  font-size: 25px;
  text-align: center;
  color: var(--color-primary);
  font-weight: 500;
}

.serv-matter1 .sm1-h {
  color: var(--color-primary);
  font-size: 20px;
  margin: 15px 0px 5px;
  display: inline-block;
  padding-bottom: 5px;
}

.sm-under {
  border-bottom: 1px solid;
}

.table_styles {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.table_styles th,
.table_styles td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.table_styles th {
  background: var(--color-secondary);
  font-weight: bold;
  color: #fff;
}

.team-img img {
  border-radius: 50%;
  border: 6px solid #f5f5f5;
  box-shadow: 0px 0px 7px #00000075;
  width: 334px;
  margin: auto;
}

.team-block {
  padding: 20px 10px;
  box-shadow: 0px 0px 7px #00000024;
  border-top: 3px solid var(--color-secondary);
  margin-bottom: 30px;
}

.team-block .doc-content h2 {
  font-size: 32px;
}

.blog-content h2 {
  font-size: 20px;
  color: var(--color-secondary);
  margin-bottom: 5px;
}

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

.blog-content {
  margin-top: 5px;
}

.blog-line {
  background: #ffeff8;
}

.blog-line1 {
  background: #ddf6ff;
}

.blog-block {
  position: relative;
  padding: 20px;
}

.blog-img img {
  filter: grayscale(0.3);
}

.blog-content1 {
  text-align: right;
}

.list-blog {
  padding: 0;
  padding-left: 20px;
}

.list-blog li {
  position: relative;
  padding-left: 1px;
  margin-bottom: 5px;
  line-height: 28px;
  font-size: 15px;
  list-style: auto;
}

._serv_nav {
  position: relative;
  padding: 17px 18px;
  margin: 30px 0 30px;
  border-top: 4px solid var(--color-secondary);
  box-shadow: 0 0 10px #ccc;
  background: #f5f5f5;
  text-align: center;
}

._serv_nav h4 {
  font-size: 29px;
  margin-bottom: 14px;
  display: inline-block;
  border-bottom: 1px solid;
  color: var(--color-primary);
  text-transform: uppercase;
}

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

._serv_nav ul li a {
  text-align: left;
  display: block;
  position: relative;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-left: 17px;
  color: var(--color-default);
  font-size: 16px;
}

._serv_nav ul li a.active {
  color: var(--color-primary);
}

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

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

._serv_nav ul li a.active {
  color: var(--color-secondary);
}

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

.inner-blog .inner-serv-img {
  text-align: center;
}

.loc-blogs {
  position: relative;
}

.loc-blogs ul li {
  margin-bottom: 8px;
  padding: 15px;
  background: var(--color-default);
  border-radius: 8px;
}

.loc-blogs ul li a {
  color: #fff;
  font-size: 17px;
}

.research-table th {
  font-weight: 500;
  text-transform: uppercase;
}
.research-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
  background: #f5fcff;
  border: 1px solid #ddd;
  color: #000;
  overflow: hidden;
}
.research-table th {
  background: var(--color-secondary);
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 21px;
  min-width: 55px;
}
.research-table td {
  padding: 8px 6px;
  border-bottom: 1px solid #dfdfdf;
  vertical-align: top;
  font-size: 14px;
  border-right: 1px solid #dfdfdf;
  text-align: center;
}

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

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

.test-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 20px;
  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);
}

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