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

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

:root {
  --color-default: #000;
  --color-primary: #444444;
  --color-secondary: #a90129;
}

.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", serif;
}

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: var(--color-secondary);
}

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

.page-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -99;
  background-image: url(../gallery/bg.jpg);
  filter: grayscale(1);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

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

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

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

.header-one {
  position: relative;
}

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

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

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

.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: 6px 8px;
  border-bottom: 1px solid #000;
}

.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: 19px;
  line-height: 17px;
  padding: 5px 10px;
  opacity: 1;
  color: var(--color-default);
  border-right: 1px dashed #0000005c;
}

.main-menu .navigation > li:last-child > a {
  border-right: none;
}

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

/*** 
========================================
    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-primary);
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}

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

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

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

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

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

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

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

.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  padding: 10px 25px;
  color: #ffffff;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

.mobile-menu .navigation li ul li > a {
  font-size: 15px;
  font-weight: 400;
  margin-left: 20px;
  text-transform: capitalize;
  position: relative;
  color: var(--color-default);
}

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

.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 > .custom-width {
  width: 133px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-menu .navigation > li > ul > li: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);
  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;
  padding-top: 10px;
}

.doc-row {
  position: relative;
  height: 635px;
}

.doc-row::before {
  content: " ";
  position: absolute;
  width: 300px;
  height: 600px;
  background: linear-gradient(to top, #a90129f2, #444444eb);
  top: 0px;
  left: 0px;
}

.doc-row::after {
  content: " ";
  position: absolute;
  width: 300px;
  height: 600px;
  background-image: url(../gallery/heart-doc-bg.jpg);
  background-position: center;
  background-size: cover;
  top: 0px;
  left: 0px;
  z-index: -1;
}

.doc-img img {
  border-radius: 50%;
  width: 380px;
}

.doc-head {
  position: relative;
}

.doc-head::before {
  content: " ";
  position: absolute;
  width: 21%;
  height: 2px;
  background: var(--color-secondary);
  top: 12px;
  margin: auto;
  left: -168px;
  z-index: -3;
}

.doc-head::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-secondary);
  top: 8px;
  margin: auto;
  left: -24px;
  border-radius: 50%;
}

.doc-head-inner {
  position: relative;
  left: -10px;
}

.doc-head h3 {
  font-size: 20px;
  color: var(--color-default);
}

.doc-head h2 {
  font-size: 53px;
  color: var(--color-secondary);
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Marcellus", serif;
}

.doc-head h4 {
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
}

.doc-head h1 {
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  border-top: 1px solid;
  display: inline-block;
  margin-top: 7px;
  padding-top: 7px;
}

.doc-img {
  margin-top: 30px;
  position: relative;
  z-index: 1;
  left: -28px;
}

.doc-img::before {
  content: " ";
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid var(--color-secondary);
  border-radius: 50%;
  left: 7px;
  top: -5px;
}

.doc-btm-content {
  padding-right: 180px;
  padding-top: 20px;
}

.doc-btm-content p {
  line-height: 30px;
  margin-bottom: 10px;
}

.doc-btm-content a {
  background: var(--color-teritary);
  color: #fff;
  padding: 2px 10px 4px;
}

.doc-side {
  position: relative;
  text-align: center;
  margin-top: 18px;
  left: -96px;
  width: 348px;
}

.doc-side-head h2 {
  background: var(--color-secondary);
  color: #fff;
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  padding: 4px 15px 4px;
  border-radius: 34px;
}

.doc-side-head {
  position: relative;
  margin-bottom: 10px;
}

.doc-side-head::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--color-secondary);
  z-index: -1;
  left: 0px;
  right: 0px;
  margin: auto;
  top: 0px;
  bottom: 0px;
}

.expert-block {
  position: relative;
}

.areas-expert {
  box-shadow: 0px 14px 0px -10px #00000014;
  background: #f9f4f5;
  width: 368px;
}

.areas-expert li {
  padding: 8px 18px;
  font-size: 15px;
  border-bottom: 1px solid #00000021;
  font-weight: 500;
}

.areas-expert li:last-child {
  border-bottom: 0px;
}

.doc-row-img {
  position: absolute;
  bottom: 0px;
  top: 276px;
  margin: auto;
  height: fit-content;
  left: 11px;
  right: 0px;
  width: 280px;
}

.doc-row-img img {
  width: 100px;
}

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

.doc-row-inner::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 52%;
  background: #ffffff40;
  left: 38px;
  right: 0px;
  top: 0px;
  margin: auto;
  z-index: 1;
}

.doc-row-inner::after {
  content: " ";
  position: absolute;
  width: 80%;
  height: 1px;
  background: #ffffff40;
  left: 38px;
  right: 0px;
  bottom: -60px;
  margin: auto;
  z-index: 1;
  top: 0px;
}

.doc-row-img p {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 38px;
  line-height: 46px;
  text-transform: uppercase;
  opacity: 0.2;
}

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

.robotic-sec::before {
  content: " ";
  position: absolute;
  width: 600px;
  height: 100%;
  background: var(--color-primary);
  right: 0px;
  z-index: -1;
}

.robotic-sec::after {
  content: " ";
  position: absolute;
  width: 600px;
  height: 100%;
  background-image: url(../gallery/robotic-imgs/robotic-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: brightness(0) invert(1);
  right: 0px;
  z-index: -1;
  top: 0px;
  opacity: 0.08;
  animation: upDown 2s infinite ease-in-out;
}

@keyframes upDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.robotic-left {
  position: relative;
  margin: 45px 0px;
}

.robotic-head {
  position: relative;
  margin-bottom: 10px;
}

.robotic-head h2 {
  font-size: 40px;
  color: var(--color-default);
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
}

.robotic-head h2::before {
  content: " ";
  position: absolute;
  width: 66%;
  height: 2px;
  background: var(--color-default);
  left: 0px;
  bottom: -10px;
}

.robotic-head h2 span {
  background: var(--color-secondary);
  color: #fff;
  font-size: 45px;
  padding: 8px 10px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Marcellus", serif;
  position: relative;
}

.robotic-head h2 span::before {
  content: " ";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid var(--color-primary);
  right: -20px;
  top: -18px;
  z-index: -1;
}

.robotic-head h3 {
  font-size: 40px;
  color: var(--color-default);
  font-weight: 300;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 20px;
}

.robotic-head h3 span {
  background: var(--color-primary);
  color: #fff;
  font-size: 45px;
  padding: 8px 10px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Marcellus", serif;
  position: relative;
}

.robotic-matter p {
  font-size: 15px;
  line-height: 28px;
}

.robotic-matter h4 {
  font-size: 20px;
  border-bottom: 2px solid;
  display: inline-block;
  margin-bottom: 10px;
  padding-bottom: 3px;
}

.ol_styles {
  position: relative;
}

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

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

.robotic-circle {
  position: relative;
  width: 228px;
  height: 228px;
  margin: 0px auto -20px;
  border-radius: 50%;
  right: 55px;
  box-shadow: 8px 0px 0px 0px #ffd7e1;
  overflow: hidden;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.458));
  cursor: pointer;
}

.robotic-circle.robotic-circle1 {
  right: -95px;
}

.robotic-circle img {
  /* filter: grayscale(1); */
  transition: all 300ms ease;
}

.robotic-circle:hover img {
  filter: grayscale(0);
  transform: scale(1.5);
}

.robotic-quote {
  position: absolute;
  color: #fff;
  top: 0px;
  bottom: 0px;
  right: 185px;
  margin: auto;
  height: fit-content;
  text-align: center;
}
.robotic-quote h2 {
  transform: rotate(90deg);
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 300;
  font-family: "Marcellus", serif;
  line-height: 60px;
  opacity: 0.5;
  right: -146px;
  position: relative;
}

.treatment-sec {
  position: relative;
  margin-bottom: 10px;
  padding: 50px 0px 20px;
}

.treatment-sec::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 66%;
  background: #a901290a;
  top: 89px;
  z-index: -1;
  transform: skewY(-10deg);
}

.treatment-row .col-md-auto:nth-child(3) {
  margin-top: 150px;
}

.treatment-row .col-md-auto:nth-child(2) {
  margin-top: 100px;
}

.treatment-head {
  margin-top: 60px;
  width: 320px;
  height: 375px;
}

.treatment-head-inner {
  /* position: absolute;
  width: 404px;
  left: -55px; */
  position: relative;
  padding-top: 30px;
}

.treatment-head h2 {
  font-size: 40px;
  font-family: "Marcellus", serif;
  font-weight: 300;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--color-secondary);
  display: inline-block;
}

.treatment-head p {
  font-size: 15px;
}

.treatment-head-inner img {
  width: 280px;
  opacity: 0.8;
}

.treatment-sec-head {
  position: absolute;
  right: 118px;
  top: 0px;
}

.treatment-sec-head h2 {
  font-size: 66px;
  font-family: "Marcellus", serif;
  font-weight: 300;
  color: var(--color-secondary);
  margin-bottom: 10px;
  padding-bottom: 5px;
  display: inline-block;
}

.treatment-row {
  position: relative;
}

.treatment-row::before {
  content: " ";
  position: absolute;
  width: 28%;
  height: 2px;
  background: var(--color-primary);
  top: 42px;
  left: 175px;
  z-index: -1;
}

.treatment-row::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  top: 38px;
  left: -150px;
  right: 0px;
  margin: auto;
  z-index: -1;
}

.treatment-block {
  position: relative;
  background: var(--color-primary);
  width: 320px;
  height: 375px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;
  transition: all 300ms ease;
  z-index: 1;
  box-shadow: 0px 0px 6px #00000099;
}

.treatment-block::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #00000060, #ffffff00);
  z-index: 1;
  top: 0px;
  left: 0px;
}

.treatment-block::after {
  content: " ";
  position: absolute;
  width: 96%;
  height: 96%;
  border: 2px solid #ffffff6b;
  z-index: 1;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: 0px;
  border-radius: 8px;
}

.treatment-block img {
  transition: all 300ms ease;
  right: 0px;
  position: relative;
}

.treatment-block:hover img {
  transform: scale(1.5);
  right: 40px;
}

/* Overlay */
.treatment-overlay {
  position: absolute;
  inset: 0;
  background: rgb(169 1 41 / 50%);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 5;
}

.treatment-overlay h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 8px 5px 5px;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 1px solid;
  margin-bottom: 10px;
}

.treatment-matter {
  position: absolute;
  bottom: 0px;
  padding: 0px 23px 30px;
}

.treatment-matter p {
  color: #d8d8d8;
  font-size: 14px;
  margin-bottom: 8px;
}

.treatment-matter a {
  color: #ffffffb1;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid;
  padding: 2px 10px;
}

.treatment-block:hover .treatment-overlay {
  opacity: 1;
  transform: translateY(0);
}

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

.testimonial-right {
  position: relative;
}

.testimonial-inner-circle {
  position: relative;
  width: 600px;
  height: 600px;
  margin: auto;
  text-align: center;
}

.testimonial-box {
  position: relative;
  padding: 125px 130px 86px;
}

.testimonial-head h2 {
  font-size: 46px;
  font-family: "Marcellus", serif;
  font-weight: 300;
  color: var(--color-secondary);
}

.testimonial-head p {
  font-size: 14px;
  padding: 0px 50px;
}

.testimonial-bg {
  position: absolute;
  bottom: 55px;
  right: 0px;
  left: 0px;
  margin: auto;
  z-index: -1;
}

.testimonial-bg img {
  width: 400px;
}

.testimonial-box h2 {
  font-size: 20px;
  color: var(--color-secondary);
  text-transform: uppercase;
}

.testimonial-box p {
  font-size: 14px;
}

.testimonials-quote {
  position: relative;
  background: var(--color-secondary);
  margin: -78px auto 0px;
  width: 558px;
  border-radius: 10px;
}

.testimonials-quote::before {
  content: " ";
  position: absolute;
  width: 40%;
  height: 1px;
  background: #fff;
  top: 12px;
  left: 25px;
}

.testimonials-quote::after {
  content: " ";
  position: absolute;
  width: 40%;
  height: 1px;
  background: #fff;
  bottom: 12px;
  right: 25px;
}

.testimonials-quote h2 {
  font-size: 21px;
  padding: 20px 40px;
  color: #fff;
  font-weight: 400;
  line-height: 30px;
}

.call-us {
  position: fixed;
  bottom: 20px;
  left: 20px;
  line-height: 76px;
  width: 80px;
  text-align: center;
  height: 80px;
  cursor: pointer;
  border-radius: 50%;
  background: var(--color-secondary);
  animation: bgBlink 1s infinite;
  z-index: 1;
}

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

  50% {
    background-color: var(--color-primary);
  }

  100% {
    background-color: var(--color-secondary);
  }
}

.call-us img {
  width: 44px;
  filter: brightness(0) invert(1);
}

.modal-dialog {
  max-width: 538px;
  margin: 4.75rem auto;
  background: #fff;
}

.pp-header.modal-header {
  display: block;
  padding: 0;
  border: none;
}

button.pp-close.close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  opacity: 1;
  font-size: 26px;
  padding: 0 6px 2px;
  font-weight: 400;
  color: #fff;
  background: var(--color-secondary);
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 0px;
}

.modal-content::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/popup-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: brightness(0.2) grayscale(1);
  clip-path: polygon(0 0, 100% 9%, 100% 90%, 0 100%);
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  transform: translateY(-100px);
  transition: transform 0.7s ease-out;
}

.modal.show .modal-content::before {
  transform: translateY(0);
}

.modal-inner-content {
  position: relative;
  padding: 68px 20px;
  color: #fff;
}

.modal-inner-content h2 {
  font-size: 30px;
  font-family: "Marcellus", serif;
  font-weight: 300;
  margin-bottom: 8px;
  line-height: 40px;
}

.modal-inner-content p {
  font-weight: 400;
  font-size: 14px;
}

.modal-inner-content > * {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 1s ease;
}

.modal.show .modal-inner-content > * {
  opacity: 1;
  transform: translateY(0);
}

.modal.show .modal-inner-content > *:nth-child(1) {
  transition-delay: 0.1s;
}

.modal.show .modal-inner-content > *:nth-child(2) {
  transition-delay: 0.3s;
}

.modal.show .modal-inner-content > *:nth-child(3) {
  transition-delay: 0.5s;
}

.modal.show .modal-inner-content > *:nth-child(4) {
  transition-delay: 0.7s;
}

.btn-style-one {
  margin-top: 25px;
  background: var(--color-secondary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

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

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

.appointment-form .form-control {
  color: #ffffffab;
  border-bottom: none;
  padding: 11px 45px;
  font-size: 15px;
  border-bottom: 1px solid #ffffff8d;
  border-radius: 0px;
}

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

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

.article-content h2 {
  color: var(--color-default);
  font-size: 20px;
  margin-top: 10px;
}

.article-content p {
  font-size: 13px;
  margin-bottom: 10px;
}

.article-content a {
  background: var(--color-secondary);
  color: #fff;
  padding: 4px 10px;
  font-size: 14px;
  border-radius: 30px;
}

.article-img img {
  width: 300px;
  margin: auto;
}

.article-content {
  position: relative;
  margin: 0px 20px;
}

.article-block {
  position: relative;
}

.article-block::before {
  content: " ";
  position: absolute;
  width: 98%;
  height: 100%;
  background: linear-gradient(to top, #ffecf182, #ffffff00);
  left: 0px;
  top: 16px;
  z-index: -1;
  right: 0px;
  margin: auto;
  border-radius: 21px;
}

.articles-head p {
  font-size: 15px;
}

.articles-head h2 {
  font-size: 46px;
  font-family: "Marcellus", serif;
  font-weight: 300;
  color: var(--color-default);
}

.articles-head {
  position: relative;
  margin-bottom: 30px;
}

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

.subscribe-block::after {
  content: "";
  position: absolute;
  height: 82%;
  width: 102%;
  top: 0;
  left: -12px;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--color-secondary);
  z-index: -1;
}

.subscribe-block {
  position: relative;
  padding: 40px 38px;
  background-color: var(--color-primary);
  border-radius: 10px;
}

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

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

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

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

.subscribe-input .form-control {
  height: 58px;
  background-color: transparent;
  border: 1px solid #e4e4e4;
  color: #fff;
}

.subscribe-input .btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--color-secondary);
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-sec {
  position: relative;
}

.footer-sec::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff3f5;
  clip-path: polygon(140px 261px, 67% 90.94%, 67% 90.94%, 96.06% 67.27%, 100% 100%, 0px 100%);
  top: 0;
  left: 0;
  z-index: -1;
}

.footer-sec::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #f7f7f7;
  clip-path: polygon(74.93% 27.47%, 0% 78%, 0% 99%, 100% 100%);
  top: 0;
  right: 0;
  z-index: -2;
}

.footer-sec .widget-title {
  position: relative;
  font-size: 27px;
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 7px;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-sec .widget-title:after,
.footer-sec .widget-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background-color: var(--color-default);
  border-radius: 3px;
}

.footer-sec .widget-title::after {
  left: 75px;
  width: 8px;

  background-color: var(--color-default);
}

.user-links a:before {
  position: absolute;
  content: "\f07e";
  font-family: "FontAwesome";
  font-size: 13px;
  font-weight: 200;
  color: var(--color-secondary);
  left: 0px;
  top: -4px;
  transition: all 500ms ease;
}

.user-links a:hover {
  color: var(--color-secondary);
}

.user-links a {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  padding-left: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--color-default);
  line-height: 30px;
}

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

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

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

._addre_bar {
  padding-bottom: 5px;

  display: inline-block;
  padding-top: 5px;
}

._addre_bar p .fa {
  color: var(--color-secondary);
}

.footer-widget__social {
  display: inline-block;
  border-radius: 35px;
  margin-top: 16px;
}

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

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

.footer-widget__social li a img{
  width: 20px;
}

.footer-sec .bottom-footer p {
  margin-bottom: 0px;
}

.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-secondary);
  font-weight: 500;
}

.bottom-footer {
  margin-top: 45px;
}

.footer-insta {
  position: relative;
  border: 1px solid var(--color-primary) !important;
  padding: 8px !important;
}

.footer-insta iframe {
  width: 100% !important;
  min-width: 100% !important;
  height: 240px !important;
  margin-bottom: 0px !important;
  box-shadow: 0px 0px 5px #00000038 !important;
}

.services-widget {
  position: relative;
  right: -40px;
}

.footer-about {
  position: relative;
  margin-bottom: 20px;
}

.footer-doc-bg {
  position: absolute;
  right: 0px;
  z-index: -1;
  opacity: 0.2;
  filter: grayscale(1);
  top: -142px;
  animation: upDown 2s infinite ease-in-out;
}

.testimonial-img {
  animation: upDown 2s infinite ease-in-out;
  position: relative;
}

/* Tooltip box */
.appointment-tooltip {
  position: absolute;
  left: 0px;
  bottom: 90px;
  width: 220px;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 15px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;
  transition: all 0.4s ease;
  line-height: 32px;
}

.appointment-tooltip p {
  margin-bottom: 0px;
}

/* Show tooltip */
.appointment-tooltip.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.tooltip-close {
  position: absolute;
  top: -10px;
  right: 0px;
  font-size: 18px;
  cursor: pointer;
  height: 20px;
  line-height: 20px;
  background: var(--color-secondary);
  color: #fff;
  width: 20px;
  border-radius: 50%;
}

.top-social {
  position: absolute;
  right: 34px;
  top: 25px;
  z-index: 1;
}

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

.top-social ul li a {
  width: 33px;
  height: 33px;
  text-align: center;
  background: #fffafb;
  color: var(--color-secondary);
  line-height: 33px;
  border-radius: 5px;
  border: 1px solid #e1e1e1;
  display: block;
}

.top-numb {
  position: absolute;
  z-index: 1;
  right: 205px;
  top: 30px;
}

.top-numb a {
  background: var(--color-secondary);
  color: #fff;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 30px;
}

.footer-ad {
  position: relative;
  margin-bottom: 50px;
}

.footer-ad .container {
  max-width: 1300px;
}

.footer-ad-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 100px 50px;
}

.footer-ad-inner h2 {
  text-align: center;
  color: #fff;
  font-weight: 300;
  font-size: 34px;
  line-height: 45px;
  position: relative;
}

.footer-ad-inner h2::before {
  content: " ";
  position: absolute;
  width: 38%;
  height: 1px;
  background: #fff;
  bottom: -18px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.footer-ad-inner::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/footer-ad.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -2;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
}

.footer-ad-inner::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #000000, #a90129ad, #a901299e);
  z-index: -1;
  opacity: 0.9;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
}

.top-wrap1 {
  position: relative;
}

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

.inner-section1 {
  position: relative;
  padding: 0px 0 98px;
}
.serv-matter {
  color: #202020;
}
.serv-matter p {
  text-align: justify;
  line-height: 30px;
  margin-bottom: 15px;
  font-size: 15px;
}
.serv-matter strong {
  font-weight: 600;
}
.serv-matter h2 {
  padding: 5px 0px;
  color: #000000;
  font-size: 20px;
  margin: 15px 0px 6px;
  font-weight: 500;
  border-left: 4px solid #a90129;
  padding-left: 8px;
  background: linear-gradient(45deg, #a901290d, transparent);
  display: inline-block;
  text-transform: uppercase;
}
.serv-matter h3 {
  color: var(--color-secondary);
  font-size: 18px;
  margin: 22px 0px 8px;
}

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

.inner-serv-img {
  text-align: center;
  position: relative;
}
.inner-serv-img img {
  box-shadow: 0px 0px 14px #00000021;
  border-radius: 8px;
  border: 1px solid #fdd9e2;
  padding: 6px;
}

.breadcrumb {
  position: relative;
  padding: 138px 0 128px;
  margin-bottom: 0;
  z-index: 2;
  background: transparent;
  display: block;
  overflow: hidden;
}

.breadcrumb::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #a901290a;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 44%);
  top: 0px;
  z-index: -1;
}

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

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

.bread-inner {
  position: relative;
  text-align: right;
}

.breadcrumb h1 {
  color: #000;
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 11px;
  padding: 0px 10px;
  position: relative;
}

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

.breadcrumb ul {
  position: relative;
  display: inline-block;
  background: var(--color-secondary);
  padding: 4px 8px;
  box-shadow: 0px 11px 8px -10px #0000007a;
}

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

.ol_styles1 {
  position: relative;
}

.ol_styles1 li {
  position: relative;
  display: block;
  margin-bottom: 4px;
  padding-left: 15px;
  font-size: 15px;
  line-height: 30px;
  text-align: justify;
}

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

.about-doc-img img {
  border: 8px solid #fff;
  box-shadow: 0px 18px 14px -10px #00000052;
}

.about-doc-name h2 {
  font-size: 40px !important;
  text-transform: uppercase !important;
  color: var(--color-secondary) !important;
  margin: 0px !important;
}

.about-doc-name h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
}

.about-doc-name h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  display: inline-block;
}

.main-timeline {
  position: relative;
}
.main-timeline:after {
  content: "";
  display: block;
  clear: both;
}
.main-timeline:before {
  content: "";
  background-color: #000;
  height: 100%;
  width: 4px;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: 0;
}
.main-timeline .timeline {
  width: 50%;
  padding: 18px 0px 18px 25px;
  margin: 0 2px 0 0;
  float: left;
  position: relative;
}
.main-timeline .timeline::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #a901290a, #ffffff00);
  z-index: -1;
  left: 0px;
  top: 0px;
  border-radius: 28px 0px 0px 0px;
}
.main-timeline .timeline-content {
  color: #777;
  padding: 0 130px 0 0;
  display: block;
  position: relative;
}
.main-timeline .timeline-content:hover {
  text-decoration: none;
}
.main-timeline .timeline-content:before {
  content: "";
  background: #fff;
  width: 20px;
  height: 20px;
  border: 3px solid #000;
  border-radius: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: -10px;
  top: 50%;
}
.main-timeline .timeline-icon {
  color: #fff;
  background-color: var(--color-primary);
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  line-height: 80px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 10px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 11px;
  z-index: 1;
}
.main-timeline .timeline-icon i {
  line-height: inherit;
}
.main-timeline .title {
  color: var(--color-secondary);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 5px;
}
.main-timeline .description {
  font-size: 15px;
  line-height: 26px;
  margin: 0;
  color: var(--color-default);
}
.main-timeline .timeline:nth-child(even) {
  margin: 0 0 0 2px;
  float: right;
  padding: 18px 25px 18px 0px;
}
.main-timeline .timeline:nth-child(even)::before {
  background: linear-gradient(to left, #a901290a, #ffffff00);
  z-index: -1;
  right: 0px;
  top: 0px;
  border-radius: 0px 28px 0px 0px;
}
.main-timeline .timeline:nth-child(even) .timeline-content {
  padding: 0 0 0 130px;
}
.main-timeline .timeline:nth-child(even) .timeline-content:before {
  right: auto;
  left: -10px;
}
.main-timeline .timeline:nth-child(even) .timeline-icon {
  right: auto;
  left: 11px;
}
@media screen and (max-width: 767px) {
  .main-timeline:before {
    transform: translateX(0);
    left: 23px;
  }
  .main-timeline .timeline,
  .main-timeline .timeline:nth-child(even) {
    width: 100%;
    margin: 0 0 20px;
  }
  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 0 0 0 150px;
  }
  .main-timeline .timeline-content:before,
  .main-timeline .timeline:nth-child(even) .timeline-content:before {
    left: 0;
  }
  .main-timeline .timeline-icon,
  .main-timeline .timeline:nth-child(even) .timeline-icon {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 479px) {
  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 120px 0 0 25px;
  }
  .main-timeline .timeline-content:before,
  .main-timeline .timeline:nth-child(even) .timeline-content:before {
    transform: translateY(0);
    top: 43px;
  }
  .main-timeline .timeline-icon,
  .main-timeline .timeline:nth-child(even) .timeline-icon {
    transform: translateY(0);
    top: 0;
  }
}

.contact-pg-map {
  position: relative;
}

.contact-pg-map iframe {
  width: 100%;
  height: 555px;
  border: 8px solid #fff;
  box-shadow: 0px 0px 14px #00000036;
}

.contact-form {
  position: relative;
  background: #fff;
  padding: 24px 35px 22px;
  box-shadow: 0px 0px 10px #0000002b;
  border-radius: 8px;
  margin-top: 15px;
}
.contact-form h2 {
  text-transform: uppercase;
  color: var(--color-secondary);
  display: inline-block;
  padding-bottom: 2px;
  margin-bottom: 18px;
}

.contact-form .form-control {
  background: #f3f3f3;
  text-transform: capitalize;
}

.contact-form textarea {
  height: 80px;
}

.contact-form .btn {
  color: #fff;
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  position: relative;
  top: -8px;
  text-transform: uppercase;
}

.loc-box i {
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  color: #fff;
  line-height: 44px;
  text-align: center;
  border-radius: 8px;
  font-size: 20px;
}

.loc-box1 p {
  margin: 0px 30px;
}

.loc-box1 p span {
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  font-size: 22px;
  color: #a90129;
}
.loc-box {
  position: relative;
  margin-bottom: 30px;
}

.loc-box p {
  margin-top: 8px;
  font-size: 18px;
  line-height: 31px;
}

.contact-loc-box .col-md-6:nth-child(2)::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 80%;
  background: var(--color-primary);
  right: 0px;
  top: 0px;
  margin: auto;
}

.contact-loc-box .col-md-12:nth-child(1)::before {
  content: " ";
  position: absolute;
  width: 80%;
  height: 1px;
  background: var(--color-primary);
  right: 0px;
  bottom: 18px;
  left: 0px;
  margin: auto;
}
.test-ip-img img {
  width: 300px;
}

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

.about-page p {
  font-size: 15px;
  line-height: 30px;
  text-align: justify;
}

.about-doc-name {
  position: relative;
  border-left: 5px solid var(--color-primary);
  padding: 10px 10px 10px 20px;
  background: linear-gradient(45deg, #a901290d, #ffffff00);
  margin-bottom: 20px;
}

.about-page h2 {
  font-size: 20px;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin: 15px 0px 10px;
}

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

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

.ol_styles1 .ul_styles2 li:before {
  content: " ";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-default);
  top: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
}
