/* Font Family ***********************************************************************/
@font-face {
  font-family: "Futura-Md-BT";
  src: url("../fonts/Futura-Medium/Futura-Md-BT-Medium.ttf");
}

@font-face {
  font-family: "Futura-Bk-Bt";
  src: url("../fonts/Futura-Bk-Bt-Book/Futura-Bk-BT-Book.ttf");
}

@font-face {
  font-family: "Montserrat-Bold";
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
}

/* common css ******************************************************************************/
:root {
  --white: #ffffff;
  --black: #000000;
  --black-second: #0c0b0b;
  --golden: #c6ac5f;
  --cream: #fef9ee;
  --dark-cream: #ded6c2;
  --gray: #6c6b69;
}

.dark-cream-bg {
  background-color: var(--dark-cream);
}

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

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

body {
  background: var(--cream);
  font-family: "Futura-Md-BT";
}

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(--black);
  font-weight: normal;
}

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

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 26px;
}

h6 {
  font-size: 24px;
}

p {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--gray);
  font-family: "Futura-Bk-Bt";
}

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

.small {
  font-size: 16px;
}

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

a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}

a:hover {
  color: inherit;
}

span {
  display: inline-block;
}

.section-heading {
  text-align: left;
  margin-bottom: 50px;
  max-width: 900px;
}

.section-heading h2 {
  text-transform: uppercase;
  /* font-size: 36px; */
  letter-spacing: 3px;
}

.section-heading p {
  /* padding-top: 20px; */
  /* font-size: 22px; */
}

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

.btn-common {
  font-size: 16px;
  padding: 10px 20px;
  background: var(--golden);
  color: var(--white);
  border-radius: 0;
  border: 1px solid var(--golden);
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-in-out;
}

.btn-common:hover {
  background-color: transparent;
  color: var(--golden);
}

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

.bg {
  padding: 100px 0;
}

.mobile {
  display: none !important;
}

.desktop {
  display: block !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-nav img {
  max-width: 25px;
}

.owl-nav button {
  background: transparent !important;
  margin: 5px 10px !important;
}

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

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

/* .owl-nav {
  margin-top: 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;
}

.after-slider {
  display: flex;
  justify-content: center;
}

/* header css start ******************************************************************************/
/* @keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }

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

#header.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 1000;
  box-shadow: 0 0 10px 2px #000;
}

#header {
  background: #27aa6d;
  padding: 15px 0;
  transition: .5s all;
  position: relative;
}

#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .logo-box img {
  max-width: 220px;
  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 .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
}

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

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

#header .main-nav nav ul li a {
  color: var(--white);
  padding: 5px;
  font-size: 18px;
} */

/* ===============================
   BASE HEADER STYLES
   =============================== */

#header {
  background-color: var(--white);
  padding: 15px 0;
  transition: 0.5s all;
  position: relative;
}

#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

#header .header-box .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
  flex-direction: row;
}

/* Menu buttons (hidden by default on desktop) */
#header .header-box .main-nav .click-menu,
#header .header-box .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

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

/* Cancel menu */
#header .header-box .main-nav .cancel-menu {
  position: fixed;
  top: 20px;
  left: -100%;
  max-width: 30px;
  width: 100%;
  text-align: center;
  z-index: 222;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

#header .header-box .main-nav .cancel-menu.show {
  opacity: 1;
  visibility: visible;
  left: calc(100% - 50px);
}

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

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

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

/* Nav desktop */
#header .header-box .main-nav nav {
  position: static;
  background-color: transparent;
  padding: 0;
  opacity: 1;
  visibility: visible;
  width: auto;
  height: auto;
  transition: 0.5s all ease-in-out;
  z-index: 111;
}

#header .header-box .main-nav nav ul {
  display: flex;
  gap: 50px;
  flex-direction: row;
  padding-left: 0;
}

#header .header-box .main-nav nav ul.sub-menu {
  display: none;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 0;
  position: absolute;
  left: 5px;
  min-width: 400px;
  background-color: var(--white);
  border: 1px solid #bebebc;
  left: 50%;
  transform: translateX(-50%);
}

#header .header-box .main-nav nav ul.sub-menu li {
  width: 50%;
}

#header .header-box .main-nav nav ul li.menu-item:hover ul.sub-menu {
  display: flex;
}

#header .header-box .main-nav nav ul.sub-menu li a {
  width: 100%;
  font-size: 14px;
  padding: 10px;
}

#header .header-box .main-nav nav ul.sub-menu li a:hover {
  background-color: var(--cream);
}

#header .header-box .main-nav nav ul li {
  display: inline-block;
  position: relative;
}

#header .main-nav nav ul li.current-menu-item > a,
#header .main-nav nav ul li.current_page_item > a {
  padding: 10px 10px !important;
}

#header .header-box .main-nav nav ul li a {
  color: var(--black);
  padding: 10px 5px;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  transition: 0.3s all;
}

#header .header-box .main-nav nav ul li.has-submenu > a::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 5px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 0px 2px 2px 0px;
  border-color: black;
  transform: rotate(45deg);
  vertical-align: middle;
}

#header .header-box .main-nav nav ul li a:hover {
  color: var(--golden);
}

#header .header-box .main-nav nav ul li.current-menu-item a {
  color: var(--golden);
  /* font-family: "Futura Bk BT", sans-serif; */
}

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

#header .header-box .main-nav nav ul.sub-menu #menu-item-546 .sub-menu {
  left: -10px;
}

#header .header-box .main-nav nav ul.sub-menu #menu-item-547 .sub-menu {
  left: 100%;
}

/* footer css ******************************************************************************/
#footer .top-box h5 {
  margin-bottom: 30px;
}

#footer .top-box .list-box li:not(:last-child) {
  margin-bottom: 20px;
}

#footer .top-box .link-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  margin-top: 20px;
}

#footer .top-box .link-box ul img {
  max-width: 40px;
}

#footer .end-box {
  margin-top: 30px;
  padding: 30px 0;
  border-top: 1px solid #000;
}

#footer .end-box .link-box ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

#footer .end-box .link-box ul li:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 2px solid var(--black);
  line-height: 1;
}

/* New Footer CSS */

#footer {
  background-color: #000000;
  padding-top: 30px;
}

#footer .top-box .logo-box img {
  max-width: 160px;
  margin-bottom: 0;
}

#footer .top-box .box.box1 {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#footer .top-box .box.box2,
#footer .top-box .box.box3,
#footer .top-box .box.box2 .list-box,
#footer .top-box .box.box3 .list-box,
#footer .top-box .box.box2 .list-box ul,
#footer .top-box .box.box3 .list-box ul {
  height: 100%;
}

#footer .top-box .box.box2 ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

#footer .top-box .box.box3 .list-box ul {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 30px;
}

#footer .top-box .box.box3 .list-box ul li {
  margin: 0;
}

#footer .top-box .box.box3 .list-box ul li a:hover {
  transform: scale(1.2);
}

#footer .top-box .box.box3 .list-box ul li a img {
  min-width: 35px;
  min-height: 35px;
}

#footer .top-box .list-box li a {
  color: #ffffff;
  /* font-size: 20px; */
  transition: all 0.3s ease-in-out;
}

#footer .top-box .list-box li a:hover {
  color: #c6ac5f;
}

#footer .top-box .inner-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

#footer .top-box .inner-box:not(:last-child) {
  margin-bottom: 20px;
}

#footer .top-box .inner-box .content-wrap h6 {
  color: #c6ac5f;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 5px;
}

#footer .top-box .inner-box .content-wrap p {
  color: #ffffff;
  font-size: 16px;
}

#footer .end-box {
  margin-top: 20px;
  padding: 15px 0;
  border-top: 1px solid #434343;
}

#footer .end-box p {
  color: #ffffff;
  text-align: center;
  font-size: 16px;
}

#footer .top-box .list-box li:not(:last-child) {
  margin-bottom: 0;
}

/* homeBanner css ******************************************************************************/
/* ===============================
   BASE STYLES
   =============================== */
.home-banner {
  padding: 0;
}

.home-banner .home-banner-inner {
  position: relative;
  width: 100%;
  height: calc(100dvh - 93px);
  overflow: hidden;
}

.home-banner .home-banner-inner .video-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* .home-banner .home-banner-inner .video-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%);
} */

.home-banner .home-banner-inner .video-box video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.home-banner .home-banner-inner .video-box .play-btn {
  z-index: 9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.home-banner .home-banner-inner .content-box {
  position: relative;
  z-index: 9;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 80px;
}

.home-banner .home-banner-inner .content-box h1 {
  color: #c6ac5f;
  line-height: 1.1;
}

.home-banner .home-banner-inner .content-box p {
  color: #ffffff;
  font-size: 22px;
  font-family: "Futura-Bk-Bt";
}

.who .who-box {
  background-color: #ded6c2;
}

.who .who-box .number-box {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 40px 0;
  row-gap: 30px;
}

.who .who-box .number-box .text-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.who .who-box .number-box .text-box h3,
.who .who-box .number-box .text-box p {
  color: #0c0b0b;
  text-transform: uppercase;
  line-height: 1.3;
}

.who .who-box .number-box .text-box p {
  font-size: 20px;
}

.who .who-box .number-box .text-box .icon img {
  max-width: 60px;
  margin-bottom: 18px;
}

.who .who-box .number-box .img-box {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: end;
}

.who .who-box .number-box .img-box img {
  max-width: 80%;
}

.trending {
  padding-top: 0;
}

/* .trending .trending-box .trending-slider {
  max-width: 90%;
} */

/* .trending .trending-box .trending-slider .owl-nav {
  transform: translateX(6%);
} */

.trending .section-heading span {
  font-size: 24px;
  color: #0c0b0b;
}

.trending .trending-box .item {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}

.trending .trending-box .item .img-box {
  max-height: 600px;
}

.trending .trending-box .item .img-box img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.trending .trending-box .item .text-box {
  background-color: #ffffff00;
  border: 1px solid var(--dark-cream);
  padding: 50px 70px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #000;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.61) 100%
  );
}

.trending .trending-box .item .text-box .icon-box {
  margin-bottom: 30px;
}

.trending .trending-box .item .text-box .icon-box img {
  max-width: 200px;
}

.trending .trending-box .item .text-box .text {
  margin-bottom: 20px;
}

.trending .trending-box .item .upper-box h3,
.trending .trending-box .item .upper-box h6 {
  color: var(--white);
}

.trending .trending-box .item .button-box {
  display: flex;
  justify-content: center;
}

/* promises css ******************************************************************************/

.promises .text-box {
  display: flex;
  /* justify-content: space-between; */
  gap: 10px;
  align-items: center;
}

.promises .text-box .img-box img {
  max-width: 200px;
}

.promises .text-box h6 {
  font-size: 20px;
}

.promises .text-box .text {
  max-width: 400px;
}

/* new css */

/* .promises .wrapper {
  position: relative;
  width: 1000px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promises .circle-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
  clip-path: inset(0 50% 0 0);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-100px);
}

.promises .circle {
  position: relative;
  width: 400px;
  height: 400px;
  border: 1px solid #ecdcb3;
  border-radius: 50%;
  transition: transform 1s ease-in-out;
}

.promises .icon {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d9caa5;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.6s ease;
  transform-origin: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.promises .icon img {
  width: 32px;
  height: 32px;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}

.promises .icon-title {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 15px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  opacity: 1;
  transition: opacity 0.3s, margin-left 0.3s;
  pointer-events: none;
}

 .promises .icon.active {
  width: 120px;
  height: 120px;
  border-color: #bca25d;
  box-shadow: 0 0 25px rgba(188, 162, 93, 0.3);
  z-index: 5;
}

.promises .icon.active img {
  width: 55px;
  height: 55px;
  opacity: 1;
  transform: scale(1.1);
}

.promises .icon.active .icon-title {
  opacity: 0;
  margin-left: 30px;
}

.promises .content {
  position: absolute;
  right: 180px;
  width: 320px;
  text-align: left;
  transition: opacity 0.3s ease;
}

.promises .content h2 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

.promises .content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}  */

/* hear css ******************************************************************************/

.hear {
  background-color: #fffbf5;
  position: relative;
  overflow-y: unset;
  overflow-x: clip;
  padding: 120px 0;
}

.hear .item {
  display: flex;
  gap: 10px;
}

.profile {
  position: relative;
  width: 90px;
}

.hear .profile img {
  height: 50px;
  width: 50px !important;
  border-radius: 50px;
  object-fit: cover;
  padding: 5px;
  position: absolute;
  z-index: 99;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 70%;
  background: #fffbf5;
}

.hear .quote {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.hear .quote.quote-upper {
  top: 0;
  left: 50%;
}

.hear .quote.quote-lower {
  left: 65%;
  bottom: 0;
  transform: translate(-50%, 50%);
}

.profile::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #ded6c2;
  left: 50%;
}

.hear .item .text {
  max-width: 400px;
  margin-bottom: 20px;
}

.hear .owl-dots {
  position: absolute;
  left: -80%;
  transform: translateX(-50%);
}

/* Homepage Projects Css */

.projects {
  background-color: #fffbf5;
}

/* .projects .projects-box .projects-slider .item .box {
  border-radius: 15px;
} */

.projects .projects-box .projects-slider .item .box .image-box {
  position: relative;
}

.projects .projects-box .projects-slider .item .box .image-box img {
  /* border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; */
  max-width: 220px;
  margin: 0 auto;
  max-height: 75px;
  object-fit: contain;
}

.projects .owl-stage {
  display: flex;
  height: 100%;
}

.projects .projects-box .projects-slider .item {
  height: 100%;
}

.projects .projects-box .projects-slider .item .box {
  height: 100%;
  border-radius: 15px;
  border: 1px solid var(--dark-cream);
  overflow: hidden;
  background-color: #fffefc;
  padding: 20px;
  display: grid;
}

.projects .projects-box .projects-slider .item .box .text-box {
  background-color: #fffefc;
  padding-top: 20px;
  text-align: center;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.projects .projects-box .projects-slider .item .box .text-box img {
  max-width: 130px;
  width: 100%;
  margin: 0 auto 20px;
}

.projects .projects-box .projects-slider .item .box .text-box p {
  display: inline-block;
  position: relative;
  /* font-size: 16px; */
  margin-bottom: 10px;
  padding-left: 20px;
}

.projects .projects-box .projects-slider .item .box .text-box p:last-child {
  margin: 0;
}

.projects
  .projects-box
  .projects-slider
  .item
  .box
  .text-box
  p:last-child::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url("/wp-content/themes/ir/assets/images/location.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.projects .projects-box .projects-slider .item .box .text-box a {
  font-size: 14px;
  padding: 10px 15px;
}

.projects .owl-nav {
  text-align: center;
  margin-top: 20px;
}

/* section css ******************************************************************************/

/* About Page Start*/

/* About Banner */

.about-banner {
  padding-bottom: 0;
}

.about-banner .about-box .row {
  max-width: 95%;
  margin: 0 auto;
}

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

.about-banner .about-box .image-box img {
  max-width: 370px;
  /* margin-bottom: -25px; */
}

.about-banner .about-box .text-box {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Goals */

.goals {
  background-color: #fffbf5;
}

.goals .goals-box .box {
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.goals .goals-box .box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.goals-box .image-box {
  min-height: 127px;
  margin-bottom: 50px;
}

.goals .goals-box .box .image-box img {
  transition: all 0.3s ease-in-out;
}

.goals .goals-box .box:hover .image-box img {
  transform: scale(1.1);
}

.goals .goals-box .section-heading {
  margin-bottom: 0;
}

.goals .goals-box .section-heading p {
  max-width: 80%;
  color: var(--gray);
}

/* Card Css */
.card-section .card-box .box .image-box img {
  max-width: 64px;
}

.card-section .card-box .row {
  row-gap: 30px;
}

.card-section .card-box .box {
  background-color: var(--white);
  padding: 60px 40px;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.card-section .card-box .box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.card-section .card-box .box.bg-lotion {
  background-color: #fffcf7;
}

.card-section .card-box .box .image-box {
  text-align: center;
  margin-bottom: 50px;
}

.card-section .card-box .box .text-box {
  text-align: center;
}

.card-section .card-box .box .text-box h6 {
  font-size: 22px;
  color: var(--gray);
  font-family: "Futura-Bk-Bt";
}

/* Ceo CSS */

.ceo {
  padding: 0;
  margin: 120px 0;
  overflow: visible;
}

.ceo .mobile-show {
  display: none;
}

.ceo .ceo-image-desktop {
  width: 45%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.ceo .ceo-box .border-line {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 400px;
  z-index: -1;
}

/* The SVG container */
.animated-border {
  width: 95%;
  height: 400px;
  display: block;
  margin: 0 auto;
}

.border-path {
  stroke-dasharray: 1242;
  /* approx path length */
  stroke-dashoffset: 1242;
  transition: stroke-dashoffset 1s ease-in-out;
}

.animated-border.animate .border-path {
  stroke-dashoffset: 0;
}

/* Optional: stagger animation */
.animated-border.animate .border-path:nth-child(1),
.animated-border.animate .border-path:nth-child(2) {
  transition-delay: 0s;
  /* top */
}

.animated-border.animate .border-path:nth-child(3),
.animated-border.animate .border-path:nth-child(4) {
  transition-delay: 1s;
  /* sides */
}

.animated-border.animate .border-path:nth-child(5),
.animated-border.animate .border-path:nth-child(6) {
  transition-delay: 2s;
  /* bottom */
}

.ceo .ceo-box .section-heading {
  margin-bottom: 0;
}

.ceo .ceo-box .section-heading h2 {
  background-color: var(--cream);
  padding: 30px 0;
  margin: 0;
}

.ceo .ceo-box .section-heading .ceo-info {
  background-color: var(--cream);
  max-width: 85%;
  margin-left: auto;
  margin-top: 30px;
  padding: 0 20px;
}

.ceo .ceo-box .section-heading .ceo-info p {
  margin-bottom: 15;
  padding-top: 0;
  font-size: 18px;
}

.ceo .ceo-box .section-heading .ceo-info h5 {
  font-family: "Futura-Bk-Bt";
  color: var(--black);
  margin-bottom: 5px;
}

.ceo .ceo-box .section-heading .ceo-info h6 {
  font-family: "Futura-Bk-Bt";
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 0;
}

/* About Page End*/

.wpcf7-spinner {
  display: none;
}

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

.wpcf7-list-item {
  margin-left: 0;
}

/* Contact */

.contact-section {
  background: #ded6c2;
  background: linear-gradient(
    90deg,
    rgba(222, 214, 194, 1) 77%,
    rgba(254, 249, 238, 1) 77%
  );
}

.contact-section .contact-box {
  display: flex;
  justify-content: space-between;
}

.contact-section .contact-form {
  flex: 0.9;
}

.contact-section .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section .form-group {
  margin-bottom: 35px;
}

.contact-section .form-group input,
.contact-section .form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #f2f2f2;
  background: transparent;
  padding: 7px 0;
  font-size: 18px;
  color: #222;
  outline: none;
  font-family: "Futura-Md-BT";
}

.contact-section .form-group textarea {
  resize: none;
}

.contact-section .privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #707070;
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 25px;
}

.contact-section .privacy input {
  width: 18px;
  height: 18px;
}

.contact-section .send-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: white;
  color: #707070;
  border: none;
  padding: 10px 15px;
  border-radius: 11px;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Futura-Md-BT";
}

.contact-section .send-btn::after {
  content: "→";
  font-size: 36px;
  transition: transform 0.3s ease;
  color: #c6ac5f;
  font-family: monospace;
  line-height: 0.6;
}

.contact-section .send-btn:hover::after {
  transform: translateX(5px);
}

.inner-banner {
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100vh - 93px);
  padding: 0;
}

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

.inner-banner .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-detail {
  position: relative;
}

.project-detail .img-logo-box img {
  max-width: 360px;
  width: 100%;
}

.project-detail .text-box {
  background-color: #fffcf7;
  padding: 80px 10px 80px 80px;
}

.project-detail .text-box .boxes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 30px;
}

.project-detail .text-box .button-box {
  display: flex;
  gap: 20px 50px;
  flex-wrap: wrap;
}

.project-detail .text-box .boxes .box {
  width: 50%;
  /* display: flex; */
  gap: 20px;
}

.project-detail .text-box .boxes .box p {
  margin-bottom: 5px;
  color: var(--black);
}

.project-detail .text-box .boxes .box p .golden {
  min-width: 106px;
}

.project-detail .text-box .btn-common {
  position: relative;
  padding: 10px 40px 10px 20px;
}

.project-detail .text-box .btn-common.walkthrough::after {
  display: none;
}

.project-detail .text-box .btn-common.walkthrough {
  background-color: var(--white);
  padding: 10px 20px;
  color: var(--golden);
  border-radius: 10px;
  box-shadow: 0px 0px 4px #00000045;
  border: none;
}

.project-detail .text-box .btn-common::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: url("/wp-content/themes/ir/assets/images/download.svg") no-repeat;
  background-position: center;
  transition: all 0.5s ease-in-out;
}

.project-detail .text-box .btn-common:hover::after {
  background: url("/wp-content/themes/ir/assets/images/download-golden.svg")
    no-repeat;
  background-position: center;
}

.project-detail .content-box {
  max-width: 1200px;
  padding-top: 50px;
}

.project-detail .content-box p {
  line-height: 1.7;
}

.project-detail .line {
  width: 100%;
  height: 1px;
  background-color: #ded6c2;
  position: absolute;
}

/* .project-detail .project-gallary .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
} */

.project-detail .project-gallary .item img {
  height: 100%;
  width: 100%;
}

.advantages.card-section .card-box .box {
  background-color: var(--white);
  padding-bottom: 15px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #c6ac5f4d;
  background: transparent;
  padding: 7px 0;
  font-size: 22px;
  color: #222;
  outline: none;
  font-family: "Futura-Md-BT";
}

.contact-form .form-group {
  margin-bottom: 60px;
}

.contact-form .privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #707070;
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 70px;
}

.contact-form .privacy input {
  width: 18px;
  height: 18px;
  display: inline;
  vertical-align: sub;
  margin-bottom: 0;
}

.contact-form .privacy span.wpcf7-list-item-label {
  font-size: 18px;
  font-family: "Futura-Md-BT";
}

.contact-form .send-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: white;
  color: #707070;
  padding: 10px 60px 10px 15px;
  border-radius: 7px;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Futura-Md-BT";
  position: relative;
  border: 1px solid var(--golden);
  transition: all 0.3s ease-in-out;
}

.contact-form .send-btn:hover {
  background-color: var(--golden);
  color: var(--white);
}

.contact-form .send-btn::after {
  content: "→";
  font-size: 36px;
  transition: transform 0.3s ease;
  color: #c6ac5f;
  font-family: monospace;
  line-height: 0.6;
  position: absolute;
  z-index: 9999;
  right: 15px;
  transition: all 0.3s ease-in-out;
}

.contact-form .send-btn:hover::after {
  color: var(--white);
  transform: translateX(5px);
}

.contact-form .contact-form-box {
  position: relative;
  z-index: 9;
  background-color: #fffcf7;
  padding: 80px 80px;
}

.contact-form-home {
  background: linear-gradient(
    90deg,
    rgba(222, 214, 194, 1) 77%,
    rgba(254, 249, 238, 1) 77%
  );
}

/* map popup section start */

.map-popup .popup {
  position: absolute;
  background: transparent;
  z-index: 1000;
  pointer-events: none;
  min-width: 350px;
  transform: translate(-50%, -50%);
}

.map-popup .pin {
  font-size: 40px;
  color: #c6ac5f;
  text-align: center;
  pointer-events: auto;
  position: relative;
  z-index: 10;
  margin: 0 auto;
}

/* Cards container: position relative to popup */
.cards {
  position: relative;
  width: 220px;
  height: 100px;
  margin-top: 10px;
  pointer-events: auto;
}

/* Individual cards */
.card {
  position: absolute;
  width: 110px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: center;
  font-family: "Helvetica", sans-serif;
  font-size: 13px;
  color: #b27540;
  cursor: default;
  user-select: none;
}

/* Position cards around pin */
.map-popup #card1 {
  top: 0;
  left: 0;
  transform: translate(-20%, -50%);
}

.map-popup #card2 {
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}

.map-popup #card3 {
  top: 0;
  right: 0;
  transform: translate(20%, -50%);
}

/* Card images */
.map-popup .card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 6px;
  display: block;
  pointer-events: none;
}

.map-popup .map-popup-box {
  position: relative;
}

.contact-form-home .section-heading h2 {
  font-size: 24px;
}

/* map popup section end */

/* connect-company css start */

#connect-company .row {
  max-width: 90%;
  margin: 0 auto;
}

#connect-company .box {
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  height: 100%;
  padding: 30px 25px;
  background-color: #fffcf7;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}

/* #connect-company .box h6 {
} */

#connect-company .box p {
  color: var(--black-second);
}

#connect-company .box p:last-child {
  margin-bottom: 0;
}

#connect-company .box p span {
  margin-bottom: 20px;
  font-size: 18px;
  display: block;
}

#connect-company .box p i {
  font-size: 12px;
  background-color: var(--golden);
  border-radius: 50%;
  padding: 6px;
  margin-right: 10px;
  color: var(--black-second);
}

#connect-company .box a {
  text-transform: unset;
}

input[type="checkbox"] {
  cursor: pointer;
}

/* connect-company css end */

.card-section .card-box .box .image-box svg {
  transition: all 0.5s ease-in-out;
}

.card-section .card-box .box:hover .image-box svg {
  transform: scale(1.1);
}

.card-section .card-box .box .image-box svg path,
.card-section .card-box .box .image-box svg circle,
.card-section .card-box .box .image-box svg line {
  stroke-width: 1.5;
  stroke: var(--white);
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: all 1s ease-in-out;
}

.card-section .card-box .box:hover .image-box svg path,
.card-section .card-box .box:hover .image-box svg circle,
.card-section .card-box .box:hover .image-box svg line {
  stroke-dashoffset: 0;
}

/* Home Page Our Promise Section Slider CSS */

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

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

.semicircle-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.semicircle-path svg {
  width: 100%;
  height: 100%;
}

.value-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  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 {
  width: 50px;
  height: 50px;
  padding: 10px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border: 1px solid var(--golden);
  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 {
  width: 200px;
  height: 200px;
  margin-bottom: 0;
  padding: 20px;
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.value-item .icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-label p {
  font-family: "Montserrat-Regular";
  background-color: var(--cream);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #707070;
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.value-item.active .value-label {
  opacity: 0;
  height: 0;
}

.content-section {
  flex: 1;
}

.content-section h3 {
  color: var(--black);
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.content-section p {
  color: #6c6b69;
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Home Banner CSS */

#home-banner .swiper-pagination-bullet {
  width: 26px;
  height: 26px;
  padding: 0;
  margin: 0 3px !important;
  background: none !important;
  border: none;
  opacity: 1 !important;
  position: relative;
}

#home-banner .swiper-progress-ring {
  width: 26px;
  height: 26px;
  display: none;
}

#home-banner .circle-origin {
  stroke: transparent;
}

#home-banner .circle-progress {
  transition: stroke-dashoffset 0.3s linear;
  transform: rotate(-90deg);
  transform-origin: center;
}

#home-banner .circle-progress.animate {
  stroke-dashoffset: 0;
}

#home-banner .square-sign {
  width: 6px;
  height: 6px;
  background-color: var(--white);
  position: absolute;
  top: 39%;
  left: 39%;
  right: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#home-banner
  .swiper-pagination-bullet.swiper-pagination-bullet-active
  .swiper-progress-ring {
  display: block;
}

/* Homepage Map Section CSS */

.map .map-box {
  position: relative;
}

.map .map-box .location-wrap .location {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.map .map-box .location-wrap .location:hover {
  transform: scale(1.2);
}

.map .map-box .location-wrap .location h3 {
  font-family: "Montserrat-Bold";
  font-size: 18px;
  text-transform: uppercase;
  color: #707070;
  text-align: center;
}

.map .map-box .location-wrap .location img {
  max-width: 20px;
}

.map .map-box .location-wrap .location.indore {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
}

.map .map-box .location-wrap .location.indore:hover {
  transform: translate(-50%, -50%) scale(1.7);
}

.map .map-box .location-wrap .location.ratlam {
  /* top: 62px;
  left: 17%; */
  top: 4.35vw;
  left: 17vw;
}

.map .map-box .location-wrap .location.super-corridor {
  /* top: 28.5%;
  left: 25.5%; */
  top: 16vw;
  left: 25.5vw;
}

.map .map-box .location-wrap .location.rau {
  /* bottom: 14%;
  left: 32%; */
  top: 44vw;
  left: 31.5vw;
}

.map .map-box .location-wrap .location.pithampur {
  /* bottom: 7%;
  left: 32%; */
  top: 49vw;
  left: 32vw;
}

.map .map-box .location-wrap .location.manglia {
  top: 0;
  /* right: 25%; */
  right: 25vw;
}

.map .map-box .location-wrap .location.hingonia {
  /* top: 60px;
  right: 14%; */
  top: 4.18vw;
  right: 14vw;
}

.map .map-box .location-wrap .location.jhalaria {
  /* top: 160px;
  right: 11%; */
  top: 11.18vw;
  right: 11vw;
}

.map .map-box .location-wrap .location.bypass {
  /* top: 40%;
  right: 20.5%; */
  top: 22.6vw;
  right: 20.5vw;
}

.map .map-box .location-wrap .location.bicholi {
  /* top: 51%;
  right: 31%; */
  top: 28.8vw;
  right: 31vw;
}

.map .map-box .location-wrap .location.ambamoliya {
  /* top: 57%;
  right: 11.5%; */
  top: 32.2vw;
  right: 11.5vw;
}

/* ========== Popup Base ========== */
.location-popup {
  position: absolute;
  display: none;
  z-index: 99999;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* When active */
.location-popup.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* .location-popup .popup-inner {
  position: relative;
  background: #f3f0e8;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-popup .popup-inner::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f3f0e8;
} */

/* ========== Cards ========== */
.location-popup .cards-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 600px;
  cursor: default;
}

.location-popup .cards-wrap .popup-card {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.location-popup .cards-wrap .popup-card:hover {
  transform: translateY(-3px);
}

/* ========== Card Images ========== */
.location-popup .cards-wrap .popup-card img {
  max-width: 90px;
  height: auto;
}

.location-popup .cards-wrap .popup-card h6 {
  font-family: "Futura-Md-BT";
  font-size: 20px;
  color: var(--golden);
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 768px) {
  .location-popup .popup-inner {
    padding: 15px 20px;
  }

  .location-popup .cards-wrap .card img {
    max-width: 70px;
  }
}

.contact-form p {
  margin-bottom: 0;
}

.contact-form-home .form-group {
  margin-bottom: 30px;
}

.contact-form-home .form-group input,
.contact-form-home .form-group textarea {
  font-size: 18px;
}

.contact-form-home .privacy {
  margin-bottom: 30px;
}

#imageModal .modal-dialog {
  max-width: 70%;
}

#imageModal .modal-header {
  border-bottom: none;
  position: relative;
}

#imageModal .modal-header button {
  width: auto;
  height: auto;
  appearance: none;
  background: none;
  border: none;
  font-size: 32px;
  position: absolute;
  right: 10px;
  top: 10px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#imageModal .modal-header button svg {
  width: 26px;
  height: 26px;
}

.gallary .project-gallary .owl-carousel .owl-item img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.gallary .gallary-slider-popup img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
}

/* card section css 21-11-2025 */

/* .postid-305 .card-oscar .card-box .box {
  padding: 0;
} */

.postid-305 .card-oscar .card-box .box .image-box {
  margin: 0;
  /* max-height: 180px;
  height: 180px; */
  /* overflow: hidden; */
  /* max-width: 100% !important; */
}

.postid-305 .card-oscar .card-box .box .image-box img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
}

/* .postid-305 .card-oscar .card-box .box .image-box img {
  height: 100%;
  width: 100%;
  max-width: 100% !important;
  object-fit: cover;
} */

.postid-305 .card-oscar .card-box .box .text-box {
  padding: 30px 20px;
}

/* advantages-new start */

.advantages-new .advantages-new-box {
  background-color: var(--white);
}

.advantages-new .row {
  align-items: center;
}

.advantages-new .box.box-1 {
  display: flex;
}

.advantages-new iframe {
  height: 550px;
}

.advantages-new .info {
  /* display: flex; */
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--golden);
  padding: 20px 10px;
}

.advantages-new .info:last-child {
  border: none;
}

.advantages-new .info p {
  font-size: 22px;
}

.advantages-new .info img {
  max-width: 70px;
}

/* advantages-new end */

/* fix-box css */

.fix-box .item {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
}

.fix-box .item img {
  max-width: 30px;
}

.fix-box .item .img-box {
  position: relative;
  width: 50px;
  display: flex;
  justify-content: center;
}

.fix-box .item .img-box img.party-gif {
  position: absolute;
  top: -20px;
  max-width: 100px;
}

.fix-box .item p {
  line-height: 1.1;
}

/* fix-box css */

/* New Menu CSS Start */
@media (min-width: 992px) {
  #primary-menu .menu-item.has-submenu .sub-menu {
    flex-direction: column;
    min-height: 180px;
    min-width: 650px !important;
    overflow: hidden;
  }

  #primary-menu .menu-item.has-submenu .sub-menu .menu-item {
    display: flex;
    width: 100%;
    align-items: flex-start;
    position: static;
  }

  #primary-menu .menu-item.has-submenu .sub-menu .menu-item a.active {
    background-color: var(--cream);
    color: var(--golden);
  }

  #primary-menu .menu-item.has-submenu .sub-menu .menu-item .sub-menu {
    display: none !important;
    transform: none;
    min-width: 400px !important;
    border: none;
    left: unset !important;
    width: 50%;
    right: 0;
    top: 0;
    z-index: 99;
    flex-direction: row;
  }

  #primary-menu
    .menu-item.has-submenu
    .sub-menu
    .menu-item
    .sub-menu
    .menu-item {
    width: 50%;
  }
}

/* New Menu CSS End */

.team {
  background-color: #fffbf5;
}
.team .container {
  max-width: 1320px;
}

.team .section-heading {
  max-width: 100%;
}
.team .section-heading img {
  width: 100%;
}

/* .team .text-box {
  margin-top: -190px;
} */

.team p {
  text-align: left;
  line-height: 1.3;
  color: var(--gray);
  font-size: 18px;
}

.team .quote-box img {
  max-width: 30px;
  margin: 0 auto;
  display: flex;
}
