@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&display=swap");
/* font-family: "Corinthia", cursive; */

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

.mobile-view {
  display: none;
}

:root {
  --color-default: #292929;
  --color-primary: #d7254a;
  --color-secondary: #08172a;
}

.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: "Noto Sans", sans-serif;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: 600;
  margin: 0px;
  background: none;
  line-height: 1.2em;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol,
li {
  margin: 0;
  padding: 0;
}

.main-menu .navigation > li .active {
  color: var(--color-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: absolute;
  width: 100%;
  height: 100%;
  z-index: -99;
  background-image: url(../gallery/bg.png);
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: 81%;
  opacity: 0.5;
}

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

.top-border {
  width: 60%;
  height: 2px;
  position: relative;
  margin: auto;
  background: var(--color-secondary);
  z-index: 99;
}
.top-border::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: var(--color-secondary);
  top: -4px;
  transform: rotate(45deg);
}

.top-border::after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  right: 0;
  top: -3px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-menu .navigation > li > .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: 354px;
  opacity: 0;
  z-index: 100;
  background-color: #fff;
  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 #00000021;
}

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

.main-menu .navigation > li > ul > li > a:hover {
  background: var(--color-primary);
  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: #000;
  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.jpeg);
}

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

.why-choose-sec {
  position: relative;
  margin-top: -45px;
}

.why-main-block {
  position: relative;
  margin-top: 30px;
  border-radius: 30px;
}

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

.why-main-quote h2 {
  font-size: 35px;
  font-family: "Cinzel", serif;
  font-weight: 300;
  text-transform: uppercase;
  padding-top: 38px;
  position: relative;
  z-index: 1;
}
.why-main-quote h2::before {
  content: " ";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-secondary);
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  transform: rotate(45deg);
  border-radius: 2px;
  border: 2px solid var(--color-primary);
}
.why-main-quote h2::after {
  content: " ";
  position: absolute;
  width: 60%;
  height: 1px;
  background: var(--color-secondary);
  top: 5px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: -1;
}

.why-main-matter {
  position: relative;
  margin: 8px 50px 0px;
}

.why-main-matter p {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0px;
}

.stats-block {
  background: linear-gradient(45deg, var(--color-secondary) 26%, var(--color-primary));
  padding: 40px 16px;
  text-align: center;
  height: 192px;
  width: 192px;
  border-radius: 50%;
  margin: auto;
  border: 4px solid #f3d3d9;
  box-shadow: 0px 0px 8px #00000029;
}

.stats-block h3 {
  font-family: "Cinzel", serif;
  color: #fff;
  font-size: 53px;
  font-weight: 300;
  line-height: 54px;
}

.stats-block p {
  margin-bottom: 0px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 23px;
  color: #fff;
}

.stats-row {
  position: relative;
}

.doc-blk {
  position: relative;
  margin: 10px;
}

.doc-img img {
  width: 300px;
  border-radius: 150px 150px 0px 0px;
  box-shadow: -5px 3px 10px 0px #0000007a;
  border: 2px solid #fff;
}

/* .doc-img::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border: 1px solid var(--color-primary);
  left: 5px;
  z-index: 1;
  border-radius: 150px 150px 0px 0px;
  top: -5px;
} */

.doc-txt2 {
  position: absolute;
  right: -15px;
  top: 85px;
}

.doc-txt2 h2 {
  font-size: 19px;
  text-transform: uppercase;
  color: #6030951c;
  display: block;
  writing-mode: vertical-lr;
}

.doc-img {
  z-index: 1;
  position: relative;
  margin: 20px;
  margin-bottom: 10px;
}

.doc-txt h2 {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 25px;
}

.doc-txt {
  position: relative;
  margin-top: 0px;
  padding: 14px 0px 0px;
}

.doc-txt::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 93%;
  background: var(--color-secondary);
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: -2;
  border-radius: 5px;
}

.doc-txt::after {
  content: " ";
  position: absolute;
  width: 97%;
  height: 88%;
  border: 1px solid #ffffff1a;
  top: 4px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: -1;
  border-radius: 5px;
}

.doc-txt .vp {
  display: block;
}

.doc-txt a {
  display: inline-block;
  background: var(--color-primary);
  border-radius: 25px;
  padding: 0 10px;
  margin-top: 10px;
  font-size: 15px;
  color: #fff;
}

.doc-txt p {
  margin-bottom: 0px;
  color: #fff;
  font-size: 15px;
  line-height: 23px;
  margin-top: 5px;
  font-weight: 300;
  padding: 0px 10px;
}

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

.exp-head-txt {
  padding: 25px 0px;
  position: relative;
}
.exp-head-txt h2 {
  color: var(--color-secondary);
  font-size: 41px;
  text-align: center;
  font-weight: 400;
  padding: 15px 0;
  letter-spacing: -1px;
}
.exp-head-txt h2::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to left, #fff0, #df254a12, #fff0);
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.abt-shape {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
}
.abt-shape::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background-color: var(--color-primary);
  top: -9px;
  left: 0;
}
.about-adtxt {
  position: relative;
  padding: 35px;
}
.about-adtxt h2 {
  color: var(--color-secondary);
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 40px;
  top: 16px;
}

.about-adtxt::before {
  content: "";
  position: absolute;
  height: 100px;
  width: 90px;
  background-image: url(../gallery/lq.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
  left: 0;
  top: 17px;
}
.hrate-img {
  position: relative;
  margin-bottom: 20px;
}

.hrate-img img {
  width: 350px;
}

.emg-blk {
  position: relative;
}

.emg-blk h3 {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 25px;
}

.emg-blk h3 span {
  background-color: var(--color-primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 25px;
  position: relative;
  margin-left: 10px;
  font-size: 27px;
  font-weight: 400;
}

.emg-blk h3 span::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 21px solid #ffffff00;
  border-right: 35px solid var(--color-primary);
  border-bottom: -1px solid #ffffff00;
  left: -18px;
  top: 20px;
  z-index: -1;
}

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

.abt-matter {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

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

.serv-sec .container {
  max-width: 1230px;
}

/* .serv-sec::before {
  content: " ";
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(45deg, #ffffff00, #d7254a);
  transform: rotate(45deg);
  right: 0px;
  z-index: -2;
  border-radius: 20px;
  opacity: 0.15;
}
.serv-sec::after {
  content: " ";
  position: absolute;
  width: 500px;
  height: 500px;
  background-image: url(../gallery/serv-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 0px;
  right: 0px;
  z-index: -2;
  opacity: 0.1;
} */

.serv-heading {
  position: relative;
  height: 600px;
}

.serv-heading::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-secondary), var(--color-primary));
  border-radius: 0px 48px;
  z-index: -1;
  top: 0px;
  left: 0px;
  margin: auto;
  opacity: 0.9;
}

.serv-heading::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/serv-sec.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(1);
  border-radius: 0px 48px;
  z-index: -2;
  top: 0px;
  left: 0px;
  margin: auto;
}

.counter {
  color: #fff;
  text-align: center;
  padding: 7px 0 10px;
  margin-top: 150px;
  margin-bottom: 150px;
  position: relative;
  top: 0px;
}

.counter::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/serv-in-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 228px;
  filter: brightness(0);
  left: 0;
  top: 8px;
  opacity: 0.3;
}
.counter a {
  background: var(--color-secondary);
  color: #fff;
  padding: 2px 10px;
  position: absolute;
  opacity: 0;
  transition: all ease-in-out 0.7s;
  width: 110px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  z-index: 1;
}
.services-section .serv-row {
  position: relative;
}

.counter .counter-content {
  color: #000;
  background-color: #fff;
  height: 200px;
  width: 200px;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow:
    0 0 5px rgb(0 0 0 / 39%),
    0 0 0 6px #fff,
    0 0 7px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 2px solid #fff;
}

.counter .counter-content:before,
.counter .counter-content:after {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  position: absolute;
  left: 7px;
  right: 7px;
  top: 7px;
  bottom: 7px;
  z-index: -1;
}
.counter h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  text-transform: capitalize;
  color: var(--color-secondary);
  background: linear-gradient(45deg, #fbeef1, #ffffff00);
  padding: 4px 5px;
}
.counter .counter-icon {
  color: #fff;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  font-size: 25px;
  line-height: 35px;
  height: 35px;
  width: 35px;
  margin: -20px auto 0;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  animation: pulsee 1.5s ease-out infinite;
}
.counter .counter-icon i {
  line-height: inherit;
}

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

@keyframes pulsee {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.726);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.services-section .serv-row {
  padding-top: 55px;
}

.serv-scroll .owl-dots {
  position: relative;
  left: 0;
  bottom: 98px;
  width: 100%;
  text-align: center;
}
.serv-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 5px;
  opacity: 1;
  margin: 0px 2px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  background: var(--color-primary);
}
.serv-scroll .owl-dot:hover,
.serv-scroll .owl-dot.active {
  opacity: 1;
  background: var(--color-secondary);
}

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

.serv-head-main {
  position: absolute;
  top: 30px;
  bottom: 0px;
  margin: auto;
  width: 320px;
  left: 0px;
  right: 0px;
  margin: auto;
  height: fit-content;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.serv-head-main h2 {
  font-size: 45px;
  font-family: Cinzel, serif;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 38px;
  padding: 8px 0px;
}

.serv-head-main h2::before {
  content: " ";
  position: absolute;
  width: 80%;
  height: 100%;
  background: linear-gradient(to right, #ffffff00, #ffffff2e, #ffffff00);
  bottom: 3px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.serv-head-main p {
  font-weight: 300;
  font-size: 16px;
  margin-top: 8px;
  background: linear-gradient(to right, #ffffff40, #ffffff00, #ffffff40);
  padding: 2px 0px;
  border-radius: 2px;
}

.serv-ul-main {
  position: absolute;
  top: 0px;
  width: 1280px;
}

.serv-inner-ul.left-ul {
  text-align: right;
}

.serv-inner-ul.right-ul {
  text-align: left;
}
.serv-inner-ul.right-ul li:nth-child(1) {
  right: 59px;
  position: relative;
  padding: 24px 118px;
  top: 16px;
}
.serv-inner-ul.right-ul li:nth-child(2) {
  right: 63px;
  position: relative;
  padding: 24px 123px;
  top: 28px;
}

.serv-inner-ul.right-ul li:nth-child(3) {
  right: 44px;
  position: relative;
  padding: 24px 102px;
  top: 42px;
}

.serv-inner-ul.right-ul li:nth-child(4) {
  right: 45px;
  position: relative;
  padding: 24px 102px;
  top: 74px;
}

.serv-inner-ul.right-ul li:nth-child(5) {
  right: 44px;
  position: relative;
  padding: 24px 102px;
  top: 89px;
}

.serv-inner-ul.left-ul li:nth-child(1) {
  left: -16px;
  position: relative;
  padding: 24px 120px;
  top: -14px;
}

.serv-inner-ul.left-ul li:nth-child(2) {
  left: -8px;
  position: relative;
  padding: 24px 126px;
  top: -24px;
}

.serv-inner-ul.left-ul li:nth-child(3) {
  left: -30px;
  position: relative;
  padding: 24px 102px;
  top: -14px;
}

.serv-inner-ul.left-ul li:nth-child(4) {
  left: -21px;
  position: relative;
  padding: 24px 115px;
  top: 4px;
}
.serv-inner-ul.left-ul li:nth-child(5) {
  left: 7px;
  position: relative;
  padding: 24px 142px;
  top: 33px;
}
.serv-inner-ul.left-ul li h2 {
  font-weight: 500;
  font-size: 20px;
  color: var(--color-secondary);
}

.serv-inner-ul.left-ul li p {
  font-size: 14px;
  line-height: 22px;
  margin-top: 5px;
  padding-left: 126px;
  margin-bottom: 0px;
}

.serv-inner-ul.right-ul li h2 {
  font-weight: 500;
  font-size: 20px;
  color: var(--color-secondary);
}

.serv-inner-ul.right-ul li p {
  font-size: 14px;
  line-height: 22px;
  margin-top: 5px;
  padding-right: 126px;
  margin-bottom: 0px;
}

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

.extra-head {
  position: relative;
}

.extra-head h2 {
  color: var(--color-secondary);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 42px;
}

.extra-head h2 span {
  display: block;
  background: var(--color-primary);
  color: #fff;
  padding: 0px 15px 3px;
  font-size: 33px;
  text-transform: capitalize;
  font-weight: 400;
}

.sign-sec {
  font-family: "Corinthia", cursive;
  font-size: 40px;
  top: 48px;
  position: relative;
  right: -156px;
  color: var(--color-primary);
}

.footer_section {
  position: relative;
}
.footer_section .footer_add_row {
  position: relative;
}
.footer_add_row .col-md-4:nth-child(1),
.footer_add_row .col-md-4:nth-child(2) {
  border-right: 1px solid #fff;
}
.address_info_sec {
  position: relative;
  text-align: center;
}
.address_info_sec i {
  position: relative;
  left: 0px;

  width: 40px;
  height: 40px;
  font-size: 24px;
  text-align: center;
  color: var(--color-primary);
  border-radius: 50%;
  line-height: 40px;
  display: inline-block;
}
.address_info_sec span {
  display: block;
  color: #000;
  line-height: 24px;
}
.bottom-footer p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  display: inline-block;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  padding: 8px 38px 8px;
  margin-top: 15px;
}
.bottom-footer a {
  color: #fff;
  font-weight: 600;
}

.footer_section .footer_wid .footer_logo {
  width: 300px;
}
.footer_section .footer_top {
  position: relative;
  padding: 0px 10px 0px;
}
.footer_section .footer_top h2 {
  color: var(--color-default);
  font-size: 21px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
  display: inline-block;
  font-weight: 500;
  background-color: #fbe7eb;
  padding: 2px 10px;
}
.footer_section .footer_wid p {
  font-size: 14px;
  line-height: 25px;
  display: block;
}
.footer_section .footer_wid_text {
  position: relative;
  padding-bottom: 12px;
  margin: 10px 0px;
}
.footer_section .footer_wid_text li {
  font-size: 14px;
}
.social-icon-two {
  position: relative;
  margin: 2px 0px;
}
.social-icon-two li {
  position: relative;
  display: inline-block;
}
.social-icon-two li a {
  position: relative;
  display: block;
  font-size: 24px;
  width: 38px;
  height: 38px;
  line-height: 37px;
  color: var(--color-default);
  border-radius: 50%;
  font-weight: 400;
  margin: 0 1px;
}
.footer_top .footer_wid_text:after,
.footer_top .footer_wid_text:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 3px;
}
.footer_top .footer_wid_text:after {
  left: 44px;
  width: 4px;
  background-color: var(--color-primary);
}
.footer_wid li a {
  color: var(--color-default);
}
.footer-logo img {
  width: 278px;
  margin-bottom: 20px;
}

.footer-about {
  position: relative;
  margin: 0px 70px;
}

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

.footer-widget__social {
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

.footer-widget__social::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 70%;
  background: linear-gradient(to left, var(--color-primary), #fff0, var(--color-secondary));
  border-radius: 5px;
  z-index: -1;
}

.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: 41px;
  color: var(--color-default);
  background-color: #fff;
  margin: 0 4px;
  box-shadow: 0px 0px 5px #6464649e;
  font-size: 19px;
}
.footer-widget__social li a:hover {
  color: #ffffff;
  background: var(--color-primary);
}

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

.footer_add_row .col-md-3:nth-child(1) {
  background: linear-gradient(to right, transparent, #ddd);
}
.footer_add_row .col-md-3:nth-child(2) {
  background: linear-gradient(to right, transparent, #ddd, transparent);
}
.footer_add_row .col-md-3:nth-child(3) {
  background: linear-gradient(to left, transparent, #ddd);
}
.footer_mp iframe {
  border: 5px solid #f5f5f5;
  background: #fff;

  box-shadow: 0px 0px 11px #919191;
}
.as_inner_textad h2 a {
  color: var(--color-default);
  font-weight: 600;
}
.footer_wid .address_info_sec {
  position: relative;
}
.footer_wid .address_info_sec:nth-child(3) {
  border-top: 1px dashed var(--color-default);
  border-bottom: 1px dashed var(--color-default);
}
.footer-about p {
  font-size: 15px;
  line-height: 30px;
  margin: 0;
  padding: 0px 0px 25px;
}
.footer-about p a {
  color: var(--color-primary);
}

.footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-bottom: 25px;
}
.footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
.footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background-color: var(--color-secondary);
  /* background: linear-gradient(to right, var(--color-primary),var(--color-secondary)); */
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.footer_links {
  text-align: center;
}
.footer_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: 19px;
  display: inline-block;

  color: var(--color-secondary);
  padding: 8px;
  border-radius: 50%;
}
.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;
}

.f-ad p {
  font-size: 15px;
  color: var(--color-default);
}
.footer_section .footer-btm a {
  color: var(--color-default);
  font-size: 15px;
  display: block;
}
.footer_section .shape {
  position: relative;
  width: 70%;
  height: 5px;
  border-radius: 15px;
  background: linear-gradient(to left, var(--color-primary), transparent, var(--color-secondary));
}
.f-reach {
  margin-top: 15px;
}

.footer_links1 {
  text-align: center;
}
.footer_links1 ul {
  display: inline-block;
  /* padding: 0px 80px 6px; */
  margin: 0 0 15px;
}
.footer_links1 ul li {
  display: inline-block;
  line-height: 28px;
  font-size: 18px;
  margin-bottom: 6px;
}
.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);
}

.subscribe-block {
  position: relative;
  padding: 25px 20px;
  background-color: var(--color-secondary);
  margin: 30px 0px;
  border-radius: 12px;
}
.subscribe-block::before {
  content: "";
  position: absolute;
  height: 120%;
  width: 95%;
  top: -10px;
  left: 0;
  right: 0;
  bottom: -10px;
  background-color: #0a3b5921;
  margin: auto;
  z-index: -1;
}
.sub-title h4 {
  text-transform: uppercase;
  color: #fff;
  font-size: 33px;
}
.subscribe-input {
  position: relative;
  margin-top: 8px;
}
.sub-title p {
  margin: 0;
  color: #fff;
  font-size: 16px;
}
.subscribe-input .form-control {
  height: 58px;
  background-color: white;
  border: 1px solid #e4e4e4;
  color: var(--color-secondary);
}
.subscribe-input .form-control::placeholder {
  color: #6b6b6b;
}
.subscribe-input .btn {
  position: absolute;
  top: 7px;
  right: 8px;
  background: var(--color-primary);
  border: none;
  border-radius: 0;
  padding: 11px 16px;
  color: #fff;
}

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

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

/* .footer_section::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #fff8fa, #f3f9ff); 
  top: 0px;
  bottom: 0px;
  z-index: -2; 
  filter: blur(31px);
} */

.footer_section::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/footer-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 800px;
  z-index: -1;
  top: 0px;
  right: 0px;
  left: 0px;
  margin: auto;
  opacity: 0.1;
  filter: grayscale(1);
}

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

.footer_links1.o-ul ul {
  margin-bottom: 0px;
}

.blog-sec {
  position: relative;
}

.blog-inner-row {
  position: relative;
  border-radius: 20px;
}

.blog-inner-row::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 300px;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  z-index: -1;
  border-radius: 20px;
}

.blog-left-img {
  text-align: right;
  position: relative;
  top: 0px;
  animation: floatUpDown1 4s ease-in-out infinite;
}

@keyframes floatUpDown1 {
  0% {
    top: 0px;
  }

  50% {
    top: 30px;
  }

  100% {
    top: 0px;
  }
}

.blog-right-side {
  position: relative;
  margin: 100px 35px 100px 12px;
  color: #fff;
  background: linear-gradient(45deg, #ffffff12, #00000000);
  padding: 17px;
  border-radius: 28px 0px 0px 28px;
}

.blog-right-side h2 {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 8px;
}

.blog-right-side h3 {
  font-size: 16px;
  font-weight: 400;
  color: #ffffffd1;
  text-transform: uppercase;
}

.blog-right-side p {
  font-size: 15px;
  color: #ffffffd1;
}

.test-sec {
  position: relative;
  margin-bottom: 50px;
}
.test-right-img {
  position: absolute;
  top: 0;
  right: 180px;
  width: 650px;
}
.test-head h2 {
  color: var(--color-secondary);
  font-weight: 600;
  display: inline-block;
}
.test-head p {
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 25px;
}
.test-star {
  color: var(--color-primary);
}
.test-blk {
  position: relative;
}

.test-blk::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/google-test-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 234px;
  left: 0px;
  right: 0px;
  bottom: -52px;
  z-index: -1;
  margin: auto;
  opacity: 0.1;
}

.test-head {
  position: relative;
  padding: 0 36px;
  margin: 65px 0;
}
.test-scroll::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 75px;
  background-image: url(../gallery/test-lquote.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: -34px;
  left: 0;
}
.test-scroll::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 75px;
  background-image: url(../gallery/test-rquote.png);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -170px;
  right: 0;
}

.test-scroll .owl-dots {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}
.test-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 5px;
  opacity: 1;
  margin: -4px 2px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  background: var(--color-secondary);
}
.test-scroll .owl-dot:hover,
.test-scroll .owl-dot.active {
  opacity: 1;
  background: var(--color-primary);
}

.sec-head {
  position: relative;
}

.sec-head h3 {
  font-weight: 500;
  font-size: 22px;
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 0 81px;
  background: linear-gradient(to left, #ffffff00, #bb283e17, #ffffff00);
  line-height: 28px;
  padding-bottom: 4px;
}

.sec-head h2 {
  font-size: 48px;
  font-family: Cinzel, serif;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 11px;
}

.sec-head h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 30px;
  background: url(../gallery/h-left.png) no-repeat center;
  background-size: contain;
  filter: brightness(0) invert(0);
}
.sec-head h3::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 30px;
  background: url(../gallery/h-right.png) no-repeat center;
  background-size: contain;
  filter: brightness(0) invert(0);
}

.test-scroll {
  position: relative;
  margin-top: 50px;
}

.complex-sec {
  position: relative;
  margin-bottom: 60px;
}

.complex-head {
  position: relative;
  margin-bottom: 20px;
}

.complex-head h2 {
  font-size: 35px;
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.complex-head h3 {
  font-size: 26px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 400;
  padding: 2px 10px 5px;
  display: inline-block;
  border-radius: 0px 50px 50px 0px;
  margin-top: 5px;
  border-left: 5px solid var(--color-secondary);
}

.complex-matter-ul {
  position: relative;
  padding-left: 25px;
  padding-top: 20px;
}

.complex-matter-ul li {
  margin-bottom: 12px;
  font-size: 15px;
  position: relative;
  padding-left: 20px;
}

.complex-matter-ul li::before {
  content: " ";
  position: absolute;
  width: 11px;
  height: 2px;
  background: var(--color-primary);
  left: 0px;
  top: 11px;
  z-index: -1;
}

.complex-matter-ul li strong {
  font-size: 18px;
  font-weight: 600;
}

.complex-matter-ul::before {
  content: " ";
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--color-secondary);
  left: 0px;
  top: 0px;
  z-index: -1;
}
.complex-matter-ul::after {
  content: " ";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  left: -4px;
  top: 0px;
  z-index: -1;
  border-radius: 50%;
}

.complex-right-side {
  position: absolute;
  width: 572px;
  left: -103px;
  top: 13px;
  z-index: -1;
}

.top-number-sec {
  position: absolute;
  right: 196px;
  top: 26px;
  z-index: 1;
}

.top-number-sec ul li {
  display: inline-block;
}

.top-number-sec ul li:first-child {
  margin-right: 18px;
  top: 1px;
  position: relative;
}

.top-number-sec ul li:first-child::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 80%;
  background: var(--color-primary);
  right: -12px;
  bottom: 4px;
  margin: auto;
}

.top-number-sec ul li a {
  color: var(--color-secondary);
  font-weight: 400;
}

.top-number-sec ul li a i {
  width: 30px;
  height: 30px;
  color: #fff;
  line-height: 30px;
  text-align: center;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  border-radius: 50%;
  font-size: 14px;
}

.top-number-sec ul {
  padding: 7px 15px;
  border-radius: 3px;
}

.chatbox {
  position: fixed;
  bottom: 88px;
  left: 28px;
  width: 260px;
  border-radius: 10px;
  display: none;
  z-index: 2;
}

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

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

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

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

.chatbox-footer .btn-success:hover {
  color: #fff;
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

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

.btn-danger:hover {
  color: #fff;
  background-color: var(--color-primary);
  border-color: #bd2130;
}
.chatbox-body {
  height: 123px;
  overflow-y: auto;
  padding: 10px;
}

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

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

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

.chatbox-footer {
  padding: 5px 10px;
  display: flex;
  gap: 5px;
  background: var(--color-primary);
  border-radius: 27px;
}

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

.btn img {
  width: 70px;
}

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

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

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

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

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

.top-social-icons {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 53px;
}

.top-social-icons::before {
  content: " ";
  position: absolute;
  width: 20%;
  height: 1px;
  background: var(--color-secondary);
  top: 0px;
  bottom: -2px;
  margin: auto;
  right: -34px;
}

.top-social-icons::after {
  content: " ";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  top: 0px;
  bottom: -2px;
  margin: auto;
  right: -34px;
}

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

.top-social-icons ul li a {
  display: block;
  width: 32px;
  height: 32px;
  color: #ffffff;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  transition: all 300ms ease;
  border-radius: 3px;
  background: var(--color-secondary);
}

.top-social-icons span {
  position: absolute;
  right: -76px;
  top: -3px;
  font-size: 14px;
}

.top-wrap1 {
  position: relative;
}

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

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

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

.serv-matter h2 {
  color: var(--color-primary);
  font-size: 20px;
  margin: 15px 0px 3px;
  font-weight: 500;
  display: inline-block;
}

.serv-matter h3 {
  color: var(--color-secondary);
  font-size: 20px;
  margin: 15px 0px 3px;
  font-weight: 500;
}

.inner-serv-img {
  text-align: center;
  position: relative;
  border: 5px solid #ffffff;
  width: fit-content;
  margin: auto;
  border-radius: 50%;
  box-shadow: 0px 0px 11px #00000045;
}

.inner-serv-img img {
  border-radius: 50%;
}
.ol_style {
  position: relative;
}

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

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

.breadcrumb {
  padding: 190px 0 40px;
  text-align: right;
  background-color: #ffffff00;
  position: relative;
}

.breadcrumb::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #d7254a17, #ffffff00, #1541860f);
  top: 0px;
  left: 0px;
  margin: auto;
  z-index: -1;
}

.breadcrumb .bread-head {
  text-transform: uppercase;
  color: #143e81;
  line-height: 30px;
  margin-bottom: 0;
  font-size: 30px;
}

.breadcrumb .bread-links {
  width: fit-content;
  margin-left: auto;
  border: 1px solid #ccc;
  border-radius: 999px;
  margin-top: 15px;
  padding: 2px 15px;
}
.breadcrumb .bread-links li {
  display: inline;
  padding: 0px 3px;
  border-radius: 50px;
  line-height: 30px;
}

.breadcrumb .bread-links i {
  color: var(--color-primary);
}

.breadcrumb .bread-links li a {
  color: var(--color-secondary);
}

.contact-form {
  background: linear-gradient(45deg, #173b75, var(--color-secondary));
  padding: 35px 29px;
  position: relative;
}

.appoitnment-section.contact-form::before {
  content: " ";
  position: absolute;
  width: 98%;
  height: 96%;
  border: 1px solid #fff;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  opacity: 0.2;
}

.contact-form .app-title h2 {
  color: #fff;
  display: inline-block;
  border-bottom: 2px solid;
  margin-bottom: 30px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-form .form-control {
  color: #fff;
  border-radius: 0px;
}

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

.contact-details h3 {
  font-size: 30px;
  text-transform: uppercase;
  color: var(--color-secondary);
  border-bottom: 3px solid var(--color-secondary);
  width: fit-content;
  margin: auto;
  margin-bottom: 20px;
}

.contact-details h6 {
  font-size: 25px;
  font-weight: 600;
  color: var(--color-primary);
}

.contact-details h6 span {
  color: #34a390;
  font-size: 35px;
}

.contact-details {
  text-align: center;
}

.contact-form .app-form .btn {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  padding: 8px 22px;
  margin-top: 31px;
  border: none;
  font-size: 20px;
}

.contact-form::before {
  content: none;
}

.contact-details iframe {
  width: 100%;
  height: 145px;
  outline: 2px dashed var(--color-primary);
  padding: 5px;
}

.testimonial-block {
  position: relative;
  background: #f3f4f5;
  padding: 64px 20px 20px;
  border-radius: 30px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 3px #00000021;
  border: 2px solid #fff;
}
.testimonial-head h2 {
  font-size: 22px;
  margin-bottom: 2px;
  color: var(--color-secondary);
}

.ratings {
  position: relative;
  color: var(--color-secondary);
}

.ratings::before {
  content: " ";
  position: absolute;
  width: 80px;
  height: 1px;
  background: var(--color-primary);
  top: 0px;
  bottom: 0px;
  left: 90px;
  margin: auto;
}

.ratings i {
  font-size: 14px;
}

.testimonial-right {
  position: absolute;
  top: -18px;
  left: 18px;
}

.testimonial-right i {
  font-size: 80px;
  color: var(--color-primary);
  opacity: 0.1;
}

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

.about-inner-img {
  position: relative;
  padding: 8px;
  border: 2px dashed var(--color-secondary);
}

.about-inner-content {
  position: relative;
  text-align: center;
  margin-top: 10px;
}

.about-inner-content h2 {
  font-size: 25px;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.abt-doc-in-txt p {
  font-size: 15px;
  line-height: 30px;
}

.abt-info h3 {
  font-size: 25px;
  color: #153c7d;
  margin-bottom: 5px;
  display: inline-block;
  border-bottom: 1px solid;
  padding-bottom: 2px;
  font-weight: 500;
}

.about-inner-block {
  position: relative;
}

.abt-info {
  margin-bottom: 20px;
}

.abt-info .ol_style li strong {
  font-weight: 600;
}

.abt-doc-in-txt {
  background: #fcf1f3;
  padding: 8px 17px;
  margin-bottom: 20px;
}

.abt-doc-in-txt {
  background: #f6f9ff;
  padding: 8px 17px;
  margin-bottom: 20px;
}

.abt-doc-in-txt p:nth-child(2) {
  margin-bottom: 0px;
}

.abt-matter h1 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}
