/* Font Family ***********************************************************************/
@font-face {
  font-family: 'CeraPro-Light';
  src: url('../fonts/Cera-Pro/CeraPro-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CeraPro-Regular';
  src: url('../fonts/Cera-Pro/CeraPro-Regular.woff') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CeraPro-Medium';
  src: url('../fonts/Cera-Pro/CeraPro-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CeraPro-Bold';
  src: url('../fonts/Cera-Pro/CeraPro-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy/Gilroy-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* common css ******************************************************************************/
:root {
  --white: #FFFFFF;
  --black: #000000;
  --green: #43541D;
  --golden-beige: #D2AB67;
  --cream: #FFF9EF;
}

.white {
  color: var(--white);
}

.black {
  color: var(--black);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

.common::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
}

body {
  font-family: 'CeraPro-Regular';
}

body.show {
  position: fixed;
  top: 0;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.3;
  color: var(--golden-beige);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h2 {
  font-family: 'CeraPro-Medium';
  text-transform: uppercase;
  font-size: 64px;
}

h3 {
  font-size: 44px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 28px;
}

h6 {
  font-size: 24px;
}

p {
  margin: 0;
  padding: 0;
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--black);
  font-family: 'CeraPro-Regular';
}

p:last-child {
  margin-bottom: 0;
}

p span {
  font-family: 'CeraPro-Bold';
}

.small {
  font-size: 16px;
}

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

a {
  font-family: "CeraProRegular", sans-serif;
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-size: 26px;
}

span {
  display: inline-block;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.btn-common {
  font-family: 'CeraPro-Medium';
  font-size: 22px;
  padding: 20px 40px;
  background-color: var(--golden-beige);
  color: var(--white);
  border-radius: 10px;
  border: 1px solid var(--golden-beige);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.btn-common:hover,
.contact-form input[type="submit"]:hover {
  background-color: var(--white);
  color: var(--golden-beige);
}

.btn-common img {
  max-width: 30px;
  margin-right: 10px;
}

.btn-common.green {
  background-color: var(--green);
  border: 1px solid var(--green);
}

.btn-common.green:hover {
  background-color: var(--white);
  color: var(--green);
}

section {
  padding: 80px 0;
  overflow: hidden;
}

.bg {
  padding: 100px 0;
}

.mobile {
  display: none !important;
}

.desktop {
  display: block !important;
}

.desktop.journey-steps {
  display: flex !important;
}

img,
video {
  max-width: 100%;
}

.button-box {
  padding-top: 20px;
}

.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.owl-theme .owl-dots .owl-dot span {
  background: var(--black);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--white);
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.owl-nav {
  margin-top: 0;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.owl-nav button.owl-prev {
  left: 0;
}

.owl-nav button.owl-next {
  right: 0;
}

.form-control-common {
  background: var(--white);
  border: 1px solid var(--black);
  font-size: 20px;
  padding: 15px 50px 15px 20px;
  width: 100%;
  appearance: textfield;
  color: var(--black);
  border-radius: 0;
  box-shadow: none;
  resize: none;
  outline: none;
}

.input-group {
  padding-bottom: 30px;
}

/* header css start ******************************************************************************/

#header {
  width: 100%;
  padding: 15px 0;
  position: absolute;
  z-index: 9999999;
}

#header .header-box .main-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
}

/* #header .header-box .main-nav nav {
  margin-top: 20px;
} */

#header .logo-box {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

#header .logo-box img {
  max-width: 200px;
  width: 100%;
}

#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 30px;
}

#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: .5s all ease-in-out;
  position: relative;
  border-radius: 5px;
}

#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}

#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}

#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}

#header .button-box {
  margin-left: 20px;
  padding-top: 0;
}

#header .main-nav nav {
  margin-top: 30px;
}

#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 20px;
}

#header .main-nav .nav-box {
  display: flex;
}

#header nav li.dropdown a.has-dropdown {
  position: relative;
  padding-right: 25px;
}

#header nav li.dropdown a.has-dropdown::after {
  content: "";
  width: 14px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: contain;
}

#header .main-nav nav ul li a {
  font-family: 'CeraPro-Medium';
  text-transform: uppercase;
  color: var(--white);
  font-size: 24px;
}

/* dropdown container */

/* mega menu */

#header .mega-menu {
  position: absolute;
  top: calc(100% - 5px);
  right: 0;
  transform: translate(0, 20px);
  min-width: 650px;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 99999999;
}

/* show menu */

#header nav li.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 5px);
  pointer-events: auto;
}

/* sections */

#header .mega-section {
  margin-bottom: 25px;
}

#header .mega-section:last-child {
  margin-bottom: 0;
}

#header .mega-section h3 {
  font-family: 'CeraPro-Bold';
  color: var(--golden-beige);
  font-size: 22px;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--green);
  padding-bottom: 10px;
}

/* grid layout */

#header .mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 40px;
}

#header nav ul li .mega-grid a {
  font-family: 'CeraPro-Regular';
  text-transform: uppercase;
  display: inline-block;
  /* key change */
  width: fit-content;
  /* prevents stretching */
  color: var(--black);
  font-size: 16px;
  padding: 2px 0;
  transition: color 0.2s ease;
}

#header .mega-grid a:hover {
  color: var(--golden-beige);
}

/* Footer CSS Start ******************************************************************************/
.footer {
  background: #1A1A1A;
  padding: 50px 0 30px;
  color: var(--white);
}

.footer-box {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer .footer-logo {
  width: calc(30% - 33.33px);
  position: relative;
}

.footer .footer-logo::after {
  content: "";
  width: 1px;
  height: 80%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-color: var(--golden-beige);
}

.footer-links {
  width: calc(20% - 33.33px);
  display: flex;
  align-items: center;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-links ul li a {
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover,
.footer-info a:hover {
  color: var(--golden-beige);
}

.footer-info {
  width: calc(50% - 33.33px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.footer-info a {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}

.footer-divider {
  margin: 30px 0;
  opacity: 1 !important;
  background-color: var(--golden-beige);
}

.footer .copyright {
  font-family: 'Gilroy';
  font-size: 16px;
  text-align: center;
  color: var(--white);
}

/* Footer CSS End ******************************************************************************/

/* homeBanner css ******************************************************************************/

.home-banner {
  padding: 0;
}

.home-banner .banner-slider .slider-item {
  height: 100dvh;
  position: relative;
}

.home-banner .banner-slider .image-box {
  position: relative;
  height: 100dvh;
}

.home-banner .banner-slider .image-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: radial-gradient(circle at center,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 1) 100%);
}

.home-banner .banner-slider .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner .banner-slider .text-box {
  width: 100%;
  padding: 0 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home-banner .banner-slider .text-box h2 {
  font-family: 'CeraPro-Regular';
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  font-size: 76px;
  max-width: 900px;
  margin: 0 auto;
}

.home-banner .banner-slider .text-box h2 span {
  font-family: 'CeraPro-Bold';
}

.home-banner .banner-slider .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  gap: 10px;
}

.home-banner .banner-slider .owl-dots button {
  width: 18px;
  height: 18px;
  background-color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.home-banner .banner-slider .owl-dots button.active {
  background-color: var(--golden-beige);
}

/* who-we css ******************************************************************************/

#who-we {
  position: relative;
  background-color: var(--cream);
  padding-bottom: 200px;
  overflow: visible;
}

#who-we .who-we-box .row {
  align-items: center;
}

#who-we .who-we-box .section-heading {
  text-align: left;
  margin: 0;
}

#who-we .who-we-box .section-heading p {
  max-width: 620px;
}

#who-we .who-we-box .section-heading p strong {
  font-family: 'CeraPro-Bold';
}

#who-we .image-box {
  text-align: center;
}

#who-we .work-stats-wrap {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}

#who-we .work-stats {
  background: var(--white);
  border-radius: 20px;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
  width: 100%;
}

#who-we .stat-item {
  width: 25%;
  text-align: center;
  padding: 0 26px;
  position: relative;
}

#who-we .stat-item:not(:last-child) {
  border-right: 1px solid #bebebe;
}

#who-we .stat-icon {
  width: 80px;
  height: 80px;
  background-color: #4b5320;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

#who-we .stat-icon.gold {
  background-color: var(--golden-beige);

}

#who-we .stat-item h6 {
  color: var(--black);
}

/* who-we css ******************************************************************************/


/* work css start ******************************************************************************/

#work {
  background: var(--green);
  padding-top: 200px;
}

#work .main-box .section-heading h2 {
  color: var(--white);
  text-align: center;
}

#work .main-box .section-heading p {
  color: var(--white);
}

#work .work-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

#work .work-item {
  width: calc(25% - 18.75px);
  background: linear-gradient(to bottom,
      #D2AB67 0%,
      #E5B77D 100%);
  padding: 25px;
  border-radius: 20px;
  text-align: left;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
}

#work .work-item:nth-child(even) {
  background: linear-gradient(to bottom, #FFFFFF, #E2E2E2);
}

#work .work-item:hover {
  transform: translateY(-5px);
}

#work .work-icon {
  margin-bottom: 40px;
}

#work .work-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

/* #workr .work-icon img {
  width: 55px;
  height: auto;
} */

#work .work-item h5 {
  color: var(--white);
}

#work .work-item:nth-child(even) h5 {
  color: var(--black);
}

/* work css end ******************************************************************************/

/* Circle Slider Section CSS Start ******************************************************************************/

.circle-slider {
  background-color: var(--cream);
  padding: 200px 0;
}

.circle-slider .container {
  position: relative;
}

.promise-slider-wrap {
  display: flex;
  align-items: center;
}

.values-section {
  position: relative;
  width: 700px;
  height: 600px;
}

.semicircle-path {
  width: 800px;
  height: 800px;
  background: linear-gradient(to bottom, #D2AB67, #E5B77D);
  outline: 2px solid #ddd;
  outline-offset: 20px;
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
  left: -300px;
  top: 0;
  transform: translate(0px, -13%);
}

.value-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 1;
  z-index: 10;
}

.value-item.active {
  cursor: default;
  z-index: 99;
}

.value-item.moving {
  pointer-events: none;
  z-index: 99;
}

.value-item.exiting {
  z-index: 5;
}

.icon-circle {
  min-width: 70px;
  height: 70px;
  padding: 10px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.value-item.moving .icon-circle {
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.value-item.active .icon-circle {
  min-width: 150px;
  height: 150px;
  margin-bottom: 0;
  padding: 20px;
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.value-item .icon-circle img {
  width: 100%;
  max-width: 40px;
  height: 100%;
  object-fit: contain;
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.value-item.active .icon-circle img {
  max-width: 100px;
}

.value-label p {
  font-family: 'CeraPro-Medium';
  font-size: 20px;
  color: var(--black);
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
  line-height: 1.2;
}

.value-item.active .value-label p {
  font-family: 'CeraPro-Medium';
  font-size: 28px;
  color: var(--green);
}

.content-section {
  position: relative;
  z-index: 9;
}

.content-section h2 {
  width: 350px;
  font-family: 'CeraPro-Medium';
  color: var(--black);
  line-height: 1;
  margin-bottom: 20px;
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.content-section p {
  width: 360px;
  font-size: 20px;
  color: var(--black);
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Circle Slider Section CSS End ******************************************************************************/

/* Projects Section CSS Start ******************************************************************************/

.projects {
  background-color: var(--green);
}

.projects .nav-pills {
  gap: 36px;
  margin-bottom: 50px;
}

.projects .nav-pills .nav-item {
  width: calc(33.33% - 24px);
}

.projects .nav-pills .nav-item button {
  width: 100%;
  font-family: 'CeraPro-Medium';
  font-size: 22px;
  line-height: 1.2;
  background-color: var(--cream);
  border: 1px solid var(--black);
  padding: 15px 10px;
  color: #222222;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.projects .nav-pills .nav-item button.active {
  background-color: var(--golden-beige);
  color: var(--white);
}

.project-slider .owl-stage {
  display: flex;
}

.project-slider .owl-item {
  display: flex;
  height: auto;
}

/* Make slider item full height */
.project-slider .slider-item {
  display: flex;
  width: 100%;
}

.projects .box {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.projects .box .project-link {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.projects .box .image-box {
  overflow: hidden;
}

.projects .box .image-box img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}

.projects .box:hover .image-box img {
  transform: scale(1.05);
}

.projects .box .text-box {
  margin-top: 10px;
  background-color: var(--white);
  padding: 20px 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  flex-grow: 1;
  /* 🔥 important */
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects .box:hover .text-box {
  background-color: var(--cream);
}

.projects .box .text-box h4 {
  color: var(--green);
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.projects .box:hover .text-box h4 {
  color: var(--golden-beige);
}

.project-slider .owl-nav {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

.project-slider .owl-nav button {
  position: static;
  transform: none;
}

.project-slider .owl-nav button:hover {
  background: none !important;
}

/* journey Section CSS Start ******************************************************************************/

.journey {
  background: var(--cream);
  position: relative;
}

.journey-box {
  position: relative;
  display: flex;
  flex-direction: column;
}

.journey-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 10px 50px 0;
}

.journey .step {
  width: 20%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.journey .step:nth-child(even) {
  transform: translate(-5%, -100%);
}

.journey .step .title {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 10px;
}

.journey .step .year {
  font-family: 'CeraPro-Medium';
  font-size: 16px;
  color: var(--golden-beige);
}

/* journey Section CSS end ******************************************************************************/

/* stories Section CSS start ******************************************************************************/

.stories-slider .slider-item {
  text-align: center;
}

.stories-slider .box {
  transition: all 0.3s ease-in-out;
  opacity: .35;
  transform: scale(.85);
  padding: 15px;
}

.stories-slider .owl-item.is-center .box {
  opacity: 1;
  transform: scale(1);
}

.stories-slider .image-box {
  width: 200px;
  height: 200px;
  margin: auto;
  border-radius: 50%;
  outline: 1px solid var(--golden-beige);
  outline-offset: 10px;
}

.stories-slider .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.stories-slider .text-box {
  margin-top: 20px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.stories-slider .owl-item.is-center .text-box {
  opacity: 1;
}

.stories-slider .name {
  font-family: 'CeraPro-Regular';
  color: var(--green);
  margin: 10px 0 0;
  text-transform: uppercase;
  font-size: 22px;
}

.stories-slider .residency {
  font-size: 18px;
  position: relative;
  color: var(--black);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.stories-slider .residency::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: var(--golden-beige);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.stories-slider .dscription {
  font-size: 16px;
  margin: 0;
}

/* arrows */

.stories-slider .owl-nav {
  position: absolute;
  width: 100%;
  top: 27%;
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.stories-slider .owl-nav button {
  position: static;
  transform: none;
  margin: 0 !important;
}

.stories-slider .owl-nav button:hover {
  background: none !important;
}

/* Stories Section CSS End ******************************************************************************/

/* Contact Form Section CSS Start ******************************************************************************/

.contact {
  background: var(--cream);
}

/* form box */

.contact-box {
  max-width: 900px;
  margin: auto;
}

/* form layout */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 18px;
}

.form-row.full input,
.form-row.full textarea {
  width: 100%;
  height: 100%;
}

.form-row.two-col input,
.form-row.two-col select {
  width: 100%;
}

/* inputs */

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 6px;
  background: var(--white);
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease-in-out;
  /* appearance: none; */
  /* remove default arrow styling */
}

/* Focus state */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(199, 155, 75, 0.25);
}

.contact-form select {
  cursor: pointer;
}

/* submit */

.form-submit {
  text-align: center;
  margin-top: 10px;
}

.form-submit button {
  background: var(--golden-beige);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}

.form-submit button:hover {
  background: #b88939;
  color: var(--white);
}

.blog-contact .contact-form input[type="submit"] {
  width: auto;
  background: var(--golden-beige);
  background-image: url('../images/btn-arrow-right.svg');
  background-repeat: no-repeat;
  background-position: right 25px center;
  background-size: 12px;
  color: #fff;
  border: none;
  padding: 12px 50px 12px 30px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.blog-contact .contact-form input[type="submit"]:hover {
  background: #b88939;
  background-image: url('../images/btn-arrow-right.svg');
  background-repeat: no-repeat;
  background-position: right 25px center;
  background-size: 12px;
  color: var(--white);
}

/* arrow */

.form-submit .arrow {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid #fff;
}


.wpcf7-form-control-wrap {
  width: 100%;
}

/* Contact Form Section CSS End ******************************************************************************/

/* Pratners Section CSS Start ******************************************************************************/

.partners {
  background: #caa35c;
  padding: 24px 0;
}

.partners-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.partners-heading h5 {
  font-family: 'CeraPro-Medium';
  color: #fff;
}

.partners-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
}

.partners-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;

}

.partners-logos img {
  width: 100px;
}

/* Pratners Section CSS End ******************************************************************************/

/* Project Details CSS Start ******************************************************************************/
.project-detail {
  background-color: var(--cream);
}

.project-detail .detail-box {
  text-align: center;
}

.project-detail .detail-box .image-box {
  margin-bottom: 50px;
}

.project-detail .detail-box .text-box p.bold {
  font-family: 'CeraPro-Bold';
}

.project-detail .project-info {
  margin-top: 50px;
}

.project-detail .project-info .row {
  display: flex;
  text-align: center;
  /* align-items: center; */
  justify-content: center;
}

.project-detail .project-info .box {
  height: 100%;
  background-color: var(--golden-beige);
  border-radius: 10px;
  padding: 20px 5px;
  cursor: default;
  transition: all 0.3s ease-in-out;
}

.project-detail .project-info .box:hover {
  box-shadow: 0 12px 30px rgba(210, 171, 103, 0.5);
  transform: translateY(-5px);
}

.project-detail .project-info .box h6 {
  color: var(--white);
  text-transform: uppercase;
}

.project-detail .project-info .box h6.bold {
  font-family: 'CeraPro-Bold';
  color: var(--black);
}

/* Project Details CSS End ******************************************************************************/

/* Gallery CSS Start ******************************************************************************/


.gallery .gallery-box .box {
  position: relative;
  margin-top: -50px;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}

.gallery .gallery-box .box:first-child {
  margin-top: 0;
}

.gallery .gallery-box .box:hover {
  border: 2px solid var(--golden-beige);
  z-index: 99 !important;
}

.gallery .gallery-box .box::after {
  content: "";
  width: 100%;
  height: 100%;
  max-height: 120px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top,
      #D2AB67 0%,
      rgba(225, 225, 225, 0.76) 50%,
      rgba(128, 128, 128, 0) 100%);
  transition: all 0.3s ease-in-out;
}

.gallery .gallery-box .box:hover::after {
  max-height: 180px;
}

.gallery .gallery-box .box a {
  width: 100%;
}

.gallery .gallery-box .box img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: top center;
  transition: all 0.3s ease-in-out;
}

.gallery .gallery-box .box:hover img {
  max-height: 600px;
}

/* Gallery CSS End ******************************************************************************/

/* Amenities CSS Start ******************************************************************************/
.amenities {
  padding-top: 0;
}

.amenities .amenities-box .image-box {
  height: 100%;
}

.amenities .amenities-box .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities .amenities-box .text-box {
  height: 100%;
  background-color: var(--green);
  padding: 120px;
}

.amenities .amenities-box .text-box .section-heading {
  margin-bottom: 30px;
}

.amenities .amenities-box .text-box .section-heading h2 {
  text-align: left;
}

.amenities .amenities-list ul li {
  font-family: 'CeraPro-Medium';
  color: var(--white);
  font-size: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.amenities .amenities-list ul li:not(:last-child) {
  margin-bottom: 25px;
}

.amenities .amenities-list ul li img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

/* Amenities CSS End ******************************************************************************/

/* Map CSS Start ******************************************************************************/
.map {
  padding-top: 0;
}

.map .map-box .text-box {
  background-color: var(--golden-beige);
  padding: 60px 80px;
  width: 100%;
}

.map .map-box .text-box .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.map .map-box .text-box .box:not(:last-child) {
  margin-bottom: 30px;
}

.map .map-box .text-box .box h6 {
  font-family: 'CeraPro-Medium';
  color: var(--black);
  margin-bottom: 0;
}

.map .map-box .text-box .box h6:last-of-type {
  min-width: 100px;
  text-align: right;
}

.map .map-box .image-box {
  height: 100%;
  width: 100%;
}

.map .map-box .image-box iframe {
  height: 100%;
}

.map .button-box {
  padding-top: 0;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.map .button-box a {
  min-width: 300px;
}

/* Map CSS End ******************************************************************************/

/* Modal Popup CSS Start */
.modal-content {
  border-radius: 10px;
  background-color: var(--golden-beige);
}

.modal-content .btn-close {
  margin: 5px 5px 5px auto;
}

.modal-content .modal-body {
  padding-top: 0;
}

.modal-content .modal-body .contact {
  background-color: var(--golden-beige);
  padding: 20px 0 0;
  border-radius: 10px;
}

.modal-content .modal-body .section-heading h3 {
  text-transform: uppercase;
  color: var(--white);
}

.modal-content .modal-body .form-submit input {
  font-family: 'CeraPro-Medium';
  font-size: 22px;
  padding: 10px;
  background-color: var(--green);
  border: 1px solid var(--green);
  color: var(--white);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.modal-content .modal-body .form-submit input:hover {
  background-color: var(--white);
  color: var(--green);
}

/* Modal Popup CSS End */

/* Inner Banner CSS Start */
.inner-banner {
  position: relative;
  height: 70dvh;
  padding: 0;
}

.inner-banner.blog-inner {
  height: 100dvh;
}

.inner-banner .banner-box {
  height: 100%;
}

.inner-banner .image-box {
  position: relative;
  height: 100%;
}

.inner-banner .image-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: radial-gradient(circle at center,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 1) 100%);
}

.inner-banner .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-banner .text-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 50%);
}

.inner-banner.blog-inner .text-box {
  transform: translate(-50%, -50%);
}

.inner-banner .text-box h1 {
  font-family: 'CeraPro-Bold';
  text-align: center;
  text-transform: uppercase;
  font-size: 76px;
  color: var(--white);
}

/* 1599px */
@media (max-width: 1599px) {
  .inner-banner.blog-inner .text-box h1 {
    font-size: 64px !important;
  }
}

/* 1399px */
@media (max-width: 1399px) {
  .inner-banner.blog-inner .text-box h1 {
    font-size: 56px !important;
  }
}

/* 1199px */
@media (max-width: 1199px) {
  .inner-banner.blog-inner .text-box h1 {
    font-size: 48px !important;
  }
}

/* 991px */
@media (max-width: 991px) {
  .inner-banner.blog-inner .text-box h1 {
    font-size: 40px !important;
  }
}

/* 767px */
@media (max-width: 767px) {
  .inner-banner.blog-inner .text-box h1 {
    font-size: 34px !important;
  }
}

/* 575px */
@media (max-width: 575px) {
  .inner-banner.blog-inner .text-box h1 {
    font-size: 28px !important;
  }
}

/* 479px */
@media (max-width: 479px) {
  .inner-banner.blog-inner .text-box h1 {
    font-size: 24px !important;
  }
}

/* 375px */
@media (max-width: 375px) {
  .inner-banner.blog-inner .text-box h1 {
    font-size: 22px !important;
  }
}

/* 320px */
@media (max-width: 320px) {
  .inner-banner.blog-inner .text-box h1 {
    font-size: 20px !important;
  }
}

/* Inner Banner CSS End */

/* Blog Listing CSS Start*/
.blog-listing .nav-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.blog-listing .nav-pills button {
  width: 100%;
  font-size: 26px;
  padding: 20px;
  color: #414141;
  border: 1px solid var(--golden-beige);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.blog-listing .nav-pills button.active {
  background-color: var(--golden-beige);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-grid .blog-item {
  position: relative;
  border: 1px solid var(--golden-beige);
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.blog-grid .blog-item:hover {
  box-shadow: 0 6px 15px rgba(210, 171, 103, 0.5);
}

.blog-item .blog-link {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.blog-grid .blog-item .image-box {
  border-radius: 20px;
}

.blog-grid .blog-item .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.blog-grid .blog-item .text-box {
  padding: 25px;
}

.blog-grid .blog-item .text-box .blog-title {
  font-family: 'CeraPro-Medium';
  line-height: 1.2;
  text-transform: capitalize;
  margin-bottom: 15px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-grid .blog-item .text-box .blog-description {
  font-size: 20px;
  margin-bottom: 50px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item .blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-item .blog-footer .know-more,
.blog-item .blog-footer .blog-date {
  position: relative;
  font-family: 'CeraPro-Medium';
  font-size: 20px;
  color: #8B8B8B;
  transition: all 0.3s ease-in-out;
}

.blog-item .blog-footer .know-more:hover {
  color: var(--golden-beige);
}

.blog-item .blog-footer .know-more::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  background-color: var(--golden-beige);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.blog-item .blog-footer .know-more:hover::after {
  width: 100%;
  opacity: 1;
}

.blog-listing .view-more {
  padding: 0;
  margin-top: 50px;
  text-align: center;
}

.blog-listing .view-more .btn-common {
  min-width: 300px;
  font-size: 24px;
  padding: 15px;
}

.wpcf7-spinner {
  display: none;
}

/* Blog Listing CSS End*/

/* Paragraph */
.blog-detail p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* Headings */
.blog-detail h1,
.blog-detail h2,
.blog-detail h3,
.blog-detail h4,
.blog-detail h5,
.blog-detail h6 {
  font-weight: 700;
  color: var(--green);
  margin-top: 35px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-detail h1 {
  font-size: 36px;
}

.blog-detail h2 {
  font-size: 30px;
}

.blog-detail h3 {
  font-size: 24px;
}

.blog-detail h4 {
  font-size: 20px;
}

.blog-detail h2 {
  margin: 0 0 40px;
}

.single-blog p {
  font-size: 20px;
}

/* Highlight headings */
.blog-detail h3 {
  position: relative;
  padding-left: 18px;
}

.blog-detail h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 18px;
  width: 4px;
  background: var(--golden-beige);
}

/* Bold text */
.blog-detail b,
.blog-detail strong {
  color: var(--black);
}

/* Lists */
.blog-detail ul,
.blog-detail ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-detail li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--green);
}

/* Links */
.blog-detail a {
  color: var(--golden-beige);
  text-decoration: none;
  font-weight: 500;
}

.blog-detail a:hover {
  color: var(--green);
}

/* Images */
.blog-detail img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 25px 0;
}

/* Blockquote */
.blog-detail blockquote {
  border-left: 4px solid var(--golden-beige);
  padding-left: 20px;
  margin: 25px 0;
  font-style: italic;
  color: var(--green);
}

/* Mobile */
@media (max-width:768px) {
  .blog-detail h1 {
    font-size: 28px;
  }

  .blog-detail h2 {
    font-size: 24px;
  }

  .blog-detail h3 {
    font-size: 20px;
  }

  .blog-detail p {
    font-size: 15px;
  }

}