@font-face {
  font-family: "Jost-Regular";
  src: url(../fonts/Jost-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "Jost-Bold";
  src: url(../fonts/Jost-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "Jost-ExtraLight";
  src: url(../fonts/Jost-ExtraLight.ttf) format("truetype");
}

@font-face {
  font-family: "Jost-Light";
  src: url(../fonts/Jost-Light.ttf) format("truetype");
}

@font-face {
  font-family: "Jost-Medium";
  src: url(../fonts/Jost-Medium.ttf) format("truetype");
}

@font-face {
  font-family: "Jost-SemiBold";
  src: url(../fonts/Jost-SemiBold.ttf) format("truetype");
}

@font-face {
  font-family: "Jost-Thin";
  src: url(../fonts/Jost-Thin.ttf) format("truetype");
}

@font-face {
  font-family: "GildaDisplay-Regular";
  src: url(../fonts/GildaDisplay-Regular.ttf) format("truetype");
}

html {
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

html,
body,
h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-margin: 74px;
}

*:hover,
*:focus,
*:visited {
  outline: 0;
}

:root {
  --headbrown: #352627;
  --white: #ffffff;
  --darkgray: #151515;
  --green: #a8cb87;
  --peachbg: #f4f0ea;
  --lightgray: #f4f4f5;
  --bgblue: #073C6F;
}

.headblue {
  color: #791216;
}
body {
  margin: 0 auto;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 15px;
  line-height: 150%;
  background-color: #fff;
  overflow-x: hidden !important;

}



/* color pallete home page banner */

.colorPallete {
  /* width:100%;
  height:100vh; */
  overflow: hidden;
  line-height: 0;
  position: relative;
}

canvas#c {
  /* width:100%;
  height:100vh; */
  border: 1px solid #f5f2ec;
  background-color: #f5f2ec;
  position: relative;
  left: 0;
  top: 0;
  z-index: 2;
}

.rLogoCanva {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}

.rLogoCanva img {
  width: 100%;
}

.rLogoCanva svg {
  width: 100%;
}

.colorfill {
  fill: white;
}

/* .rLogoCanva svg:hover #Path_35
{
  fill:white;
} */


.rLogoCanva .logoBannerHome {
  width: 200px;
  max-width: 100%;
  margin: 0 auto;
}

.rLogoCanva h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-top: 25px;
  color: #fff;
}

.colordots {
  display: flex;
  width: 80px;
  gap: 0px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 99999;
  padding: 5px;
  flex-direction: column;
}

.colorpicker {
  cursor: url(../images/colordots/color-picker1.svg), auto;
}

.cdots {
  padding: 5px;
}

/* home page banner end */
.clearfix {
  clear: both;
}

.mHide {
  display: block !important;
}

.dHide {
  display: none !important;
}

p {
    margin: 0;
    line-height: 165%;
    font-weight: 400;
    color: #352627;
}

p:last-child {
  margin-bottom: 0;
}


p a{
 
  color: #000;
}

p a:hover{
 
  color: #000;
}


small {
  font-size: 12px;
}

.txtCenter {
  text-align: center;
}

.centerAlign {
  margin: 20px auto !important;
}

.txtLeft {
  text-align: left;
}

.txtJustify {
  text-align: justify;
}

.txtCenterJustify {
  text-align: justify;
  text-align-last: center;
}

.txtUppercase {
  text-transform: uppercase;
}

.positionRelative {
  position: relative;
}

.w-800 {
  width: 800px;
  max-width: 95%;
  margin: 0 auto;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #013b7c;
  transition: all 0.2s ease-in-out;
}

a:focus {
  text-decoration: none;
}

a.blueLink {
  color: #013b7c;
}

a,
a:link,
a:hover,
a:active {
  outline: none;
}

.fancybox.a {
  background-color: transparent;
}

img {
  width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  aspect-ratio: attr(width) / attr(height);
}

ul {
  padding: 0;
  list-style: disc inside none;
  margin-bottom: 0;
  padding-left: 0;
}

ol {
  padding: 0;
  list-style: decimal inside none;
  margin-bottom: 20px;
  padding-left: 30px;
}

button {
  border: 0 solid;
}

.btn {
  display: block;
  width: 100%;
  background-color: transparent;
  /* text-transform: uppercase; */
  border: 0 solid;
  padding: 12px;
  transition: all 0.2s;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
}

.btn:focus,
.btn:visited,
.btn:hover {
  transition: all 0.2s;
  outline: 0;
}

.btnPrimary {
  color: var(--white);
  background-color:#791216;
  border: 1px solid var(--headbrown);
  border-radius: 25px;
  transition: all 0.7s;
}

.btnPrimary:hover {
  box-shadow: inset 8em 0 0 0 var(--white), inset -8em 0 0 0 var(--white);
  border-color: #791216;
  color:#791216;
  transition: all 0.7s;
}


.btnPrimary2 {
  color: var(--headbrown);
  background-color: var(--white);
  border: 1px solid var(--white);
  border-radius: 25px;
  transition: all 0.7s;
  margin-top: 20px;
}

.btnPrimary2:hover {
  box-shadow: inset 8em 0 0 0 var(--headbrown), inset -8em 0 0 0 var(--headbrown);
  border-color: var(--headbrown);
  color: var(--white);
  border: 1px solid var(--white);
  transition: all 0.7s;
  margin-top: 30px;
}

.btnwidth-200 {
  width: 200px;
}

.btnwidth-300 {
  width: 300px;
}

.elementcenter {
  margin-left: auto;
  margin-right: auto;
}

.strong {
  font-weight: 600;
}

.btnSecondary {
  color: var(--headbrown);
  background-color: var(--white);
  border: 1px solid var(--white);
  border-radius: 25px;
  transition: all 0.7s;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -ms-transition: all 0.7s;
  -o-transition: all 0.7s;
}

.btnfaq {
  color: var(--headbrown);
  background-color: var(--white);
  border: 1px solid var(--headbrown);
  border-radius: 25px;
  width: 220px;
  margin: 16px 0px 10px 0px;
}

.btnSecondary:hover {
  box-shadow: inset 8em 0 0 0 #98c175, inset -8em 0 0 0 #98c175;
  border-color: var(--headbrown);
  color: #fff;
  transition: all 0.7s;
}

/* #btnLetsDiscuss {
  color: #000;
} */

.wrapper {
  width: 100%;
  margin: 0;
}

.padding20 {
  padding: 20px;
}

.paddingTop {
  padding-top: 50px;
}

.paddingTop20 {
  padding-top: 20px;
}

.paddingBottom {
  padding-bottom: 50px;
}

.paddingTopBottom {
  padding: 50px 0px;
}

.paddingTopBottom40 {
  padding: 40px 0px;
}

.full_width {
  width: 100%;
  margin: 0 auto;
}

.containerAsp {
  width: 1500px;
  max-width: 80%;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.flex-align-center {
  align-items: center;
}

.flex-justify-center {
  justify-items: center;
}

/**********************/
/** Slick Slider css **/
/**********************/

.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

#skipHomeVideo {
  position: absolute;
  z-index: 99999;
  bottom: 30px;
  right: 20px;
  background-color: #000000b0;
  color: #fff;
  padding: 3px 15px;
  text-transform: capitalize;
  cursor: pointer;
}

#unmutebtn {
  position: absolute;
  z-index: 99999;
  bottom: 30px;
  left: 20px;
  background-color: #000000b0;
  color: #fff;
  padding: 3px 15px;
  text-transform: capitalize;
  cursor: pointer;
}

/**********************/
/** Header css **/
/**********************/

.header_main {
    width: 100%;
    max-width: 100%;
    position: fixed;
    background-color: #352627;
    top: 0;
    z-index: 9999;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1); */
}

/* .header {
    width: 1140px;
    max-width: 80%;
    margin: 0 auto;
  } */

.headerInside {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px;
  width: 1600px;
  max-width: 90%;
}

.navMenuBtn {
  cursor: pointer;
  opacity: 1;
  margin-right: 0px;
  height: 27px;
}

.pageScroll {
  display: block;
  z-index: 99999999;
  opacity: 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  will-change: opacity;
  opacity: 1;
backdrop-filter: blur(20px);
  /* background-color: #fff; */
  /* box-shadow: 0 4px 12px 0 #00000017; */
  /* height: 60px;*/
}

.pageScroll .bar1,
.pageScroll .bar2,
.pageScroll .bar3 {
  background-color: #eed8c6;
}

.bar1,
.bar2,
.bar3 {
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
  transition: 0.4s;
  border: 0 solid;
  border-radius: 10px;
}

.scroll {
  background-color: var(--headbrown);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}

.change {
  margin-top: 9px;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-1px, 0px);
  transform: rotate(-45deg) translate(-2px, 0px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-9px, -8px);
}

.logo {
  /* width: 80px;
    max-width: 100%;
    margin: 0px 0px; */
  float: left;
  width: 130px;
  max-width: 100%;
  margin: 5px 0px;
}

.top_right {
  width: 395px;
  max-width: 65%;
  float: right;
  margin-top: 21px;
}

.section-title {
  padding: 0px;
  margin: 0px; 
  font-family: "Gilda Display", serif;

  font-weight: 400;

  font-size: 35px;
  margin-bottom: 25px;
  letter-spacing: 1px;
text-transform: uppercase;
 color: #791216
  /* margin-top: 10px; */
}

.section-title2 {
  padding: 0px;
  margin: 0px;
  font-family: "Gilda Display", serif;

  font-weight: 400;
  font-size: 30px;
}

.textuppercase {
  text-transform: uppercase;
}

.whitetext {
  color: var(--white);
}

.headerMenuClick .headerInside2 {
  opacity: 0 !important;
  display: none !important;
}

.sidebarNavigation {
  width: 230px;
  height: 100vh;
  max-width: 76%;
  position: fixed;
  right: -536px;
  top: 0;
  z-index: 9999;
  opacity: 0;
  background-color: #352627;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  will-change: opacity;
  opacity: 1;

  backdrop-filter: blur(100px);
  transition: all 0.8s ease-in-out;
}

.sidebarNavigationShow {
  right: 0px;
  transition: all 1s ease-in-out;
}

.sidebarNavigation ul {
  list-style: none;
  padding: 80px 20px 0px 20px;
}

.sidebarNavigation ul li {
  margin: 6% 5% 15% 0%;
  text-align: left;
}

.sidebarNavigation ul li a {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffffc7;
  text-decoration: none;
  padding-top: 4px;
}

.sidebarNavigation ul li a:hover {
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.sidebarNavigation ul li.active a {
  color: #fff;
}

.sidebarNavigation ul ul {
  padding: 15px 0px 0px 20px;
}

.sidebarNavigation ul ul li {
  margin: 3% 5%;
}

.sidebarNavigation ul ul li a {
  font-size: 14px;
}

/************************/
/* Hero Banner */
/************************/
.herobanner {
  /* margin-top: 40px; */
  position: relative;
}

/* Vertically align the dots on the right side */
.herobanner .slick-dots {
  position: absolute;
  bottom: 10%;
  right: 20px;
  /* transform: translateY(-50%); */
  list-style: none;
  padding: 0;
  margin: 0;
}

.herobanner .slick-dots {
  display: none !important;
}

.herobanner .slick-dots li {
  display: block;
  margin: 10px 0;
  /* Adjust this value to control the vertical spacing between dots */
}

.herobanner .slick-dots li button {
  display: none;
}

.herobanner .slick-arrow {
  display: none !important;
}

/* Customize the dot styles if needed */
.herobanner .slick-dots li {
  width: 7px;
  /* Adjust the dot width */
  height: 7px;
  /* Adjust the dot height */
  background-color: var(--headbrown);
  /* Dot background color */
  border: 0px solid #fff;
  /* Dot border */
  border-radius: 50%;
  /* Make it a circle */
  cursor: pointer;
}

/* Active dot style */
.herobanner .slick-dots li.slick-active {
  background-color: var(--headbrown);
  /* Active dot background color */
  border-color: #000;
  /* Active dot border color */
  height: 30px;
  border-radius: 10px;
}

.bannerimage {
  position: relative;
}

.scrolldown {
  position: absolute;
  width: 25px;
  height: 60px;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  animation: mymove 2s;
  animation-iteration-count: 910;
}

@keyframes mymove {
  from {
    bottom: 40px;
    opacity: 0.9;
  }

  to {
    bottom: 5px;
    opacity: 0;
  }
}

/****************/
/*     Stats    */
/****************/

.statspointers {
  justify-content: center;
  gap: 50px;
}

/* @supports (-webkit-text-stroke: 2px var(--headbrown)) or
  (text-stroke: 2px var(--headbrown)) { */
/* Text outline for modern browsers */
/* .outlined-text {
    color: transparent; */
/* Make text transparent */
/* -webkit-text-fill-color: transparent; */
/* For WebKit browsers like Chrome and Safari */
/* -webkit-text-stroke: 2px var(--headbrown); */
/* Outline color and width */
/* text-stroke: 2px var(--headbrown); */
/* Outline color and width */
/* }
} */

/* @supports (-webkit-text-stroke: 2px var(--white)) or
  (text-stroke: 2px var(--white)) { */
/* Text outline for modern browsers */
/* .outlined-text2 {
    color: transparent; */
/* Make text transparent */
/* -webkit-text-fill-color: transparent; */
/* For WebKit browsers like Chrome and Safari */
/* -webkit-text-stroke: 2px var(--white); */
/* Outline color and width */
/* text-stroke: 2px var(--white); */
/* Outline color and width */
/* }
} */

.statsitems h2 {
  /* position: relative;
  display: inline-block; */
  overflow: hidden;
  text-align: center;
  /* background: linear-gradient(
    to right,
    var(--headbrown),
    var(--headbrown) 50%,
    transparent 50%
  ); */
  /* background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 275ms ease;
  text-decoration: none; */
  margin-bottom: 0px;
  color: var(--headbrown);
}


.statsitems h2:hover {
  background-position: 0 100%;
}

.statsitems p {
  text-align: center;
}

.statsitems hr {
  border: 0px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  margin: 10px auto;
}

.statsitems .hr {
  border: 0px;
  height: 1.5px;
  background-color: rgba(0, 0, 0, 0.2);
  width: 250px;
  margin: 10px auto;
  position: relative;
}

.statsitems .hr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--headbrown);
  z-index: -1;
  transition: width 300ms;
}

.statsitems:hover .hr::before {
  width: 100%;
}

span.spanBold {
  font-weight: 600;
}

/***********************/
/**** achieving ********/
/***********************/

.achieving {
  background-image: url("../images/achieving-excellence-bg.jpg");
  background-size: 100% 100%;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.achieving h1 {
  font-size: 80px;
  margin-bottom: 30px;
  letter-spacing: 3px;
}

.marq {
  font-size: 200px;
  height: 215px;
  display: flex;
  align-items: center;
  text-transform: uppercase; 
  font-family: "Jost", sans-serif;
  font-weight: 600;
}

.achievingcontent {
  width: 80%;
  color: #fff;
  text-align: left;
  margin: 0px auto;
}

.achievingcontent p {
  color: #fff;
  margin-top: 10px;
  font-size: 17px;
}

.achievingcontent p:first-child {
  font-size: 20px;
}

/* .achieving h2
{
  font-family: Jost-Bold;
    font-size: 200px;
    text-transform: uppercase;
    display: block;
    line-height: normal;
    white-space: nowrap;


    width: 100%;
  transform: translateX(100%); 


  animation: move 30s linear infinite ;
} */

/* Create the animation */
/* @keyframes move {
  to { transform: translateX(-100%); }
}

@keyframes RightToLeft {
  from {
    transform:translateX(0%);
  }
  to {
    transform:translateX(-100%);
  }
}  */


.yearleft {
  text-align: center;
  position: relative;
}

.yearleft img {
  width: 80%;
}

/* .yearleft,
.yearright {
  flex: 1;
} */

.yearleft {
  flex-basis: 45%;
}

.yearright {
  flex-basis: 50%;
}

.yearright h2 {
  margin-bottom: 20px;
}

.yearright p {
  margin-bottom: 10px;
  color: #000;
}

/****** 40 Year******/

.yearcontent {
  justify-content: space-evenly;
}

.years:before {
  content: "";
  width: 80px;
  height: 1px;
  background-color: var(--headbrown);
  position: absolute;
  /* left: 50%; */
  left: 25%;
  top: 50%;
  transform: translatey(-50%);
}

.years:after {
  content: "";
  width: 80px;
  height: 1px;
  background-color: var(--headbrown);
  position: absolute;
  /* left: 50%; */
  right: 25%;
  top: 50%;
  transform: translatey(-50%);
}

/*****Our Projects ****/

.ourprojects {
  background-color: var(--peachbg);
  position: relative;
}

.ourprojects .section-title {
  margin-top: 0px;
  margin-bottom: 0px;
  float: left;
}

/* New Project Section */

.projectheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.projectcontainer {
  display: flex;
  gap: 30px;
}

.projectnavcontainer {
  /* margin-bottom:30px; */
}
/* .projectnavcontainer  .projectnavcomplete{
     display: none !important;
} */


.pnavlist {
  display: flex;
  gap: 10px;
  justify-content: end;
  display: none;
}

.pnavlist.active {
  display: flex;
}

.pnavlist img {
  width: 70px;
  /* height: 50px; */
  cursor: pointer;
}

.project_left {
  width: 25%;
  width: 360px;
  max-width: 100%;
}

.projecthead {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.project_right {
  width: 75%;
}


.projectcategories {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* flex-direction: row; */
  /* float: left; */
  /* margin-top: 30px; */
  /* width: 100%;*/


}

.projectcategory {
  background-color: transparent;
  color: #563f3f;
  padding: 7px 15px;
  font-size: 18px;
  text-align: center;
  /* border-bottom: 0px solid #786666; */
  /* display: flex; */
  /* align-items: center; */
  /* gap: 10px; */
  /* justify-content: center; */
  cursor: pointer;
}

.projectcategory:last-child {
  border-bottom: 0px solid #786666;
}

.projectcategory img {
  width: 25px;
  /* height: 19px; */
  opacity: 0;
}

.projectcategory.active {
  background-color: #563f3f;
  color: #563f3f;
  position: relative;
  color: #e8b866;
}

.projectcategory.active img {
  opacity: 1;
}



.projectitem {
  position: relative;
  width: 100%;
}

.projectitem img {
  width: 90%;
}

.projectinfo {
  position: absolute;
  width: 90%;

  background-color: var(--headbrown);
  bottom: 0;
  padding: 10px;

  color: #fff;
  display: flex;
  justify-content: space-between;
}

.projectinfo p {
  color: #fff;
}

.projectinfo h2 {
  color: #e8b866;
  font-size: 16px;
}

.projectinfo a {
  color: #fff;
  float: right;
  text-decoration: none;
}

.projectinfo a:hover,
.projectinfo a:active {
  color: #fff;
}

.proslider {
  display: none;
}
/* .proslider .galleryNextArrow,
.proslider  .galleryPrevArrow{
  bottom: 0;
  position: absolute;
  height: 20px;
  width: 20px;
} */


/* .proslider .slick-list{padding:0 20% 0 0 !important;}

.proslider1 .slick-list{padding:0 10% 0 10% !important;} */

.prolink {
  display: flex;
  align-items: center;
  gap: 10px;

}

.prolink img {
  width: 15px !important;
}


/* .projectcategory.active::after
{
  content: "";
    width: 35px;
    height: 19px;
    background: url(../images/arrow-right.svg) no-repeat;
    top: 50%;
    right: 8px;
    position: absolute;
    border: 1px solid red;
    transform: translateY(-50%);
} */

/* New Project Section */



















.ourprojectsliderMainBox {
  margin-top: 35px;
}

.projectHeaderNavSliderInside .projectHeading h2 {
  font-size: 20px;
  /* text-transform: uppercase; */
  cursor: pointer;
}


/* rotation effect start */

.projectHeading {
  position: relative;
  width: 90%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #ffffff; */
  border-radius: 7px;
  background: #f4f0ea;
  border: 1px solid var(--headbrown);
  overflow: hidden;
  cursor: pointer;
}

.projectHeading h2 {
  color: var(--darkgray);
  font-size: 20px;
  z-index: 9999;
}

.projectHeaderNavSlider .slick-current .projectHeading::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 300px;
  background: linear-gradient(#88c454, #1c82c6, #ef553c);
  animation: rotateborderBox 4s linear infinite;
}

.projectHeaderNavSlider .slick-current .projectHeading {
  border: 0;
}

.projectHeaderNavSlider .slick-current .projectHeading::after {
  content: '';
  position: absolute;
  background: #f4f0ea;
  inset: 3px;
  border-radius: 5px;
}

@keyframes rotateborderBox {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.stop-rotateborderBox::before {
  opacity: 0;
  animation-iteration-count: 1
}

/* .projectHeaderNavSlider .slick-current .projectHeading.addBorder{  
  border: 1px solid var(--headbrown);
} */

/* rotation effect end */

.projectHeaderNavSliderInside hr {
  width: 90%;
  border-bottom: 2px solid #9a9a9a;
  margin-top: 12px;
}

.projectHeaderNavSliderInside .projectHrLine {
  width: 0%;
  -webkit-transition: width 1s ease;
  transition: width 1s ease;
}

.projectHeaderNavSlider .slick-list {
  padding: 0 !important;
}

.projectHeaderNavSlider .slick-current .projectHrLine {
  border-bottom: 3px solid var(--headbrown);
  width: 90%;
  -webkit-transition: width 1s ease;
  transition: width 1s ease;
  margin-top: 12px;
}

.projectHeaderNavSlider .slick-current hr {
  display: none;
  transition: all 1s ease-in-out;
}

.projectHeaderNavSlider .slick-current .projectHeading {
  border: 0;
}

.projectHeaderNavSlider .slick-current .projectHeading h2 {
  font-weight: 600;
  color: var(--headbrown);
}

.ourProjectMainSlider {
  margin-top: 50px;
}

.completedProjectSliderInside {
  position: relative;
}

.completedProjectSliderInsideTxt {
  position: absolute;
  width: 90%;
  margin: 0 auto;
  background-color: var(--headbrown);
  bottom: 0;
  padding: 16px 20px;
  left: 0px;
}

.completedProjectSliderInsideTxtOngoing {
  padding: 10px 20px;
}

.completedProjectSliderInsideImg img {
  width: 90%;
}

.completedProjectSliderInsideTxt h2 {
  font-size: 18px;
  /* text-transform: uppercase; */
  color: var(--white);
  float: left;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}

.codenameh2 {
  font-size: 16px !important;
}

.completedProjectSliderInsideTxt a {
  float: right;
  color: var(--white);
  font-size: 18px;
  /* text-transform: uppercase; */
  text-decoration: underline;
   
  font-family: "Jost", sans-serif;
font-weight: 300;

  /* letter-spacing: 2px; */
  margin-top: 10px;
}

.completedProjectSliderInsideTxtOngoing a {
  font-size: 17px;
}

.amarginTopSmall a {
  margin-top: 0px;
}

.h1Margintop {
  margin-top: 4px;
}

/* drop down menus css starts */

.pr-price {
  width: 100%;
  display: none;
  margin-top: 20px;
}

.pr-price.active {
  display: block;
}

ul.navBar {
  border-style: solid;
  border-width: 1px;
  border-color: #144e86;
  margin-left: 0px;
  margin-right: 0px;
  background-color: #144e86;
}

a.ActiveListItem {
  position: relative;
}

a.ActiveListItem:before {
  content: "\f107";
  font-family: "FontAwesome";
  right: -15% !important;
  position: absolute;
  top: 13% !important;
}

ul.navBar li a.ActiveListItem {
  color: #fff !important;
  background-color: #144e86 !important;
  font-weight: normal !important;
  margin-left: 0px;
  margin-right: 0px;
  border-radius: 0;
  width: 100%;
  margin-bottom: 0px;
  border-bottom: 1px solid #cccccc45;
  padding-left: 20px;
}

ul.navBar li {
  position: relative;
  width: 100%;
  list-style: none;
  line-height: 35px;
}

ul.navBar li a {
  display: block;
  color: #ffffff !important;
  padding: 10px 5px;
  text-decoration: none;
  transition: all 0.1s ease-in;
}

ul.navBar li a:hover,
ul.navBar li:hover>a {
  background: #739fe0;
  color: #ffffff !important;
}

ul.navBar li ul {
  margin-top: 0px;
  background: #144e86;
  display: none;
  z-index: 99;
}

ul.innerDropMenu li {
  border-bottom: 1px solid #cccccc45;
}

ul.innerDropMenu li a {
  padding-left: 20px;
}

ul.innerDropMenu li:last-child {
  border-bottom: none;
}

.hiddens {
  display: none;
}

/* drop down menus css closed */

/* .projectscontainer {
  display: flex !important;
  justify-content: space-between;
}

.projectstatus {
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 50px;
  gap: 10px;
}

.projectslist {
  cursor: pointer;
}

.projectstatus span {
  text-transform: uppercase;
  cursor: pointer;
  font-size: 16px;
}

.projectstatus span.active {
  color: var(--headbrown);
  font-size: 16px;
  font-weight: 600;
}

.projectleft {
  flex: 1;
}

.projectleft img {
  width: 77px !important;
  margin-bottom: 30px;
}

.projectcenter {
  flex: 4;
}

.projectright {
  position: absolute;
  top: 40%;
  right: 70px;
  transform: translateY(-40%);
  cursor: pointer;
}

.projectright img {
  width: 49px;
  display: block;
  margin-bottom: 10px;
}

.project {
  position: relative;
}

.project .projectdesc {
  text-align: left;
  position: absolute;
  top: 40%;
  width: 400px;
  right: -30%;
}

.project .projectdescUpcomingWidth {
  top: 44%;}
.project .projectdesc h3 {
  text-transform: uppercase;
  font-family: "Jost-Bold";
  color: var(--headbrown);
  font-size: 35px;
}

.project .projectdesc p {
  text-transform: uppercase;
  margin-top: 10px;
}

.project .projectdesc button {
  margin-left: 0;
}

.procircle img {
  width: 400px;
  margin-inline: auto;
  margin: 0px auto;
}

.projectslist .slider .slick-current.slick-center img {
  transform: scale(1.2);
  filter: none;
}

.projectslist .slider .slick-slide img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}

.projectslist .slick-slider .slick-list {
  padding: 10px !important;
}

.projectslist .slick-current.slick-center img {
  transform: scale(1.2);
  filter: none;
}

.completedprojects .slick-slide img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}

.completedprojects.slick-slider .slick-list {
  padding: 10px !important;
} */

/**** HR  ****/
.hraccordiancontainer {
  display: flex !important;
  justify-content: space-evenly;
  padding: 10px 0px 70px 0px;
  border-bottom: 2px solid #d9d9d9;
  margin-bottom: 35px;
}

.hraccordiancontainer .vcard h2 {
  font-size: 26px;
}

.hraccordiancontainer .cardheader h3 {
  font-size: 26px;
  margin-left: 4px;
}

.hrinitiative .section-title {
  float: left;
}

.hrinitiative .section-title {
  float: left;
}

.vcard {
  overflow: hidden;
  float: left;
  position: relative;
  transition: 0.7s;
}

.vcard .sign {
  position: absolute;
  width: 15px;
  right: 10px;
  top: 10px;
  cursor: pointer;
  z-index: 9;
}

.vcard a.readmore {
  display: block;
  /* text-transform: uppercase; */
  color: var(--headbrown);
  margin-top: 20px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 16px;
}

.cardheader {
  display: flex;
  cursor: pointer;
  padding: 10px 20px 0px 40px;
  gap: 0;
  width: 100px;
  margin-right: 40px;
}

.cardheader h2,
.cardheader h3 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: block;
  padding: 0px;
  /* text-transform: uppercase; */
}

.cardheader h2 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  color: var(--headbrown);
}

.cardheader h3 {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  color: var(--headbrown);
}

.vcard:last-child {
  border-right: 2px solid #d9d9d9;
}

.cardbody {
  gap: 10px;
}

.cardbody img {
  flex: 1;
  width: 341px;
}

.cardbody>div {
  padding-left: 30px;
  flex: 1;
}

.cardbody div p {
  font-size: 16px;
}

.expand {
  border-left: 2px solid var(--headbrown);

  /* transition-delay: 200ms;  */
  flex: 4;
}

.vcard.unset {
  border-left: 2px solid #d9d9d9;
  /* width: 33%; */
  flex: 0.8;
}

.vcard.expand .cardbody {
  width: 100%;
  align-items: center;
  padding-right: 40px;
}

.vcard.unset .cardbody {
  width: 0%;
  display: none;
}

.small {
  width: 5%;
}

.nextprevacordian {
  display: flex;
  gap: 10px;
  cursor: pointer;
  float: right;
}

.nextprevacordian img {
  width: 70px;
}

#upcommingSliderArrows {
  display: none;
}

/* #projectPrev,
#projectNext {
  width: 70px;
  position: absolute;
  top: -100px;
  right: 10px;
  z-index: 9999999999;
} */

/* #projectPrev {
  right: 90px;
} */

/* quick Reads  */

.quickReadsFlex {
  /* display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start; */
  margin-bottom: 35px;
}

.quickReadsFlexInside img {
  width: 95%;
  /* margin: 0 auto; */
}

.quickReadsFlexInside .quickReadsFlexInsideTxt {
  width: 95%;
  /* margin: 0 auto; */
}

.quickReadsFlexInsideTxt a:hover {
  text-decoration: none;
}

.quickReadsFlexInsideTxt h4 {
  font-size: 20px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  color: var(--headbrown);
  margin-top: 22px;
  width: 80%;
}

.quickReadsFlexInsideTxt h6 {
  /* color: var(--lightgray); */
  font-size: 13px;
  margin: 12px auto 10px;
}

.quickReadsFlexInsideTxt p {
  font-size: 15px;
}

.nextprevQuickRead {
  width: 150px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.nextprevQuickRead img {
  width: 70px;
  margin: 0 auto;
}

/**** Sections List  *****/

.sectionlist {
  /* background-image: url("../images/reading-centre-bg.jpg"); */
  /* background-size: 100% 100%; */
  position: relative;
  background-color: var(--peachbg);
}

.sectionitemslist {
  flex-direction: column;
  padding-top: 0px;
}

.sectionitemslist .sectionitem:first-child {
  border-top: 1px solid #92b2d3;
}

.sectionitem {
  border-bottom: 1px solid #92b2d3;
  padding: 30px 20px 70px 20px;
  position: relative;
}

.sectionitem h2 {
  font-size: 22px;
}

.sectionitem:hover a {
  color: var(--green);
  text-decoration: underline;
}

.sectionitem:hover .sectionhiddenitem {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sectionitem span {
  margin-left: -20px;
  color: var(--green);
  font-weight: 600;
}

.sectionhiddenitem {
  display: none;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
}

.sectionhiddenitem img {
  width: 350px;
}

.sectionhiddenitem .arrow {
  width: 100px;
  height: 15px;
  display: inline-block;
}

.sectionhiddenitem:hover img.arrow {
  transition: all 0.2s ease-in-out;
  animation: slide1 1s ease-in-out infinite;
}

@keyframes slide1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, 0);
  }
}

/**** FAQs *****/
.faqs {
  padding-bottom: 0;
}

.faqcontainer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.faqleft {
  flex-basis: 30%;
}

.faqleft button {
  margin-top: 35px;
  margin-bottom: 25px;
}

.faqright {
  flex-basis: 55%;
}

.faqs .card-header img {
  width: 15px;
}

.faqs .faqaccordian {
  max-width: 100%;
  display: block;
  margin: 0px auto;
}

.faqs .faqaccordian .card {
  float: left;
  width: 100%;
  border: 0px solid #fff;
  border-radius: 0px;
  border-bottom: 2px solid #791216;
  background-color: transparent;
}

.faqs .faqaccordian .card:last-child {
  border-bottom: none;
}

.faqs .faqaccordian .card .card-header h3 {
  cursor: pointer;
  color: #791216;
  position: relative;
  margin: 0;
  padding: 0px;
  /* text-transform: uppercase; */
  font-weight: 600;
  font-size: 16px;

  padding-right: 30px;
}

.faqs .faqaccordian .card .card-header {
  position: relative;
  background-color: transparent;
}

.faqs .faqaccordian .card .card-header img {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.faqs .faqaccordian .card .card-body {
  padding: 0px 40px 25px 20px;
}

.faqs .faqaccordian .card .card-body {
  display: none;
}

/*open one card by default*/
.faqs .faqaccordian .card:nth-child(1) .card-body {
  display: block;
}

.faqs .faqaccordian .card .card-body p {
  margin: 0px;
  text-align: justify;
}

.faqs .faqaccordian .card .card-header:nth-child(1) .card-body {
  padding-top: 0px;
}

.faqs .card-header {
  padding: 25px 40px 25px 20px;
  margin-bottom: 0;
  background-color: none;
  border-bottom: 0px;
}

/* .faqbutton
{
  width:300px;
  border:1px solid var(--headbrown);
  border-radius: 25px;
} */

/* .faqleft p
{
  padding: 0px 0px 20px 0px
} */

/****  Reach US   *****/

.flogo {
  width: 250px;
}

.contactsection {
  background-color: var(--peachbg);
}

.reachusAnchor a {
  text-decoration: none;
}

.reachuscontainer {
  gap: 50px;
  padding: 50px 0px;
}

.contactdetails {
  justify-content: space-between;
  gap: 7px;
}

.contactdetails .contactitem {
  flex: 0;
  border-left: 1px solid var(--headbrown);
  padding-left: 10px;
  position: relative;
}
.contactdetails .contactitem h4 {
    font-size: 15px;
    font-weight: 600;
    color: #352627;
}

.contactdetails .address::before {
  content: url("https://vidarealty.com/images/location.svg");
  position: absolute;
  z-index: 100000;
  left: -30px;
  top: 0;
}

.contactdetails .call::before {
  content: url("https://vidarealty.com/images/call.png");
  position: absolute;
  z-index: 100000;
  left: -30px;
  top: 0;
}

.contactdetails .contactitem:nth-child(1) {
  flex: 3;
}

.contactdetails .contactitem:last-child {
  margin-left: 30px;
}

/***** Footer ***/
#insideprojectFooter .footerlinks {
  flex: 1.7;
}

.footer {
    /* background-image: url(../images/footer-bg.jpg); */
    background-size: 100% 100%;
    color: #fff;
    background-color: #352627;
}

.footercontainer {
  justify-content: space-between;
  gap: 100px;
}

.footercontainer .qrcode {
  flex: 0.4;
}

.footerlinks {
  flex: 1.8;
  justify-content: space-between;
}

.qrcode .linkslist span,
.footerlinks .linkslist span {
  font-weight: 600;
  text-decoration: underline;
}

.footerlinks ul {
  list-style-type: none;
}

.footerlinks .linkslist a {
  color: #fff;
}

.qrcode img {
  margin-top: 10px;
}

.decklivingcode .linkslist span {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  display: inline-block;
}

/* 
.extralinks 
{
  flex:1;
  text-align: right;
} */

.extralinks {
  flex: 1;
  text-align: right;
  display: flex;
  flex-direction: column;
}

.extralinks>div {
  padding-bottom: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--white);
}

.social-list {
  display: flex  ;
      align-items: center;
      /* gap: 10px; */
      /* margin-bottom: 40px; */
      list-style-type: none;
      text-transform: uppercase;
      color: #000;
  
}

.sociallist {
  display: flex;
  align-items: center;
}

.social-list img {
  width: 30px;
}

.social-list a {
  margin-right: 10px;
}

.elinks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 15px;
}

.newsletter {
  display: flex;
  align-items: center;
  gap: 0px;
}

.newsletterheading {
  margin-right: 20px;
  color: #1d1d1d;
}

.ficons {
  transition: all 0.2s ease-in-out;
  animation: locationIconAnim 1.5s infinite;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

@keyframes locationIconAnim {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* .subscribe input.nosubmit {
  border: 1px solid var(--headbrown);
  padding: 10px;
  background: transparent url(../images/Search.svg) no-repeat 13px center;
  width: 300px;
  padding-left: 50px;
  border-radius: 50px;
} */

/* -------------------
roha vatika footer css
------------------------------------*/
#insideprojectFooter .footerlinksVatika {
  flex: 1.2;
}

.extralinksVatika {
  flex: 0.6;
}

.footercontainer .qrcodeVatika {
  flex: 0.5 !important;
}

.vatika-qr {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px 30px;
}

.vatika-qrlinkslist {
  width: 40%;
}

.qrcodeVatika span {
  text-align: center;
}

/* Testimonials */
.main {
  font-family: "Jost", sans-serif;
  width: 100%;
  display: block;
  margin: 30px auto 0px auto;
  border: 3px solid #563f3f;
  padding: 78px;
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
}

.slider-nav {
  width: 80%;
  margin: 15px auto 0px auto;
}

.innerMain {
  border-left: 3px solid #563f3f;
  border-right: 3px solid #563f3f;
  padding-top: 60px;
  padding-bottom: 60px;
}

.innerMain>p {
  margin-top: 0px;
}

.action {
  display: block;
  margin: 100px auto;
  width: 100%;
  text-align: center;
}

.action a {
  display: inline-block;
  padding: 5px 10px;
  background: #f30;
  color: #fff;
  text-decoration: none;
}

.action a:hover {
  background: #000;
}

.testimonials {
  padding-bottom: 0px;
  padding-top: 70px;
}

.testiWrapper {
  display: flex;
  flex-direction: row;
  position: relative;
}

.testiWrapper blockquote {
  font-size: 15px;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.testiWrapper blockquote p::before {
  content: "“";
  color: #563f3f;
  margin: 1rem 0px 0px -2.5rem;
}

.testiWrapper blockquote p {
  padding-top: 10px;
}

.testiWrapper blockquote p::before,
.testiWrapper blockquote p::after {
  font-family: Georgia;
  font-size: 5rem;
  position: absolute;
}

.testiWrapper blockquote p::after {
  content: "”";
  color: #563f3f;
  margin: 1.8rem -4rem 0px 0.5rem;
}

.testiWrapper blockquote .quoteCite {
  margin-top: 25px;
  text-align: center;
}

.testiWrapper blockquote cite {
  font-style: normal;
  color: var(--headbrown);
  font-size: 15px;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  padding-bottom: 2px;
  padding-top: 25px;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
}

.testiWrapper blockquote i {
  color: var(--headbrown);
  font-size: 25px;
  font-weight: normal;
}

h2.testiHead {
  color: #563f3f;
}

.slider-nav .galleryNextArrow,
.slider-nav .galleryPrevArrow {
  position: absolute;
  top: -35%;
  z-index: 9;
}

.slider-nav .galleryPrevArrow img,
.slider-nav .galleryNextArrow img {
  width: 30px;
}

.slider-nav .galleryPrevArrow {
  left: -54%;
  cursor: pointer;
}

.slider-nav .galleryNextArrow {
  right: -54%;
  cursor: pointer;
}

.slider-nav .slick-slide img {
  width: 71px;
  height: 71px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}

.slider-nav .slick-current img {
  filter: none;
  transform: scale(1.5);
}

.testiNavWrapper {
  width: 65%;
  margin: 0 auto;
}

.testiNavWrapper a.viewall {
  margin-top: 40px;
}

.testiNavWrapper .slick-initialized .slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 20px;
}

.navBoxLeft {
  width: 80px;
  max-height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.navBoxRight {
  width: 80px;
  max-height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.testiNavWrapper .slick-slider .slick-list {
  padding: 6px !important;
}

/* Testimonials  ends Here*/

.subscribeinput {
border: 1px solid var(--headbrown);
  border-radius: 25px;
  padding: 5px 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

/* form.subscribe
{
  width:100%;
} */

.subscribeinput input {
  border: 0px solid #fff;
}

.subscribeinput button {
  border: 0px solid #fff;
  background-color: transparent;
}

.subscribeinput img {
  width: 35px;
}

#btnsubscribe {
  transition: all 0.2s ease-in-out;
}

#btnsubscribe:hover,
#btnsubscribe:focus {
  transform: rotateZ(25deg);
}

/* Enq Now */

.enqnowtemplate .mb_20 {
  margin-bottom: 20px !important;
}

.enqnowtemplate .floatingButton {
  position: fixed;
  right: -72px;
  z-index: 999;
  top: 50%;
  transform: rotate(-90deg);
  float: right;
}

.enqnowtemplate .floatingButton button {
  background-color: #352627;
  color: #fff;
  /* border: 1px solid var(--headbrown); */
  padding: 13px 13px;
  border-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 16px;
  width: 190px;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  border-bottom: 0px;
  transition: all 0.2s ease-in-out;
}

.enqnowtemplate .floatingButton button.btnAnimate {
  animation: locationIconAnim 1.5s infinite;
  -webkit-transition: all 0.2s ease-in-out;
}

.enqnowtemplate .form-mobile {
  display: none;
}

.enqnowtemplate .form-mobile {
  box-shadow: 0 0 9px 1px hsl(0deg 0% 0% / 18%);
  background-color: #fff;
  width: 300px;
  padding: 15px 25px 15px 25px;
  border: 5px solid #ffffff;
  position: fixed;
  top: 50%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999999;
}

.enqnowtemplate .form-mobile .form-control {
  padding: 0.35rem 0.35rem;
  font-size: 0.85rem;
  border: 2px solid #b7b7b7;
  color: var(--darkgray) !important;
  font-weight: 600;
  font-family: "Jost", sans-serif;
}

.enqnowtemplate .form-mobile h3 {
  color: #791216;
  font-family: "Jost", sans-serif;
  padding-bottom: 23px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0px auto;
  padding: 15px 10px;
  display: block;
  text-align: center;
}

.form-group label {
  margin-bottom: 0.2rem;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  color: #817c7c;
  font-size: 14px;
}

.enqnowtemplate .form-mobile .form-control::placeholder {
  color: var(--darkgray) !important;
  font-weight: 600 !important;
  font-family: "Jost", sans-serif !important;
}

.enqnowtemplate .form-mobile :-ms-input-placeholder {
  color: var(--darkgray) !important;
  font-weight: 600 !important;
  font-family: "Jost", sans-serif  !important;
}

.enqnowtemplate .form-mobile ::-ms-input-placeholder {
  color: var(--darkgray) !important;
  font-weight: 600 !important;
  font-family: "Jost", sans-serif  !important;
}

.enqnowtemplate .form-check-inline .form-check-input {
  margin-right: 0.3rem;
}

.enqnowtemplate .form-check-inline {
  margin-right: 0.25rem;
}

.enqnowtemplate .terms {
  font-size: 12px !important;
  margin: 0;
  color: var(--headbrown);
  text-align: center;
  font-family: "Jost", sans-serif;
}

.enqnowtemplate .form-check-label {
  margin-bottom: 0;
  color: #252525;
  font-size: 13px;
  font-family: "Jost", sans-serif;
}

.enqnowtemplate .form-mobile button {
  background-color: #791216;
  color: var(--white);
  padding: 7px 30px;
  border-radius: 0px;
  font-size: 1rem;
  width: 100%;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  outline: 0;
}

.enqnowtemplate .form-mobile .close_frm_frm_close1 {
  text-align: right;
  top: 6px;
  position: absolute;
  right: 5px;
  cursor: pointer;
}

.enqnowtemplate .form-mobile .close_frm_frm_close1 {
  display: block !important;
}

.enqnowtemplate .form-mobile .close_frm_frm_close1 img {
  width: 25px;
}

/*Enq now form*/

.extralinks a,
.extralinks a:hover {
  color: #fff;
  text-decoration: none;
}

.yearright p.btmPara {
  margin-top: 20px;
  margin-bottom: 40px;
}

.yearright p:first-child {
  font-size: 18px;
}

.hrinitiative {
  padding-top: 100px;
}

.form_strip {
  display: none;
}

.form_strip {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border: 0px solid;
  padding: 15px;
  background-color: var(--headbrown);
  color: #fff;
  text-align: center;
  border: 1px solid var(--headbrown);
  z-index: 9999999;
}

.form_strip button {
  color: #ffff;
  background-color: transparent; 
  font-family: "Jost", sans-serif;
font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
}

@media (max-width: 1920px) {
  /* .achieving h2 {
    font-size: 220px; 
    margin-right: -16px;
  } */

  /* .project .projectdesc {
    right: -6%;
  } */
}

@media screen and (max-width: 1710px) {
  /* .project {
    width: 80% !important;
  }

  .project .projectdesc {
    right: -27%;
  } */
}

@media screen and (max-width: 1600px) {
  /* .achieving h2 {
    font-size: 195px;
    margin-right: -71px;
  }

  .project .projectdesc {
    right: -32%;
  } */

  .sectionhiddenitem img {
    width: 60%;
  }

  .sectionitem h2 {
    font-size: 22px;
  }

  .sectionitem:hover .sectionhiddenitem {
    justify-content: center;
  }

  .sectionhiddenitem {
    top: 40%;
    transform: translateY(-50%);
  }

  .slider-nav .galleryPrevArrow {
    left: -56%;
  }

  .slider-nav .galleryNextArrow {
    right: -56%;
  }
}

@media (max-width: 1490px) {
  /* .project .projectdesc {
    right: -35%;
  } */

  .contactdetails .contactitem p {
    font-size: 14px;
  }

}

@media (max-width: 1440px) {
  /* .achieving h2 {
    font-size: 190px;
    margin-right: -70px;
  } */

  /* .project {
    width: 75% !important;
  } */

  /* .project .projectdesc {
    right: -47%;
  } */

  .sectionhiddenitem img {
    width: 60%;
  }

  .slider-nav .galleryPrevArrow {
    left: -57%;
  }

  .slider-nav .galleryNextArrow {
    right: -57%;
  }

  .codenameh2 {
    font-size: 13px !important;
    margin-top: 4px;
  }

}

@media (max-width: 1300px) {
  /* .project .projectdesc {
    right: -53%;
  } */

}

@media (max-width: 1280px) {

  .contactdetails .contactitem p {
    font-size: 12px;
  }

  .statsitems .hr {
    width: 200px;
  }

  .hraccordiancontainer .vcard h2 {
    font-size: 22px;
  }

  .hraccordiancontainer .cardheader h3 {
    font-size: 21px;
    margin-left: 4px;
  }

  .testiNavWrapper .slick-initialized .slick-slide {
    margin: 20px 0px;
  }

  .paddingTopBottom {
    padding: 60px 0px;
  }

  .enqnowtemplate .floatingButton button {
    padding: 10px 10px;
    width: 180px;
  }

  .headerInside {
    padding: 0;
  }

  /* .logo {
    width: 160px;
  } */

  .btnwidth-200 {
    width: 180px;
  }

  .statsitems h2 {
    font-size: 31px;
    text-align: center;
  }

  .statsitems p {
    font-size: 13px;
  }

  .marq {
    font-size: 153px;
    height: 175px;
  }

  .btn {
    padding: 8px;
  }

  .projectright img {
    width: 37px;
  }

  /* .achieving h2 {
    font-size: 171px;
    margin-right: -61px;
  } */

  /* .project .projectdesc {
    right: -56%;
  } */

  /* .project .projectdescUpcoming {
    right: -167px;
  } */

  .nextprevacordian img {
    width: 60px;
  }

  .sectionitem {
    padding: 30px 20px 35px 20px;
  }

  .sectionhiddenitem {
    right: 0;
  }

  .sectionhiddenitem img {
    width: 50%;
  }

  .sectionitem h2 {
    font-size: 28px;
  }

  .faqs .card-header {
    padding: 18px 40px 18px 20px;
  }

  .slider-nav .galleryNextArrow {
    right: -59%;
  }

  .slider-nav .galleryPrevArrow {
    left: -59%;
  }

  .cardbody img {
    width: 226px;
  }

  .cardbody div p {
    font-size: 14px;
  }

  .procircle img {
    width: 400px;
  }

  .quickReadsFlexInsideTxt h4 {
    font-size: 18px;
  }

  .projectHeaderNavSliderInside .projectHeading h2 {
    font-size: 17px;
  }

  .projectHeaderNavSliderInside .projectHrLine {
    border-bottom: 2px solid #9a9a9a;
  }

  .projectHeaderNavSliderInside .slick-current .projectHrLine {
    border-bottom: 2px solid var(--headbrown);
  }

  .completedProjectSliderInsideTxt h2 {
    font-size: 15px;
  }

  .completedProjectSliderInsideTxt a {
    font-size: 14px;
    letter-spacing: 1px;
  }
}

/* Define breakpoints for different screen sizes */
@media (max-width: 768px) {
  .containerAsp {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
  }

  .paddingTopBottom {
    padding: 30px 0px;
  }

  .section-title {
    font-size: 27px;
  }

  .header .containerAsp {
    width: 96%;
    max-width: 100%;
    margin: 0 auto;
    border: 0 solid;
  }

  .stuck{   margin: 40px 0 0 0;}

  .mHide {
    display: none !important;
  }

  .dHide {
    display: block !important;
  }

  .statspointers {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .statsitems {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 0px;
    padding-bottom: 15px;
  }

  .statsitems:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .achievingcontent p:first-child {
    font-size: 18px;
  }

  .achievingcontent p {
    font-size: 15px;
  }

  .statsitems .hr {
    width: 200px;
    margin: 10px auto;
  }

  .yearcontent {
    justify-content: space-evenly;
    flex-direction: column;
  }

  .yearright button {
    margin: 10px auto 0px auto;
  }

  .years:before {
    left: 13%;
  }

  .years:after {
    right: 13%;
  }

  .achieving h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .projectHeaderNavSlider {
    width: 98%;
    margin: 0 auto;
  }

  .projectdropdownMArgin {
    margin-top: 20px;
  }

  .completedProjectSliderInsideTxt {
    left: 0;
    width: 100%;
  }

  .completedProjectSliderInsideImg img {
    margin: 0 auto;
    width: 100%;
  }

  .nextprevacordian {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
  }

  .nextprevacordian .mobprojectstatus {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
    gap: 8px;
  }

  /* .mobprojectstatus span {
    text-transform: uppercase;
    cursor: pointer;
  } */

  /* .mobprojectstatus span.active {
    color: var(--headbrown);
    font-size: 16px;
    font-weight: 600;
  } */

  /* .mobproject .projectdesc {
    width: 57%;
  } */
  /* .mobproject .projectdescUpcomingMob {
    width: 70%;
  } */

  /* .mobproject .projectdesc h3 {
    text-transform: uppercase;
    font-family: "Jost-Bold";
    color: var(--headbrown);
  } */

  /* .mobproject .projectdesc p {
    text-transform: uppercase;
    margin-top: 10px;
  }

  .mobprojectslist .slider .slick-current.slick-center img {
    transform: scale(1.2);
    filter: none;
  }

  .mobprojectslist .slider .slick-slide img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
  }

  .mobprojectslist img {
    width: 77px !important;
    margin-bottom: 10px;
    padding: 6px;
  }

  .mobproject {
    margin-bottom: 40px;
  }

  .mobprojectslist .slick-slider .slick-list {
    padding: 10px !important;
  }

  .mobprojectright {
    text-align: center;
    margin-top: 10px;
  }

  .mobcomppronav img,
  .mobongopronav img,
  .mobupcopronav img {
    width: 90px;
    padding: 5px;
  }

  .mobprojectslist .slider {
    width: 80%;
    margin: 0px auto;
  }

  .mobprojectslist .slidercenter .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
  }

  .mobprojectslist .mobupcomingprojectsSlider .slick-track {
    transform: translate3d(auto);
  } */

  .sectionitem:hover .sectionhiddenitem {
    display: none;
  }

  .quickReadsFlex {
    flex-direction: column;
  }

  .quickReadsFlexInside img {
    width: 97%;
  }

  .quickReadsFlexInside .quickReadsFlexInsideTxt {
    width: 97%;
  }

  .faqcontainer {
    flex-direction: column;
  }

  .faqs .faqaccordian .card .card-body p {
    margin: 0px;
    text-align: left;
  }

  .faqs .card-header {
    padding-left: 10px;
  }

  .faqs .faqaccordian .card .card-body {
    padding-right: 10px;
    padding-left: 10px;
  }

  .reachuscontainer {
    flex-direction: column;
  }

  .contactdetails {
    flex-direction: column;
    width: 80%;
    margin: 0px auto;
  }

  .contactdetails .contactitem {
    flex: 1;
    border-left: 0px solid;
    border-bottom: 1px solid var(--headbrown);
    padding-left: 10px;
    position: relative;
    padding-bottom: 10px;
  }

  .contactdetails .contactitem:last-child {
    border-bottom: none;
  }

  /* .contactdetails .contactitem::after {
      content: '';
      position: relative;
      height:1px;
      width:100%;
      background-color: var(--headbrown);
  } */

  .sociallist {
    display: flex;
    align-items: center;
    padding: 10px 0px 25px 0px;
    margin: 0px auto;
    border-bottom: 1px solid #1d1d1d7a;
    justify-content: center;
    margin-left: 0px;
    margin-right: 0px;
  }

  .sociallist {
    display: flex;
    align-items: center;
    padding: 10px 0px 25px 0px;
    margin: 0px auto;
    border-bottom: 1px solid #1d1d1d7a;
    margin-left: 0px;
    margin-right: 0px;
    justify-content: center;
  }

  .elinks {
    flex-direction: column;
    margin: 15px auto;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletterheading {
    margin-right: 0px;
    margin: 15px 0px 15px 0px;
    color: var(--headbrown);
    text-transform: uppercase;
    font-weight: 600;
  }

  .footercontainer {
    justify-content: space-between;
    gap: 30px;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .extralinks {
    text-align: center;
  }

  .extralinks>div:last-child {
    padding-bottom: 0px;
  }

  /* .hraccordian .card {
        border: 0px solid rgba(0, 0, 0, 0.125);
    } */

  /* project footer css starts */

  #insideprojectFooter .footerlinks {
    display: flex !important;
  }

  .projectLisitingMob {
    flex: 0.6;
  }

  .footercontainer .qrcode {
    flex: 0.4;
  }

  /* project footer css end */

  /* Testimonials */

  .main {
    font-family: "Jost", sans-serif;
    width: 100%;
    display: block;
    margin: 30px auto 0px auto;
    border: 0px solid #144e86;
    padding: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    position: relative;
  }

  .main .navBoxLeft,
  .main .navBoxRight {
    display: none;
  }

  .innerMain {
    padding-top: 50px;
    padding-bottom: 0px;
    border: 3px solid var(--headbrown);
  }

  .testiNavWrapper {
    width: 85%;
    margin: 0 auto;
  }

  .slider-nav {
    width: 100%;
    margin: 10px auto 40px auto;
  }

  .testimonialmobilenav {
    display: flex !important;
    justify-content: space-between;
    background-color: var(--headbrown);
    padding: 10px 10px;
  }

  .testimonialmobilenav a {
    margin-top: 0px;
    border-radius: 0px;
    letter-spacing: 1px;
    font-size: 16px;
  }

  .testimonialmobilenav button {
    background-color: transparent;
    padding: 0px 5px;
  }

  .testimonialmobilenav button img {
    width: 30px;
  }

  .testiWrapper blockquote {
    width: 70%;
  }

  .testimonials {
    padding-bottom: 20px !important;
  }

  /* Testimonials Ends*/

  .hraccordian .card .card-header {
    padding: 25px 0px;
    margin-bottom: 0;
    background-color: #fff;
    border-bottom: 0px solid rgba(0, 0, 0, 0.125);
    position: relative;
  }

  .hraccordian .card .card-body {
    padding: 0;
    margin-bottom: 0;
    padding-bottom: 10px;
  }

  .hraccordian .card:nth-child(1) .card-body {
    display: block;
  }

  .hraccordian .card .card-body {
    display: none;
  }

  .hraccordian .card .card-body p:first-child {
    padding-top: 10px;
  }

  .card-action2 img.sign {
    width: 20px;
    z-index: 1;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .hraccordian .card {
    border: 0px solid #fff;
    border-bottom: 2px solid #9ea8c9;
  }

  .hraccordian .card:first-child {
    border-top: 2px solid #9ea8c9;
  }

  .hraccordian .card .card-header h2 {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: var(--headbrown);
    text-transform: uppercase;
    font-size: 22px;
  }

  .hraccordian .card .card-header h3 {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    color: var(--headbrown);
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 5px;
  }

  .hrinitiative button {
    margin-top: 30px;
  }

  .sectionitem h2 {
    font-size: 20px;
  }

  form.subscribe {
    width: 100%;
  }

  .mobongopronav,
  .mobupcopronav,
  .mobcomppronav {
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .logo {
    width: 80px;
  }

  .pageScroll {
    height: 100%;
  }

  .marq {
    font-size: 90px;
    height: 130px;
  }

  .achieving {
    background-image: url(../images/achieving-excellence-bg.jpg);
    padding: 30px 0px;

  }

  .achievingcontent {
    width: 100%;
  }

  .projectinfo a {
    width: 110px;
  }


  .btnwidth-200 {
    width: 180px;
    padding: 10px;
  }

  .yearright {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
  }

  .yearright p:first-child {
    font-size: 18px;
  }

  .yearright p.btmPara {
    margin-bottom: 20px;
  }

  .years40 {
    padding: 70px 0px;
  }

  .ourprojects {
    padding: 30px 0px;
  }

  .mobprocircle {
    margin-bottom: 25px;
  }

  .mobprocircle {
    width: 80%;
    margin: 0 auto;
  }

  .testimonials {
    padding: 30px 0px;
  }

  .slider-nav .slick-slide img {
    width: 65px;
    height: 65px;
  }

  .card-body img {
    margin-bottom: 30px;
  }

  .card-body .readmore {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--headbrown);
  }

  .hraccordian .card:last-child {
    margin-bottom: 20px;
  }

  .hrinitiative {
    padding-bottom: 70px !important;
  }

  .quickArrow {
    opacity: 1;
  }

  /* .sectionitem:hover .quickArrow,
  .sectionitem:focus .quickArrow {
    opacity: 1;
  } */

  .quickArrow img {
    width: 40px;
  }

  .quickArrow {
    position: absolute;
    right: 5%;
    top: 34%;
    transform: translateY(-34%);
  }

  .sectionitemslist {
    padding-bottom: 30px;
  }

  .sectionlist {
    padding: 70px 0px;
  }

  .faqs .faqaccordian .card .card-header h3 {
    line-height: 25px;
  }

  .faqs {
    padding: 30px 0;
  }

  .faqleft {
    margin-bottom: 10px;
  }

  .faqleft h2.section-title {
    margin-bottom: 30px;
  }

  .faqleft a#btn {
    margin-top: 30px;
  }

  .form_strip {
    display: block;
  }

  .floatingButton {
    display: none;
  }

  .projectcontainer {
    flex-direction: column;
    gap: 10px;
  }

  .projectnavcontainer {
    display: block;
    width: 100%;
  }


  .proslider .slick-list {
    padding: 0 0 0 0 !important;
  }

  .project_right {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .projectitem img {
    width: 100%;
  }

  .projectinfo {
    width: 100%;
    padding: 10px;
  }

  .projectheader {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 5px;
    gap: 15px;
  }


  .projecthead {
    text-align: left;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
  }


  .projectcategory {
    padding: 5px 5px;
    font-size: 17px;
  }





  .project_left {
    width: 100%;

    max-width: 100%;
  }



}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Styles for screens between 769px and 1024px wide */
  /* You can customize these styles */
}

@media (min-width: 1025px) {
  /* Styles for screens wider than 1024px */
  /* You can customize these styles */
}


.east-eden .header_main{
  background-color: rgba(53, 38, 39, 1); 
  margin-bottom: 10px;
}
.bannerForm{
  display: none !important;
}
.testimonial .header_main{
  background-color: rgba(53, 38, 39, 1); 
}

.faq .header_main{
  background-color: rgba(53, 38, 39, 1); 
}
.marginTop{
  margin-top: 60px;
}



.dropdown-content {
  display: none; 
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  width: 100%;
  transition: all 0.3s ease-in-out; 
}

.dropdown-btn {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px;
  background-color: var(--headbrown);
  transition: background-color 0.3s ease-in-out; 
}

.dropdown-btn .selected {
  color: #fff;
  transition: color 0.3s ease-in-out; 
}

.dropdown-btn svg .colorfill {
  fill: none; 
}

.dropdown-content.show {
  display: block;
}

.dropdown-content li {
  list-style: none;
  padding: 12px 8px;
  transition: background-color 0.2s ease-in-out; 
}

.dropdown-content li a {
  display: inline-flex;
  width: 100%;
  transition: background-color 0.2s ease-in-out; 
}

.dropdown-content li:hover {
  background-color: #eee; 
}
#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

#video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.77vh; /* 100vh * 16 / 9 */
    height: 100vh;
    pointer-events: none;
}
@media only screen and (max-width: 667px) {
.contactdetails .contactitem:last-child {
    margin-left: unset !important;
}
.pnavlist{
text-align:end ;
}
}




.read-more-content {
  display: none;
  padding-top: 22px;
}
.read-more {
  display: inline-block;
  margin-top: 8px;
}
.timeline-info {
  position: relative;
  background: #f3f1f1;
  padding: 24px 20px 18px;
  margin-bottom: 12px;
  border: 1px solid #f3f1f1;
  border-radius: 8px;
  margin-left: 54px;
}

a:focus {
  color: #fff;
  transition: all 0.2s ease-in-out;
  /* background: #791216; */
}

.know_more {
  padding-top: 5%;
  width: 100%;
  float: left;
}

.know_more_p1 {
  margin-top: 5%;
}

.know_more_div {
  width: 1500px;
  max-width: 80%;
  margin: 0 auto;
}

.section-title_new {
  padding: 0px;
  margin: 0px;
  font-family: "Gilda Display", serif;
  font-weight: 400;
  font-size: 35px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}