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

:root {
  --color-default: #292929;
  --color-primary: #1b4e91;
  --color-secondary: #22b0aa;
}
.container {
  position: relative;
}

.mobile-view {
  display: none;
}

@font-face {
  font-family: "Milchella Regular";
  src: url("../web-font/OTF/cc24a0b746ca65600875fd86a8979976.eot");
  src:
    url("../web-font/OTF/cc24a0b746ca65600875fd86a8979976.eot?#iefix") format("embedded-opentype"),
    url("../web-font/OTF/cc24a0b746ca65600875fd86a8979976.woff") format("woff"),
    url("../web-font/OTF/cc24a0b746ca65600875fd86a8979976.woff2") format("woff2"),
    url("../web-font/OTF/cc24a0b746ca65600875fd86a8979976.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

.inner1 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  border-radius: 20px;
  width: 70px;
  height: 70px;
  overflow: visible;
}

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

.inner1 span {
  font-size: 27px;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
}

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

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

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

.menu-box-centered {
  position: absolute;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding-top: 65px;
}
/*** 
====================================================================
	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 {
  position: relative;
  color: var(--color-primary);
}

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

.page-wrapper {
  margin: 0 auto;
  width: 100%;
  min-width: 320px;
  overflow: hidden;
  position: relative;
}

.page-wrapper::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/bg.jpg);
  opacity: 0.8;
  background-repeat: no-repeat;
  z-index: -99;
  background-position: center;
  background-size: cover;
}

.page-wrapper::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--color-secondary);
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 1;
}

.top-wrap {
  position: relative;
  height: 100vh;
}
.call-us {
  position: fixed;
  bottom: 24px;
  left: 18px;
  box-shadow: -4px 5px 11px #00000066;
  width: 80px;
  text-align: center;
  height: 80px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  border-radius: 50%;
  transform-origin: center;
}
.call-us-i {
  text-align: center;
  z-index: 100;
  cursor: pointer;
  font-size: 36px;
}

.call-us-i a {
  color: #fff;
}

.call-us h2 {
  margin-left: 10px;
  font-size: 20px;
}
.top-border {
  width: 60%;
  height: 2px;
  position: relative;
  margin: auto;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary), var(--color-secondary));
}

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

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

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

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

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0;
  width: 50px;
  height: 42px;
  border-left: 1px solid #04102a;
  text-align: center;
  font-size: 16px;
  line-height: 42px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  z-index: 5;
}

/*** 
========================================
    Mobile Menu
========================================
***/
.nav-outer .mobile-nav-toggler {
  position: relative;
  display: none;
  float: right;
  cursor: pointer;
  padding: 25px 0;
}

.nav-outer .mobile-nav-toggler .inner {
  position: relative;
  display: block;
  padding: 3px 5px;
}

.mobile-menu {
  position: absolute;
  top: 111px;
  right: 382px;
  width: 358px;
  max-width: 100%;
  height: fit-content;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  background: linear-gradient(to bottom, #073775, var(--color-secondary));
  border-radius: 20px;
}

.mobile-contents {
  position: relative;
  color: #fff;
  text-align: center;
  padding-top: 355px;
  padding-bottom: 75px;
}

.mobile-contents::before {
  content: " ";
  position: absolute;
  width: 55%;
  height: 100%;
  border-radius: 0px 0px 999px 999px;
  background: linear-gradient(to bottom, #ffffff00, #007b91);
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.mobile-contents::after {
  content: " ";
  position: absolute;
  width: 10%;
  height: 52%;
  border-radius: 999px 999px 0px 0px;
  background: linear-gradient(to top, #ffffff00, #47a5ae57);
  bottom: -25px;
  left: 46px;
  margin: auto;
}

.mobile-contents h2::before {
  content: " ";
  position: absolute;
  width: 2px;
  height: 328%;
  background: #fff;
  left: 71px;
  top: -74px;
}

.mobile-contents h2 {
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  opacity: 0.2;
  font-size: 43px;
}

.mobile-head-bg img {
  width: 72px;
}

.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: relative;
  right: 0px;
  bottom: 0px;
  margin: auto;
  top: 0px;
  width: auto;
  height: fit-content;
  padding: 35px 35px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  text-align: left;
}

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

.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:first-child {
  border-top: 0px;
}

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

.mobile-menu .navigation li > ul {
  display: none;
  background: #073775;
  position: absolute;
  z-index: 2;
  box-shadow: 0px 0px 8px #ffffff45;
  left: 0px;
  margin: auto;
  width: fit-content;
}

.mobile-menu .navigation li > ul > li {
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.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: 15px 25px;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  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:hover > a {
  font-weight: 500;
  color: #fff;
}

.mobile-menu .navigation li.current > a:before {
  height: 100%;
}

.mobile-menu .navigation li ul li > a {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  padding: 11px 23px;
  color: #fff;
  transition: all 500ms ease;
}

.mobile-menu .navigation li ul li {
  transition: all 500ms ease;
}

.mobile-menu .navigation li ul li:hover {
  background: var(--color-primary);
}
.mobile-menu .navigation li ul li:hover a {
  color: #fff;
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  top: 15px;
  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: 1;
}

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

.mobile-social-icons {
  position: relative;
  margin-top: 18px;
  margin-bottom: 33px;
  padding: 0px 58px 0px;
}

.mobile-social-icons ul li {
  display: inline-block;
  margin-right: 5px;
}

.mobile-social-icons ul li a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  line-height: 38px;
  text-align: center;
  color: #fff;
  transition: all 500ms ease;
}

.mobile-social-icons ul li a:hover {
  background: var(--color-default);
  color: var(--color-primary);
}

.mobile-social-icons span {
  position: relative;
  color: #ffffff7a;
  top: 0px;
  left: 0px;
  margin-bottom: 10px;
  display: inline-block;
}

.mobile-social-icons ul {
  position: relative;
}

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

.banner-one1 {
  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);
  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);
}

.doc-sec {
  position: relative;
  margin-bottom: 60px;
  margin-top: 80px;
}

.doc-img {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  overflow: hidden;
  width: fit-content;
  cursor: pointer;
  box-shadow: 7px 7px 0px #22b0aa17;
  border: 2px solid #fff;
}

.doc-img img {
  position: relative;
  transition: all 300ms ease;
}

.doc-img:hover img {
  transform: scale(1.1);
}

.doc-outer {
  position: relative;
}

.doc-outer::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #1b4e91;
  border-radius: 999px;
  top: -8px;
  left: -13px;
  z-index: 1;
}

.doc-sec-row {
  position: relative;
}

.doc-head-main {
  position: relative;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  display: inline-block;
  padding: 15px 24px;
  border-radius: 0px 52px;
}

.doc-head-main h2 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 52px;
  position: relative;
  display: inline-block;
  color: #fff;
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
}

.doc-head-main h3 {
  margin-top: -3px;
  position: relative;
  font-size: 20px;
  font-weight: 300;
  margin-left: 5px;
  color: #fff;
}

.doc-head-main h4 {
  margin-top: 5px;
  position: relative;
  font-size: 20px;
  font-weight: 300;
  margin-left: 5px;
  color: #fff;
}

.doc-matter {
  position: relative;
  margin-left: 26px;
  margin-top: 10px;
}

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

.doc-head {
  position: relative;
}

.doc-matter-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.doc-matter-btn a {
  position: relative;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 18px;
  background: var(--color-secondary);
  color: #fff;
  padding: 4px 15px;
  border-radius: 30px;
}

.doc-matter-btn:hover a {
  color: #fff;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.services-list li {
  font-size: 15px;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: #333;
}

.services-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #e46b3f;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

.why-choose {
  position: relative;
  margin-bottom: 55px;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.11));
}

.why-choose::before {
  content: " ";
  position: absolute;
  width: 98%;
  height: 78%;
  background: linear-gradient(to right, #073775 38%, var(--color-secondary));
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  z-index: -1;
  border-radius: 26px;
  right: 0px;
  box-shadow: inset 0px 0px 15px #0000007a;
}

.why-choose::after {
  content: " ";
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(to left, #22b0aa14, #ffffff00);
  border-radius: 50%;
  top: 0px;
  bottom: 0px;
  margin: auto;
  left: -24px;
}

.why-choose-inner {
  position: relative;
}

.why-choose-inner::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 202%;
  background-image: url(../gallery/extra-bg.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 40%;
  opacity: 0.08;
  top: 0px;
  z-index: -1;
}

.why-choose-img {
  position: relative;
  text-align: center;
}
.why-choose-img::before {
  content: " ";
  position: absolute;
  width: 600px;
  height: 600px;
  border: 2px solid #ffffff;
  border-radius: 40px;
  left: 22px;
  top: 30px;
  bottom: 0px;
  right: 0px;
  margin: auto;
  z-index: 1;
}

.why-choose-outer {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  width: fit-content;
  margin: auto;
}

.title {
  font-size: 58px;
  font-weight: 500;
  margin-bottom: 0px;
  color: #fff;
  font-family: "Milchella Regular";
}

.desc {
  color: #fff;
  margin-bottom: 30px;
}

.right-box {
  display: flex;
  gap: 20px;
  justify-content: center;
  right: -25px;
}
.mvv-row .col-md-4 {
  padding: 0px 5px;
}

.mvv-row {
  position: relative;
  margin-right: 103px;
  margin-left: 10px;
  margin-top: 20px;
}

.mvv-row .col-md-4:nth-child(2) {
  z-index: 1;
  transform: scale(1.1);
}

.mvv-row .col-md-4:nth-child(2) .card {
  background: #e7f6f6;
}

.card {
  width: 225px;
  height: 225px;
  margin: auto;
  border-radius: 50%;
  text-align: center;
  padding: 25px 22px;
  transition: 0.4s;
  border: 4px solid #fff;
  background: #eaeff5;
}

.card .icon {
  background: var(--color-primary);
  width: 42px;
  height: 61px;
  line-height: 61px;
  margin: 0px auto 3px;
  border-radius: 99px;
}

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

.card h4 {
  margin-bottom: 0px;
  font-weight: 500;
  color: var(--color-secondary);
}

.card.mission h4 {
  color: #fff;
}

.card p {
  font-size: 13px;
  color: #000000;
  line-height: 21px;
}
.card.vision {
  background: #fff;
}

.card.mission {
  background: var(--color-secondary);
  color: #fff;
}

.card.mission p {
  color: #fff;
}

.card:hover {
  transform: translateY(-10px);
}

.right-box .col-md-6 {
  padding: 0px;
}

.right-box .col-md-6:nth-child(1) .card,
.right-box .col-md-6:nth-child(2) .card {
  margin: 0px auto -30px;
}

.right-box .col-md-6:nth-child(1) .card {
  right: -18px;
}

.right-box .col-md-6:nth-child(2) .card {
  right: 18px;
}
.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 38px;
  margin: 30px 0;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  opacity: 0.4;
  transition: all 0.4s ease;
}

.feature.active {
  opacity: 1;
}

.feature.active .icon::before {
  background: var(--color-primary);
  transform: scale(1.1);
  transition: 0.4s;
}

.feature.active img {
  transform: scale(1.1);
  transition: 0.4s;
}

.feature .icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
}

.feature .icon img {
  width: 100px;
  filter: brightness(0) invert(1);
}

.feature .icon::before {
  content: " ";
  position: absolute;
  width: 48px;
  height: 48px;
  background: #22b0aa87;
  border-radius: 50%;
  z-index: -1;
  top: -3px;
  left: -8px;
}

.feature h5 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.head-backside {
  font-family: "Milchella Regular";
  font-size: 40px;
  position: absolute;
  top: 33px;
  left: 57px;
  opacity: 0.2;
  color: var(--color-secondary);
  z-index: -1;
}

.why-backside {
  font-family: "Playball", cursive;
  font-size: 58px;
  position: absolute;
  top: 16px;
  left: 0px;
  opacity: 0.08;
  color: var(--color-primary);
  z-index: -1;
}

.why-choose-svg-top {
  position: absolute;
  top: -236px;
  z-index: -2;
  width: 100%;
}

.why-choose-svg-bottom {
  position: absolute;
  width: 100%;
  bottom: -240px;
  z-index: -2;
}

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

.ad-img img {
  width: 238px;
  border-radius: 118px 118px 0px 118px;
  box-shadow: -10px 1px 12px -10px #4b271782;
  border: 2px solid #fff;
}

.ad-img {
  position: relative;
  transition: all 300ms ease;
}

/* .ad-img:hover {
  transform: scale(1.1);
} */

.ad-img.ad-img1 img {
  width: 160px;
  border-radius: 118px 0px 118px 118px;
  box-shadow: -10px 1px 12px -10px #4b271782;
}

.ad-img.ad-img2 img {
  width: 188px;
  border-radius: 118px 118px 118px 0px;
  box-shadow: 10px 1px 12px -10px #4b271782;
}

.ad-img.ad-img3 img {
  border-radius: 0px 118px 118px 118px;
  box-shadow: 10px 1px 12px -10px #4b271782;
}

.ad-img {
  position: relative;
  margin-bottom: 10px;
}

.ad-img-main-row .col-md-6 {
  padding: 0px 5px;
}

.ad-img-main-row .col-md-6:nth-child(1) {
  text-align: right;
}

.ad-right-head {
  position: relative;
}

.ad-right-head::before {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid #ffffff00;
  border-right: 10px solid #ffffff00;
  border-top: 15px solid var(--color-primary);
  left: -13px;
  top: -8px;
  z-index: -1;
}

.ad-right-head h2 {
  color: var(--color-default);
  font-weight: 400;
  font-family: "Milchella Regular";
  font-size: 48px;
  position: relative;
  display: inline-block;
}

.ad-right-head h2 span {
  color: var(--color-primary);
  display: inline-block;
  /* padding: 6px 16px; */
  line-height: 45px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* .ad-right-head h2:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/stars.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 56px;
  right: -42px;
  top: -48px;
} */

.ad-right-matter p {
  font-size: 16px;
  line-height: 30px;
}

.ad-right-matter h3 {
  font-size: 20px;
  margin-bottom: 8px;
  padding-top: 6px;
}

.ol_styles {
  position: relative;
}

.ol_styles li {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-left: 15px;
  font-size: 16px;
  line-height: 28px;
}

.ol_styles li:before {
  position: absolute;
  left: 0;
  top: 9px;
  height: 10px;
  width: 10px;
  border-radius: 5px;
  border: 2px solid var(--color-primary);
  content: "";
  background: var(--color-secondary);
}

.ad-middle-btm {
  margin-top: 15px;
  position: relative;
  text-align: center;
}

.ad-middle-btm h4 {
  background: #073775;
  color: #fff;
  font-weight: 300;
  text-align: center;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 0px 99px 99px 99px;
}

.ad-right-main {
  position: relative;
  right: -20px;
}

.ad-img-main-row {
  position: relative;
  left: -20px;
}

.emg-sec {
  position: relative;
  margin-bottom: 0px;
  z-index: 1;
}

.emg-sec .emg-row {
  /* background: var(--color-default); */
  background: #073775;
  padding: 46px 8px;
  position: relative;
  overflow: hidden;
}

.emg-sec .ad-txt {
  color: #fff;
  position: relative;
  text-align: left;
}

.emg-sec .ad-txt h2 {
  font-weight: 300;
}

.emg-sec .ad-txt p {
  position: relative;
  font-weight: 300;
  margin-bottom: 0px;
  font-size: 18px;
}

.emg-sec .ad-txt p::before {
  content: "";
  position: absolute;
  width: 38%;
  height: 2px;
  background-color: #fff;
  left: 345px;
  top: 1px;
  bottom: 0;
  margin: auto;
}

.footer-ad-img img {
  width: 43px;
  filter: brightness(0) invert(1);
}

.emg-row::before {
  content: "";
  position: absolute;
  height: 350px;
  width: 350px;
  background: linear-gradient(to top, #22b0aab3, #0000);
  border-radius: 50%;
  top: 33px;
  left: -83px;
}

.emg-row::after {
  content: "";
  position: absolute;
  height: 350px;
  width: 350px;
  background: linear-gradient(to bottom, #22b0aab3, #0000);
  border-radius: 50%;
  right: -73px;
  bottom: 29px;
}

.emg-sec .ad-txt2 {
  position: relative;
  display: flex;
  align-items: center;
}

.emg-sec .ad-txt .footer-ad-num {
  position: relative;
  margin-left: 15px;
}

.footer-ad-num a {
  color: #fff;
  font-size: 35px;
}

.appnt-sec {
  position: relative;
  margin-bottom: 45px;
  padding: 45px 0;
  min-height: 100vh;
}

.treatment-block {
  position: relative;
  margin-top: 28px;
}

.serv-content {
  background: #ffffff99;
  padding: 38px 28px 24px;
  text-align: center;
  left: -128px;
  position: relative;
}

.serv-content::before {
  content: " ";
  position: absolute;
  width: 97%;
  height: 96%;
  border: 1px solid var(--color-default);
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  z-index: -1;
}

.serv-content-inner h2 {
  text-transform: uppercase;
  font-weight: 300;
  background: var(--color-secondary);
  color: #fff;
  padding: 4px 28px 1px;
  margin-bottom: 10px;
  margin-top: 0px;
  margin-left: -58px;
  top: -13px;
  position: absolute;
}

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

.serv-content-inner a {
  background: var(--color-primary);
  color: #fff;
  padding: 6px 15px;
  text-transform: uppercase;
}

.serv-inner-img img {
  filter: grayscale(1);
  transition: all 300ms ease;
}

.serv-inner-img {
  position: relative;
  width: fit-content;
  overflow: hidden;
  border-radius: 10px;
  transition: all 300ms ease;
}

.serv-main-block:hover .serv-inner-img {
  transform: rotate(10deg);
  z-index: 1;
}

.serv-main-block:hover .serv-inner-img img {
  transform: scale(1.1);
}

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

.treatment-box {
  position: relative;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin: -10px -5px 0px;
}

.treatment-img {
  position: relative;
  width: fit-content;
  overflow: hidden;
  border-radius: 50%;
  transition: all 300ms ease;
}

.treatment-img img {
  filter: grayscale(1);
  transform: translate3d(0, 0, 0) scale(1.4);
  transition: all 0.35s;
  -webkit-transform: translate3d(0, 0, 0) scale(1.4);
  -webkit-transition: all 0.35s;
}

.treatment-box:hover .treatment-img img {
  transform: translate3d(-5px, 0, 0) scale(1);
  -webkit-transform: translate3d(-5px, 0, 0) scale(1);
}
.treatment-box .tab-text {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: fit-content;
  z-index: 1;
  margin: auto;
}
.treatment-box .tab-text p {
  width: 100%;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  transform: translate3d(40px, 0, 0);
  -webkit-transform: translate3d(40px, 0, 0);
  opacity: 0;
  transition: all 0.35s;
  font-family: "Open sans";
  padding-bottom: 5px;
}
.treatment-box:hover p {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.tab-text-op {
  position: absolute;
  bottom: 46px;
  margin: auto;
  left: 0px;
  right: 0px;
  width: fit-content;
  z-index: 1;
  transition: all 300ms ease;
}

.tab-text-op h2 {
  color: #fff;
  opacity: 0.3;
  font-size: 20px;
  text-align: center;
  font-weight: 300;
}
.treatment-box:hover .tab-text-op {
  display: none;
}

.treatment-block .col-md-3 {
  padding: 0px;
}

.treatment-box::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #062957, #22afa9);
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  z-index: 1;
  opacity: 0.7;
  border-radius: 50%;
}

.treatment-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  background: #fff;
  text-align: center;
  z-index: 1;
  padding: 11px;
}

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

.services-head h2 {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 8px;
  padding-bottom: 0px;
  border-bottom: 2px solid var(--color-default);
  color: var(--color-default);
  display: inline-block;
  font-family: "Milchella Regular";
  line-height: 56px;
}

.services-head h2 span {
  color: var(--color-primary);
}

.serv-container {
  max-width: 1140px;
  margin: auto;
}

.services-sec::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 202%;
  background-image: url(../gallery/extra-bg1.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 40%;
  opacity: 0.03;
  bottom: 0px;
  z-index: -1;
}

.services-sec::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 202%;
  background-image: url(../gallery/extra-bg.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 40%;
  opacity: 0.08;
  top: 0px;
  z-index: -1;
}

.serv-svg-top {
  position: absolute;
  top: -202px;
  z-index: -2;
  width: 100%;
}

/* .treatment-block .col-md-3:nth-child(1) .treatment-box {
  overflow: hidden;
  border-radius: 50px 0px 0px 0px;
}

.treatment-block .col-md-3:nth-child(4) .treatment-box {
  overflow: hidden;
  border-radius: 0px 50px 0px 0px;
}

.treatment-block .col-md-3:nth-child(5) .treatment-box {
  overflow: hidden;
  border-radius: 0px 0px 0px 50px;
}

.treatment-block .col-md-3:last-child .treatment-box {
  overflow: hidden;
  border-radius: 0px 0px 50px 0px;
} */

.footer_section {
  position: relative;
}

.footer_section::before {
  content: " ";
  position: absolute;
  width: 600px;
  height: 605px;
  background-image: url(../gallery/extra-bg2.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  opacity: 0.1;
  top: -158px;
  z-index: -1;
}

.footer-bg {
  position: absolute;
  z-index: -1;
  top: 0px;
  opacity: 0.15;
  filter: grayscale(1);
  left: 0px;
}
.footer-bg1 {
  position: absolute;
  z-index: -2;
  top: -238px;
  opacity: 0.15;
  filter: grayscale(1);
  right: 0px;
}
.footer-bg2 {
  display: none;
}
.footer-bg1 img {
  width: 700px;
}

.footer_section .footer_add_row {
  position: relative;
}

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

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

.address_info_sec i {
  position: relative;
  left: 0px;

  width: 40px;
  height: 40px;
  font-size: 24px;
  text-align: center;
  color: var(--color-primary);
  border-radius: 50%;
  line-height: 40px;
  display: inline-block;
}

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

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

.bottom-footer a {
  color: var(--color-primary);
  font-weight: 500;
}

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

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

.footer_section .footer_top h2 {
  color: var(--color-primary);
  font-size: 21px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
  display: inline-block;
  border-bottom: 2px solid var(--color-primary);
  font-weight: 500;
}

.footer_section .footer_wid p {
  font-size: 14px;
  line-height: 25px;
  display: block;
}

.footer_section .footer_wid_text {
  position: relative;
  padding-bottom: 12px;
  margin: 10px 0px;
}

.footer_section .footer_wid_text li {
  font-size: 14px;
}

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

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

.social-icon-two li a {
  position: relative;
  display: block;
  font-size: 24px;
  width: 38px;
  height: 38px;
  line-height: 37px;
  color: var(--color-default);
  border-radius: 50%;
  font-weight: 400;
  margin: 0 1px;
}

.footer_top .footer_wid_text:after,
.footer_top .footer_wid_text:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 3px;
}

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

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

.footer-logo img {
  width: 388px;
  margin-bottom: 25px;
}

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

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

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

.footer-widget__social span {
  color: #06334d;
  font-size: 24px;
  font-weight: 600;
}

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

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

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

.footer-widget__social li a:hover {
  color: #ffffff;
  background: var(--color-primary);
}

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

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

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

.footer_mp iframe {
  border: 5px solid #f5f5f5;
  background: #fff;

  box-shadow: 0px 0px 11px #919191;
}

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

.footer_wid .address_info_sec {
  position: relative;
}

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

.footer-about p {
  font-size: 15px;
  line-height: 27px;
  margin: 0;
  padding: 0px 0px 25px;
}

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

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

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

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

.footer_links {
  text-align: center;
}

.footer_links ul {
  display: inline-block;
  padding: 6px 190px 6px;
  margin: 0 0 15px;
}

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

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

.footer_links ul li a {
  color: var(--color-default);
  font-size: 17px;
  line-height: 19px;
  border-right: 1px solid;
  padding: 0 11px;
  text-transform: uppercase;
  font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

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

.footer_links1 {
  text-align: center;
}

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

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

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

.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 a:hover {
  color: var(--color-primary);
}

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

.footer-main-services ul {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 60px 25px;
  background: var(--color-secondary);
  border-radius: 17px;
}

.footer-main-services ul li {
  display: inline-block;
  line-height: 35px;
}

.footer-main-services ul li a {
  font-size: 17px;
  line-height: 19px;
  border-right: 1px solid;
  padding: 0 11px;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1px;
}

.footer-main-services ul li a:hover {
  color: #fff;
}

.footer-main-services ul li:last-child a {
  border-right: none;
}

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

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

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

.block2 {
  position: relative;
  padding-bottom: 35px;
}

.footer-main-services::before {
  content: "";
  position: absolute;
  height: 86%;
  width: 100%;
  border: 1px solid var(--color-secondary);
  top: 76px;
  left: 0;
  z-index: -1;
  border-radius: 20px;
}

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

.footer-main-links::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  background-color: var(--color-primary);
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.ltcontact {
  position: absolute;

  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.ltcontact h4 {
  font-size: 95px;
  font-family: "Lora", serif;
  opacity: 0.05;
  color: var(--color-primary);
}

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

.appnt-test-inner {
  position: relative;
}

.testi-sec {
  position: relative;
  margin-bottom: 100px;
  padding: 10px 0px;
}

.testi-sec::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/google-icon.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: -1;
  bottom: -38px;
  background-size: 14%;
  opacity: 0.1;
}

.testi-sec::after {
  content: " ";
  position: absolute;
  width: 914px;
  height: 180%;
  background-image: url(../gallery/feedbacks-img.png);
  background-repeat: no-repeat;
  background-position: center left;
  left: 0px;
  top: -173px;
  background-size: 48%;
  z-index: -1;
  opacity: 0.4;
  filter: grayscale(1);
}
.testi-sec .testi-top {
  position: relative;
}

.testi-sec .testi-top::after {
  content: "";
  position: absolute;
  width: 78%;
  height: 2px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: linear-gradient(to right, var(--color-primary), transparent);
}
.testi-sec .testi-q-img {
  opacity: 0.5;
}
.testi-sec .testi-q-img img {
  width: 165px;
}
.testi-sec .testi-bottom {
  position: relative;
}
.testi-sec .testi-bottom::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 2px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: linear-gradient(to left, var(--color-primary), transparent);
}
.testi-bottom .testi-q-img {
  position: absolute;
  right: 0;
  bottom: 0;
  top: -84px;
  right: 0;
}
.testi-sec .testi-mid {
  margin-bottom: 55px;
}
.testi-sec .testi-mid .test_desc p {
  font-size: 15px;
  color: var(--color-default);
  margin-bottom: 0px;
}
.testi-sec .testi-mid .test_desc h2 {
  padding-top: 8px;
  font-size: 25px;
  text-transform: uppercase;
  color: var(--color-default);
}
.testi-sec .test_desc img {
  width: 100px;
  margin: auto;
}
.testi-sec .test_desc::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 85%;
  background: linear-gradient(to top, transparent, #1b4e91, #ffffff00);
  top: 0;
  bottom: 0;
  margin: auto;
  right: -13px;
}

.testi-head h2 {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 8px;
  padding-bottom: 0px;
  border-bottom: 2px solid;
  color: #073775;
  display: inline-block;
  font-family: "Milchella Regular";
  line-height: 56px;
}

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

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

/***
====================================================================
	Appointment Section
====================================================================
***/
.appt-sec {
  position: relative;
  margin-bottom: 40px;
}
.appointment-form .form-control {
  border: none;
  background-color: transparent;
  color: #ffffff;
  padding: 10px 33px;
  border-bottom: 1px solid;
  margin-bottom: 20px;
}
.appointment-form h2 {
  color: #fff;
}
.appointment-form p {
  color: #fff;
}
.appointment-form .form-control:focus {
  color: #ffffff;
  border-color: transparent;
  outline: 0;
  box-shadow: 0 0 10px var(--color-primary);
}
.appointment-form .form-control::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.appointment-form .form-control::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.appointment-form .form-control:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.appointment-form .form-control::-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.appointment-form .form-control::placeholder {
  color: #ffffff;
  opacity: 1;
}
.appointment-form .form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.theme-btn {
  font-size: 16px;
  color: var(--color-primary);
  border-radius: 30px;
  padding: 4px 14px;
  border-radius: 10px;
  align-items: center;
  background-color: #fff;
  display: flex;
  justify-content: center;
  margin: auto;
  cursor: pointer;
}
.theme-btn:hover {
  background-color: var(--color-secondary);
  color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.appointment_section .appointment_desc {
  padding-top: 25px;
}
.form-group i {
  position: absolute;
  left: 25px;
  top: 12px;
  color: #ffffff;
  font-size: 18px;
}

.form-blk {
  border-radius: 32px;
  padding: 28px;
  background: linear-gradient(45deg, #073775, var(--color-secondary));
  box-shadow: inset 0 0 20px 4px #22aea81c;
  z-index: 1;
  position: relative;
}
::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.form-blk::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/appointment-bg.png);
  background-position: center;
  background-size: 340px;
  background-repeat: no-repeat;
  z-index: -1;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  opacity: 0.04;
}

.section_title_text h2 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 8px;
  padding-bottom: 0px;
  border-bottom: 2px solid;
  color: #ffffff;
  display: inline-block;
  font-family: "Milchella Regular";
  line-height: 56px;
}

.section_title_text h2 span {
  color: #ffffff;
}
.section_title_text p {
  font-size: 15px;
  color: #ffffff;
}

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

.serv-text h3 {
  color: #fff;
  font-family: "Milchella Regular";
  font-weight: 400;
  font-size: 38px;
  position: relative;
  background: #073775;
  border-radius: 40px;
  padding: 6px 10px 3px;
}

/******************************************************Services***********************************/
.top-wrap-1 {
  position: relative;
}
.top-breadcrumb {
  position: relative;
  text-align: right;
  margin: 150px 0px 50px;
}
.top-breadcrumb::before {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 76%);
  background: linear-gradient(to right, #073775 38%, var(--color-secondary));
  z-index: -1;
}
.top-breadcrumb::after {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  background-image: url(../gallery/breadcrumb-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 76%);
  z-index: -1;
  opacity: 0.1;
}
.breadcrumb-sec {
  position: relative;
  padding: 90px 0px;
}
.bread-heading {
  position: relative;
}
.top-breadcrumb-list ul {
  display: inline-flex;
}
.top-breadcrumb-list {
  position: relative;
}
.top-breadcrumb-list ul li {
  position: relative;
  padding: 6px 20px 0px;
  color: #fff;
}
.top-breadcrumb-list ul li:last-child {
  padding-right: 0px;
}
.top-breadcrumb-list ul li::before {
  content: " ";
  width: 8px;
  height: 8px;
  position: absolute;
  top: -5px;
  right: 0px;
  left: 0px;
  background: #fff;
  border-radius: 50%;
  margin: auto;
  z-index: 1;
}
.top-breadcrumb .bread-heading h1 {
  font-size: 33px;
  text-transform: uppercase;
  position: relative;
  font-weight: 350;
  margin: auto;
  display: inline-block;
  border-bottom: 2px solid;
  padding-bottom: 10px;
  color: #fff;
}
.scrollspy-example-2 {
  height: 371px;
  overflow-y: auto;
  position: relative;
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 35px;
  margin-top: 35px;
  background: linear-gradient(to top, #d9e5f4, transparent);
}
.scrollspy-example-2 > div {
  height: 367px;
  border-bottom: 1px dotted black;
}
#item-1 img {
  height: 250px;
  width: 700px;
  margin: auto;
}
#item-2 img {
  height: 250px;
  width: 700px;
  margin: auto;
}
#item-3 img {
  height: 250px;
  width: 700px;
  margin: auto;
}
#item-4 img {
  height: 250px;
  width: 700px;
  margin: auto;
}
#item-5 img {
  height: 250px;
  width: 700px;
  margin: auto;
}
#item-6 img {
  height: 250px;
  width: 700px;
  margin: auto;
}
.scrollspy-example-2 > div:last-child {
  border-bottom: none;
  height: fit-content;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff !important;
  background-color: var(--color-secondary) !important;
}
.nav-pills {
  margin-top: 65px;
  background: #fff;
  box-shadow: 2px 2px 6px black;
}
.inner-page h2 {
  font-size: 20px;
  text-transform: uppercase;
  width: fit-content;
  background: linear-gradient(to left, #22b0aa1a 1%, #ffffff00);
  padding: 3px 15px 3px 8px;
  margin-bottom: 7px;
  margin-top: 15px;
  color: var(--color-primary);
}
.inner-page h3 {
  font-size: 18px;
  color: var(--color-secondary);
  margin: 10px 0px 5px;
  font-weight: 400;
}
.inner-page {
  margin-bottom: 45px;
  position: relative;
  z-index: 1;
}
.inner-page p {
  font-size: 15px;
  line-height: 30px;
  text-align: left;
  margin-bottom: 9px;
}
.nav-pills a {
  color: var(--color-primary) !important;
}
.scrollspy-example-2 p {
  margin-left: 0px !important;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 6px;
}
.scrollspy-example-2 h4 {
  margin-top: 14px;
  font-size: 17px;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.scrollspy-example-2 #item-1 h4 {
  margin-top: 0px !important;
}
.serv-style li {
  border-bottom: 1px dotted #fff;
  transition: all 300ms ease-in;
  position: relative;
}
.serv-style li:last-child {
  border-bottom: none;
}
.serv-style li::before {
  font-family: "FontAwesome";
  content: "\f105";
  height: 20px;
  width: 20px;
  position: absolute;
  top: -8px;
  bottom: 0px;
  right: 0px;
  margin: auto;
  font-size: 17px;
  transition: all 300ms ease-in;
  color: #efefef;
}
.serv-style li:hover::before {
  color: #fff;
  rotate: -180deg;
  right: 17px;
  top: 5px;
}
.serv-style li > a {
  color: #efefef;
  padding: 5px 20px 5px;
  display: block;
  transition: all 300ms ease-in;
}
.serv-style li a:hover {
  padding-left: 35px;
  background: var(--color-secondary);
}
.serv-style li:hover a {
  color: #fff;
}
.contact {
  margin-top: 25px;
  background: #fff;
  box-shadow: 0px 0px 6px #00000082;
  height: 350px;
}
.contact h5 {
  padding-top: 20px;
  color: #e85951;
  padding-bottom: 10px;
  text-decoration: underline;
  text-transform: uppercase;
}
.contact-form form .col-md-6:first-child {
  margin-left: 20px;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 44%;
}
.contact-form form .col-md-6:nth-child(3) {
  margin-left: 20px;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 44%;
}
.contact-form form .col-md-12 {
  margin-left: 20px;
}
.contact-form form .col-md-12 input {
  width: 93%;
  height: 80px;
}
.contact-form .form-group input {
  padding-left: 50px;
}
.contact-form .form-group input i {
  padding-left: 5px;
}
.contact-form .form-group:first-child {
  margin-top: 28px;
}
.contact-form .form-group:nth-child(2) {
  margin-top: 28px;
}
.contact-form .form-group:last-child {
  margin-bottom: 0px;
}
.serv-list {
  margin-bottom: 23px;
  background: #073775;
  position: relative;
  z-index: 1;
  padding: 8px 20px 5px;
  border-radius: 20px;
}
.consultation {
  background: linear-gradient(45deg, #073775, #22a5a0);
  border-radius: 16px;
  text-align: center;
  position: relative;
}
.consult-details h5 {
  color: #ffffff;
  padding: 11px 9px 7px;
  font-size: 24px;
  font-weight: lighter;
  line-height: 34px;
}
.consult-details a {
  font-size: 28px;
  font-family: "cinzel";
  color: #fff;
  padding-bottom: 23px;
  padding-top: 6px;
  display: block;
}
.ol_styles-1 {
  position: relative;
}

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

.ol_styles-1 li:before {
  position: absolute;
  left: 1px;
  top: 9px;
  height: 8px;
  width: 8px;
  border-radius: 5px;
  border: 2px solid var(--color-primary);
  content: "";
  background: var(--color-secondary);
}

.top-breadcrumb-list-1 {
  position: relative;
}

.top-breadcrumb-list-1 ul {
  display: inline-flex;
  position: absolute;
  /* top: 174px; */
  top: 130px;
  right: -36px;
  background: linear-gradient(to left, transparent -20%, #1b4e91);
  padding: 29px 55px 7px;
  border-radius: 25px 52px;
  color: #fff;
}

.top-breadcrumb-list-1 ul::before {
  content: " ";
  width: 77%;
  height: 3px;
  position: absolute;
  top: 0px;
  bottom: 31px;
  left: 0px;
  right: 0px;
  background: linear-gradient(to right, var(--color-secondary), #fff);
  margin: auto;
  z-index: 99;
}
.top-breadcrumb-list-1 ul li {
  padding-right: 32px;
  position: relative;
}
.top-breadcrumb-list-1 ul li:last-child {
  padding-right: 0px;
}
.top-breadcrumb-list-1 ul li::before {
  content: " ";
  width: 8px;
  height: 8px;
  position: absolute;
  top: -53px;
  bottom: 0px;
  right: 0px;
  left: -45px;
  background: #fff;
  border-radius: 50%;
  margin: auto;
  z-index: 99;
}
.inner-page-1 {
  margin-top: 25px;
}

.contact-form {
  height: 300px;
  background: #fcf9f8;
  margin-top: 25px;
  box-shadow: inset 0px 0px 7px var(--color-secondary);
}
.contact-form .message {
  position: relative;
}
.contact-form .message::before {
  font-family: "FontAwesome";
  content: "\f075";
  position: absolute;
  top: 24px;
  bottom: 0px;
  left: 36px;
  right: 0px;
  margin: auto;
}
.inner-page-1 .col-md-4 {
  background: #f6d8d6;
  margin-top: 63px;
  margin-right: 10px;
  flex: 0 0 33.333333%;
  max-width: 32.333333%;

  padding: 25px 10px 14px 25px;
  border-radius: 25px;
  height: 111px;
  box-shadow: inset 0px 0px 6px;
}
.inner-page-1 .col-md-3 {
  background: #f6d8d6;
  margin-top: 63px;
  margin-left: 210px;
  margin-right: 10px;
  padding: 25px 10px 14px 25px;
  border-radius: 25px;
  height: 111px;
  box-shadow: inset 0px 0px 6px;
  flex: 0 0 25%;
  max-width: 17%;
}

.inner-page-1 .col-md-3:last-child {
  margin-left: 0px;
  flex: 0 0 25%;
  max-width: 25%;
}
.inner-page-1 {
  margin-bottom: 80px;
}
.inner-page-1 .col-md-4 ::last-child {
  max-width: 21.333333%;
  padding-top: 36px;
  font-size: 17px;
}

.inner-page-1 .col-md-4::first-child {
  margin-left: 119px;
  max-width: 17.333333%;
}
.inner-page-1 {
  position: relative;
}
.content {
  margin: 160px auto;
  /* margin-top: 25%; */
}
.content h4 {
  font-size: 30px;
}

.testimonial-box {
  position: relative;
  margin-bottom: 50px;
}
.testimonial-box::before {
  content: " ";
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  border-top: 2px solid #c2c1c0;
}
.testimonial-box::after {
  content: " ";
  height: 10px;
  width: 10px;
  position: absolute;
  top: -5px;
  left: 0px;
  margin: auto;
  background: var(--color-primary);
  border-radius: 50%;
}
.testimonial .heading h2 {
  font-size: 23px;
  color: var(--color-secondary);
  text-align: right;
  padding-right: 33px;
  text-transform: uppercase;
  padding-top: 0px !important;
}
.testimonial {
  position: relative;
}
.testimonial::before {
  content: " ";
  height: 102%;
  width: 2px;
  position: absolute;
  top: 0px;
  right: 0px;
  margin: auto;
  border-right: 2px solid #c2c1c0;
  margin: auto;
  z-index: 999;
}
.testimonial::after {
  content: " ";
  height: 10px;
  width: 10px;
  position: absolute;
  bottom: -13px;
  right: -4px;
  margin: auto;
  background: var(--color-primary);
  border-radius: 50%;
}
.test-content p {
  padding-left: 26px;
  padding-right: 25px;
  font-size: 15px;
  text-align: justify;
  line-height: 30px;
  padding-top: 16px;
}

.testimonial-box-1 {
  position: relative;
  margin-bottom: 60px;
}
.testimonial-box-1::before {
  content: " ";
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  border-top: 2px solid #c2c1c0;
}
.testimonial-box-1::after {
  content: " ";
  height: 10px;
  width: 10px;
  position: absolute;
  top: -5px;
  right: 0px;
  margin: auto;
  background: var(--color-primary);
  border-radius: 50%;
}

.testimonial-1 {
  position: relative;
}
.testimonial-1::before {
  content: " ";
  height: 102%;
  width: 2px;
  position: absolute;
  top: 0px;
  left: 0px;
  margin: auto;
  border-right: 2px solid #c2c1c0;
  margin: auto;
  z-index: 999;
}
.testimonial-1::after {
  content: " ";
  height: 10px;
  width: 10px;
  position: absolute;
  bottom: -13px;
  left: -4px;
  margin: auto;
  background: var(--color-primary);
  border-radius: 50%;
}
.testimonial-1 .heading h2 {
  font-size: 23px;
  padding-bottom: 3px;
  padding-left: 25px;
  color: var(--color-secondary);
  text-align: left;
  text-transform: uppercase;
}
.stars-1 {
  padding-left: 25px;
}
.stars {
  text-align: right;
  padding-right: 30px;
}
.inner-pages-1 {
  margin-bottom: 125px;
}
.test-content {
  position: relative;
}
.test-content::before {
  content: " ";
  width: 215px;
  height: 215px;
  position: absolute;
  top: -91px;
  bottom: 0px;
  right: -70px;
  background-image: url(../gallery/quote.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 46%;
  margin: auto;
  opacity: 0.2;
}
.doctor-heading {
  position: relative;
}
.doctor-heading h2 {
  font-size: 21px;
  text-align: center;
  color: var(--color-primary);
  margin-top: -10px;
}
.doctor-heading {
  background: #073775;
  padding: 25px 6px 2px;
  border-bottom: 2px dotted #fff;
}
.doctor-heading h4 {
  text-align: center;
  margin-bottom: 3px;
  color: #f1f1f1;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 500;
}
.doctor-heading h5 {
  text-align: center;
  font-size: 17px;
  color: #fff;
  font-weight: 400;
}
.doctor-heading p {
  text-align: center;
  font-size: 16px;
  margin-top: 0px;
  color: #fff;
}
.doctor-img img {
  border: 5px solid #fff;
  margin-bottom: 12px;
}

.phone {
  position: relative;
}
.phone i {
  margin-right: 2px;
}

.phone p {
  text-align: center;
}
.address i {
  margin-right: 2px;
}
.email i {
  margin-right: 2px;
}

.contact input::placeholder {
  padding-left: 35px;
}
.contacting-form {
  margin-top: 25px;
  background: linear-gradient(45deg, #073775, var(--color-secondary));
  border-radius: 15px;
  padding: 10px 28px 20px;
  /* box-shadow: inset 0px 0px 10px var(--color-secondary); */
}

.contacting-form i {
  color: #fff;
}
.contacting-form input::placeholder {
  color: #f3f3f3;
  padding-left: 35px;
}
.contacting-form .message-1 {
  height: 106px;
  width: 100%;
  background: transparent;
  position: relative;
}

.contacting-form input:hover {
  color: #f1f1f1;
}
.phone {
  padding: 14px 32px 2px;
  border-bottom: 1px dotted #fff;
}

.address {
  padding: 13px 21px 2px;
  text-align: justify;
  hyphens: auto;
  border-bottom: 1px dotted #fff;
}
.email {
  padding: 14px 19px 9px;
}

.contact-page .col-md-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 30.333333%;
}

.message-1 .form-control {
  height: 90px;
}
.submit-btn a {
  background: #fff;
  color: var(--color-primary);
  padding: 5px 15px 5px;
}
.submit-btn a:hover {
  color: #fff;
  background-color: var(--color-primary);
}
.message-1 input::placeholder {
  position: absolute;
  top: 16px;
}

.contact-page .address p {
  font-size: 16px;
  text-align: center;
}
.contact-page .form-group {
  margin-bottom: 1.3rem;
}

.contact-page .calendar .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem 0.375rem 2.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  background-color: #fff2f200;
  background-clip: padding-box;
  border-bottom: 1px solid #dedede;
  border-radius: 0.25rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.contact-page .form-group i {
  position: absolute;
  left: 30px;
  top: 12px;
  color: #3e3e3e;
  font-size: 18px;
}
.contact-page .form-group i {
  position: absolute;
  left: 30px;
  top: 12px;
  color: #fff;
  font-size: 18px;
}

.mission p {
  font-size: 15px;
  line-height: 30px;
  text-align: center;
}

.mcv-box {
  position: relative;
  margin-top: 30px;
}

.mcv-box .col-md-6:nth-child(1) .mvv-inner-box,
.mcv-box .col-md-6:nth-child(2) .mvv-inner-box {
  margin-bottom: -30px;
}

.mvv-inner-icon {
  width: 100px;
  height: 100px;
  line-height: 74px;
  background: var(--color-primary);
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  margin: 0px auto 10px;
}

.mvv-inner-icon img {
  border: 0px;
  width: 60px;
  filter: brightness(0) invert(1);
}

.mvv-inner {
  text-align: center;
}

.mvv-inner p {
  text-align: center;
}

.mvv-inner h5 {
  font-size: 30px;
  text-transform: uppercase;
}

.mvv-inner-box {
  position: relative;
  margin: 0px 46px;
  background: linear-gradient(to top, #e7f7f7, #ffffff00);
  border-radius: 0px 0px 999px 999px;
  padding: 28px 34px;
}

.doc-btm-inner-out {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 20px;
}

.doc-btm-inner-out .serv-list {
  margin-bottom: 0px;
  border-radius: 0px;
}

.inner-page-image img {
  border: 2px solid var(--color-secondary);
}

.inner-page-image {
  position: relative;
  margin-bottom: 20px;
}

.top-phone a {
  color: #ffffff;
  background: #1b4e91;
  display: block;
  border-radius: 35px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 20px;
}

.testimonial-inner-btn a {
  background: var(--color-primary);
  color: #fff;
  padding: 3px 10px;
}

.testimonial-inner-btn {
  position: absolute;
  bottom: 116px;
  left: 188px;
}

.google_review_link {
  position: absolute;
  top: 0;
  right: 27px;
  box-shadow: 0 10px 4px #ccc;
  padding: 4px 4px;
  text-align: center;
}

.google_review_link a {
  display: inline-block;
  width: 191px;
}

.google_review_link p {
  font-size: 20px;
}
.serv-style li.active {
  background: var(--color-secondary);
}
.serv-style li.active a {
  color: #fff;
}
.serv-style li.active::before {
  font-family: "FontAwesome";
  content: "\f105";
  height: 20px;
  width: 20px;
  position: absolute;
  top: 8px;
  bottom: 0px;
  right: 18px;
  margin: auto;
  font-size: 17px;
  transition: all 300ms ease-in;
  color: #fff;
  rotate: -180deg;
}
.section-1 i {
  padding-right: 5px;
}
.section-1 {
  margin-top: 25px;
  color: #fff;
  background: var(--color-primary);
  width: 100%;
  height: fit-content;
  position: relative;
  z-index: 1;
  border: 3px solid #c6c5c1;
  border-radius: 20px;
}
.section-1 p {
  text-align: center;
}
.section-1 i {
  padding-right: 5px;
}
.map {
  margin-top: 12px;
}
.map iframe {
  height: 215px;
  width: 100%;
  border: 4px solid #d5d5d5;
  border-radius: 20px;
}

.contacting-form h2 {
  width: fit-content;
  color: #fff;
  font-size: 25px;
  border-bottom: 1px solid;
  display: inline-block;
  background: none;
  padding: 3px 15px 6px 8px;
  margin-bottom: 35px;
}

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

.expert-head {
  position: relative;
  text-align: center;
}

.expert-head h2 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 8px;
  padding-bottom: 0px;
  border-bottom: 2px solid var(--color-default);
  color: var(--color-default);
  display: inline-block;
  font-family: "Milchella Regular";
  line-height: 56px;
}

.expert-head h2 span {
  color: var(--color-primary);
}

.expert-head p {
  position: relative;
  font-size: 15px;
}

.expert-block {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  height: 279px;
}

.expert-row .col-md-4:nth-child(3) .expert-block {
  height: 230px;
}

.expert-img {
  position: relative;
}

.expert-img::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #001e45 35%, #001d43a8);
  top: 0px;
  bottom: 0px;
  z-index: 1;
  opacity: 0.8;
}

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

.expert-content {
  position: absolute;
  bottom: 0px;
  z-index: 2;
  text-align: center;
  padding: 0px 10px 25px;
}
.expert-content h2 {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  line-height: 26px;
}

.expert-instagram {
  position: relative;
  border: 1px solid var(--color-secondary);
  padding: 10px;
  height: 398px;
}

.expert-instagram img {
  width: 100%;
  height: 374px;
  box-shadow: 0px 0px 12px #07377526;
  border-radius: 15px;
}

.expert-btn {
  position: absolute;
  bottom: 0px;
  right: 18px;
}

.expert-btn a {
  /* background: var(--color-secondary); */
  animation: bgBlink 1.5s infinite;
  color: #fff;
  display: inline-block;
  padding: 5px 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  border-radius: 8px;
}

@keyframes bgBlink {
  0%,
  100% {
    background: var(--color-secondary);
  }
  50% {
    background: var(--color-primary);
  }
}

.testimonial-page {
  margin: 100px 0px 2px;
}
.effect {
  margin: auto;
  box-shadow: 0px 15px 15px -10px rgb(0 0 0 / 48%);
  background-color: #fff;
  border: 2px solid #ffffff;
  border-radius: 20px;
  background-color: #3498db;
  overflow: hidden;
  position: relative;
}

.tab-container {
  padding: 50px 0;
}

.tab-head {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.tab .effect .tab-text {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tab .effect {
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
  text-align: center;
  cursor: pointer;
}
.effect.effect-six h2 {
  text-align: left;
}

.effect.effect-six img {
  transition: all 0.35s;
  transform: translate3d(0px, 0, 0) scale(1.2);
  -webkit-transition: all 0.35s;
  -webkit-transform: translate3d(0px, 0, 0) scale(1.2);
}

.effect.effect-six:hover img {
  opacity: 0.4;
  transform: translate3d(-10px, 0, 0) scale(1.08);
  -webkit-transform: translate3d(-10px, 0, 0) scale(1.08);
  object-fit: cover;
}

.effect.effect-six .icons-block {
  z-index: 1;
  position: absolute;
  bottom: 25px;
  width: 100%;
  left: 0;
  text-align: left;
  padding-left: 0px;
}

.effect.effect-six .icons-block .social-icon-1,
.effect.effect-six .icons-block .social-icon-2,
.effect.effect-six .icons-block .social-icon-3 {
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.effect.effect-six:hover .social-icon-1 {
  opacity: 1;
  transition-delay: 0.3s;
  transition-duration: 0.5s;
}

.effect.effect-six:hover .social-icon-2 {
  opacity: 1;
  transition-delay: 0.4s;
  transition-duration: 0.5s;
}

.effect.effect-six:hover .social-icon-3 {
  opacity: 1;
  transition-delay: 0.5s;
  transition-duration: 0.5s;
}

.effect.effect-six .icons-block i {
  color: rgba(255, 255, 255, 1);
  padding-left: 10px;
  font-size: 1.3rem;
}

.effect.effect-six p {
  max-width: 195px;
  padding: 0 10px;
  margin: 30px;
  text-align: right;
  font-size: 20px;
  line-height: 1.1;
  position: absolute;
  bottom: 0;
  right: 0;
  border-right: 3px solid #fff;
  opacity: 0;
  transition: all 0.35s;
  z-index: 1;
}

.effect.effect-six p a {
  color: #fff;
}

.effect.effect-six:hover p {
  opacity: 1;
}

.effect.effect-six .tab-text:before {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -101%, 0);
  transition: all 0.6s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -101%, 0);
  -webkit-transition: all 0.6s;
}

.effect.effect-six:hover .tab-text:before {
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 101%, 0);
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 101%, 0);
}
.effect.effect-six .tab-text:before {
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  content: "";
}
.custom-row {
  margin-top: 20px;
}
.custom-row .col-md-3 {
  padding: 0px 15px 30px;
}

.breast-sec {
  margin-bottom: 50px;
  position: relative;
}
.breast-right-side h2 {
  font-size: 52px;
  font-family: "Milchella Regular";
  font-weight: 400;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  color: rgb(255, 255, 255);
  padding: 5px 32px 5px 10px;
  line-height: 52px;
  position: relative;
  display: inline-block;
  border-radius: 5px 98px 5px 5px;
}

.breast-right-side h3 {
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  padding-left: 147px;
  margin: 18px 0px 10px;
  position: relative;
  /* border-left: 5px solid var(--color-primary); */
}

.breast-right-side h3::before {
  content: " ";
  position: absolute;
  width: 130px;
  height: 2px;
  background: var(--color-primary);
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.breast-right-side h3::after {
  content: " ";
  position: absolute;
  width: 5px;
  height: 100%;
  background: var(--color-secondary);
  left: 130px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.breast-right-side p {
  font-size: 16px;
  line-height: 30px;
  margin-top: 14px;
}
.ol_styles_home {
  text-align: center;
}
.ol_styles_home li {
  background: linear-gradient(to right, #ffffff00, #e2f0ff, #00000000);
  /* box-shadow: 0px 9px 5px -10px #000; */
  margin-bottom: 16px;
  padding: 13px 0px;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 30px;
}
.ol_styles_home li:nth-child(even) {
  background: linear-gradient(to right, #ffffff00, #e1fffe, #00000000);
}

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

.breast-right-row {
  position: relative;
}

.breast-right-row::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 60%;
  background: var(--color-primary);
  left: 0px;
  right: 0px;
  top: 0px;
  margin: auto;
  bottom: 0px;
}

.doc-head-main h1 {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  margin-left: 5px;
  margin-top: 5px;
}

.tag-extra {
  position: relative;
  margin-bottom: 60px;
}

.tag-extra h1 {
  font-weight: 400;
  font-size: 40px;
  color: var(--color-primary);
}

.videos-row iframe {
  width: 100%;
  height: 230px;
  border: 2px solid #fff;
  box-shadow: 0px 13px 8px -10px #0000004d;
  border-radius: 17px;
  margin-bottom: 30px;
}
