@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
@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=Valley+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Sundanese:wght@400..700&display=swap");

/* font-family: "Noto Sans Sundanese", sans-serif; */
/* font-family: "Cinzel", serif; */
/* font-family: "Valley Sans", sans-serif; */
/***
====================================================================
	Reset
====================================================================
***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
  line-height: inherit;
}

.mobile-view {
  display: none;
}

:root {
  --color-default: #292929;
  --color-primary: #a076b9;
  --color-secondary: #fe728b;
  --color-teritary: #0d233b;
}

@font-face {
  font-family: "Mogina";
  src: url(../fonts/mogina.otf);
  display: swap;
}

.container {
  position: relative;
}

.mobile-view {
  display: none;
}

/*** 
====================================================================
	Global Settings
====================================================================
 ***/
body {
  font-size: 16px;
  color: var(--color-default);
  line-height: 1.6em;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
}

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

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

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: #fe728b;
}

.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 {
  position: absolute;
  content: "";
  /* background-image: url(../gallery/bg.jpg); */
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  z-index: -99;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

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

.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: 16px;
  position: absolute;
  display: inline-block;
  z-index: 999;
  width: 386px;
}

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

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

.main-menu .navigation {
  position: relative;
  display: block;
  padding: 3px 11px;
  border-top: 1px solid;
}

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

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

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

.main-menu .navigation>li>a i {
  font-size: 14px;
  /* color: var(--color-secondary); */
  color: #fe728b;
}

/*** 
========================================
    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: #fe728b;
  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: 228px;
}

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

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

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

.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 #0000003d;
}

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

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

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

.main-menu .navigation>li>ul>li>a {
  position: relative;
  display: block;
  padding: 5px 8px;
  line-height: 24px;
  font-size: 15px;
  font-weight: 400;
  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 8px;
  line-height: 24px;
  font-size: 15px;
  font-weight: 400;
  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: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/banner.png);
}

/***
====================================================================
	Scroll To Top style
====================================================================
***/
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  color: #ffffff;
  font-size: 20px;
  line-height: 48px;
  text-align: center;
  z-index: 9999;
  cursor: pointer;
  /* background: var(--color-secondary); */
  background: #bea2ce;
  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: #ff95a7;
}

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

.abt-head {
  position: relative;
  padding-top: 60px;
}

.abt-head::before {
  content: " ";
  position: absolute;
  width: 2px;
  height: 48px;
  /* background: var(--color-secondary); */
  background: var(--color-default);
  top: 0px;
  left: 0px;
  z-index: -2;
}

.abt-head::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  /* background: var(--color-primary); */
  background: #ff95a7;
  /* border: 2px solid var(--color-secondary); */
  border: 2px solid var(--color-default);
  top: 38px;
  margin: auto;
  left: -4px;
  z-index: -2;
  border-radius: 50%;
}

.abt-head h3 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.abt-head h2 {
  font-size: 60px;
  text-transform: capitalize;
  margin-bottom: 20px;
  /* color: var(--color-secondary); */
  color: #1b1b1b;
  font-family: "Mogina";
  font-weight: 300;
  margin-top: 3px;
  line-height: 66px;
}

/* .abt-head h2 {
  font-size: 46px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-family: "Marcellus", serif; 
  font-weight: 300;
  margin-top: 6px;
  line-height: 45px;
} */

.abt-head h4 {
  /* background: var(--color-primary); */
  background: #fe728b;
  color: #fff;
  padding: 4px 10px 5px;
  display: inline-block;
  font-weight: 400;
  font-size: 25px;
  border-radius: 0px 20px 0px 0px;
}

.abt-head-btm {
  text-align: right;
  margin-bottom: 18px;
  position: relative;
  margin-top: -10px;
}

.abt-head-btm::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--color-teritary);
  left: 0px;
  bottom: 8px;
  margin: auto;
}

.abt-matter p {
  font-size: 15px;
  line-height: 26px;
}

.services-box {
  position: relative;
}

.services-title {
  position: relative;
  margin-bottom: 15px;
}

.services-title::before {
  content: " ";
  position: absolute;
  width: 80%;
  height: 2px;
  background: var(--color-default);
  bottom: 0px;
  left: 0px;
  z-index: -1;
  margin: auto;
}

.services-title::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ff95a7;
  bottom: 0px;
  right: 106px;
  z-index: -1;
  margin: auto;
}

.services-title h3 {
  font-size: 25px;
  border-left: 0px;
  border-right: 0px;
  display: inline-block;
  padding: 2px 22px 6px 8px;
  background: #a076b9;
  font-weight: 500;
  color: #fff;
  border-radius: 0px 40px 0px 0px;
}

.services-list {}

.services-list li {
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

.services-list span:last-child {
  width: 100%;
  text-align: center;
}

.abt-imgs-side {
  position: relative;
  padding-top: 60px;
}

.abt-imgs-side .col-md-4 {
  padding: 0px 8px;
}

.abt-img {
  position: relative;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0px 13px 10px -10px #00000070;
  cursor: pointer;
}

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

.abt-img:hover img {
  transform: scale(1.5);
}

#canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
}

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

.serv-sec::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 140%;
  background-image: url(../gallery/serv-left-img.png);
  background-position: center left;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.2;
  background-size: auto;
  top: -252px;
  left: -153px;
  filter: grayscale(1);
}

.serv-sec::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/serv-right-img.png);
  background-position: center right;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.28;
  background-size: auto;
  top: 0px;
  right: -260px;
  filter: grayscale(1);
}

.services-circle {
  width: 918px;
  height: 918px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Circle border around the image */
.services-circle::before {
  content: "";
  position: absolute;
  width: 610px;
  height: 610px;
  border: 1px solid var(--color-default);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-left: 0px;
  border-bottom: 0px;
}

.services-circle::after {
  content: "";
  position: absolute;
  width: 618px;
  height: 618px;
  border: 1px solid var(--color-default);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-right: 0px;
  border-bottom: 0px;
}

/* .serv-center-img {
  width: 520px;
  height: 520px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 0 20px 20px #d786732e;
} */
.serv-center-img {
  width: 520px;
  height: 520px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
}

/* .serv-center-img {
  width: 520px;
  height: 520px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 18px 5px #d786732e;
  background: #d786731c;
  text-align: center;
  line-height: 450px;
  backdrop-filter: blur(10px);
} */

/* .serv-center-img img {
  width: 400px;
  height: 400px;
  margin: auto;
  text-align: center;
  object-fit: contain;
} */

/* .serv-center-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */

/* Common Box */
.service-box {
  width: 180px;
  min-height: 170px;
  padding: 20px 18px;
  background: #fff;
  border-radius: 12px;
  position: absolute;
  z-index: 1;
  text-align: center;
  box-shadow: 0px 6px 8px rgb(0 0 0 / 16%);
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Icon */
.service-icon {
  width: 108px;
  height: 108px;
  line-height: 103;
  text-align: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  /* background: var(--color-primary); */
  background: #ff95a7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.service-icon img {
  border-radius: 50%;
  width: 98px;
}

.service-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0 8px;
  /* color: var(--color-teritary); */
  color: var(--color-default);
  /* background: linear-gradient(45deg, #ea27631c, #ffffff00); */
  background: linear-gradient(45deg, #bea2ce3b, #ffffff00);
  text-transform: uppercase;
  padding: 4px 0px;
}

.service-box p {
  margin: 0;
  font-size: 13px;
  line-height: 18px;
  display: none;
}

/* TOP */
.service-bottom {
  bottom: -50px;
}

/* RIGHT */
.service-right {
  top: 134px;
  right: 50px;
}

/* BOTTOM RIGHT */
.service-bottom-right {
  bottom: 314px;
  right: 5px;
}

.service-right1 {
  bottom: 44px;
  right: 108px;
}

/* BOTTOM LEFT */
.service-bottom-left {
  bottom: 314px;
  left: 5px;
}

.service-left1 {
  bottom: 44px;
  left: 108px;
}

/* LEFT */
.service-left {
  top: 134px;
  left: 50px;
}

/* Hover fix for top */
.service-top:hover {
  transform: translateX(-50%) translateY(-5px);
}

@media (max-width: 991px) {
  .services-circle {
    width: 700px;
    height: 700px;
  }

  .services-circle::before {
    width: 520px;
    height: 520px;
  }

  .serv-center-img {
    width: 400px;
    height: 400px;
  }

  .service-box {
    width: 150px;
    min-height: 150px;
    padding: 15px 12px;
  }

  .service-top {
    top: 0;
  }

  .service-right {
    right: 0;
    top: 160px;
  }

  .service-left {
    left: 0;
    top: 160px;
  }

  .service-bottom-right {
    right: 40px;
    bottom: 30px;
  }

  .service-bottom-left {
    left: 40px;
    bottom: 30px;
  }
}

@media (max-width: 767px) {
  .services-circle {
    width: 100%;
    height: auto;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .services-circle::before {
    display: none;
  }

  .serv-center-img {
    width: 280px;
    height: 280px;
    margin: 0 auto 30px;
    order: 1;
  }

  .service-box {
    position: static;
    width: calc(50% - 8px);
    min-height: 200px;
    transform: none !important;
    order: 2;
  }

  .service-top,
  .service-right,
  .service-bottom-right,
  .service-bottom-left,
  .service-left {
    position: static;
  }
}

.serv-head {
  position: relative;
  margin-bottom: -110px;
  text-align: center;
}

.serv-head h3 {
  font-size: 20px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  /* background: var(--color-primary); */
  background: #fe728b;
  padding: 3px 10px;
  color: #fff;
}

.serv-head h2 {
  font-size: 48px;
  font-weight: 500;
  /* color: var(--color-teritary); */
  color: var(--color-default);
  text-transform: capitalize;
  /* font-family: "Marcellus", serif; */

  font-family: "Mogina";
}

.serv-head p {
  padding: 0px 200px;
  font-size: 15px;
}

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

.fac-right-blk {
  position: absolute;
  top: 0px;
  right: 0px;
}

.myth-fact-head {
  position: relative;
  margin-bottom: -80px;
}

.myth-fact-head h2 {
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-teritary);
}

/* Statistics Section */
.stats-section {
  width: 100%;
  margin-bottom: 80px;
}

.stats-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  padding: 36px 40px;
}

.stats-container::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  /* background: linear-gradient(to right, var(--color-teritary), #ffffff00); */
  background: var(--color-teritary);
  top: 0px;
  left: 0px;
  z-index: -1;
}

.stats-container::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  /* background: linear-gradient(to left, var(--color-teritary), #ffffff00); */
  background: var(--color-teritary);
  bottom: 0px;
  right: 0px;
  z-index: -1;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 15px;
  min-height: 90px;
  border-right: 1px solid rgb(0 0 0 / 54%);
  position: relative;
}

.stat-box:nth-child(1)::before {
  display: none;
}

.stat-box::before {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 6px solid #ffffff00;
  /* border-left: 10px solid var(--color-primary); */
  border-left: 10px solid #fe728b;
  border-bottom: 6px solid #ffffff00;
  left: -1px;
  top: 0px;
  margin: auto;
}

.stat-box:first-child {
  padding-left: 0;
}

.stat-box:last-child {
  border-right: none;
}

/* Icon Circle */
.stat-icon {
  width: 86px;
  height: 86px;
  min-width: 86px;
  border-radius: 50%;
  /* background: linear-gradient(45deg, #ffffff, #ea276329); */
  background: #bea2ce6b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 0 20px rgba(184, 91, 47, 0.15);
}

.stat-icon img {
  width: 58px;
}

/* Text */
/* .stat-content h2 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
} */

.stat-content h2 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Mogina";
  color: #000;
}

.stat-content h3 {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 6px;
}

.stat-content p {
  color: #b9aaa2;
  font-size: 15px;
  margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
    padding: 15px 18px;
  }

  .stat-box:nth-child(2) {
    border-right: none;
  }

  .stat-box:nth-child(3),
  .stat-box:nth-child(4) {
    padding-top: 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .stats-section {
    padding: 0px 20px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 15px 0;
  }

  .stat-box {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid #0000008a;
  }

  .stat-box:last-child {
    border-bottom: none;
  }

  .stat-box:nth-child(3),
  .stat-box:nth-child(4) {
    padding-top: 20px;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    font-size: 30px;
  }

  .stat-content h2 {
    font-size: 32px;
  }
}

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

.extra-myth-sec::before {
  content: " ";
  position: absolute;
  width: 65%;
  height: 100%;
  background: var(--color-teritary);
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  z-index: -2;
  border-radius: 80px 0px 0px 80px;
}

.extra-myth-sec::after {
  content: " ";
  position: absolute;
  width: 30%;
  height: 100%;
  background: var(--color-teritary);
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  z-index: -2;
  border-radius: 0px 80px 80px 0px;
}

.extra-right-head {
  position: relative;
  background: var(--color-secondary);
  width: 540px;
  top: -40px;
  color: #fff;
  padding: 14px 30px 18px;
  border-radius: 0px 60px;
}

.extra-right-head h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 42px;
}

.infertility-causes {
  padding: 18px 15px 48px;
  position: relative;
  top: -13px;
  margin-left: 100px;
}

.cause-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.cause-item:last-child {
  margin-bottom: 0;
}

.text {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.4;
  font-weight: 400;
} 

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

.testimonial-left {
  position: relative;
  color: #fff;
  padding: 200px 15px 0px 100px;
}

.testimonial-left::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/lq.png);
  background-repeat: no-repeat;
  background-size: 138px;
  top: 32px;
  z-index: -1;
}

.testimonial-head h3 {
  font-size: 20px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, var(--color-teritary), var(--color-secondary));
  padding: 3px 10px;
  color: #fff;
}

.testimonial-head h2 {
  font-size: 48px;
  font-weight: 500;
  color: var(--color-teritary);
  text-transform: uppercase;
}

.testimonial-head {
  position: relative;
}

.testimonial-head p {
  margin-bottom: 0px;
  padding: 0px 200px;
}

.testimonial-bg-img {
  position: absolute;
  top: 128px;
  bottom: 0px;
  margin: auto;
  height: fit-content;
  z-index: -1;
}

.testimonial-img {
  position: relative;
}

.testimonial-img::before {
  content: " ";
  position: absolute;
  width: 342px;
  height: 293px;
  background: rgb(255, 255, 255);
  bottom: -58px;
  left: 20px;
  z-index: -1;
  margin: auto;
  border-radius: 133px;
}

.review-img {
  margin-top: 80px;
  text-align: right;
}

.review-img img {
  width: 266px;
}

.testimonial-block h2 {
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-size: 28px;
  position: relative;
}

.testimonial-block h2::before {
  content: " ";
  position: absolute;
  width: 36%;
  height: 1px;
  background: #fff;
  bottom: 0px;
  top: 0px;
  right: 0px;
  margin: auto;
}

.faq-sec {
  position: relative;
  margin-bottom: 100px;
  min-height: 80vh;
}

.faq-head-inner h3 {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

.faq-head-inner h2 {
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

.faq-head-inner p {
  margin-bottom: 0px;
}

.faq-head-inner {
  position: relative;
  background: var(--color-teritary);
  padding: 20px 20px;
  border-radius: 20px;
  color: #fff;
}

.faq-head {
  position: relative;
}

.faq-head::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  border-radius: 20px;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  transform: skewY(-3deg);
}

.faq-row {
  position: relative;
  margin-top: 40px;
}

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

.visiting-box {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.visiting-box h2 {
  font-size: 15px;
  font-weight: 400;
  background: #0e2b42;
  color: #fff;
  padding: 5px 10px;
  margin-top: -8px;
}

.visiting-box p {
  font-size: 14px;
  line-height: 18px;
}

.visiting-head h2 {
  text-transform: 500;
}

.visiting-content {
  position: relative;
}

.visiting-icon {
  width: 68px;
  height: 68px;
  line-height: 68px;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  margin: auto;
  bottom: 0px;
}

.visiting-main-img img {
  filter: grayscale(1);
}

.visiting-bg {
  position: relative;
  width: 118px;
  margin: auto;
}

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

.doc-img img {
  width: 486px;
}

.doc-img1 {
  position: absolute;
  left: -14px;
  opacity: 0.1;
  z-index: -1;
  top: 30px;
  filter: grayscale(1);
}

.doc-img2 {
  position: absolute;
  right: -14px;
  opacity: 0.1;
  top: 30px;
  z-index: -1;
  filter: grayscale(1);
}

.main-footer {
  position: relative;
}

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

.main-footer::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/footer-bg1.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  right: -242px;
  z-index: -1;
  opacity: 0.5;
  filter: grayscale(1);
  top: 0px;
}

.footer-logo {
  position: relative;
}

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

.footer-about {
  position: relative;
  padding-top: 18px;
}

.footer-about p {
  line-height: 31px;
  font-size: 15px;
}

.footer-row {
  padding: 20px;
}

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

.footer-qr {
  text-align: center;
}

.footer-qr img {
  width: 130px;
}

.footer-locate i {
  position: relative;
  left: 0px;
  width: 32px;
  height: 32px;
  margin: auto;
  /* background: var(--color-secondary); */
  background: #fe728b;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  line-height: 31px;
}

.locate-main {
  position: relative;
  text-align: center;
}

.locate-main p {
  position: relative;
  text-align: center;
}

.locate-main1 {
  margin-bottom: 24px;
}

.footer-row .col-md-4:nth-child(1)::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border-right: 1px solid #000000a8;
  right: 10px;
  margin: auto;
}

.footer-row .col-md-3:nth-child(3)::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 85%;
  top: 0px;
  bottom: 0px;
  border-left: 1px solid #000000a8;
  left: 10px;
  margin: auto;
}

.footer_links {
  text-align: center;
  margin-bottom: 3px;
}

.footer_links ul {
  display: inline-block;
}

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

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

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

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

.footer-widget__social::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 5px;
  /* background: linear-gradient(to right, var(--color-secondary), #ffffff00, var(--color-secondary)); */
  background: linear-gradient(to right, #ff95a7, #ffffff00, #ff95a7);
  opacity: 0.2;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  border-radius: 30px;
}

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

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

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

.main-footer .footer-bottom .copyright {
  position: relative;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  padding: 12px 0px 0px;
}

.main-footer .footer-bottom .copyright a {
  /* color: var(--color-secondary); */
  color: #fe728b;
  font-weight: 500;
}

.footer-video {
  width: 100%;
  height: 100%;
  z-index: -2;
  position: absolute;
  top: 0px;
}

.footer-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.6;
}

.footer-btm {
  position: relative;
  /* background: #f6fdff; */
  background: #d2bfde38;
  padding: 20px 20px 15px;
  border-radius: 14px;
  margin-bottom: 20px;
  /* border: 1px solid #00346f33; */
  border: 1px solid #0000001a;
  box-shadow: 0px 0px 12px #00000017;
}

.footer_links h3 {
  margin-bottom: 10px;
  border-bottom: 2px solid;
  display: inline-block;
  padding-bottom: 2px;
  font-size: 22px;
  color: #353535;
  font-weight: 500;
  text-transform: uppercase;
}

.extra-emg-img1 {
  box-shadow: -7px 8px 11px #0017213b !important;
}

.extra-emg-img {
  position: relative;
  width: 68px;
  height: 68px;
  line-height: 58px;
  padding: 5px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 7px 8px 11px #0017213b;
  /* background: var(--color-primary); */
  background: #292929;
  margin: auto;
}

.extra-emg-img img {
  width: 50px;
  filter: brightness(0) invert(1);
}

.extra-emg-block {
  position: relative;
  margin-bottom: 28px;
  cursor: pointer;
}

.extra-emg-content {
  position: relative;
}

.extra-emg-content h2 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: inline-block;
  /* border-bottom: 1px solid #0d233b; */
  border-bottom: 1px solid var(--color-default);
  padding-bottom: 2px;
  /* color: var(--color-teritary); */
  color: var(--color-default);
}

.extra-emg-content p {
  font-size: 13px;
  line-height: 21px;
}

.extra-emg-content-1 {
  text-align: right;
}

.visiting-head h2 {
  font-size: 42px;
  font-weight: 100;
  /* background: linear-gradient(to right, var(--color-teritary), var(--color-secondary)); */
  background: #a076b9;
  color: #fff;
  display: inline-block;
  padding: 6px 20px 5px;
  border-radius: 45px;
  position: relative;
  margin-bottom: 15px;
  font-family: "Mogina";
}

/* .visiting-head h2 {
  font-size: 38px;
  font-family: "Marcellus", serif;
  font-weight: 100;
  background: linear-gradient(to right, var(--color-teritary), var(--color-secondary));
  color: #fff;
  display: inline-block;
  padding: 6px 20px 5px;
  border-radius: 45px;
  position: relative;
  margin-bottom: 15px;
} */

.visiting-head h2::before {
  content: " ";
  position: absolute;
  width: 18%;
  height: 2px;
  /* background: var(--color-primary); */
  background: #fe728b;
  top: -6px;
  left: -52px;
  margin: auto;
  z-index: -1;
}

.visiting-head h2::after {
  content: " ";
  position: absolute;
  width: 18%;
  height: 2px;
  /* background: var(--color-primary); */
  background: #fe728b;
  bottom: -6px;
  right: -52px;
  margin: auto;
  z-index: -1;
}

.visiting-head p {
  margin: 0px 164px;
  font-size: 15px;
}

.visiting-head {
  margin-bottom: 30px;
}

.visiting-img {
  position: relative;
  border-radius: 30px 30px 4px 4px;
  overflow: hidden;
  box-shadow: 0px 18px 12px -10px #00000096;
}

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

.visiting-img:hover img {
  transform: scale(1.3);
}

.visiting-row .col-md-4:nth-child(1) {
  position: relative;
  right: -50px;
  z-index: 1;
}

.visiting-row .col-md-4:nth-child(1) .extra-emg-block:last-child {
  margin-bottom: 0px;
}

.visiting-row .col-md-4:nth-child(3) .extra-emg-block:last-child {
  margin-bottom: 0px;
}

.visiting-row .col-md-4:nth-child(3) {
  position: relative;
  right: 50px;
  z-index: 1;
}

.testi-section .test-box {
  position: relative;
  padding: 20px 25px;
  background: linear-gradient(to bottom, #ffffff00, #f6fdff45);
  box-shadow: 1px 1px 5px #0000000f;
  margin: 15px 7px;
  border-radius: 20px;
}

.test-box .test-pp {
  height: 49px;
  width: 49px;
  border-radius: 50%;
  /* background: var(--color-primary); */
  background: #bea2ce;
  margin-right: 5px;
  padding: 9px;
  margin-bottom: 11px;
  float: inline-end;
  border: 3px solid #fff;
  line-height: 24px;
}

.test-box .test-pp p {
  color: #fff;
  font-size: 25px;
  text-align: center;
  font-weight: 500;
}

.test-name {
  text-align: left;
}

.test-box .test-name h2 {
  /* color: var(--color-teritary); */
  color: var(--color-default);
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: capitalize;
}

.test-box .test-name p {
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  opacity: 0.9;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.test-box .test-ratings {
  margin: 0px 0 15px;
  position: absolute;
  right: 0px;
  bottom: -95px;
}

.test-g img {
  width: 50px;
}

.test-box .test-ratings .fa {
  font-size: 17px;
  /* color: var(--color-teritary); */
  color: var(--color-default);
}

.test-box .test-txt {
  margin-top: 5px;
}

.test-box .test-txt p {
  font-size: 14px;
  margin-bottom: 0px;
  line-height: 24px;
}

.feedbacks-sec {
  position: relative;
}

.feedbacks-sec::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/testimonial.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  z-index: -1;
  filter: grayscale(1);
  opacity: 0.5;
}

.feedbacks-sec::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/reviews.png);
  background-position: center left;
  background-repeat: no-repeat;
  z-index: -1;
  left: 0px;
  top: 0px;
  background-size: 450px;
  opacity: 0.1;
  filter: grayscale(1);
}

.test-review {
  text-align: right;
  position: relative;
}

.test-review::before {
  content: " ";
  position: absolute;
  width: 78%;
  height: 1px;
  top: 15px;
  bottom: 0px;
  left: 0px;
  margin: auto;
  background: #052a4e26;
}

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

.test-g {
  position: relative;
  top: -7px;
}

.testi-section .col-md-4 {
  padding: 2px;
}

.feedbacks-sec .serv-head {
  margin-bottom: 0px;
}

.feedbacks-sec .serv-head p {
  font-size: 15px;
}

.footer-top {
  position: relative;
  margin-bottom: 60px;
  padding: 178px 0px 68px;
}

.footer-top::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: var(--color-teritary); */
  background: #cfb4e0;
  top: 0px;
  left: 0px;
  z-index: -2;
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 0%, 70% 50%);
}

.footer-top::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/footer-top.png);
  background-repeat: no-repeat;
  background-position: center left;
  top: 0px;
  background-size: auto;
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 0%, 70% 50%);
  z-index: -1;
  opacity: 0.2;
  filter: grayscale(1);
}

.footer-left {
  position: relative;
  /* color: #fff; */
  color: #000;
}

.footer-left p {
  margin-bottom: 0px;
  font-size: 18px;
  /* font-weight: 100; */
  line-height: 28px;
}

.footer-top-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  /* background: #ff95a7; */
  background: #292929;
  top: -163px;
  right: 88px;
  text-align: center;
  /* padding: 58px 20px; */
  padding: 58px 32px;
  color: #fff;
}

.footer-top-circle a {
  /* background: var(--color-teritary); */
  background: #bea2ce;
  color: #000;
  padding: 6px 10px;
  border-radius: 30px;
}

.footer-left h2 {
  font-weight: 400;
  /* border-bottom: 1px solid #ffffff42; */
  border-bottom: 1px solid #00000042;
  display: inline-block;
  padding-bottom: 2px;
  margin-bottom: 10px;
  font-family: "Mogina";
  font-size: 35px;
  letter-spacing: 2px;
}

/* .footer-left h2 {
  font-weight: 500;
  font-family: "Marcellus", serif;
  border-bottom: 1px solid #ffffff42;
  display: inline-block;
  padding-bottom: 2px;
  margin-bottom: 10px;
} */

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

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

.top-phn-btn a i {
  background: var(--color-default);
  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-default);
  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;
}

.services-list {
  position: relative;
}

.services-list li {
  position: relative;
  display: block;
  margin-bottom: 4px;
  padding-left: 15px;
  font-size: 15px;
}

.services-list li:before {
  position: absolute;
  left: 0;
  top: 9px;
  height: 10px;
  width: 10px;
  border-radius: 5px;
  border: 2px solid #fe728b;
  content: "";
  background: #242424;
}

.chatbox {
  position: fixed;
  bottom: 90px;
  left: 28px;
  width: 260px;
  border-radius: 10px;

  display: none;
  z-index: 2;
}

.chatbox-header {
  background: var(--color-secondary);
  color: white;
  padding: 13px 15px;
  display: flex;
  justify-content: space-between;
}

.chatbox-header h5 {
  line-height: 33px;
}

.chatbox-header .btn-danger {
  color: #fff;
  background-color: var(--color-primary);
  border-color: transparent;
}

.chatbox-footer .btn-success {
  color: #fff;
  background-color: #242424;
  border-color: #242424;
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
}

.chatbox-footer .btn-success:hover {
  color: #fff;
  background-color: #242424;
  border-color: #242424;
}

.chatbox-footer .btn-success.focus,
.chatbox-footer .btn-success:focus {
  box-shadow: 0 0 0 0.2rem #6e341963;
}

.btn-danger:hover {
  color: #fff;
  background-color: var(--color-primary);
  border-color: #bd2130;
}

.chatbox-body {
  height: 123px;
  overflow-y: auto;
  padding: 10px; 
  background-size: cover;
}

.close-btn {
  font-size: 34px;
  padding: 0px;
  line-height: 24px;
  width: 32px;
  height: 32px;
  text-align: center;
  display: block;
  padding-bottom: 5px;
  background: #a076b9;
  border-radius: 50%;
  border: transparent;
  position: absolute;
  right: 0;
  color: #fff;
}

.chatbox-footer .form-control {
  border-bottom: none;
  font-size: 15px;
}

.chatbox-footer .form-control:focus {
  box-shadow: none;
}

.chatbox-footer {
  padding: 5px 10px;
  display: flex;
  gap: 5px;
  background: #fe728b;
  border-radius: 27px;
}

#chatbox-open {
  position: fixed;
  bottom: 15px;
  left: 15px;
  padding: 0px;
  background: #ffffff00;
  z-index: 5;
}

.btn img {
  width: 63px;
}

#chat-messages {
  background: #ffffff;
  padding: 14px;
  border-radius: 0px 25px 25px 25px;
  box-shadow: 0px 0px 8px #ff801426;
  border-top: 2px solid var(--color-primary);
}

#chat-messages p {
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 23px;
  color: #000;
}

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

.chatbox-footer .form-control:focus {
  color: #000000;
  background-color: transparent;
  border-color: transparent;
  border-bottom-color: transparent;
  outline: 0;
  box-shadow: transparent;
}

.chatbox-footer .form-control {
  color: var(--color-default);
}


.top-wrap1 {
  position: relative;
}

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

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

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

.inner-serv-matter strong {
  font-weight: 600;
}

.inner-serv-matter h2 {
  color: #000;
  font-size: 20px;
  margin: 15px 0px 6px;
  font-weight: 600;
  text-transform: uppercase;
}

.inner-serv-matter h3 {
  color: #000;
  font-size: 18px;
  margin: 12px 0px 4px;
}

.inner-serv-matter h4 {
  color: var(--color-primary);
  font-size: 18px;
  margin: 12px 0px 4px;
}

.alert-warn {
  color: red;
}

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

.inner-serv-img img {
  box-shadow: 0px 0px 14px #000000d1;
  border-radius: 8px;
}

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

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

.breadcrumb {
  position: relative;
  padding: 148px 0 0px;
  margin-bottom: 0;
  z-index: 2;
  background: #ffffff00;
  display: block;
  overflow: hidden;
}

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

.bread-bg {
  position: relative;
}

.bread-inner {
  position: relative;
  text-align: center;
  padding: 10px 0px 20px;
}

.bread-inner::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #00000000, #a076b91f, #ffffff00);
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: -1;
  clip-path: polygon(91% 50%, 100% 100%, 0% 100%, 11% 50%, 0% 0%, 100% 0%);
}

.bread-inner h1 {
  color: #000;
  font-size: 44px;
  font-weight: 400;
  padding: 0px 10px;
  letter-spacing: 1px;
  position: relative;
  font-family: "Mogina";
  margin-bottom: 12px;
}

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

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

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

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

.breadcrumb ul {
  position: relative;
  display: inline-block;
  background: #262626;
  padding: 4px 8px;
  border-radius: 30px;
}

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




.main-timeline {
  position: relative;
}

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

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

.main-timeline .timeline-content {
  padding: 20px 120px 20px 20px;
  display: block;
  position: relative;
  background: linear-gradient(45deg, #00000000, #bda1cc26);
}

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

.main-timeline .timeline-content:before {
  content: '';
  background: #000;
  height: 8px;
  width: 100%;
  position: absolute;
  left: 30px;
  top: 100%;
}

.main-timeline .timeline-icon {
  color: #fe728b;
  font-size: 50px;
  text-align: center;
  line-height: 100px;
  width: 100px;
  height: 100px;
  border-left: 1px solid #000;
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  top: 50%;
}

.main-timeline .title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 7px;
}

.main-timeline .description {
  color: #000;
  font-size: 15px;
  line-height: 26px;
  margin: 0;
}

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

.main-timeline .timeline:nth-child(even) .timeline-content {
  padding: 20px 20px 20px 120px;
  background: linear-gradient(45deg, #bda1cc26, #00000000);
}

.main-timeline .timeline:nth-child(even) .timeline-content:before {
  left: auto;
  right: 30px;
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid #000;
}


@media screen and (max-width:767px) {

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

@media screen and (max-width:479px) {

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

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

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

  .main-timeline .timeline-icon,
  .main-timeline .timeline:nth-child(even) .timeline-icon {
    border: none;
    border-bottom: 1px solid #000;
    transform: translateX(-50%) translateY(0);
    top: 0;
    left: 50%;
    right: auto;
  }
}

.contact-add-content h2 {
  position: relative;
  font-size: 22px;
  margin-bottom: 3px;
}

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

.contact-add-map iframe {
  position: relative;
  width: 350px;
  height: 200px;
  border: 8px solid #ebebeb;
  padding: 6px;
}

.contact-add-icon {
  position: relative;
}

.contact-add-icon i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f6effb;
  color: #2b2b2b;
  font-size: 28px;
  border-radius: 50%;
}

.contact-page-row .col-md-5:nth-child(1)::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 80%;
  background: #000;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  z-index: -1;
}

.contact-form {
  position: relative;
  text-align: center;
  padding: 50px 23px 48px;
  border-radius: 25px;
  overflow: hidden;
  color: #fff;
}

.contact-form::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #292929;
  top: 0;
  left: 0;
  z-index: -2;
}

.contact-form::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../gallery/contact-form-bg.jpg);
  background-position: center;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.1;
  background-repeat: no-repeat;
  filter: grayscale(1);
}

.contact-form h2 {
  margin-bottom: 28px;
  color: #fff;
  font-size: 33px;
  font-weight: 500;
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid;
}

.contact-form .form-control {
  height: 48px;
  color: #fff;
  border-bottom: 0px;
  border-radius: 6px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.18);
  font-size: 15px;
}

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

.contact-form .btn-danger {
  color: #fff;
  background: var(--color-primary);
  margin-top: 28px;
  border-color: transparent;
}

.contact-form .form-group textarea {
  height: 100px;
  color: #fff;
}

.contact-inner-box {
  padding: 0px 58px;
  margin-top: 40px;
}

.contact-info-icon {
  position: absolute;
  left: 0px;
}

.contact-info-icon i {
  position: relative;
  width: 58px;
  height: 58px;
  margin: auto;
  background: #fe728b;
  color: #ffffff;
  font-size: 28px;
  text-align: center;
  line-height: 58px;
  border-radius: 10px;
}

.contact-info-content {
  position: relative;
  text-align: left;
  padding-left: 70px;
}

.contact-info-content h3 {
  font-size: 22px;
  margin: 8px 0px 1px;
  text-transform: uppercase;
}

.contact-info-content p {
  font-size: 18px;
  margin-bottom: 0px;
}


.contact-info {
  position: relative;
  padding: 18px 0px 10px;
}

.c-right {
  position: relative;
  margin-top: 40px;
}

.c-right::before {
  content: " ";
  position: absolute;
  width: 98%;
  height: 97%;
  border: 1px solid #ffffff36;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  border-radius: 18px;
}


.contact-inner-box .col-md-6,
.contact-inner-box .col-md-12 {
  padding: 0px 8px;
}

.test-ip-img img {
  width: 300px;
}

.test-ip-img {
  position: relative;
  margin-bottom: -45px;
  text-align: right;
}

.abt-page-contain p {
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  padding: 0px 35px;
}

.abt-page-img {
  position: relative;
}


.abt-page-img img {
  position: relative;
  box-shadow: 0px 0px 20px -10px #0000008c;
}

.abt-page-contain h5 {
  font-size: 20px;
  color: var(--color-default);
  display: inline-block;
  padding: 2px 6px;
  border-left: 3px solid;
  margin: 10px 0px 4px;
}

.abt-page-head {
  position: absolute;
  margin-bottom: 20px;
  color: #000000;
  padding: 10px 14px 16px;
  text-align: center;
  margin-top: -33px;
  left: 0px;
  z-index: 1;
}

.abt-page-head::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f1ebf5;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  margin: auto;
  z-index: -1;
  transform: skewX(8deg);
}

.abt-page-head h2 {
  font-size: 38px;
  margin-bottom: 3px;
  font-weight: 400;
  text-transform: uppercase;
}

.abt-page-head h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.abt-page-contain .col-md-5:nth-child(2) {
  right: 10px;
}

.abt-page-contain .col-md-7:nth-child(3) {
  left: 10px;
}

.edu-block {
  position: relative;
  text-align: center;
  margin-top: 20px;
}

.edu-block p {
  text-align: center;
  line-height: 25px;
}

.abt-page-details {
  background: linear-gradient(to right, #fe728b14, #ffffff00);
  padding: 15px 15px;
  border-radius: 10px;
}

.abt-page-top {
  background: #f5f1f8;
  padding-top: 10px;
  margin-bottom: 40px;
  border-radius: 15px;
}


.c_row_ {
  position: relative;
}

._c_form_ {
  background: #292929;
  padding: 39px 34px;
  text-align: center;
  border-radius: 18px;
}

._c_form_ h3 {
  text-transform: uppercase;
  color: #eee;
  margin-bottom: 18px;
}

.form-horizontal .form-control {
  color: #fafafacb;
  font-size: 16px;
  height: 41px;
  padding: 10px 8px 10px 5px;
  background: 0 0;
  border: none;
  border-radius: 0;
  border-bottom: 1px dashed #8b8b8b;
}

.form-horizontal .form-control::placeholder {
  color: #fafafacb;
}

.form-horizontal textarea.form-control {
  height: 95px;
}

.form-horizontal .btn {
  color: #fff;
  font-size: 19px;
  text-transform: capitalize;
  width: auto;
  padding: 7px 36px;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.3s;
  background: var(--color-secondary);
  display: inline-block;
}

.c_map iframe {
  height: 284px;
  width: 100%;
  border-radius: 18px;
}

.c_map {
  position: relative;
  text-align: center;
  background: #f5f1f8;
  padding: 20px 20px;
  border-radius: 20px;
}

.contact-new-info {
  position: relative;
  color: #fff;
}

.contact-new-info i {
  width: 30px;
  height: 30px;
  background: var(--color-secondary);
  line-height: 30px;
  display: inline-block;
}


.contact-new-info.contact-new-info1 {
  margin-bottom: 40px;
}

.contact-add-icon img {
  width: 58px;
  margin-bottom: 10px;
}