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

.mobile-view {
  display: none;
}

@font-face {
  font-family: "Griffin";
  src: url(../fonts/griffindemoregular-bwk25.ttf);
  display: swap;
}

:root {
  --color-default: #292929;
  --color-primary: #292929;
  --color-secondary: #e8dcd0;
}

.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-weight: 300;
  cursor: pointer;
  /* font-family: "IBM Plex Sans", sans-serif; */
  font-family: "Outfit", 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-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: -11;
  background-image: url(../gallery/bg.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  top: 0px;
  left: 0;
}

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

.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 .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;
  padding: 10px 0px;
}

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

.main-menu .navigation>li>a {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  border-right: 0px;
  padding: 0px 10px;
  opacity: 1;
  text-transform: uppercase;
  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: 0px;
  /* right: -100%; */
  /* width: 300px; */
  width: 70%;
  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: #555555;
  -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;
  backdrop-filter: blur(15px);
}

.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;
  /* right: 0; */
}

.mobile-menu .menu-box::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/menu-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  filter: brightness(0.6) grayscale(1);
}

.mobile-menu .menu-box::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  top: 0px;
  opacity: 0.8;
  z-index: -1;
}

.mobile-menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: var(--color-primary);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.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: 0px;
  background: #ffffff2e;
  left: -44px;
  margin: auto;
  height: fit-content;
  bottom: 0px;
  color: #ffffff;
  font-size: 43px;
  line-height: 88px;
  width: 88px;
  border-radius: 50%;
  height: 88px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 10;
  transition: all 0.7s ease;
  transform: translateX(100%);
}

.mobile-menu-visible .mobile-menu .close-btn {
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

.mobile-menu .navigation {
  position: absolute;
  display: block;
  width: 42%;
  z-index: 90;
  right: 0px;
}

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

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

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

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

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

.mobile-menu .navigation li>a {
  position: relative;
  display: block;
  padding: 26px 16px;
  color: #ffffff;
  font-size: 30px;
  line-height: 24px;
  letter-spacing: 0.5px;
  font-weight: 400;
  text-transform: capitalize;
  -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: 18px;
  font-weight: 400;
  /* margin-left: 20px; */
  padding: 10px 16px;
  text-transform: capitalize;
  position: relative;
  color: #fff;
}

.mobile-menu .navigation li ul li>a:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.main-menu .navigation>li>ul .dropdown-btn {
  display: none;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  top: 25px;
  right: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  color: var(--color-primary);
  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>ul>li.dropdown .dropdown-btn {
  position: absolute;
  top: 6px;
}

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

.mobile-menu .navigation li>ul {
  display: none;
  background: var(--color-primary);
  /* height: 280px; */
  /* overflow-y: auto; */
  position: absolute;
  z-index: 2;
  box-shadow: 0px 0px 16px #ffffff9e;

}

.mobile-menu .navigation li>ul>li>ul {
  display: none;
  background: #fff;
  position: absolute;
  z-index: 55;
  box-shadow: 0px 0px 16px #ffffff9e;
  width: 225px;
}

.mobile-menu .navigation li>ul.cstm-width {
  height: auto;
}

.mobile-menu .navigation li>ul::-webkit-scrollbar {
  width: 6px;
}

/* Track */

.mobile-menu .navigation li>ul::-webkit-scrollbar-track {
  background: #dbdbdb;
}

/* Handle */

.mobile-menu .navigation li>ul::-webkit-scrollbar-thumb {
  background: #000000;
}

/* Handle on hover */

.mobile-menu .navigation li>ul::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/*
* 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: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  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: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

/***
====================================================================
	Desktop Menu
====================================================================
***/

.desktop-nav-toggler {
  margin-top: 30px;
  cursor: pointer;
}

.inner1 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.inner1::before {
  content: " ";
  position: absolute;
  width: 143px;
  height: 54px;
  background: #ffffff;
  top: 0px;
  bottom: 0px;
  left: -10px;
  right: 0px;
  margin: auto;
  opacity: 0.4;
  z-index: -1;
  border-radius: 10px;
}

.inner1 img {
  width: 40px;
}

.inner1 span {
  font-size: 27px;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 7px;
}

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

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

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

.menu-box-centered {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.menu-address {
  position: absolute;
  left: 128px;
}

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

.address-box {
  color: #fff;
  position: relative;
  margin: 28px 0px;
  padding-left: 68px;
}

.address-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-right: 10px;
  top: 0px;
  position: absolute;
  left: 0px;
}

.address-content {
  display: inline-block;
  font-weight: 200;
}

.address-content h2 {
  font-weight: 400;
  font-size: 22px;
}

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

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

.abt-sec-head {
  margin: 0px auto 40px;
  position: relative;
}

.abt-sec-head h3 {
  font-weight: 300;
  position: relative;
  text-align: right;
  font-size: 25px;
  padding-right: 120px;
}

.abt-sec-head h3::before {
  content: " ";
  position: absolute;
  width: 28%;
  height: 2px;
  background: var(--color-primary);
  top: 0px;
  bottom: 0px;
  margin: auto;
  left: 268px;
}

/* .abt-sec-head h2 {
  font-weight: 400;
  text-align: end;
  padding-right: 0px;
  font-size: 58px;
  position: relative;
  margin-top: -4px;
  text-transform: uppercase;
} */

.abt-sec-head h2 {
  font-weight: 400;
  text-align: end;
  padding-right: 138px;
  font-size: 48px;
  position: relative;
  margin-top: -3px;
  text-transform: uppercase;
}

.abt-sec-head h2::before {
  content: " ";
  position: absolute;
  width: 24%;
  height: 2px;
  background: var(--color-primary);
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: -18px;
}

.abt-doc-img {
  top: -48px;
  position: relative;
}

.abt-matter {
  position: relative;
  text-align: right;
  background: var(--color-primary);
  padding: 50px 0px 50px;
  border-radius: 208px;
}

.abt-matter::before {
  content: " ";
  position: absolute;
  width: 900px;
  height: 100%;
  background: var(--color-primary);
  border-radius: 208px;
  top: 0px;
  left: 0px;
  z-index: -1;
}

.doc-name {
  color: #fff;
}

.doc-name p {
  padding-left: 108px;
  font-weight: 200;
  letter-spacing: 0.5px;
  position: relative;
  margin-top: 10px;
  padding-top: 10px;
  margin-bottom: 28px;
}

.doc-name p::before {
  content: " ";
  position: absolute;
  width: 72%;
  height: 1px;
  background: #fff;
  right: 0px;
  opacity: 0.4;
  top: 0px;
}

.main-btn-theme {
  background: var(--color-secondary);
  color: var(--color-primary) !important;
  padding: 8px 20px 10px;
  border-radius: 5px;
  box-shadow: -4px -5px 11px #f3ece65e;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 400;
}

.main-btn-theme1 {
  background: var(--color-secondary);
  color: var(--color-primary) !important;
  padding: 5px 10px 7px;
  border-radius: 5px;
  box-shadow: -4px -5px 11px #f3ece65e;
  text-transform: capitalize;
  font-weight: 400;
}

.doc-name h2 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 58px;
  font-family: "Griffin";
  letter-spacing: 3px;
  margin-bottom: -6px;
}

.doc-name h3 {
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 5px;
}

.doc-name h4 {
  font-size: 18px;
  font-weight: 200;
  line-height: 28px;
  margin-bottom: 21px;
}

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

.serv-head {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  height: fit-content;
}

.serv-head h2 {
  position: relative;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  /* optional, flip direction if needed */
  font-size: 65px;
  font-weight: 800;
  text-transform: uppercase;
  color: #00000018;
}

.serv-main-blk {
  position: relative;
  right: -92px;
  min-height: 900px;
}

.serv-main-blk::before {
  content: " ";
  position: absolute;
  width: 30%;
  height: 80%;
  background: var(--color-secondary);
  left: 2px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0px 0px 11px #0000002e;
  z-index: -1;
}

.serv-txt-head h2 {
  font-weight: 500;
}

.serv-icon-blk {
  width: 110px;
  margin: auto;
}

.serv-img-blk {
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

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

.serv-row {
  margin-bottom: 40px;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.serv-txt-head p {
  padding-right: 100px;
}

.serv-txt-head h2 {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 500;
}

.serv-txt-blk {
  position: relative;
  cursor: pointer;
}

.serv-row:hover .serv-img-blk {
  transform: scale(1.05);
}

.serv-txt-blk::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #2929294a;
  left: -23px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.serv-icon-blk::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 105%;
  border-bottom: 1px dashed #2929294a;
  z-index: -1;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -17px;
}

.box {
  background: var(--color-primary);
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}

.box:before {
  content: "";
  background: var(--color-secondary);
  width: 138px;
  height: 138px;
  transform: translateX(-50%) translateY(-50%) scale(0);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.5s ease-in-out;
}

.box:after {
  content: " ";
  width: 138px;
  height: 138px;
  border: 1px solid var(--color-secondary);
  transform: translateX(-50%) translateY(-50%) scale(0);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.5s ease-in-out;
}

.box:after {
  transform: translateX(-50%) translateY(-50%) rotate(0deg) scale(0);
}

.box:hover:before {
  transform: translateX(-50%) translateY(-50%) scale(1);
}

.box:hover:after {
  transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(1);
}

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

.box:hover img {
  opacity: 0.3;
  transform: scale(1.5);
}

.box .box-content {
  color: var(--color-primary);
  width: 100%;
  padding: 0 20px;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(0);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.box:hover .box-content {
  transform: translateX(-50%) translateY(-50%) rotate(0deg) scale(1);
}

.box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
}

.box .icon li {
  display: inline-block;
  margin: 0 3px;
}

.box .icon li a {
  color: var(--color-secondary);
  background: var(--color-primary);
  font-size: 16px;
  line-height: 35px;
  height: 35px;
  width: 35px;
  display: block;
  transition: all 0.3s ease 0s;
}

.box .icon li a:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

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

.serv-scroll .owl-dots {
  position: relative;
  left: -48px;
  bottom: 38px;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.serv-scroll .owl-dot {
  position: relative;
  display: inline-block;
  width: 21px;
  border: 3px solid var(--color-secondary);
  opacity: 1;
  margin: 0px 3px;
  -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);
}

.serv-scroll .owl-dot:hover,
.serv-scroll .owl-dot.active {
  opacity: 1;
  border: 3px solid var(--color-primary);
}

.extra-sec {
  position: relative;
  /* min-height: 85vh; */
  margin-bottom: 158px;
}

.extra-sec .extra-img {
  position: absolute;
  right: -700px;
  width: 450px;
  top: 0px;
  left: 0px;
  margin: auto;
}

.pulse-wrapper {
  position: absolute;
  top: 29%;
  left: 20px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
}

.pulse-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 0, 0, 0.4);
  border-radius: 50%;
  animation: pulseAnim 2s linear infinite;
}

.pulse-circle:nth-child(2) {
  animation-delay: 1s;
  /* Half of total duration to offset */
}

@keyframes pulseAnim {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(2.2);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.extra-head h2 {
  font-weight: 300;
}

.extra-head h2 span {
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  color: var(--color-secondary);
  padding: 20px 16px 8px;
  font-size: 45px;
  letter-spacing: 3px;
  font-family: "Griffin";
  margin-bottom: 10px;
  display: inline-block;
}

.extra-head h2 span::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  z-index: -1;
  left: 0px;
  top: 0px;
  right: 0px;
  margin: auto;
}

.extra-head h3 {
  font-weight: 300;
  font-size: 20px;
  border-left: 5px solid var(--color-primary);
  padding-left: 12px;
  margin: 10px 0px;
  padding-right: 148px;
  background: linear-gradient(45deg, #e8dcd0, transparent);
}

.extra-head p {
  font-size: 17px;
}

.extra-content h4 {
  font-size: 20px;
  color: var(--color-teritary);
  margin-bottom: 10px;
}

.ol_styles {
  position: relative;
  margin-bottom: 12px;
  list-style-type: none;
}

.ol_styles li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 4px;
}

.ol_styles li::before {
  font-family: "FontAwesome";
  content: "\f14a";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-four);
  font-size: 13px;
}

.ol_styles1 {
  position: relative;
}

.ol_styles1 li {
  display: inline-block;
  margin-right: 8px;
  padding-left: 20px;
  position: relative;
}

.ol_styles1 li::before {
  font-family: "FontAwesome";
  content: "\f068";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-size: 13px;
}

.ol_styles1 li:nth-child(1),
.ol_styles1 li:nth-child(4) {
  padding-left: 0px;
}

.ol_styles1 li:nth-child(1)::before,
.ol_styles1 li:nth-child(4)::before {
  display: none;
}

.extra-sec::before {
  content: " ";
  position: absolute;
  width: 1700px;
  height: 1700px;
  background: linear-gradient(to top, var(--color-secondary), #ffffff00 50%);
  border-radius: 50%;
  bottom: -368px;
  margin: auto;
  left: 0px;
  right: 0px;
  opacity: 0.5;
  z-index: -1;
}

.test-sec {
  position: relative;
  min-height: 75vh;
  margin-bottom: 100px;
  /* margin-top: -200px; */
}

.test-main-icon img {
  width: 100px;
}

.test-main-block {
  position: relative;
  padding: 158px 200px;
}

.test-main-content {
  position: relative;
  color: #fff;
}

.test-main-name::before {
  content: " ";
  position: absolute;
  width: 30%;
  height: 2px;
  background: #fff;
  left: 0px;
  top: 0px;
  opacity: 0.2;
}

.test-main-name::after {
  content: " ";
  position: absolute;
  width: 80%;
  height: 2px;
  background: #fff;
  left: 0px;
  bottom: 0px;
  opacity: 0.2;
}

.test-main-name {
  position: relative;
  padding-top: 18px;
  margin-top: 10px;
  padding-bottom: 15px;
}

.test-main-name h2 {
  font-weight: 200;
  text-transform: capitalize;
  font-size: 35px;
}

.test-main-name h2 span {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 60px;
  color: #e8dcd0;
}

.test-main-matter p {
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 0.8px;
  padding-right: 48px;
  line-height: 34px;
  margin-bottom: 30px;
}

.test-main-matter {
  margin-top: 13px;
}

/* .test-shape{
  height: 1000px;
  width: 1000px;
  background: linear-gradient(to top, var(--color-default),#fff0 80%);
  border-radius: 50%;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0; 
} */

/* .test-inner-shape{
  position: relative;
  background-color: var(--color-default);
  height: 500px;
  width: 1000px;
  border-radius: 50%;
  border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  min-height: 85vh;
  margin: auto;
} */
.half-circle {
  height: 678px;
  background-color: #222;
  border-top-left-radius: 1200px;
  border-top-right-radius: 1200px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  position: absolute;
  top: 0px;
  z-index: -1;
  left: 0px;
  right: 0px;
  margin: auto;
}

/* .half-circle {
  height: 700px;
  background-color: #222;
  border-top-left-radius: 1200px;
  border-top-right-radius: 1200px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-top: -100px;
  position: relative;
} */

.half-circle img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 1200px;
  border-top-right-radius: 1200px;
  filter: grayscale(100%);
  opacity: 0.2;
  /* adjust as needed */
  pointer-events: none;
  /* avoids accidental interaction */
}

.half-circle::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -11px;
  /* Shift left for outline */
  height: 100%;
  width: 100%;
  border-top-left-radius: 1200px;
  border-top-right-radius: 1200px;
  z-index: -1;
  border: 2px solid var(--color-default);
}

.appnt-sec {
  position: relative;
  margin-bottom: 200px;
}

.appnt-sec .col-md-8 {
  position: relative;
  left: -50px;
}

.appointment-form {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  /* background: var(--color-default); */
  background: #ffffff78;
  padding: 102px 58px;
  border-right: 0px;
  width: 458px;
  height: 458px;
  margin: auto;
}

.appointment-form h2 {
  color: var(--color-default);
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 500;
}

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

.appointment-form .btn-style-one {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
  padding: 3px 11px;
  font-weight: 400;
  letter-spacing: 1px;
  overflow: hidden;
  min-width: 110px;
  border-radius: 30px;
  border: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  margin-top: 25px;
  cursor: pointer;
}

.appointment-form textarea.form-control {
  height: 78px;
}

.appointment-form .form-control::placeholder {
  color: var(--color-default);
}

.appointment-form .form-control:focus {
  color: var(--color-default);
  background-color: #00000000;
  border-color: transparent;
  outline: 0;
  box-shadow: 0 0 10px #fff;
  font-weight: 400;
}

.appointment-form .form-control {
  color: var(--color-default);
  border-bottom: 1px solid var(--color-default);
  border-radius: 0px;
  font-weight: 200;
  padding: 11px 25px;
}

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

.appointment-form .form-group i {
  position: absolute;
  left: 14px;
  top: 16px;
  color: #656565;
  font-size: 14px;
}

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

.appnt-bg {
  position: absolute;
  top: 0px;
  right: -90px;
  bottom: 0px;
  margin: auto;
  height: fit-content;
  z-index: -1;
  width: 330px;
  filter: grayscale(1);
}

.images-grid {
  position: relative;
  margin-bottom: 100px;
}

.floating-gallery {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.float-img {
  position: absolute;
  width: 220px;
  opacity: 0;
  transform: scale(1.05);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  animation-play-state: paused;
  transition: opacity 0.1s ease, transform 0.2s ease;
  filter: grayscale(1);
}

.float-img:hover {
  filter: grayscale(0);
  transform: scale(1.1) !important;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .floating-gallery {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .float-img {
    position: relative !important;
    width: 42vw;
    margin: 8px auto;
    transform: scale(1.2);
    right: 0px;
    left: 0px !important;
    padding: 0px 0px;
    box-shadow: none;
  }
}

.images-head {
  position: absolute;
  /* width: fit-content; */
  margin: auto;
  height: fit-content;
  top: 8px;
  bottom: initial;
  left: 48px;
  z-index: 1;
}

.images-head1 {
  position: absolute;
  /* width: fit-content; */
  margin: auto;
  height: fit-content;
  top: 8px;
  bottom: initial;
  left: 48px;
  z-index: 1;
  width: 450px;
}

.images-head1 h3 {
  font-weight: 300;
  position: relative;
  text-align: right;
  font-size: 25px;
  padding-right: 100px;
  color: var(--color-secondary);
}

.images-head1 h3::before {
  content: " ";
  position: absolute;
  width: 30%;
  height: 2px;
  background: var(--color-secondary);
  top: 0px;
  bottom: 0px;
  margin: auto;
  left: 14px;
}

.images-head1 h2 {
  font-weight: 400;
  text-align: end;
  padding-right: 148px;
  font-size: 48px;
  position: relative;
  margin-top: -3px;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.images-head1 h2::before {
  content: " ";
  position: absolute;
  width: 35%;
  height: 2px;
  background: var(--color-secondary);
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: -18px;
}

/* .images-head {
  position: absolute;
  left: 0px;
  right: 0px;
  width: fit-content;
  top: 0px;
  bottom: 0px;
  margin: auto;
  height: fit-content;
} */

.images-head h2 {
  position: relative;
  font-size: 65px;
  font-weight: 800;
  text-transform: uppercase;
  color: #e8dcd038;
}




.video-gallery {
  position: relative;
  margin-bottom: 100px;
}

.video-block video {
  width: 100%;
  top: -77px;
  position: relative;
  filter: grayscale(1) blur(3px);
}

.video-block {
  overflow: hidden;
  width: 100%;
  height: 318px;
  position: relative;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0px 0px 3px #000000c2;
}

.video-row .col-md-3,
.video-row .col-md-6 {
  padding: 0px 7px;
}

.video-row .col-md-6 .video-block video {
  top: -500px;
}

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

.video-head {
  position: relative;
  width: 600px;
  text-align: center;
  margin: 0px auto 18px;
  left: -35px;
}

.video-head h3 {
  font-weight: 300;
  position: relative;
  text-align: right;
  font-size: 25px;
  padding-right: 120px;
}

.video-head h3::before {
  content: " ";
  position: absolute;
  width: 28%;
  height: 2px;
  background: var(--color-primary);
  top: 0px;
  bottom: 0px;
  margin: auto;
  left: 132px;
}

.video-head h2 {
  font-weight: 400;
  text-align: end;
  padding-right: 138px;
  font-size: 40px;
  position: relative;
  margin-top: -3px;
  text-transform: uppercase;
}

.video-head h2::before {
  content: " ";
  position: absolute;
  width: 24%;
  height: 2px;
  background: var(--color-primary);
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: -18px;
}

.test-blk {
  position: relative;
  border: 2px;
}

.testi-row::before {
  content: "\f1a0";
  position: absolute;
  width: 100%;
  height: 50%;
  font-family: "FontAwesome";
  font-size: 480px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  z-index: -9;
  left: 156px;
  /* opacity: 0.1; */
  color: #00000014;
}

.test-inner-blk h2 {
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 23px;
  padding-right: 92px;
  padding-left: 8px;
  background: #292929;
}

/* .test-inner-blk h2::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #292929;
  top: 0;
  left: -65px;
  z-index: -1;
} */

.test-shape {
  height: 250px;
  width: 250px;
  background-color: var(--color-default);
  border-radius: 50%;
  border-bottom-left-radius: 0px;
  position: absolute;
  margin-top: -75px;
  right: -77px;
  padding: 44px;
  z-index: 1;
  padding-top: 45px;
}

.test-inner-blk {
  padding: 25px 45px 25px 23px;
  position: relative;
  padding-bottom: 60px;
}

.test-inner-blk::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  /* background-color: #e5dad08c; */
  background: #ece4db;
  top: -28px;
  left: -28px;
  border-radius: 27px;
  z-index: -1;
}

.test-inner-blk::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border: 2px solid var(--color-default);
  top: 0;
  left: 0;
  border-radius: 27px;
  z-index: -1;
}

.test-inner-blk p {
  margin-bottom: 0px;
}

.test-shape h2 {
  color: #fff;
  font-weight: 300;
  font-size: 22px;
  text-align: center;
  margin-bottom: 15px;
}

.share-btn {
  text-align: center;
}

.share-btn a {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 3px 10px 5px;
  font-size: 18px;
}

.test-shape img {
  width: 75px;
  filter: drop-shadow(-4px -5px 11px #f3ece65e);
}

.footer-sec {
  position: relative;
}

.footer-sec::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 95%;
  background-color: #000;
  margin: auto;
  left: 0;
  right: 0;
  border-radius: 45px;
  z-index: -2;
  top: 0;
}

.footer-sec::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 95%;
  background-image: url(../gallery/footer-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: auto;
  left: 0;
  right: 0;
  border-radius: 45px;
  z-index: -1;
  top: 0;
  opacity: 0.2;
}




.credits-footer p {
  margin-bottom: 10px;
  padding-top: 15px;
}

.credits-footer a {
  color: var(--color-default);
  font-weight: 400;
}

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

.connect {
  position: relative;
}

.connect h2 {
  font-size: 75px;

  color: #50505042;
  font-weight: 200;
}

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

.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: #333; */
  color: #979797;
  margin: 0 4px;
  font-size: 19px;
  background-color: #484848;
}

.footer-widget__social li a img {
  width: 17px;
  /* opacity: 0.5; */
}

.address-content .footer-widget__social li a img {
  opacity: 0.5;
}

.footer-adr-inner {
  padding: 30px 0px;
  padding-top: 5px;
}

.footer-adr-inner h2 {
  color: var(--color-secondary);
  font-weight: 200;
  font-size: 25px;
}

.footer-adr {

  border-bottom: 1px solid #e8dcd073;
  padding-top: 27px;
}

.footer-adr .col-md-5::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background: linear-gradient(to top, #fff0, #e8dcd073, #fff0);
  left: 0;
  top: 0;
}

.footer-adr .col-md-5::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background: linear-gradient(to top, #fff0, #e8dcd073, #fff0);
  top: 0;
  right: 0;
}

.box1 {
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  border-radius: 12px;
  overflow: hidden;
}

.box1:after,
.box1:before {
  content: "";
  width: 20%;
  height: 10px;
  border-top: 1px solid rgba(255, 255, 255, .8);
  border-bottom: 1px solid rgba(255, 255, 255, .8);
  opacity: 0;
  transform: rotate(-40deg);
  transform-origin: top right;
  position: absolute;
  top: -6px;
  right: 0;
  z-index: 1;
  transition: .5s;
}

.box1 img {
  width: 100%;
  height: auto;
  transition: .4s;
}

.box1 .box1-content {
  color: #fff;
  width: 85%;
  opacity: 0;
  /* transform: translateX(-50%) translateY(-50%); */
  position: absolute;
  top: 50%;
  left: 0px;
  z-index: 2;
  transition: .6s;
  right: 0px;
  margin: auto;
}

.box1 .icon {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.box1 .icon li {
  margin: 0 5px;
  display: inline-block;
}

.box1 .icon li a {
  color: var(--color-primary);
  background-color: rgb(255 255 255);
  font-size: 15px;
  line-height: 33px;
  width: 33px;
  height: 33px;
  display: block;
  transition: .35s;
  text-align: center;
}

.box1:after {
  transform-origin: left bottom;
  top: auto;
  bottom: -6px;
  right: auto;
  left: 0;
}

.box1:hover:after,
.box1:hover:before {
  width: 30%;
  opacity: 1;
}

.box1:hover img {
  opacity: .3;
}

.box1:hover .box1-content {
  opacity: 1
}

.image-scroll-sec {
  position: relative;
  margin-bottom: 111px;
  padding: 50px 0px;
}

.image-scroll-sec::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #000;
  margin: auto;
  left: 0;
  right: 0;
  /* border-radius: 45px; */
  z-index: -2;
  top: 0;
}

.image-scroll-sec::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../gallery/footer-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: auto;
  left: 0;
  right: 0;
  /* border-radius: 45px; */
  z-index: -1;
  top: 0;
  opacity: 0.2;
}

.image-main-row {
  position: relative;
  z-index: 1;
}

.image-scroll-mini {
  margin: 30px 0px;
  position: relative;
  box-shadow: 0px 15px 8px -10px #f5f0e969;
}

.image-scroll-mini img {
  border: 2px solid #fff;
  border-radius: 10px;
  filter: grayscale(1);
}

.image-main-img img {
  border: 2px solid #fff;
  border-radius: 10px;
  filter: grayscale(1);
}

.image-sec-row .col-md-6:nth-child(1) {
  margin-top: 70px;
}

.image-scroll-block {
  margin-top: 60px;
}

.image-main-img {
  position: relative;
  box-shadow: 0px 15px 8px -10px #f5f0e969;
}

.serv-sec-head {
  margin: 0px 45px 30px;
  position: relative;
}

.serv-sec-head h3 {
  font-weight: 300;
  position: relative;
  text-align: right;
  font-size: 25px;
  padding-right: 120px;
}

.serv-sec-head h3::before {
  content: " ";
  position: absolute;
  width: 21%;
  height: 2px;
  background: var(--color-primary);
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 190px;
}

.serv-sec-head h2 {
  font-weight: 400;
  text-align: end;
  padding-right: 138px;
  font-size: 48px;
  position: relative;
  margin-top: -3px;
  text-transform: uppercase;
}

.serv-sec-head h2::before {
  content: " ";
  position: absolute;
  width: 14%;
  height: 2px;
  background: var(--color-primary);
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: -18px;
}

/* .extra-left-block {
  position: relative;
}

.extra-left-block::before {
  content: " ";
  position: absolute;
  width: 68%;
  height: 1px;
  background: var(--color-primary);
  bottom: -8px;
  left: -38px;
}

.extra-left-block::after {
  content: " ";
  position: absolute;
  width: 1px;
  height: 68%;
  background: var(--color-primary);
  bottom: -28px;
  left: -19px;
} */

.extra-left-block {
  position: relative;
}

/* Hidden State */
.extra-left-block::before,
.extra-left-block::after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  opacity: 0;
  transition: all 0.6s ease;
}

/* Horizontal Line */
.extra-left-block::before {
  width: 0;
  height: 1px;
  bottom: -8px;
  left: -38px;
}

/* Vertical Line */
.extra-left-block::after {
  width: 1px;
  height: 0;
  bottom: -28px;
  left: -19px;
  transition-delay: 0.6s;
  /* 0.6s delay for second line */
}

/* Animate When .visible class added */
.extra-left-block.visible::before {
  width: 68%;
  opacity: 1;
}

.extra-left-block.visible::after {
  height: 68%;
  opacity: 1;
}

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

/* Hidden State */
.test-main-block::before,
.test-main-block::after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  opacity: 0;
  transition: all 0.6s ease;
}

/* Horizontal Line */
.test-main-block::before {
  width: 0;
  height: 1px;
  bottom: 54px;
  right: -80px;
}

/* Vertical Line */
.test-main-block::after {
  width: 1px;
  height: 0;
  bottom: 18px;
  right: -42px;
  transition-delay: 0.6s;
  /* 0.6s delay for second line */
}

/* Animate When .visible class added */
.test-main-block.visible::before {
  width: 45%;
  opacity: 1;
}

.test-main-block.visible::after {
  height: 58%;
  opacity: 1;
}

.appnt-left-side {
  position: relative;
}

/* Hidden State */
.appnt-left-side::before,
.appnt-left-side::after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  opacity: 0;
  transition: all 0.6s ease;
}

/* Horizontal Line */
.appnt-left-side::before {
  width: 0;
  height: 1px;
  bottom: -35px;
  left: -73px;
}

/* Vertical Line */
.appnt-left-side::after {
  width: 1px;
  height: 0;
  bottom: -62px;
  left: -42px;
  transition-delay: 0.6s;
  /* 0.6s delay for second line */
}

/* Animate When .visible class added */
.appnt-left-side.visible::before {
  width: 45%;
  opacity: 1;
}

.appnt-left-side.visible::after {
  height: 68%;
  opacity: 1;
}

.testi-right-block {
  position: relative;
}

/* Hidden State */
.testi-right-block::before,
.testi-right-block::after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  opacity: 0;
  transition: all 0.6s ease;
}

/* Horizontal Line */
.testi-right-block::before {
  width: 0;
  height: 1px;
  bottom: 54px;
  right: -80px;
}

/* Vertical Line */
.testi-right-block::after {
  width: 1px;
  height: 0;
  bottom: 18px;
  right: -42px;
  transition-delay: 0.6s;
  /* 0.6s delay for second line */
}

/* Animate When .visible class added */
.testi-right-block.visible::before {
  width: 45%;
  opacity: 1;
}

.testi-right-block.visible::after {
  height: 58%;
  opacity: 1;
}


.chatbox {
  position: fixed;
  bottom: 91px;
  left: 28px;
  width: 260px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(0 0 0 / 51%);
  display: none;
  z-index: 2;
}

.chatbox-header {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 13px 15px;
  display: flex;
  justify-content: space-between;
  /* border-radius: 10px 10px 0 0; */
}

.chatbox-header h2 {
  line-height: 33px;
  font-weight: 300;
  text-transform: capitalize;
  font-size: 26px;
}

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

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

.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 .2rem #6e341963
}

.chatbox-body {
  height: 200px;
  overflow-y: auto;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-image: url(../gallery/chat-bg.jpg);
  background-size: cover;
}

.sent-btn i {
  /* transform: rotate(45deg); */
}

.close-btn {
  font-size: 34px;
  padding: 0px;
  line-height: 24px;
  width: 30px;
  height: 32px;
  text-align: center;
  display: block;
  padding-bottom: 5px;
}

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

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

/* #chatbox-open:hover::after {
  content: "Click here!";
  position: absolute;
  bottom: 100px; 
  left: 60%;
  transform: translateX(-50%);
  font-size: 26px;
  font-weight: bold;
  color: #000;
} */
.btn img {
  width: 65px;
}

#chat-messages {
  background: #ffffff;
  padding: 14px;
  border-radius: 0px 25px 25px 25px;
  box-shadow: 0px 0px 8px #00000059;
}

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




.top-wrap1 {
  position: relative;
}

.breadcrumb {
  position: relative;
  padding: 118px 0 30px;
  margin-bottom: 0;
  z-index: 2;
  display: block;
  background: transparent;
}

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

.bread-bg::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1f2123;
  left: 0px;
  top: 0px;
  /* opacity: 0.8; */
}

.bread-bg::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  left: 0px;
  top: 0px;
  z-index: -1;
  filter: grayscale(1);
}

.bread-icon {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  opacity: 0.1;
  margin: auto;
  height: fit-content;
}

.bread-bg img {
  width: 150px;
  filter: brightness(0) invert(1);
}
 
.breadcrumb h1 {
  color: var(--color-secondary);
  font-size: 50px;
  font-family: "Griffin";
  font-weight: 500;
  margin-bottom: 0px;
  letter-spacing: 4px;
}

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


.breadcrumb ul li::before {
  content: "/";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  color: #fff;
}

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

.breadcrumb ul li {
  font-size: 17px;
  display: inline-block;
  position: relative;
  text-transform: capitalize;
  padding: 0 14px;
  margin: 0
}

.breadcrumb ul {
  padding: 6px 9px;
  position: relative;
  display: inline-block;
}


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


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


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

.serv-image {
  position: relative;
  margin-bottom: 10px;
  margin-top: 10px;
}

.serv-image img {
  box-shadow: 0px 0px 10px #9f9f9f;
  border-radius: 10px;
  filter: grayscale(1);
}

.serv-matter h2 {
  color: var(--color-primary);
  font-size: 22px;
  margin: 15px 0px 8px;
}

.serv-matter h3 {
  color: var(--color-default);
  font-size: 18px;
  font-weight: 500;
  margin: 16px 0px 5px;
}

.serv-matter p a,
.serv-matter ol li a {
  color: var(--color-primary);
}

.serv-matter .ol_styles {
  padding-left: 50px;
}

.abt-inner-top h2 {
  text-transform: uppercase;
  font-size: 48px;
  margin-bottom: 10px;
}

.abt-inner-top h3 {
  text-transform: capitalize;
  font-size: 38px;
  font-weight: 400;
  padding-bottom: 10px;
}

.abt-inner-top {
  position: relative;
  border-left: 6px solid var(--color-primary);
  padding-left: 18px;
  margin-bottom: 20px;
}

.abt-inner-content p {
  text-align: justify;
  line-height: 30px;
  margin-bottom: 10px;
  font-size: 17px;
}

.abt-inner-headline {
  font-size: 25px;
  font-weight: 400;
  margin: 22px 0px 18px;
}

.abt-inner-headline span {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 40px;
}

.abt-content-row {
  padding-top: 30px;
}

.abt-content-row h3 {
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 5px;
}

.abt-inner-img img {
  border: 8px solid #fffcf8;
  box-shadow: 15px 15px 12px -10px #0000005e;
  filter: grayscale(1);
}

.abt-content-row {
  margin-bottom: 78px;
}

.abt-why-choose {
  position: relative;
  text-align: center;
  padding: 45px 28px;
  background: #fffcf8;
  border-radius: 999px;
  margin-top: 30px;
  box-shadow: inset 0px 0px 14px #0000002e;
}

.abt-why-content p {
  text-align: center;
  line-height: 28px;
  font-size: 16px;
}

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

.abt-why-img {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  line-height: 80px;
  margin: 0px auto 20px;
  border-radius: 50%;
}

.abt-btm {
  position: relative;
  padding-top: 25px;
  font-size: 25px;
  line-height: 36px;
  margin: 0px 158px;
}

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

.abt-extra-sec h3 {
  text-align: center;
}


.location-sec a {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 8px 18px;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 40px;
}

.location-sec {
  margin-top: 30px;
}

.contact-icon {
  position: relative;
  margin-bottom: 4px;
}

.contact-icon::before {
  content: " ";
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, var(--color-secondary), #ffffff00);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}

.contact-icon img {
  width: 70px;
}

.contact-block {
  position: relative;
}



.contact-box h3 {
  font-weight: 300;
  font-size: 25px;
  margin-bottom: 8px;
  color: #d8bda3;
}

.contact-box p {
  font-size: 20px;
}

.contact-block .col-md-4:nth-child(2)::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--color-primary);
  top: 0px;
  left: 0px;
  opacity: 0.2;
}

.contact-block .col-md-4:nth-child(2)::after {
  content: " ";
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--color-primary);
  top: 0px;
  right: 0px;
  opacity: 0.2;
}

.contact-box {
  position: relative;
  margin-top: 48px;
}


._cform {
  position: relative;
  padding: 48px 50px;
  margin: auto;
  text-align: center;
  box-shadow: 0 0 10px #ccc;
  border: 7px solid #f5f5f5;
  background: linear-gradient(to top, #ffffff00, #fff, #ffffff00);
  margin-top: 58px;
}

._cform h3 {
  text-transform: capitalize;
  margin-bottom: 30px;
  font-size: 34px;
  display: inline-block;
  font-family: "Griffin";
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #d8bda3;
}

._cform .form-control {
  border-bottom: 1px solid #52194e36;
  height: 50px;
  border-radius: 0px;
  font-weight: 300;
}

._cform .form-control::placeholder {
  color: #000000c3;
}

._cform .form-group textarea {
  height: 100px !important;
}

._cform .theme-btn {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 18px;
  margin-top: 33px;
}

.test-content p {
  padding-right: 100px;
  margin-bottom: 10px;
}

.ratings {
  position: relative;
  text-align: right;
  padding-right: 30px;
  font-size: 18px;
}

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

.test-content h2 {
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
}

.test-block {
  position: relative;
  padding: 16px;
  margin-bottom: 58px;
}

.test-block::before {
  content: '\201d';
  font-size: 15rem;
  color: #ccc;
  opacity: .4;
  font-family: serif;
  font-weight: 700;
  position: absolute;
  top: 8.8rem;
  right: -1rem;
  z-index: -1;
  pointer-events: none;
}

.test-block::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--color-secondary), #ffffff00);
  top: 0px;
  left: 0px;
  z-index: -1;
  border-radius: 8px;
}

.imag-page .image-scroll-mini {
  margin: 0px 0px 20px;
}


.imag-page .image-scroll-mini:hover img {
  filter: grayscale(0);
}




._blog_nav {
  position: relative;
  padding: 17px 18px;
  margin: 0 0 8px;
}

._blog_nav h4 {
  font-size: 29px;
  margin-bottom: 10px;
  display: inline-block;
  color: var(--color-primary);
  text-transform: uppercase;
}

._blog_nav ul {
  padding: 0;
  list-style: none;
  margin: 0px 28px;
}

._blog_nav ul li a {
  display: block;
  position: relative;
  padding: 15px 10px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 20px;
  background: #faf7f2;
  box-shadow: inset 0px 0px 13px #00000036;
  border-radius: 8px;
  transition: all 300ms ease;
}

._blog_nav ul li a:hover {
  background: var(--color-primary);
  color: #faf7f2;
  box-shadow: inset 0px 0px 13px #ffffff36;
}

.consult-main h3 {
  font-weight: 400;
  font-size: 24px;
}

.consult-main p {
  font-size: 19px;
}

.consult-main a {
  color: var(--color-primary);
  font-size: 17px;
}

.consultant-block .col-md-8 {
  margin-bottom: 25px;
}

.consultant-block .two h2 {
  border-bottom: none;
}

.consultant-block .two::after {
  content: " ";
  position: absolute;
  width: 55%;
  height: 1px;
  background: var(--color-primary);
  bottom: 17px;
  left: 0px;
  right: 0px;
  margin: auto;

}

/* .consultant-block .col-md-8::before {
    content: " ";
    position: absolute;
    width: 80%;
    height: 1px;
    background: var(--color-primary);
    bottom: -13px;
    left: 0px;
    right: 0px;
    margin: auto;
} */
.consult-main p {
  margin-bottom: 10px;
}

.consult-main h4 {
  font-weight: 400;
  font-size: 20px;
}

.consult-head h2 {
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  border-bottom: 1px solid;
  margin-bottom: 20px;
}

.consultant-block .col-md-4:nth-child(7)::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 80%;
  background: var(--color-primary);
  top: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
}

.consultant-block .col-md-4:nth-child(7)::after {
  content: " ";
  position: absolute;
  width: 1px;
  height: 80%;
  background: var(--color-primary);
  top: 0px;
  bottom: 0px;
  right: 0px;
  margin: auto;
}

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

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


.address-content .footer-widget__social ul {
  margin: 0px;
}


.address-content .footer-widget__social {
  margin: 10px 0px;
}

.address-box.follow-us {
  padding-left: 0px;
}

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

.research-row {
  margin-top: 28px;
}

.research-box h4 {
  font-weight: 200;
  font-size: 20px;
  color: #fff;
  line-height: 31px;
  text-transform: capitalize;
}

.research-box:nth-child(1) {
  background: #1f2123;
  padding: 15px 18px;
  border-radius: 18px;
}

.research-box a {
  display: inline-block;
  margin: 10px 0px;
  border: 1px solid #fff;
  padding: 3px 10px;
  text-transform: capitalize;
  font-size: 20px;
  color: #fff;
}

.inner-section1 p a{
  color: var(--color-default);
  font-weight: 400;
}

.stag h1{
  font-weight: 400;
}
.stag{
  margin-bottom: 5px;
}

.review-btn img{
  width: 300px;
}
.review-btn{
  position: relative;
  margin-bottom: 45px;
  text-align: end;
}

.vivideo-blk iframe {
    width: 100%;
    height: 250px;
  position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
  
    box-shadow: 0px 0px 3px #000000c2;
}