/* Font Family ***********************************************************************/

/* Futura */
@font-face {
  font-family: "Futura-Medium";
  src: url("../fonts/Futura/Futura-Medium.ttf");
  font-display: swap;
}

/* Futura-Md-BT */
@font-face {
  font-family: "Futura-Md-Bt-Medium";
  src: url("../fonts/Futura-Md-BT/Futura-Md-Bt-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Futura-Md-Bt-Bold";
  src: url("../fonts/Futura-Md-BT/Futura-Md-Bt-Bold.ttf");
  font-display: swap;
}

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

/* Gilroy */
@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy/Gilroy-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/Gilroy/Gilroy-Medium.ttf");
  font-display: swap;
}


/* common css ******************************************************************************/
:root {
  --white: #FFFFFF;
  --black: #000000;
  --Dull-orange: #CC942A;  
  --Vampire-grey: #505050;
  --Spring-wood: #FAF7F0;
  --Merino: #F3EFE5;

}

.white {
  color: var(--white);
}
.black {
  color: var(--black);
}
.dull-orange {
  color: var(--Dull-orange);
}

.Spring-wood-bg {
  background-color: var(--Spring-wood);
}
.Merino-bg {
  background-color: var(--Merino);
}

* {
  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: "Futura-Bk-BT";
  background-color: var(--white);
  overflow-x: hidden;
}
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);
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 58px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}

p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: var(--black);
}
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: var(--white);
} 
span {
  display: inline-block;
}
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.btn-common {
  font-size: 18px;
  color: var(--white);
  padding: 10px 20px;
  background-color: var(--Dull-orange);
  border: 1px solid var(--Dull-orange);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Futura-Md-Bt-Medium";
  transition: all 0.3s ease-in-out;
}
.btn-common:hover {
  background-color: var(--Spring-wood);
  color: var(--Dull-orange);
}
.btn-common img {
  max-width: 30px;
  margin-right: 10px;
}

section {
  padding: 80px 0;
  overflow: hidden;
}
/* .bg {
  padding: 100px 0;
} */

.tablet {
  display: none !important;
}
.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-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: 46%;
}
.owl-nav button.owl-next {
  right: 46%;
} */

.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent !important;
}

.form-control-common {
  background: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 30px;
  padding: 20px 50px 20px 20px;
  width: 100%;
  appearance: textfield;
  color: #9D9D9D;
  appearance: none;
  box-shadow: none;
  resize: none;
  outline: none;
}
select.form-control-common {
  background: url('../images/arrow-down.svg') no-repeat #ffffff;
  background-position: right 20px center;
  background-size: 16px 16px;
}
.form-control-common::placeholder {
  color: #9D9D9D;
}
.input-group {
  padding-bottom: 30px;
}
span.wpcf7-form-control-wrap {
  width: 100%;
}

/* 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: #111E37;
  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: 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 .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
}
#header .main-nav nav {
  display: flex;
  align-items: center;
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin: 0 20px;
}
#header .main-nav nav ul li a {
  font-size: 20px;
  color: var(--white);
  padding: 5px 5px;
  transition:  all 0.5s;
  font-family: "Futura-Md-Bt-Medium";
}
#header .main-nav nav ul li a:hover,
#header .main-nav nav ul li a.active {
  color: var(--Dull-orange);
}
#header .button-box {
  margin-left: 30px;
  padding-top: 0;
}
#header .button-box .btn-common {
  font-size: 14px;
  padding: 10px 16px;
}

/* homeBanner css ******************************************************************************/
#home-banner {
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  height: calc(100vh - 94px);
  overflow: hidden;
}
#home-banner .owl-stage-outer {
  height: calc(100vh - 94px);
}
#home-banner .video-bx:after {
  position: absolute;
  content: "";
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0) 100%);
  width: 100%;
  bottom: 0;
  height: 40%;
  z-index: 1;
}
#home-banner .item .banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
#home-banner .owl-stage {
  height: 100%;
}
#home-banner .owl-stage .owl-item {
  height: 100%;
  display: flex;
}
#home-banner .item {
  width: 100%;
  height: 100%;
}
#home-banner .item .image-bx {
  height: 100%;
  margin-bottom: 15px;
}
#home-banner .item .image-bx img {
  position: relative;
  height: 100%;
  object-fit: cover;
}
#home-banner .item .image-bx img::after {
  position: absolute;
  content: "";
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0) 100%);
  width: 100%;
  bottom: 0;
  height: 40%;
  z-index: 1;
}
#home-banner .caption-bx {
  position: absolute;
  bottom: 86px;
  width: 100%;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%);
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
#home-banner .caption-bx .image-bx img {
  max-width: 65%;
}
#home-banner .caption-bx .image-bx img.sm-logo {
  max-width: 45%;
}
/* #home-banner .caption-bx .box,
.inner-banner .caption-bx .box {
  padding: 0 0 40px 0;
} */
#home-banner .caption-bx h1 {
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  font-family: "Futura-Md-Bt-Bold";
}

#home-banner .owl-prev {
  position: absolute;
  z-index: 9;
  left: 20px;
  top: 50%;
  transform: translate(0 , -50%);
}

#home-banner .owl-next {
  position: absolute;
  z-index: 9;
  right: 20px;
  top: 50%;
  transform: translate(0 , -50%);
}

#home-banner .owl-dots {
  position: absolute;
  z-index: 9999999;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%, 0px);
}

#home-banner .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: var(--white);
  outline: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

#home-banner .owl-dots .owl-dot.active span {
  width: 38px;
  background: var(--Dull-orange);
}

/* Left align heading *******/
#about-us .section-heading,
#what-we  .section-heading,
#strategic .section-heading,
#values .section-heading {
  text-align: left;
}

/* About us section css ******************************************************************************/
#about-us .section-heading {
  margin-bottom: 20px;
}
.section-heading h2 {
  position: relative;
}
.section-heading h2:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  border-radius: 20px;
  background-color: var(--Dull-orange);
}
#about-us .box.box2,
#about-us .video-bx,
#about-us .video-bx video {
  border-radius: 40px 0 0 40px;
}
#about-us .box.box1 {
  /* padding: 0 15% 0 28%; */
  margin: 0 auto;
}
#about-us .box.box1 .text-box {
  max-width: 80%;
}
#about-us .text-box p {
  font-size: 20px;
}
#about-us .box.box1 .button-box {
  margin-top: 30px;
}

#about-us .video-wrap {
  position: absolute;
  right: 0;
  padding-right: 0;
}

/* What we section css **********************************************************************/
#what-we {
  padding-bottom: 50px;
}
#what-we .box,
#strategic .box,
#values .box {
  text-align: center;
  padding: 45px 20px;
  border-radius: 6px;
  background-color: var(--white);
  height: 100%;
  transition: 0.5s ease-in-out;
}
#what-we .row > div:nth-child(odd) .box:hover,
#strategic .row > div:nth-child(odd) .box:hover,
#values .row > div:nth-child(odd) .box:hover {
  transform: scale(1.05) rotate(-2deg); /* odd = rotate left */
  background-color: var(--Dull-orange);
}

#what-we .row > div:nth-child(even) .box:hover,
#strategic .row > div:nth-child(even) .box:hover,
#values .row > div:nth-child(even) .box:hover {
  transform: scale(1.05) rotate(2deg); /* even = rotate right */
  background-color: var(--Dull-orange);
}

#what-we .box:hover .text-box p,
#strategic .box:hover .text-box p,
#values .box:hover .text-box p {
  color: var(--white);
}
#values .box:hover .text-box h4 {
  color: var(--white);
}
#what-we .box:hover .image-bx svg,
#strategic .box:hover .image-bx svg,
#values .box:hover .image-bx svg {
  fill: var(--white);
}
#what-we .box .image-bx,
#strategic .box .image-bx,
#values .box .image-bx {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 39px 0;
  min-height: 115px;
}
#what-we .box .image-bx svg,
#strategic .box .image-bx svg,
#values .box .image-bx svg {
  fill: var(--Dull-orange);
  transition: all 0.3s ease-in-out;

}
#what-we .box .text-box p, 
#strategic .box .text-box p,
#values .box .text-box p {
  font-size: 24px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

#values .box .text-box p {
  color: #696969;
  font-size: 20px;
}

#values .box .text-box h4 {
  font-family: "Futura-Md-Bt-Medium";
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

/* Our projects section css ******************************************************************************/
.our-project-title-bx {
  margin-top: 80px;
}
#our-projects {
  padding-top: 0;
  position: relative;
}
.our-projects-slider .item .image-bx {
  position: relative;
}
.our-projects-slider .item > .image-bx img{
  min-height: 650px;
}
.our-projects-slider .owl-stage {
  padding: 30px 0;
}
.our-projects-slider .item .content-box {
  position: absolute;
  right: 16%;
  top: 0;
  height: 100%;
  background-color: var(--white);
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.363));
}
.our-projects-slider .item .content-box .content-box-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.our-projects-slider .item .content-box .content-box-inner .image-bx {
  background-color: #111E37;
}
.our-projects-slider .item .content-box .content-box-inner .image-bx .image-bx-wrap{
  padding: 30px 60px;
  max-width: 85%;
  margin: 0 auto;
}
.our-projects-slider .item .content-box .content-box-inner .image-bx img {
  width: 400px;
}
.our-projects-slider .item .content-box .content-box-inner .image-bx p {
  margin-left: 65px;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}
.our-projects-slider .item .content-box .content-box-inner .text-box {
  text-align: left;
  margin-left: 45px;
  padding: 30px 60px;
  font-family: "Futura-Md-Bt-Medium";
}
.our-projects-slider .item .content-box .content-box-inner .text-box p {
  font-size: 24px;
  margin-bottom: 30px;
}
.our-projects-slider .item .content-box .content-box-inner .list-box li {
  font-size: 20px;
  padding-left: 32px;
  position: relative;
  font-family: "Futura-Md-Bt-Medium";
}
.our-projects-slider .item .content-box .content-box-inner .list-box li:after {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  background: url('../images/star.png') no-repeat;
  background-size: 100% 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.our-projects-slider .item .content-box .content-box-inner .list-box li:not(:last-child) {
  margin-bottom: 16px;
}
.testimonials-slider .owl-nav button.owl-prev,
.our-projects-slider .owl-nav button.owl-prev {
  position: static;
  margin-right: 20px;
}
.testimonials-slider .owl-nav button.owl-next,
.our-projects-slider .owl-nav button.owl-next {
  position: static;
  margin-left: 20px;
}
.our-projects-slider .owl-nav {
  margin-top: 20px;
}



/* Your own section css ******************************************************************************/
#your-own {
  padding: 120px 0;
  background-color: var(--Dull-orange);
} 
#your-own .section-heading {
  margin-bottom: 40px;
}
#your-own .section-heading h2 {
  font-size: 100px;
  color: var(--white);
  line-height: 0.9;
  text-transform: uppercase;
}
#your-own .section-heading h2:after {
  display: none;
}
#your-own .text-box {
  text-align: center;
  padding: 0 12px;
}
#your-own .text-box p {
  font-size: 26px;
  font-family: "Futura-Bk-BT";
}
#your-own .your-own-box .col-md-8 {
  position: relative;
}

#your-own .your-own-box .logo_wrap {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translate(0px, -50%);
  opacity: 0.2;
}

/* Testimonials section css ******************************************************************************/
#testimonials .section-heading {
  text-align: left;
  /* margin-left: 16%; */
}
#testimonials .item .box > .text-box{
  padding: 58px 80px;
  border-radius: 40px;
  margin-bottom: 120px;
  background-color: var(--white);
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  height: 100%;
  max-height: 250px;
}
.testimonials-slider .item,
.testimonials-slider .box.box2 {
  height: 100%;
}
.testimonials-slider .owl-stage {
  display: flex;
}
#testimonials .item .box p {
  font-size: 24px;
  /* display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden; 
  min-height: 95px; */
}
#testimonials .item .box .text-box {
  /* max-width: 610px; */
  /* margin: 0 auto; */
  margin-bottom: 42px;
  text-align: center;
}
#testimonials .item .box .text-box p {
  margin-bottom: 5px;
}
#testimonials .item .box .text-box a {
  font-size: 22px;
  color: var(--Dull-orange);
}
#testimonials .item .box .text-box a:hover {
  text-decoration: underline;
}
#testimonials .item .box .image-bx {
  /* position: absolute;
  left: 50%; */
  transform: translate(0 , -50%);
}
#testimonials .item .box .image-bx img {
  width: 92px;
  height: 92px;
  margin: 0 auto;
  display: block;
  margin-bottom: 14px;
}
#testimonials .item .box .image-bx .text-box {
  margin-bottom: 0 !important;
}
#testimonials .item .box .image-bx .text-box p {
  font-size: 16px;
  margin-bottom: 0;
  font-family: "Gilroy-Medium";
  min-height: auto !important;
}
#testimonials .item .box .image-bx .text-box span {
  font-size: 16px;
  color: var(--black);
  font-family: "Gilroy-Regular";
}

/* Insta section css ******************************************************************************/
#insta .section-heading {
  text-align: left;
}
#insta .section-heading h2 {
  padding-bottom: 5px;
}
#insta .box .image-bx img {
  border-radius: 13px;
}
.insta-slider .owl-nav {
  margin-top: 40px;
}
.insta-slider .owl-nav button.owl-prev {
  position: static;
  margin-right: 20px;
}
.insta-slider .owl-nav button.owl-next {
  position: static;
  margin-left: 20px;
}

/* footer css ******************************************************************************/
#footer {
  background-color: #111E37;
  padding-top: 50px;
}
#footer .top-box .logo-box img {
  max-width: 220px;
}
#footer p {
  color: var(--white);
}
#footer a {
  font-size: 20px;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
#footer a:hover,
#footer .list-box a:hover {
  color: var(--Dull-orange);
} 
#footer .list-box a {
  font-size: 24px;
  color: var(--white);
  font-family: "Futura-Bk-BT";
  transition: all 0.3s ease-in-out;
}
#footer p {
  font-size: 20px;
}
.lower-case {
  text-transform: unset;
}
#footer .top-box .list-box li:not(:last-child) {
  margin-bottom: 28px;
}
#footer .top-box .link-box ul {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 10px;
  height: 100%;
}
#footer .link-box a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid var(--Dull-orange);
}
#footer .cmn-con-bx:not(:last-child) {
margin-bottom: 10px;
}
#footer .cmn-con-bx h6 {
  margin-bottom: 0;
}
#footer .end-box {
  margin-top: 35px;
  padding: 20px 0;
  border-top: 1px solid #CBCBCB;
}
#footer .box.box3,
#footer .link-box {
  height: 100%;
}

/* Whatsapp Fixedbar ********************************/
.whatsapp-box {
  position: fixed;
  right: 1.5%;
  bottom: 3%;
  z-index: 9999999;
}
.tada-animation {
  animation: tada 1s infinite;
  display: inline-block;
}
@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

/* News Letter Section CSS ******************************************************************************/

.home-newsletter {
  padding-top: 0;
}

#newsletter .newsletter-box-main .newsletter-box form{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#newsletter .newsletter-box-main .newsletter-box span[data-name="Email"] {
  max-width: 580px;
}

#newsletter .newsletter-box-main .newsletter-box input[type="email"] {
  width: 100%;
  max-width: 580px;
  padding: 5.5px 50px;
  border: 1px solid var(--Dull-orange);
  border-radius: 3px 0 0 3px;
  font-size: 22px;
  line-height: 36px;
}

#newsletter .newsletter-box-main .newsletter-box .newsletter-btn {
  border-radius: 0 3px 3px 0;
}

/* ------------------------------------------------------------------------- */
/* Rushik css */

.section-heading.text-left {
  text-align: left;
}
.projects-info {
  padding-bottom: 25px;
}
.projects-info .box {
  height: 100%;
}

.projects-info .box a {
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--white);
  height: 100%;
  filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, 0.301));
}
.projects-info .row {
  row-gap: 30px;
}
.projects-info .box .img-box {
  border-radius: 5px;
  max-height: 370px;
  overflow: hidden;
  max-width: 100%;
}
.projects-info .box .img-box img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.projects-info .box:hover .img-box img {
  transform: scale(1.1);
}

.projects-info .box .logo-img-box {
  padding: 40px 40px;
  background-color: #111E37;
}

.projects-info .box .logo-img-box p {
  color: var(--white);
}

.projects-info .box .text-box .text {
  margin-left: 60px;
  padding: 40px 40px;
}

.projects-info .box .logo-img-box img {
  max-width: 350px;
}

.projects-info .box .logo-img-box p {
  padding-left: 60px !important;
  font-size: 22px;
  font-weight: 500;
}

.projects-info .box .logo-img-box p::before {
  display: none;
}

.projects-info .box .text-box h6 {
  font-family: "Futura-Md-Bt-Medium";
  text-transform: uppercase;
}
.projects-info .box .text-box p {
  font-family: "Futura-Md-Bt-Medium";
  text-transform: capitalize;
  position: relative;
  padding-left: 35px;
}

.projects-info .box .text-box p::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  height: 13px;
  width: 13px;
  background: url("../images/star.png") no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transform: translateY(-50%);
}

.inner-banner {
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  height: calc(100vh - 94px);
  overflow: hidden;
}

.inner-banner .banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.inner-banner .video-bx::after {
  position: absolute;
  content: "";
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.8) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  width: 100%;
  bottom: 0;
  height: 60%;
  z-index: 2;
}

.inner-banner .caption-bx {
  position: absolute;
  bottom: 10%;
  width: 100%;
  /* max-width: 70%; */
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%);
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.inner-banner .caption-bx .image-bx img {
  max-width: 65%;
  margin-bottom: 10px;
}

.inner-banner .caption-bx h1 {
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  font-family: "Futura-Md-Bt-Bold";
}

.inner-banner .caption-bx p {
  color: var(--white);
}

.project-overview .project-overview-box {
  position: relative;
}
.project-overview .img-box img {
  min-height: 650px;
}
.project-overview .img-box {
  max-height: 700px;
  overflow: hidden;
}

.project-overview .text-box {
  /* padding: 30px 60px; */
  background-color: var(--white);
  position: absolute;
  top: 0;
  right: 15%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.363));
}
.project-overview .logo-img-box {
  padding: 30px 60px;
  background-color: #111E37;
}
.project-overview .text-box .text {
  padding: 30px 60px;
  padding-top: 0;
  margin-left: 60px;
}
.project-overview .logo-img-box img {
  max-width: 350px;
}
.project-overview .logo-img-box {
  margin-bottom: 40px;
}
.project-overview .logo-img-box p {
  font-family: "Futura-Md-Bt-Medium";
  text-transform: capitalize;
  font-size: 20px;
  padding-left: 60px;
  color: var(--white);
}

.project-overview .text-box h6 {
  max-width: 70%;
  font-family: "Futura-Md-Bt-Medium";
  text-transform: uppercase;
}
.project-overview .text-box .text p {
  font-family: "Futura-Md-Bt-Medium";
  text-transform: capitalize;
  position: relative;
  font-size: 16px;
}

.project-overview .text-box .text p::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -35px;
  height: 10px;
  width: 10px;
  background: url("../images/star.png") no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transform: translateY(-50%);
}
.project-overview .section-heading p {
  max-width: 900px;
}

.amenities .box .img-box {
  max-height: 310px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 15px;
}
.amenities .box .img-box img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

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

.amenities .box {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.11);
}

.amenities .text-box {
  text-align: center;
  padding: 20px 10px;
}
.amenities .text-box h6 {
  font-family: "Futura-Md-Bt-Medium";
}

.amenities .row {
  row-gap: 30px;
}
.map-guide {
  padding: 80px 0 180px;
}
/* .map-guide-box::before {
  position: absolute;
  left: 70px;
  top: 0px;
  content: "";
  background: url("../images/sankalp-logo-gif.gif") no-repeat;
  background-size: 18%;
  height: 100%;
  width: 100%;
  opacity: 0.5;
} */

.map-guide .map-guide-box {
  background-color: var(--Dull-orange);
  padding: 8% 0;
  position: relative;
}
.map-guide .box h3 {
  color: var(--white);
  text-align: center;
}
.btn-white {
  background-color: var(--white);
  border: 1px solid var(--white);
  color: #433d37 !important;
  border-radius: 10px;
  font-size: 14px;
  padding: 12px 15px;
  transition: all 0.s ease-in-out;
}
.btn-white:hover {
  background-color: var(--black);
  border: 1px solid var(--black);
  color: var(--Dull-orange) !important;
}
.map-guide .button-box {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.map-guide .img-box {
  background: var(--white);
  border-radius: 10px;
  position: relative;
}
.map-guide .img-box .zoom-in {
  position: absolute;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
}
.map-guide .box-2 .img-box .map-img {
  width: 100%;
}
.map-guide .box {
  position: relative;
  z-index: 9;
}

.map-guide .box.box-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.map-guide .modal-dialog {
  max-width: 60%;
}

.map-guide .modal-dialog .img-box {
  display: flex;
  justify-content: center;
  background-color: transparent;
}
.modal-header {
  border: none;
}

.map-guide .btn-close {
  background: url("../images/close-icon.png") no-repeat;
  background-size: 25px;
  opacity: 1;
  box-shadow: none !important;
}

.map-guide .modal-content {
  border-radius: 15px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.map-guide .modal-body {
  padding-bottom: 60px;
}
/* ------------------------------------------------------------------------- */

/* Contact Form CSS ******************************************************************************/

.contact_form .section-heading h1{
  font-size: 50px;
}

.contact_form .form-box form .input-group button[type="submit"] {
  background-color: #EA8220;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
  padding: 13px 40.12px;
}

/* About Us Page CSS ******************************************************************************/

.inner-banner .caption-bx h1 span.orange {
  font-family: 'Futura-Md-Bt-Medium';
  color: var(--Dull-orange);
}

.who-we p {
  color: #343434;
  font-size: 22px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.who-we p:last-child {
  margin-bottom: 0px;
}

.who-we strong {
  font-family: 'Futura-Md-Bt-Bold';
}

.who-we span {
  font-family: 'Futura-Md-Bt-Medium';
  display: inline;
}

.movement .section-heading p {
  max-width: 800px;
  font-size: 20px;
  line-height: 1.6;
}

.movement .text-box {
  max-width: 800px;
}

.movement .text-box p {
  font-size: 20px;
  line-height: 1.5;
}

.movement .text-box span {
  font-family: 'Futura-Md-Bt-Medium';
  color: var(--Dull-orange);
  font-style: italic;
}

.movement .movement-box .box {
  transition: all 0.3s ease-in-out;
}

.movement .movement-box .box:hover {
  transform: scale(1.1);
}

.movement .box img {
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
}

.movement .box p {
  text-align: center;
  text-transform: capitalize;
  font-size: 20px;
}

/* .movement {
  max-width: 85%;
  margin-left: auto;
} */

.movement .movement-box {
  position: relative;
  padding: 50px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.movement .movement-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: -100%;
  top: 0;
  z-index: -1;
  background-color: var(--Spring-wood);
}

.milestones .milestones-box .box {
  position: relative;
  background-color: var(--Spring-wood);
  padding: 60px 25px;
  margin-right: -15px;
  margin-left: -15px;
  border: 1px solid var(--Dull-orange);
  border-radius: 89px;
  transition: all 0.3s ease-in-out;
  height: 385px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.milestones .milestones-box .box-wrap{
  padding: 0;
}

.milestones .milestones-box .box-wrap .box.bottom-aligned {
  margin-top: 137.5%;
  align-items: flex-end;
}

.milestones .milestones-box .box-wrap .box h5 {
  margin-bottom: 20px;
}

.milestones .milestones-box .box-wrap .box .year-box {
  background-color: var(--Dull-orange);
  padding: 15px 50px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
}

.milestones .milestones-box .box-wrap .box .year-box h2 {
  color: var(--Merino);
}

.milestones .milestones-box .box-wrap .box .year-box.box1 {
  right: -40%;
  bottom: 0;
}

.milestones .milestones-box .box-wrap .box .year-box.box3 {
  border-radius: 18px 18px 36px 36px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0px);
}


.milestones .milestones-box .box-wrap .box .year-box.box4 {
  right: -28%;
  top: 0;
}

.milestones .milestones-box .box-wrap .box .year-box.box6 {
  border-radius: 36px 36px 18px 18px;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0px);
}

/* .founders .founders-box {
  max-width: 95%;
  margin-left: auto;
} */

.founders .founders-box .image-box {
  padding-top: 110px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* .founders .founders-box .image-box .founder-wrap.founder-1 {
  transform: translate(40px , 0);
} */

.founders .founders-box .image-box .founder-wrap {
  position: relative;
  z-index: 1;
}

.founders .founders-box .image-box .founder-wrap.founder-2 {
  transform: translate(60px , 100px);
}

.founders .founders-box .image-box .founder-wrap h4 {
  text-transform: uppercase;
  font-family: "Futura-Md-Bt-Medium";
  position: relative;
  font-size: 30px;
  color: #363B3D;
  font-weight: 500;
  margin: 20px 0 0 40px;
}

.founders .founders-box .image-box .founder-wrap h4::after {
  content: "";
  width: 2px;
  height: 60px;
  position: absolute;
  left: -15px;
  top: -25px;
  background-color: var(--Dull-orange);
}

.founders .founders-box .text-box {
  position: relative;
  background-color: var(--white);
  padding: 110px 0 150px 100px;
}

.founders .founders-box .text-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: -100%;
  top: 0;
  background-color: var(--white);
}

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

.founders .founders-box .text-box .section-heading h2 {
  margin-bottom: 130px;
}

.founders .founders-box .text-box p {
  color: #343434;
  font-size: 24px;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
}

.founders .founders-box .text-box p:last-child {
  margin-bottom: 0;
}

.founders .founders-box .text-box p span{
  display: inline;
  font-style: italic;
  font-weight: 600;
}

#values {
  padding-top: 0;
}

.our_projects {
  padding: 0;
}

.our_projects .section-heading {
  margin-bottom: 110px;
}

.our_projects .section-heading h2 {
  margin-bottom: 50px;
}

.our_projects .section-heading p{
  max-width: 68%;
  color: var(--black);
  font-size: 24px;
}

.our_projects .project-slider .owl-stage {
  display: flex;
  height: 100%;
}

.our_projects .project-slider .item {
  position: relative;
}

.our_projects .project-slider .item .video-box {
  position: relative;
  height: 600px;
  border-radius: 10px;
}

.our_projects .project-slider .item .video-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: var(--black);
  opacity: 0.5;
} 

.our_projects .project-slider .item .video-box video{
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
}

.our_projects .project-slider .item .caption-box {
  position: absolute;
  left: 90px;
  bottom: 50px;
  z-index: 2;
  padding-right: 15px;
}

.our_projects .project-slider .item .caption-box h4 {
  font-family: "Futura-Md-Bt-Medium";
  color: var(--white);
  font-size: 30px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.our_projects .project-slider .item .caption-box p {
  font-family: "Futura-Md-Bt-Medium";
  color: var(--white);
  margin-bottom: 5px;
}

.project-slider .owl-nav button.owl-prev {
  position: static;
  margin-right: 20px;
  border: none;
}
.project-slider .owl-nav button.owl-next {
  position: static;
  margin-left: 20px;
  border: none;
}
.project-slider .owl-nav {
  margin-top: 20px;
  text-align: center;
}

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

.wpcf7-response-output {
  width: 50%;
  text-align: center;
}

.wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  bottom: -25px;
}

.wpcf7-spinner {
  display: none;
}

/* Insta Feed CSS */

#sb_instagram .sbi_photo img {
  object-position: top center;
  border-radius: 15px;
}

p.animated-title span {
  margin-right: 5px !important;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  border-color: green;
  color: green;
  display: none;
}


/* Thank You Page Styling */
.thank-you {
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fdfcfb 0%, #cc942a70 100%);
  padding: 20px;
}

.thank-you .thank-you-box {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 70px 40px;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  animation: fadeInUp 0.8s ease;
}


.thank-you h4 {
  font-weight: bold;
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

.thank-you p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}


.thank-you .button-bx {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.thank-you .cmn-btn {
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--Dull-orange);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.thank-you .cmn-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: #111E37;
  box-shadow: 0 6px 18px rgb(0 0 0 / 37%);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact_form .wpcf7-form-control.wpcf7-submit.btn-common {
  border-radius: 6px !important;
}

#map-modal .modal-content{
  background-color: #21212136;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.modal-backdrop.fade.show {
  opacity: 0.2;
}

.who-we .box.box-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-guide .scroll-gif-wrap {
  position: absolute;
  left: 100px;
  top: 0;
  height: 100%;
  overflow: hidden;
  opacity: 0.5;
}

.map-guide .modal-dialog .img-box img {
  max-height: 550px;
}

.map-guide .scroll-gif-wrap img {
  height: 100%;
}