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

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

:root {
  --color-default: #313131;
  --color-primary: #d6b007;
  --color-primary-dark: #b1910a;
  --color-secondary: #284299;
  --color-secondary-dark: #172d78;
}

.container {
  position: relative;
}

.mobile-view {
  display: none;
}

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

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--color-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: #fff;
  background: var(--color-primary);
  margin-top: 3px;
  margin-bottom: 3px;
}

.main-menu .navigation > li .active i {
  color: #fff;
}

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

.main-menu .navigation > li .active .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: -1;
  background-image: url(../gallery/bg.jpg);
  background-attachment: fixed;
  background-size: cover;
}

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

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

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

.header-one {
  position: relative;
}

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

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

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

.logo-animation {
  position: absolute;
  width: 76px;
  height: 83px;
  overflow: hidden;
  margin: auto;
  left: 0px;
  right: 0px;
  top: -4px;
}

/* .lower-box .logo .logo-animation::before{
  content: " ";
  position: absolute; 
  top: 3px;
  left: 0;
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, rgb(159 129 90 / 3%), #9f815a 60%, rgb(255 255 255)), linear-gradient(to right, transparent 20%, #ab9171, #f9f9f9) !important;
  animation: animate1 1s linear infinite;
}
@keyframes animate1{
  0%{
      left: -100%;
  }
  50%,100%{
      left: 100%;
  }
}
.lower-box .logo .logo-animation::after{
  content: " ";
  position: absolute;
  top: -100%;
  right: 0;
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg,transparent,#ffffff) !important;
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}
@keyframes animate2{
  0%{
      top: -100%;
  }
  50%,100%{
      top: 100%;
  }
} */

.logo-animation span {
  position: absolute;
  max-width: 275px;
  display: block;
}

.logo-animation span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgb(159 129 90 / 3%), #9f815a 60%, rgb(255 255 255)), linear-gradient(to right, transparent 20%, #ab9171, #f9f9f9) !important;
  animation: animate1 3s linear infinite;
  opacity: 0.3;
}

@keyframes animate1 {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.logo-animation span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #ffffff) !important;
  animation: animate2 3s linear infinite;
  animation-delay: 0.75s;
  opacity: 0.3;
}

@keyframes animate2 {
  0% {
    top: -100%;
  }

  50%,
  100% {
    top: 100%;
  }
}

.logo-animation span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, rgb(159 129 90 / 3%), #9f815a 60%, rgb(255 255 255)), linear-gradient(to left, transparent 20%, #ab9171, #9f815a) !important;
  animation: animate3 3s linear infinite;
  animation-delay: 1.5s;
  opacity: 0.3;
}

@keyframes animate3 {
  0% {
    right: -100%;
  }

  50%,
  100% {
    right: 100%;
  }
}

.logo-animation span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #ffffff) !important;
  animation: animate4 3s linear infinite;
  animation-delay: 2.25s;
  opacity: 0.3;
}

@keyframes animate4 {
  0% {
    bottom: -100%;
  }

  50%,
  100% {
    bottom: 100%;
  }
}

.lower-box .nav-outer {
  position: relative;
  display: inline-block;
  text-align: right;
  margin-left: 0;
  width: 100%;
  padding: 0;
  margin-top: 0;
}

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

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

.main-menu {
  position: relative;
  display: inline-block;
  text-align: center;
  margin: 68px 0 0;
  top: 0;
}

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

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

.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: 18px;
  line-height: 30px;
  border-right: 0px;
  padding: 2px 10px;
  opacity: 1;
  color: #fff;
}

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

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

/*** 
========================================
    Mobile Menu
========================================
***/
.nav-outer .mobile-nav-toggler {
  position: relative;
  /* display: none; */
  display: block;
  float: right;
  cursor: pointer;
  padding: 25px 0;
  left: -93px;
  top: 25px;
}
.mobile-nav-toggler .flaticon-menu-1 {
  position: relative;
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 8px 5px 7px;
  font-size: 28px;
  border-radius: 50%;
}
.nav-outer .mobile-nav-toggler .inner {
  position: relative;
  display: block;
  padding: 3px 5px;
}

.mobile-menu {
  position: absolute;
  top: 111px;
  right: 455px;
  width: 248px;
  max-width: 100%;
  height: fit-content;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  background: var(--color-default);
  border-radius: 15px;
}

.mobile-menu .menu-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #02145499;
  backdrop-filter: blur(4px);
  -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 {
  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 .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-box {
  position: relative;
  right: 0px;
  bottom: 0px;
  margin: auto;
  top: 0px;
  width: auto;
  height: fit-content;
  padding: 28px 22px 23px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  text-align: left;
}

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

.mobile-menu .close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  width: 24px;
  border-radius: 5px;
  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 .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px dashed rgb(196 196 196 / 35%);
}
.mobile-menu .navigation li ul li {
  position: relative;
  display: block;
  border-top: 1px dashed rgb(196 196 196 / 35%) !important;
}

.mobile-menu .navigation li ul li:first-child {
  border-top: 0px !important;
}

.mobile-menu .navigation li:first-child {
  border-top: 0px;
}

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

.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  font-weight: 400;
  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 {
  display: none;
  background: var(--color-default) !important;
  position: absolute;
  z-index: 2;
  box-shadow: 0px 0px 8px #ffffff45;
  left: 0px;
  margin: auto;
  width: fit-content;
}
.mobile-menu .navigation li ul li > a {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  color: #fff;
}

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

.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: 135px;
  opacity: 0;
  z-index: 100;
  background-color: var(--color-secondary);
  box-shadow: 0px 0px 5px #535353;
}

.main-menu .navigation > li > ul.cstwidth1 {
  width: 200px;
}

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

.main-menu .navigation > li > ul > li > ul > li > ul {
  position: absolute;
  top: -7%;
  visibility: hidden;
  left: 200px;
  width: 155px;
  opacity: 0;
  z-index: 100;
  background-color: #ffffff;
  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 > 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 #929292;
}

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

.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;
  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 > ul > li > a {
  position: relative;
  display: block;
  padding: 5px 20px;
  line-height: 24px;
  font-size: 15px;
  text-transform: capitalize;
  color: #2e2d2d;
  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);
}

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

.social-icons {
  position: absolute;
  z-index: 1;
  top: 32px;
  right: 188px;
}
.social-icons ul li {
  margin-bottom: 13px;
  display: inline-block;
  margin-right: 5px;
}

.social-icons span {
  font-size: 14px;
  padding-bottom: 4px;
  color: #fff;
}

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

.social-icons ul li a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 29px;
  border: 1px solid;
  color: var(--color-primary);
  text-align: center;
  font-size: 13px;
  border-radius: 7px;
  transition: all 300ms ease;
}

.sec-title h2 {
  font-size: 18px;
  color: #fff;
  background: var(--color-primary);
  display: inline-block;
  padding: 3px 10px;
  font-weight: 400;
}

/* .abt-sec .sec-title h1 {
  display: block;
  font-size: 70px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-secondary);
  padding-top: 0px;
  font-family: "Exo 2", sans-serif;
} */

.sec-title h3 {
  font-size: 39px;
  padding-top: 5px;
  font-weight: 600;
  color: var(--color-secondary-dark);
}

.sec-title h4 {
  font-size: 16px;
  margin-bottom: 10px;
  display: inline-block;
  padding: 3px 0px;
  border-top: 1px solid #313131a8;
}

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

.abt-sec .col-md-7 {
  margin-top: 50px;
}

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

.abt-numb {
  position: relative;
}

/* .abt-sec::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 113%;
  background-image: url(../gallery/abt-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: -145px;
  left: -348px;
} */

.ongoing-proje {
  position: relative;
  margin-bottom: 100px;
  min-height: 70vh;
}

.proj-sec-head {
  position: relative;
}

.proj-sec-head h2 {
  font-size: 23px;
  margin-bottom: 9px;
  font-weight: 600;
}

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

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

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

.ongoing-proje-circle {
  position: relative;
  margin: auto;
  text-align: center;
  padding-top: 30px;
}

.ongoing-proje-btm {
  position: relative;
  background: #fbfaf6;
  border-radius: 20px;
  padding: 26px 12px;
  margin: 0px 70px;
}

.ongoing-proje-btm::before {
  content: " ";
  position: absolute;
  width: 80%;
  height: 50px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  box-shadow: 0px 0px 16px #000;
  z-index: -1;
}

.proje-img img {
  width: 60px;
  margin-bottom: 7px;
}

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

.proje-img::before {
  content: " ";
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #d6b00730, #ffffff00);
  border-radius: 50%;
  z-index: -1;
}

.proje-box {
  position: relative;
  z-index: 1;
}

.proje-box p {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0px;
  position: relative;
}

.ongoing-proje-btm .col-md-2:nth-child(2)::before,
.ongoing-proje-btm .col-md-2:nth-child(3)::before,
.ongoing-proje-btm .col-md-2:nth-child(4)::before,
.ongoing-proje-btm .col-md-2:nth-child(5)::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to top, #ffffff00, var(--color-secondary), #ffffff00);
  left: 0px;
  top: 0px;
  margin: auto;
  bottom: 0px;
}

.ongoing-projects {
  position: relative;
  margin-bottom: 100px;
}

.amen-row {
  margin-top: 50px;
  position: relative;
  padding-bottom: 10px;
}

.amen-row::before {
  content: " ";
  position: absolute;
  width: 84%;
  height: 100%;
  border: 1px solid #d6b00738;
  left: 0px;
  right: 0px;
  margin: auto;
  top: 20px;
}

.amen-head {
  margin-bottom: 20px;
}

.amen-head h2 {
  color: var(--color-secondary-dark);
  background: #fff;
  display: inline-block;
  padding: 0px 38px;
}

.serv-sec {
  position: relative;
  padding: 50px 0px;
  margin-bottom: 25px;
  z-index: 1;
}

.serv-sec::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 90%;
  background: #1f1d1a;
  top: 0px;
  left: 0px;
  clip-path: polygon(0 0, 100% 0, 100% 61%, 50% 85%, 0 61%);
  z-index: -2;
}

.serv-sec::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 90%;
  background-image: url(../gallery/serv-bg.png);
  top: 0px;
  left: 0px;
  clip-path: polygon(0 0, 100% 0, 100% 61%, 50% 85%, 0 61%);
  background-position: top center;
  filter: grayscale(1);
  opacity: 0.12;
  z-index: -1;
}

.serv-sec .sec-title h3 {
  color: #fff;
}

.serv-sec .sec-title p {
  color: #fff;
  margin: 0px 300px;
  font-size: 15px;
  padding: 0;
}

.serv-sec .ad-txt {
  margin-bottom: 55px;
}

.serv-sec .ad-txt h2 {
  color: #fff;
  display: inline-block;
  padding: 13px 0;
  text-transform: uppercase;
}

.serv-row {
  padding-top: 40px;
  position: relative;
}

.serv-row::before {
  content: " ";
  position: absolute;
  width: 51%;
  height: 1px;
  background: #ffffff6a;
  /* background: linear-gradient(to right,#ffffff00,var(--color-primary),#ffffff00); */
  top: 18px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.serv-trans {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
  text-align: center;
  top: -35px;
  bottom: 0px;
  height: fit-content;
}

.serv-trans h2 {
  font-size: 150px;
  opacity: 0.05;
  text-transform: uppercase;
  color: var(--color-primary);
}

.serv-blk h2 {
  color: var(--color-secondary-dark);
  margin-bottom: 10px;
  font-size: 19px;
  text-align: center;
  font-weight: 600;

  padding: 4px 0px 7px;
  text-transform: uppercase;
}

.serv-row .col-md-3:nth-child(2),
.serv-row .col-md-3:nth-child(3) {
  margin-top: 128px;
}

.sec-title p {
  padding: 0 150px;
  font-size: 15px;
  margin-bottom: 0px;
}

.ad-txt h2 span {
  color: var(--color-primary);
  font-size: 45px;
}

.ad-txt h2::before,
.ad-txt h2::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: linear-gradient(to left, var(--color-primary), #fff0);
  top: 0;
  left: 0;
}

.ad-txt h2::after {
  top: auto;
  bottom: 0;
  background: linear-gradient(to right, var(--color-primary), #fff0);
}

.mvv-blk h2 {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 21px;
  text-transform: uppercase;
}

.mvv-blk {
  position: relative;
  padding: 4px;
  text-align: center;
}

.mvv-blk p {
  font-size: 15px;
  margin-bottom: 0px;
  padding-top: 16px;
}

.mvv-blk::before {
  content: "";
  position: absolute;
  height: 89px;
  width: 100%;
  background: url(../gallery/m1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 18px;
  top: 16px;
  left: -5px;
}

.abt-row .col-md-4:nth-child(odd) {
  margin-top: 45px;
}

.mvv-blk::after {
  content: "";
  position: absolute;
  height: 200px;
  width: 200px;
  background: linear-gradient(-45deg, #d6b00752, #fff0, #fff0);
  z-index: -1;
  border-radius: 50%;
  right: -7px;
  margin: auto;
  bottom: -14px;
}

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

/* .en_form::before {
  content: " ";
  position: absolute;
  width: 99%;
  height: 98%;
  border: 1px solid #fff;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  opacity: 0.4;
  border-radius: 5px;
} */

.en_form {
  position: relative;
  padding: 45px 48px 45px 80px;
  border-radius: 10px;
  z-index: 1;
  color: var(--color-default);
  box-shadow: 0px 20px 20px -15px #000;
  overflow: hidden;
  border-radius: 20px;
}
.en_form::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1d1b19;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  opacity: 0.6;
  border-radius: 5px;
}

.en_form::after {
  content: "";
  border-radius: 10px;
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../gallery/contact-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  top: 0;
  left: 0;
  filter: brightness(0.5);
}
.contact-home {
  position: relative;
  background: #ffffff14;
  padding: 20px;
  border-radius: 5px;
  backdrop-filter: blur(3px);
}

.en_form h2 {
  color: #fff;
  text-transform: uppercase;
  padding: 2px 16px;
  font-size: 32px;
  display: inline-block;
  background: #d6b00740;
  margin-bottom: 10px;
  font-weight: 300;
}

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

.en_form .form-control::placeholder {
  color: #f6f6f6;
}

.en_form .form-control {
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.17);
  border-bottom: none;
  color: #f6f6f6;
  font-size: 14px;
  padding: 13px 30px;
  padding-left: 30px;
  padding-left: 32px;
  box-shadow: 0 0 10px #ffffff4f;
}

.en_form textarea {
  height: 120px;
}

.en_form .form-group i {
  position: absolute;
  top: 15px;
  color: #f6f6f6;
  left: 16px;
  font-size: 17px;
}

.theme-btn {
  background: var(--color-primary);
  color: var(--color-default);
  padding: 6px 23px 6px;
  border-radius: 7px;
  border-color: var(--color-primary);
  margin-top: 34px;
  cursor: pointer;
}

.theme-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-default);
}

.footer-up {
  position: relative;
  padding: 40px 20px;
}

.footer-up::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-secondary);
  top: 0px;
  left: 0px;
  border-radius: 50px 0px 50px 0px;
}

.en_form p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 14px;
}

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

.footer-logo {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}

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

.footer-about::before {
  content: " ";
  position: absolute;
  width: 60%;
  height: 1px;
  background: #e4e4e46b;
  left: 0px;
  right: 0px;
  margin: auto;
  top: 0px;
}

.footer-about p {
  line-height: 30px;
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 300;
  color: #ffffff;
}

.footer-about a {
  border: 1px solid;
  color: #e4e4e4;
  padding: 3px 10px;
  font-size: 14px;
}

.main-footer {
  position: relative;
  padding-top: 70px;
  color: #e4e4e4;
}

.main-footer::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  top: 0px;
  opacity: 0.5;
}

.main-footer video {
  position: absolute;
  top: 0px;
  z-index: -1;
}

.useful-links {
  display: inline-block;
  margin: 25px 0 35px;
  padding: 5px 22px;
  border-top: 1px solid #00000069;
  border-bottom: 1px solid #00000069;
  background: #ffffff26;
}

.useful-links .useful-ul {
  text-align: center;
  display: inline-block;
}

.useful-links span {
  display: inline-block;
  margin-right: 20px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 21px;
}

.useful-links .useful-ul li {
  display: inline-block;
}

.useful-links .useful-ul li a {
  padding: 0 7px;
  border-right: 1px solid #989898;
  font-size: 15px;
  color: #fff;
}

.useful-ul li:last-child a {
  border-right: none;
}

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

.footer-adr .f-icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin: auto;
  color: #535353;
  background: #fff;
}

.footer-adr .fad-txt h3 {
  font-size: 20px;
  color: #fff;
  margin: 9px 0px 3px;
}

.fad-txt p {
  font-size: 15px;
}

.footer-about {
  margin-bottom: 15px;
}

.footer-adr .col-md-4:nth-child(2) {
  border-left: 1px solid #8f8c8c;
  border-right: 1px solid #8f8c8c;
}

.footer-bottom p {
  position: relative;
  display: inline-block;
  padding: 9px 0px 5px;
  font-size: 15px;
  margin-bottom: 0px;
}
.footer-bottom p a {
  font-weight: 600;
}
.footer-bottom {
  position: relative;
}

.footer-bottom::before {
  content: " ";
  position: absolute;
  width: 70%;
  height: 100%;
  border-top: 1px solid #ffffff69;
  left: 0px;
  top: 0px;
  right: 0px;
  margin: auto;
}

.top-social {
  position: relative;
  text-align: center;
  top: 0px;
  right: 0px;
  width: 505px;
  margin: 0px auto 0px;
}

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

.top-social li:last-child {
  border-right: 0;
}

.top-social li a {
  display: block;
  width: 34px;
  height: 34px;
  color: #fff;
  text-align: center;
  line-height: 34px;
  font-size: 14px;
  margin: 0px 1px;
  background: linear-gradient(to left, var(--color-secondary), var(--color-primary));
  border-radius: 50%;
}

.top-social li a img {
  width: 15px;
}

.top-social span {
  line-height: 33px;
  display: block;
  margin-right: 10px;
}

.top-social li a:hover {
  color: #fff;
}

.top-social ul {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 40px;
  position: relative;
}

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

.plan-sec h2 {
  font-size: 29px;
  font-weight: 500;
  color: #fff;
  background: #757575;
  display: inline-block;
  padding: 3px 28px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom: 3px solid var(--color-primary);
}

.plan-img img {
  border-radius: 10px;
  box-shadow: 1px 1px 9px 1px #c7c7c7;
}

.plan-head {
  margin-bottom: 10px;
}

.plan-img {
  margin: 10px;
}

.top-wrap1 {
  position: relative;
}

.breadcrumb {
  position: relative;
  padding: 245px 0 99px;
  margin-bottom: 0;
  display: block;
  background: transparent;
  text-align: right;
}

.breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/breadcrumb.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0.2) grayscale(0.3);
  z-index: -1;
}

.breadcrumb h1 {
  color: #ffffff4a;
  font-size: 55px;
  text-transform: uppercase;
  font-weight: 100;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.breadcrumb h2 {
  color: #ffffff4a;
  font-size: 55px;
  text-transform: uppercase;
  font-weight: 100;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

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

.breadcrumb ul li.active a {
  color: var(--color-primary);
  font-weight: 500;
}

.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: 16px;
  display: inline-block;
  position: relative;
  color: var(--color-default);
  text-transform: capitalize;
  padding: 0 14px;
  margin: 0;
}

.breadcrumb ul {
  position: relative;
}

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

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

.contact-form {
  position: relative;
  text-align: center;
  padding: 50px 23px 48px;
  padding-bottom: 43px;
  z-index: 999;
}

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

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

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

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

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

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

.contact-inner-box {
  padding: 0px 30px;
}

.contact-map iframe {
  box-shadow: 8px 64px 24px -59px #1f1b17d1;
  border-radius: 22px;
}

.contact-ipage {
  position: relative;
}

.adr-info {
  display: inline-flex;
  margin: 19px 0;
}

.adr-info p {
  margin-bottom: 0px;
}

.adr-icon i {
  font-size: 20px;
  color: var(--color-primary);
  width: 34px;
  height: 34px;

  text-align: center;
  line-height: 34px;

  margin: 0px 1px;

  border-radius: 50%;
  border: 1px solid var(--color-primary-dark);
}

.adr-icon {
  margin-right: 15px;
}

.adr-txt {
  line-height: 36px;
}

.contact-iadr {
  position: relative;
  padding: 10px;
  z-index: 0;
  padding-left: 25px;
  margin-bottom: 34px;
  margin-top: 80px;
}

.contact-iadr::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border: 2px solid var(--color-primary);
  top: -16px;
  left: -15px;
  z-index: -1;
}

.contact-iadr::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff8da;
  border-radius: 19px;
  z-index: -1;
  left: 0;
  top: 0;
}

.adr-head {
  position: absolute;
  writing-mode: sideways-lr;
  background: var(--color-primary-dark);
  color: #fff;
  padding: 15px 0px;
  left: -34px;
  top: -40px;
}

.adr-head h2 {
  font-weight: 400;
  font-size: 30px;
}

.contact-map {
  text-align: center;
  margin: auto;
}

.contact-map img {
  border: 8px solid #ffffff;
  box-shadow: 0px 0px 16px #00000030;
}

.contact-ipage .c-left {
  position: relative;
}

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

.main-timeline .timeline {
  width: 100%;
  padding: 50px 0;
  box-shadow: 10px 0 10px -16px #000 inset;
  display: inline-block;
}

.main-timeline .timeline-content {
  color: #fff;

  text-align: center;
  width: 50%;
  padding: 20px 130px 20px 85px;
  /* border: 5px solid rgb(172, 172, 172);
  border-left: 0 solid transparent; */

  box-shadow: 10px 0 10px -10px #000 inset;
  border-radius: 0 0px 70px 0;
  display: inline-block;
  position: relative;
  background: var(--color-default);
  /* background: linear-gradient(to right, var(--color-default), #a8a8a8); */
  background: linear-gradient(to right, #dbdbdb, #a8a8a800);
}

.main-timeline .timeline-content:before {
  content: "";
  height: 120px;
  width: 120px;
  background: linear-gradient(195deg, rgba(214, 176, 7, 0.24), rgba(255, 255, 255, 0.5));

  border-radius: 30px;
  position: absolute;
  right: -60px;
  top: -60px;
  border-radius: 50%;
}

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

.main-timeline .title {
  font-size: 25px;
  margin: 0 0 5px 0;

  color: #fff;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  border-radius: 25px;
}

.main-timeline .description {
  font-size: 15px;

  margin: 0;
  color: var(--color-default);
}

.main-timeline .timeline-icon {
  font-size: 45px;
  display: block;
  position: absolute;
  right: -38px;
  top: -58px;
  width: 72px;
}

.main-timeline .timeline-year {
  font-size: 35px;
  display: block;
  position: absolute;
  top: 20px;
  right: 15px;
}

.main-timeline .timeline:nth-child(even) {
  box-shadow: -10px 0 10px -16px #000 inset;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
  float: right;
  padding: 20px 85px 20px 130px;
  border-radius: 0px 0px 0px 70px;
  box-shadow: -10px 0 10px -10px #000 inset;
  /* border: 5px solid rgb(172, 172, 172);
  border-right: 0 solid transparent; */
}

.main-timeline .timeline:nth-child(even) .title {
  background: linear-gradient(to left, var(--color-primary-dark), var(--color-secondary));
}

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

.main-timeline .timeline:nth-child(even) .timeline-year {
  right: auto;
  left: 15px;
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
  right: auto;
  left: -38px;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
  background: linear-gradient(to left, #dbdbdb, #a8a8a800);
}

.main-timeline .timeline:nth-child(even) .timeline-content:before {
  background: linear-gradient(125deg, rgba(40, 66, 153, 0.21), rgba(255, 255, 255, 0.5));
}

/* .main-timeline .timeline:nth-child(4n + 3) .timeline-content {
  background: linear-gradient(165deg, #ee9b3d 49%, #f7a042 50%);
}
.main-timeline .timeline:nth-child(4n + 3) .timeline-content:before {
  background: linear-gradient(165deg, rgba(248, 178, 49, 0.5) 49%, rgba(260, 207, 60, 0.5) 50%);
}
.main-timeline .timeline:nth-child(4n + 4) .timeline-content {
  background: linear-gradient(165deg, #a24f8b 49%, #9e4284 50%);
}
.main-timeline .timeline:nth-child(4n + 4) .timeline-content:before {
  background: linear-gradient(165deg, rgba(114, 24, 98, 0.5) 49%, rgba(150, 43, 130, 0.5) 50%);
} */
@media screen and (max-width: 990px) {
  .main-timeline .timeline-content {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .main-timeline .timeline {
    padding-right: 40px;
  }

  .main-timeline .timeline-content {
    width: 100%;
    padding: 15px 140px 15px 50px;
  }

  .main-timeline .title {
    font-size: 20px;
    text-align: center;
  }

  .main-timeline .timeline:nth-child(even) {
    box-shadow: 10px 0 10px -16px #000 inset;
  }

  .main-timeline .timeline:nth-child(even) .timeline-content {
    float: left;
    padding: 15px 140px 15px 50px;
    border-radius: 0 70px 70px 0;
    box-shadow: 10px 0 10px -10px #000 inset;
    border: none;
    border-left: 0 solid transparent;
  }

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

  .main-timeline .timeline-content:before,
  .main-timeline .timeline:nth-child(even) .timeline-content:before {
    height: 110px;
    top: -55px;

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

  .main-timeline .timeline:nth-child(even) .timeline-year {
    left: auto;
  }

  .main-timeline .timeline-year,
  .main-timeline .timeline:nth-child(even) .timeline-year {
    font-size: 28px;
    top: 10px;
    right: 25px;
  }

  .main-timeline .timeline-icon,
  .main-timeline .timeline:nth-child(even) .timeline-icon {
    font-size: 40px;
    right: 0;
    top: -43px;
    left: 0;
    margin: auto;
  }
}

@media screen and (max-width: 479px) {
  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 75px 20px 15px 20px;
    text-align: left;
    border-radius: 0 50px 50px 0;
  }

  .main-timeline .timeline-year,
  .main-timeline .timeline:nth-child(even) .timeline-year {
    top: 7px;
  }
}

.timeline-icon img {
  filter: brightness(0);
  opacity: 0.4;
}

.box {
  background: linear-gradient(to right, var(--color-primary-dark) 0%, var(--color-secondary-dark) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 1px 14px 9px -10px #6f6f6f;
}

.box:before,
.box:after,
.box .box-content:before,
.box .box-content:after {
  content: "";
  background: #fff;
  width: 0;
  height: 1px;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
  transition: all 600ms ease;
}

.box:after {
  top: auto;
  bottom: 15px;
  left: auto;
  right: 15px;
}

.box .box-content:before,
.box .box-content:after {
  width: 1px;
  height: 0;
}

.box .box-content:after {
  left: auto;
  right: 15px;
  top: auto;
  bottom: 15px;
}

.box:hover:before,
.box:hover:after {
  width: calc(100% - 60px);
}

.box:hover .box-content:before,
.box:hover .box-content:after {
  height: calc(100% - 60px);
}

.box img {
  width: 100%;
  height: auto;
  transform: scale3d(1.1, 1.1, 1);
  transition: all 0.25s linear;
}

.box:hover img {
  opacity: 0.25;
  transform: scale(1.25);
}

.box .inner-content {
  color: #fff;
  text-align: center;
  width: 70%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 70%;
  left: 50%;
  transition: all 600ms ease;
}

.box:hover .inner-content {
  opacity: 1;
  top: 50%;
}

.box .title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 3px;
}

.box .post {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0 0 12px;
  display: block;
}

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

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

.box .icon li a {
  color: #fff;
  font-size: 18px;
  line-height: 32px;
  height: 35px;
  width: 35px;
  border: 2px solid #fff;
  border-radius: 10px 0 10px 0;
  display: block;
  transition: all 0.3s;
}

.box .icon li a:hover {
  color: var(--color-primary-dark);
  background: #fff;
  border-radius: 0 10px 0 10px;
}

.box .icon li a i {
  line-height: inherit;
}

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

.imgs-inner .col-md-3 {
  margin-bottom: 25px;
  padding: 0px 11px;
}

.project-inner-head h2 {
  text-transform: uppercase;
  font-size: 30px;
  display: inline-block;
  border-bottom: 1px solid;
  margin-bottom: 17px;
  font-weight: 500;
}

.main-proj-logo {
  margin-bottom: 40px;
}

.amene-proj {
  margin-bottom: 58px;
  border: 10px;
  position: relative;
  margin-top: 48px;
}

/* .amene-proj::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  box-shadow: 0px 20px 12px -10px #00000075;
  z-index: -1;
} */

.features_title h4 {
  text-transform: uppercase;
  font-size: 30px;
  display: inline-block;
  border-bottom: 1px solid;
  margin-bottom: 17px;
  font-weight: 500;
}

.amene-proj .project-inner-head h2 {
  margin-bottom: 15px;
}

.project_features_row .col-md-6,
.project_features_row .col-md-8 {
  text-align: center;
  border: 1px solid #6c6c6c30;
  background: #f8f3df;
  padding: 8px 0;
}

.project_features_row .col-md-12 {
  text-align: center;
  border: 1px solid #7c7c7c;
  background: #fbe7a3;
  padding: 2px 0;
}

.project-inner .col-md-3 .box {
  margin-bottom: 30px;
}

.abt-inner-head h2 {
  font-size: 26px;
  color: var(--color-secondary-dark);
  padding-bottom: 4px;
  position: relative;
}

.main-head {
  position: relative;
  margin-bottom: 6px;
  padding-bottom: 5px;
}

.main-head::before {
  content: " ";
  position: absolute;
  width: 45%;
  height: 1px;
  background: linear-gradient(to right, var(--color-secondary-dark), #ffffff00);
  bottom: 0px;
  left: 0px;
}

.abt-inner-head h2 span {
  text-transform: uppercase;
  color: var(--color-primary);
  font-size: 38px;
  font-weight: 600;
}

.abt-inner-matter p {
  font-size: 15px;
  text-align: justify;
  line-height: 30px;
}

.abt-inner-head1 h2 {
  color: var(--color-secondary-dark);
  font-size: 25px;
  margin-bottom: 3px;
}

.abt-inner-matter h3 {
  font-size: 18px;
  color: var(--color-default);
  position: relative;
}

.abt-inner-matter h3::before {
  content: " ";
  position: absolute;
  width: 10px;
  height: 2px;
  background: var(--color-secondary-dark);
  left: -20px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.main-matter1 {
  padding-top: 20px;
}

.pillars {
  background: var(--color-secondary-dark);
  display: inline-block;
  padding: 3px 10px;
}

.pillars h2 {
  color: #fff;
}

.main-matter1 {
  position: relative;
  padding-left: 20px;
  margin-left: 20px;
}

.main-matter1::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--color-default);
  left: 0px;
  top: 0px;
}

.abt-inner-btm p {
  font-size: 15px;
  text-align: justify;
}

.abt-inner-row {
  margin-bottom: 80px;
}

:root {
  --white: #fff;
  --color: var(--color-secondary-dark);
}

.serviceBox {
  background: var(--color);
  text-align: center;
  padding: 2px 20px 0px;
  border-radius: 10px 10px;
  position: relative;
  margin: 45px auto 0;
  z-index: 1;
}

.serviceBox img {
  width: 59px;
  margin-bottom: 10px;
}

.serviceBox:before {
  content: "";
  background: var(--white);
  width: calc(100% - 15px);
  height: calc(100% + 40px);
  border-radius: 10px 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}

.serviceBox .service-icon {
  color: var(--color);
  background: var(--color);
  font-size: 45px;
  line-height: 100px;
  height: 100px;
  width: 100px;
  border-radius: 10px 10px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transform: translateX(-50%);
  position: absolute;
  top: -65px;
  left: 50%;
  margin: 0 auto;
}

.serviceBox .service-icon:before {
  content: "";
  background: var(--white);
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border-radius: 50% 50%;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}

.serviceBox .service-icon i {
  line-height: inherit;
}

.serviceBox .title {
  color: var(--color);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 7px;
}

.serviceBox .description {
  font-size: 15px;
  line-height: 27px;
  margin: 0;
}

.serviceBox.green {
  --color: var(--color-primary);
}

@media only screen and (max-width: 990px) {
  .serviceBox {
    margin: 56px auto 19px;
  }
}

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

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

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

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

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

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

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

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

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

.inner-blog-row .col-md-5:nth-child(1)::before {
  content: " ";
  position: absolute;
  width: 1px;
  height: 60%;
  top: 0px;
  bottom: 0px;
  margin: auto;
  right: 0px;
  /* background: var(--color-primary); */
}

.inner-blogs {
  margin-bottom: 40px;
}

.inner-blog-img img {
  border: 6px solid #f5f5f5;
  box-shadow: 0px 14px 7px -10px #969696;
}

.inner-blog-info {
  margin-top: 20px;
}

.inner-blog-info h2 {
  font-size: 20px;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.inner-blog-info a {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 1px 7px;
}

.blog-inner-content p {
  line-height: 30px;
  font-size: 15px;
  text-align: justify;
}

.blog-inner-content h2 {
  font-size: 25px;
  color: var(--color-secondary-dark);
  margin-bottom: 7px;
}

.blog-inner-img img {
  border: 5px solid #ffffff;
  box-shadow: 0px 0px 11px #0000003b;
}

.abt-sec .sec-title h3 {
  display: block;
  font-size: 65px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-secondary);
  padding-top: 0px;
  font-family: "Exo 2", sans-serif;
}

.abt-headt h1 {
  font-weight: 500;
  font-size: 35px;
  margin-bottom: 10px;
  color: var(--color-secondary-dark);
}

.project-inner h1 {
  color: #00000000;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.download-brochure {
  position: fixed;
  bottom: 100px;
  left: 20px;
  width: 63px;
  height: 63px;
  color: #ffffff;
  font-size: 28px;
  line-height: 63px;
  text-align: center;
  z-index: 9999;
  cursor: pointer;
  background: var(--color-secondary);
  border-radius: 50%;
  transition: all 300ms ease;
  animation: bgBlink 1s infinite;
}

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

.download-brochure:hover {
  background: var(--color-secondary);
}

.download-brochure::after {
  content: "Download Brochure";
  position: absolute;
  left: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-secondary);
  color: #fff;
  padding: 11px 10px;
  font-size: 16px;
  white-space: nowrap;
  border-radius: 5px;
  opacity: 0;
  transition: 0.3s;
  height: -webkit-fill-available;
  line-height: 11px;
}
.download-brochure:hover::after {
  opacity: 1;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s ease;
}

.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

.popup-box {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  max-width: 418px;
  width: 90%;
  animation: zoomIn 0.4s ease;
  z-index: 2;
}

.popup-img {
  width: 100%;
  border-radius: 10px;
}

.download-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: var(--color-secondary);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.download-btn:hover {
  background: var(--color-primary);
  color: #fff;
}
.close-btn {
  position: absolute;
  top: -9px;
  right: -15px;
  font-size: 22px;
  cursor: pointer;
  background: #d71717;
  color: #fff;
  line-height: 30px;
  z-index: 10 !important;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.abt-inner-img img {
  border: 2px solid #fff;
  box-shadow: 0px 19px 8px -10px #00000070;
}

.extras-blk {
  position: relative;
  padding: 40px 25px 30px;
  margin-bottom: 83px;
  color: #fff;
}

.extras-blk::before {
  height: 106%;
  width: 100%;
  top: -5px;
  left: 0;
  border: 1px solid var(--color-secondary);
  border-left: 0;
  border-right: 0px;
  z-index: -1;
}
.extras-blk::after,
.extras-blk::before {
  position: absolute;
  content: "";
}
.extras-blk .col-md-3:first-child,
.extras-blk .col-md-3:nth-child(2),
.extras-blk .col-md-3:nth-child(3) {
  border-right: 1px solid #fff;
}
.extras-blk .col-md-3 {
  padding: 0;
}
.extras-sec .extras-txt {
  color: #fff;
  text-align: center;
}
.extras-txt h2 {
  font-size: 78px;
  font-weight: 300;
  line-height: 62px;
  font-family: "Cinzel", serif;
}
.testimonial-sec .test-blk p {
  margin-bottom: 0;
}
.extras-blk::after {
  height: 100%;
  width: 100%;
  background-image: url(../gallery/extra-bg.jpg);
  background-position: center;
  top: 0;
  left: 0;
  z-index: -1;
}

.extras-blk::after,
.extras-blk::before {
  position: absolute;
  content: "";
}

.abt-row {
  margin-bottom: 50px;
}

.contact-right-content {
  color: #fff;
  padding: 0px 0px 0px 58px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right-content .sub-title {
  color: #d7b64b;
  letter-spacing: 3px;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-right-content h4 {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 5px;
  font-family: "Cinzel", serif;
}

.contact-right-content h4 span {
  color: #d7b64b;
  text-transform: uppercase;
  display: inline-block;
}

.contact-right-content img {
  filter: brightness(0) invert(1);
  width: 260px;
  margin-bottom: 8px;
}

.contact-right-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #f2f2f2;
  max-width: 500px;
  margin-bottom: 20px;
}

.call-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}

.call-icon {
  width: 75px;
  height: 75px;
  border: 2px solid #d7b64b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #d7b64b;
}

.call-box small {
  color: #ffffff;
  display: block;
  font-size: 14px;
}

.call-box h3 {
  margin: 0;
  font-size: 34px;
  color: #d7b64b;
  font-weight: 400;
}

.call-box h3 a {
  color: #d7b64b;
  text-decoration: none;
}

.call-box span {
  color: #fff;
  font-size: 17px;
}

.features {
  display: flex;
  gap: 50px;
}

.feature {
  text-align: center;
}

.feature i {
  width: 75px;
  height: 75px;
  border: 2px solid #d7b64b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d7b64b;
  font-size: 28px;
  margin: 0 auto 15px;
}

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

@media (max-width: 991px) {
  .contact-right-content {
    padding: 40px 20px 0px;
    text-align: center;
  }

  .contact-right-content p {
    max-width: 100%;
  }
  .call-box small {
    font-size: 13px;
  }
  .call-box span {
    font-size: 15px;
  }
  .call-box {
    justify-content: center;
    text-align: left;
    gap: 8px;
    margin-bottom: 10px;
  }

  .features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .contact-right-content h2 {
    font-size: 40px;
  }
}
