@import url("https://fonts.googleapis.com/css2?family=Source+Serif+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --brown: #ffd538;
  --yellow: #eea54c;
  --lightgray: #f5f5f5;
  --darkgray: #101010;
  --serif: "Source Serif Pro", serif;
}

body {
  color: #222222;
  font: 400 15px/1.4 "Montserrat", sans-serif;
  overflow-x: hidden;
}
ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
}

.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

img {
  width: 100%;
  display: block;
}

.wrapper {
  width: 100%;
  float: left;
  background: #fff;
  position: relative;
  z-index: 2;
}

/*header*/
.header {
  width: 100%;
  float: left;
  padding: 5px 20px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: all 300ms ease-in-out;
  background:#f0c00c73;
}

.logo {
  width: 130px;
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
  overflow: hidden;
}

.logo a img {
  height: 100%;
  transition: all 300ms ease-in-out;
}

.menuBtn {
  width: 38px;
  height: 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
}

.menuBtn span {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn span::before,
.menuBtn span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 3px);
  height: 100%;
  background: #fff;
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: scaleX(1);
}

.menuBtn span::after {
  left: auto;
  right: 0;
}

.menuBtn.closeMenuBtn span#menuLine1 {
  -webkit-transform: rotate(45deg) translate(5px, 6px);
  transform: rotate(45deg) translate(5px, 6px);
}

.menuBtn.closeMenuBtn span#menuLine2 {
  right: 100px;
}

.menuBtn.closeMenuBtn span#menuLine3 {
  -webkit-transform: rotate(-45deg) translate(5px, -6px);
  transform: rotate(-45deg) translate(5px, -6px);
}

.menuBtn.closeMenuBtn span#menuLine1::after,
.menuBtn.closeMenuBtn span#menuLine3::before {
  transform: scaleX(1);
}

.mbMenuContainer {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /*background:url(../images/banner.jpg) center no-repeat rgb(0 0 0 / 55%);
	  background-size:cover;*/
  z-index: 999;
  display: none;
}

.mbMenuContainer::before,
.mbMenuContainer::after {
  content: "";
  z-index: -1;
  position: absolute;
  height: 100vh;
  width: calc(50vw + 0px);
  background: rgb(0 0 0 / 82%);
  top: 0;
  opacity: 1;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition: opacity 0ms ease 500ms,
    -webkit-transform 500ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: opacity 0ms ease 500ms,
    transform 500ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: opacity 0ms ease 500ms,
    transform 500ms cubic-bezier(0.42, 0, 0.58, 1),
    -webkit-transform 500ms cubic-bezier(0.42, 0, 0.58, 1);
  will-change: transform;
}

.mbMenuContainer::before {
  left: 0;
}

.mbMenuContainer::after {
  left: 50%;
}

.mbMenuContainer.active::before,
.mbMenuContainer.active::after {
  transition: -webkit-transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 300ms cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  backdrop-filter: blur(4px) brightness(1.3);
}

.mbMenuContainer .mbMenu {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 10px 0;
  margin-right: -1px;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s linear;
}

.mbMenuContainer.active .mbMenu {
  opacity: 1;
}

.mbMenuContainer .mbMenu .container {
  margin-top: 3rem;
}

.mbMenuContainer .mbMenu div[class^="col"] {
  display: flex;
  justify-content: center;
}

.mbMenuContainer .mbMenu ul li {
  padding: 10px 0;
  display: contents;
}

.mbMenuContainer .mbMenu ul li a {
  display: block;
  color: #fff;
  transition: all 300ms ease-in-out;
}

.mbMenuContainer .mbMenu ul li:hover > a,
.mbMenuContainer .mbMenu ul li a:focus {
  color: var(--brown);
}

.mbMenuContainer .mbMenu .bigMenuList ul li a {
  font: 400 3rem "Source Serif Pro", serif;
}

.mbMenuContainer .mbMenu .smallMenuList ul li a {
  font-size: 1.8rem;
  line-height: 1;
}

.mbMenuContainer .mbMenu .socialMediaLink {
  margin-top: 30px;
}

.mbMenuContainer .mbMenu .socialMediaLink ul {
  display: flex;
  justify-content: center;
}

.mbMenuContainer .mbMenu .socialMediaLink ul li {
  padding: 0 10px;
}
.mbMenuContainer .mbMenu .socialMediaLink ul li a {
  padding: 10px;
  font-size: 1.2rem;
}
.dropdown{ display:none; margin:10px;}
.dropdown li a{ font-size:30px !important;}
.hasChild img{ width:20px; display:inline-block;}
.hasChild1 img{  transform: rotate(180deg); transition:all ease-in-out 500ms;}
.header.fixed {  backdrop-filter: blur(2px);
  padding: 0 3vw;
}

.header.fixed .logo {
  width: 80px;
}
/*header*/

.banner {
  height: 100vh;
  position: relative;
  background: #000;
  z-index: 1;
}

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

.banner .carousel-inner,
.banner .carousel-inner .carousel-item {
  position: relative;
  height: 100%;
}

.banner .carousel-inner .carousel-item {
  background: center no-repeat;
  background-size: cover;
  z-index: 1;
}



.carousel-item section {
  display: flex;
  align-items: end;
  height: 100%;
  position: relative;
  z-index: 1;
  bottom:30%;
}

.bannerText {
  width: 50%;
  text-align: center;
  z-index: 9;
  color: #fff;
    padding: 20px;
}

.bannerText p {
      font: 700 14px "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    background: #f0c00c;
    padding: 2px;
    color: #000;
    display: initial;
}

.bannerText h1,
.bannerText h2 {
  font: 40px/1.1 var(--serif);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  text-shadow:0 2px #000;
}

.carousel-control-next.banner-next,
.carousel-control-prev.banner-prev {
  top: 50%;
  bottom: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: 1px solid rgb(255 255 255 / 30%);
  opacity: 1;
  z-index: 9;
}
.carousel-control-next.banner-next {
  right: 20px;
}
.carousel-control-prev.banner-prev {
  left: 20px;
}

.carousel-control-next.banner-next .carousel-control-next-icon,
.carousel-control-prev.banner-prev .carousel-control-prev-icon {
  /* background-size: 60%; */
}

.carousel-control-next-icon{background-image: url(../images/arrow-right.png);}
.carousel-control-prev-icon{background-image: url(../images/arrow-left.png);}

.carousel-control-next.banner-next:hover,
.carousel-control-prev.banner-prev:hover {
  border-color: var(--brown);
}

.bannerQuery,
.bannerSocial {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: absolute;
  bottom: 20px;
  z-index: 9;
}

.bannerQuery{
  display: none;
}

.bannerSocial {
  right: 20px;
}

.bannerQuery a,
.bannerSocial a {
  font-size: 16px;
  display: block;
  padding: 5px;
  color: #fff;
}

.bannerSocial a i.fa-facebook-f {
  background-color: #193c9b;
}
.bannerSocial a i.fa-instagram {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
}
.bannerSocial a i.fa-youtube {
  background-color: #d6020d;
}

.bannerSocial a:hover i {
  background-color: #bc986b;
}

.bannerQuery {
  left: 20px;
}

.chatBtn a i,
.bannerSocial a i,
.bannerQuery a i {
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 300ms ease-in-out;
}

.chatBtn a i.fa-whatsapp,
.bannerQuery a i.fa-whatsapp {
  background-color: green;
}

.bannerQuery a i.fa-envelope {
  background-color: var(--brown);
}

.chatBtn a i::after,
.bannerQuery a i::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  transform: scale(1.3);
  z-index: -1;
}

.chatBtn a i:hover:after,
.bannerQuery a i:hover::after {
  animation: breath 0.5s alternate infinite cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

@keyframes breath {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1.8);
  }
}

.chatBtn a i.fa-whatsapp::after,
.bannerQuery a i.fa-whatsapp::after {
  background-color: rgb(88 255 88 / 40%);
}

.bannerQuery a i.fa-envelope::after {
  background-color: rgb(255 227 191 / 48%);
}

.scrollDown {
  position: absolute;
  height: 100px;
  left: 50%;
  bottom: 20px;
  width: 10px;
  margin-left: -5px;
  cursor: pointer;
  z-index: 9;
  overflow: hidden;
}

.scrollDown::before,
.scrollDown::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  top: 0;
}

.scrollDown::before {
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}

.scrollDown::after {
  background: #fff;
  width: 3px;
  animation: scroll 2s infinite;
  height: 20px;
}

@keyframes scroll {
  100% {
    top: 100%;
    height: 100%;
  }
}

/* modal form */.modal-backdrop.show{
	opacity: 1;
	background: rgba(51 51 51 / 80%);
	backdrop-filter: blur(4px);
}

.modal-content{
	background-color: #f0c00c;
	box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
	border-radius: 10px;
}
.modal-header .close {
    padding: 0;
}
button.close{
	position: absolute;
	right: -20px;
	top: -20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--gold);
	color: #fff;
	opacity: 1;
	text-shadow: none;
	background-color: rgb(141, 0, 0);
	color: #fff;
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover{
	opacity: 1;
	background-color: rgb(141, 0, 0);
	color: #fff;
}

.modal-body{
	padding: 25px;
}

.form-group{
	margin-bottom:10px;
}

label{
	margin-bottom: 0;
}

.form-control{
	font-size:14px;
	padding:10px 5px;
	height:auto;
	background:none;
	border:none;
	background:#FFFFFF;
    color: #000;
	border-radius:0;
	transition:all 300ms ease;
}

.form-control:focus{
	border-bottom-color:var(--gold);
	box-shadow: none;
	color: #000;
}

.form-control::placeholder{
	color:#000;
}
textarea.form-control{
	resize: none;
}

select.form-control option{
  color: var(--darkgray);
  background: #ffd095;
}
.contact-con select.form-control option{
	text-align:center;
}

.modal-body label{
	color: var(--gray);
}

.modal-body .form-control{
	border-bottom-color: rgba(0 0 0 / 20%);
	color: #000;
}

.modal-body .form-control:focus{
	border-bottom-color: rgba(0 0 0 / 20%);
	border-bottom-color:var(--gold);
}

.object-fit-cover{
	object-fit:cover;
}
/* modal form */

/* Fixed form */
.fixed-form{
	position: fixed;
    bottom: 20px;
	right: 20px;
	width:290px;
	padding: 15px;
	border-top: 1px solid rgba(255,255,255,0.20);
	z-index: 1000;
	background:linear-gradient(to right, #dcb553 , yellow);
}
.fixed-form p{
	margin-bottom:7px !important;
	text-align:center;
}



.fixed-form .formFooter{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fixed-form .formFooter button{
	text-align: center;
	background: var(--darkgray);
	color: #fff;
	border: none;
	padding: 10px 15px;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
	transition: all 300ms ease-in-out;
	outline: none;
}

.fixed-form .formFooter button:hover{
	background:#bc986b;
	color: var(--darkgray);
}

.fixed-form.fixed{
	padding: 15px;
}

.fixed-form.fixed{
    box-shadow: 0 0 3px #000;
}
.fixed-form.fixed .form-group .form-control::placeholder{
  color: var(--darkgray);
}
.fixed-form.fixed .form-group .form-control:focus{
  border-bottom-color: var(--darkgray);
}
/* Fixed form */

.text-serif {
  font-family: var(--serif);
}
.text-brown {
  color: var(--brown);
}
.text-darkgray {
  color: var(--darkgray) !important;
}
.bg-lightgray {
  background-color: var(--lightgray);
}
.bg-brown {
  background-color: var(--brown);
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.heading h2,
.heading h4 {
  display: block;
  color: var(--brown);
}

.heading h2 {
  font: 300 3rem var(--serif);
}

.heading h4 {
  font: 400 2rem var(--serif);
}

.heading p {
  display: block;
  width: 70%;
  margin: 20px auto 0;
}

.heading .hasline {
  position: relative;
  padding-left: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
}

.heading .hasline:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0px;
  left: -20px;
  border-bottom: 1px solid #000;
  transition: all 500ms linear;
  transition-delay: 1s;
}

.heading .hasline.now:before {
  width: 60px;
}

.readmore {
  width: 100%;
  margin-top: 15px;
}

.readmore a,
.readmore button {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0px 15px;
  min-width: 130px;
  min-height: 40px;
  overflow: hidden;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 40px;
  border: 1px solid #000;
  text-transform: uppercase;
  transition: all ease-in-out 0.2s;
}

.readmore button {
  width: 100%;
  background: none;
}

.readmore a:hover,
.readmore button:hover {
  color: #fff;
  background: #000;
}

.readmore.white.solid a:hover,
.readmore.white.solid button:hover,
.readmore.white a,
.readmore.white button {
  color: #fff;
  border-color: #fff;
  background-color: #151515;
}

.readmore.white.solid a,
.readmore.white.solid button,
.readmore.white a:hover,
.readmore.white button:hover {
  color: #000;
  background: #fff;
}
.readmore.white button {
    color: #000;
    border-color: #fff;
    background-color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
}
.readmore.center a,
.readmore.center button {
  margin: 0 auto;
}

.readmore.dark a,
.readmore.dark button {
  color: #0d1113;
}

/* overview */

.hm-overview {
  position: relative;
  overflow: hidden;
}

.hm-overview .absolute {
  position: absolute;
  font-size: 20vw;
  font-weight: 400;
  opacity: 0.03;
  top: 20%;
  left: 100%;
  transition: all 3s ease;
}

.hm-overview .absolute.scroll {
  left: 0;
}

.hm-overviewText section {
  padding-right: 5%;
}

.hm-overviewText section article h5 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
}

.hm-overviewImg .img-fluid {
  height: 450px;
  width: 315px;
  padding-right: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hm-overviewImg .img-fluid img {
  height: 450px;
  width: 300px;
  object-fit: cover;
  transition: all 1s ease;
}

.hm-overviewImg .img-fluid span {
  position: absolute;
  font-size: 12px;
  letter-spacing: 15px;
  text-transform: uppercase;
  font-weight: 800;
  transform: rotate(90deg);
  transform-origin: left;
  left: calc(100% - 7px);
  bottom: 40%;
}
/* overview */

/*----------------------------------------Client counter---------------------------*/
.stats {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.stats li {
  flex-grow: 1;
}

.stats li section h2 {
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.stats li section h2 .counter {
  font-size: 3vw;
  color: var(--brown);
}

.stats li section h2 small {
  font-size: 70%;
}

.stats li section p {
  font-size: 12px;
  font-weight: 700;
  width: 100%;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/*----------------------------------------Client counter end---------------------------*/

/* hm project */
.projectBox a {
  height: 450px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  overflow: hidden;
}

.projectBox a .project-img textarea,
.projectBox a .project-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  transition: all 2s ease-in-out;
}
.projectBox a .project-img img {
  height: 100%;
  object-fit: cover;
}
.projectBox a:hover .project-img {
  transform: scale(1.2);
}

.projectBox a .project-img::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgb(0 0 0 / 20%);
  transition: all 300ms ease-in-out;
}
.projectBox a:hover .project-img::before {
  opacity: 0;
}

.projectBox a .project-img textarea {
  padding: 0;
  left: auto;
  z-index: 1;
  background: center / cover no-repeat;
  border: none;
  resize: none;
  border-radius: 0;
  outline: none;
  backdrop-filter: grayscale(1) brightness(1.2);
  pointer-events: none;
  width: 100%;
}

.projectBox a .project-img textarea:focus {
  box-shadow: none;
}

.projectBox a:hover .project-img textarea {
  width: 0%;
}

.projectBox a h4 {
  width: 100%;
  padding: 5px 10px;
  background-color: var(--brown);
  text-align: center;
  color: var(--darkgray);
  font: 400 20px var(--serif);
  text-transform: uppercase;
}

.projectBox a span {
  color: var(--darkgray);
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding-left: 10px;
  width: max-content;
  transition: all 300ms ease-in-out;
}
.projectBox a span i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brown);
  color: var(--darkgray);
  margin-left: 10px;
  transition: all 300ms ease-in-out;
}

.projectBox a span:hover {
  background-color: var(--brown);
}

.projectBox a span:hover i {
  background-color: var(--darkgray);
  color: var(--brown);
}
/* hm project */

/*why us*/
.whyUsContainer {
  display: flex;
  flex-wrap: wrap;
}

.whyUsBox {
  flex-grow: 1;
  width: calc(100% / 3);
  text-align: center;
  border: solid rgb(0 0 0 / 10%);
  border-width: 0 1px 1px 0;
}

.whyUsBox:nth-child(3n) {
  border-right-color: transparent;
}

.whyUsBox:nth-last-child(1),
.whyUsBox:nth-last-child(2),
.whyUsBox:nth-last-child(3) {
  border-bottom-color: transparent;
}

.whyUsBox section {
  width: 100%;
  padding: 10px;
}

.whyUsBox .imgBox {
  width: 60px;
  margin: 0 auto;
}

.whyUsBox section:hover .imgBox {
}

.whyUsBox section .imgBox svg path,
.whyUsBox section .imgBox svg circle {
  fill: none;
  stroke: var(--brown);
  stroke-width: 1;
  stroke-miterlimit: 20;
  stroke-dasharray: 1400;
  stroke-dashoffset: 0;
}

.whyUsBox section:hover .imgBox svg path,
.whyUsBox section:hover .imgBox svg circle {
  fill: var(--brown);
  stroke: none;
  /*-webkit-animation:path 9s infinite;
	animation:path 9s infinite;*/
}

@-webkit-keyframes path {
  0% {
    stroke-dashoffset: 1400;
  }
  100% {
    stroke-dashoffset: 0;
    fill: var(--brown);
    stroke: none;
  }
}

@keyframes path {
  0% {
    stroke-dashoffset: 1400;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.whyUsBox .whyUsText {
  width: 100%;
  padding: 10px;
}

.whyUsBox .whyUsText h3 {
  width: 100%;
  color: #191919;
  font-size: 14px;
  text-transform: uppercase;
}
/*why us*/

/* Testimonials */
.testimSlider .swiper-slide {
  height: auto;
}

.testimSlider .swiper-slide article {
  height: 100%;
  position: relative;
  text-align: center;
}

.testimSlider .swiper-slide article i {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown);
  color: var(--darkgray);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto -40px;
  position: relative;
  z-index: 1;
}

.testimSlider .swiper-slide article aside {
  height: 100%;
  padding: 60px 20px 20px;
  background: var(--lightgray);
}

.testimSlider .swiper-slide article aside .testimHead {
  margin-top: 20px;
}

.testimSlider .swiper-slide article aside h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brown);
}

.testimSlider .swiper-slide article aside h4 {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}
.testimSlider .swiper-slide article aside h4 span {
  display: block;
  font-size: 80%;
  font-weight: 500;
}

.testimSlider {
  padding-bottom: 60px;
}

.testimSlider .swiper-pagination {
  bottom: 0;
}

.swiper-pagination-bullet-active {
  background: var(--brown);
  transform: scale(1.5);
}
/* Testimonials */

/*Footer*/
.footer-area {
  background: #000;
  color: var(--brown);
  position: relative;
  z-index: 1;
}
.footer-area p{
	color:#FFFFFF; font-size:12px;
}

.mainFooter {
  padding-top: 5rem;
}

.mainFooter a {
  color: #fff;
}
.mainFooter a:hover {
  color: var(--brown);
}

.mainFooter .footLinks h4 {
  letter-spacing: 1px;
  padding-bottom: 10px;
  font: 700 20px var(--serif);
}

.mainFooter .footLinks ul li {
  margin: 10px 0;
  display: table;
}

.mainFooter .footLinks > ul li {
  padding-left: 20px;
  position: relative;
}

.mainFooter .footLinks > ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  border-bottom: 2px solid;
}

.mainFooter .footLinks > ul li a {
  font-size: 14px;
  transition: all 300ms ease-in-out;
}

.mainFooter .footLinks .footAbout p {
  color: #fff;
}

.mainFooter .footLinks .social-links {
  margin-top: 20px;
}

.mainFooter .footLinks .social-links li {
  display: inline-block;
  margin-right: 10px;
  padding-left: 0;
}

.mainFooter .footLinks .social-links li:before {
  display: none;
}

.mainFooter .footLinks .social-links li a {
  display: block;
  font-size: 17px;
}

.mainFooter .footLinks .social-links li a i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: block;
  transition: all 300ms ease-in-out;
}

.footer-area .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 0;
}

.footer-area .bottom ul {
  display: flex;
}

.footer-area .bottom li {
  font-size: 13px;
  display: flex;
}

.footer-area .bottom p {
  display: flex;
  font-size: 12px;
  align-items: center;
  margin-bottom: 0;
}

.footer-area .bottom p img {
  width: 20px;
}

.button-top {
  background: rgb(0 0 0 / 60%);
  position: fixed;
  cursor: pointer;
  right: 30px;
  bottom: -60px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  z-index: 99;
  transition: all 300ms ease;
}

.button-top:hover {
  background: var(--brown);
}
/*Footer*/

/*transformation Animation*/

.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.rightTranslate {
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.topTranslate {
  -webkit-transform: translate(0, -200px);
  transform: translate(0, -200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.scaleAnime {
  transform: scale(0);
  opacity: 0;
  transition: all 1000ms ease-in-out;
}

.doneScale {
  transform: translate(0) scale(1, 1) !important;
  opacity: 1;
}
/*transformation Animation*/

/* Inside page */
.insideBanner {
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 60%);
  pointer-events: none;
}

.insideBanner img {
  height: 100%;
  object-fit: cover;
}

.breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  margin-bottom: 0;
  padding: 10px 20px;
  background-color: transparent;
  color: var(--brown);
  z-index: 1;
}
.breadcrumb-item.active {
  color: var(--brown);
}

.breadcrumb a {
  color: #fff;
}

.pagemenuContainer {
  border-bottom: 1px dashed var(--brown);
padding-bottom: 10px !important;}

.pagemenu {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pageLogo {
  width: 280px;
}

.pagemenu ul li a {
  display: block;
  padding: 7px 15px;
  margin-right: 3px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  transition: all 300ms ease-in-out;
  background-color: var(--lightgray);
  color:#000000;
}

.pagemenu ul li a:hover,
.pagemenu ul li a.active {
}

.pageTitle h1 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  color: #838383;
  margin-bottom: 0;
}

.project-details {
  margin-bottom: 25px;
}

.project-details h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--brown);
  text-shadow: 2px 2px 0 #897154;
}

.project-details h4 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 3px;
}

.overviewText section {
  padding-right: 30px;
}

.overviewText section article {
  text-align: justify;
}

.overviewText section article p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.overviewImg img {
  height: 100%;
  object-fit: cover;
}

.playBtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 0 10px rgb(255 227 191 / 48%), 0 2px 10px rgb(0 0 0 / 55%);
  border: none;
  color: var(--darkgray);
  z-index: 1;
  transition: all 300ms ease-in-out;
}

.playBtn:hover {
  background-color: var(--darkgray);
  color: #fff;
  box-shadow: 0 0 0 30px rgb(0 0 0 / 48%), 0 2px 10px rgb(0 0 0 / 55%);
}

/* Amenities */
.featBox{
  width: 20%;
  padding: 10px;
}

.featBox section {
  height: 100%;
  padding: 30px 20px;
  background-color: #fff;
  transition: all 300ms ease-in-out;
  text-align: center;
}

.featBox section:hover {
  background-color: var(--brown);
  box-shadow: 0 1rem 2rem rgb(0 0 0 / 7%);
}

.featBox section .img-fluid {
  width: 50px;
  margin: 0 auto 25px;
}

.featBox section:hover .img-fluid {
  filter: hue-rotate(210deg) brightness(0.8);
}

.featBox section p.text-uppercase {
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 8px;
}
.featBox section p {
  font-size: 15px;
  font-weight: 700;
}
/* Amenities */

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--brown);
  color: #fff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
}

/* Gallery */
.gal-slider .swiper-slide .galImg {
  height: 450px;
  position: relative;
  background: center / cover no-repeat;
  z-index: 1;
}

.gal-slider .swiper-slide .galImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.gal-slider .gal-caps {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  z-index: 9;
}

.gal-slider .swiper-slide .img-type {
  position: absolute;
  right: 10px;
  bottom: 0;
  font-size: 10px;
  color: #fff;
  z-index: 2;
  pointer-events: none;
}
/* Gallery */

/* Floor plans */
.planBx {
  padding: 5px;
}

.planBx a {
  display: block;
  padding: 10px;
  border: 1px solid rgb(0 0 0 / 10%);
}

.planBx a .planBase {
  margin-top: 20px;
  padding: 20px 10px;
  border-top: 1px solid rgb(0 0 0 / 10%);
  color: var(--darkgray);
  text-transform: uppercase;
}

.planBx a .planBase h4 {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 0;
}

.planBx a .planBase p {
  font-size: 13px;
}
/* Floor plans */

/* Downloads */
.downloadBox a{
  height: 100%;
	display: flex;
	justify-content:center;
	flex-direction:column;
    text-align: center;
    background:#fff;
	color:var(--darkgray);
	transition: all 300ms ease-in-out;
    padding:15px;
}

.downloadBox a:hover{
	transform:translateY(-5px);
	box-shadow:0 1rem 3rem rgba(0,0,0,0.24);
}

.downloadBox a .imgBox{
	max-width: 70px;
    height: auto;
	margin:0 auto;
}

.downloadBox a .imgBox svg{
	width:100%;
	display:block;
}

.downloadBox a .imgBox svg path{
	fill:var(--brown);
}

.downloadBox a p{
	font-size: 15px;
  font-weight: 600;
    margin-bottom: 10px;
    margin-top: 30px;
    text-transform: uppercase;
}

.downloadBox a span{
	font-weight: 700;
    border: 1px solid;
    padding: 5px 20px 7px;
    margin-top: 10px;
	transition: all 300ms ease-in-out;
    text-decoration: none;
	background:linear-gradient(to right, #dcb553 , yellow);
}

.downloadBox a span:hover{
	color:#fff;
	background:var(--darkgray);
	border-color:var(--darkgray);
}
/* Downloads */

/* Location map */
.location-map iframe{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-text section{
	padding: 40px;
	background: var(--darkgray);
	color: #fff;
}

.location-nearby{
	padding-right: 10px;
	height: 330px;
	overflow: auto;
}

.location-nearby li{
	display: flex;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.location-nearby li .img-fluid{
	max-width: 40px;
	margin-right: 10px;
  filter: contrast(0.5);
}

/* Scroll bar */
.scroller::-webkit-scrollbar {
  width:5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #000; 
  border-radius: 10px;
}
 
/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background:var(--brown); 
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: var(--yellow); 
}
/* Scroll bar */
/* Location map */

/* Form Btn */
.formBtnContainer{
	padding:30px;
	text-align:center;
	position:relative;
	z-index:1;	
}

.formText p{
	font-size:16px;
	padding:0 10%;
}

.formBtns{
	margin-top:30px;
}

.formBtns li{
	display:inline-block;
	vertical-align:middle;
	margin-right:10px;
	text-align:center;
}

.formBtns li .formBtn{
	padding:10px;
	width:200px;
	display:block;
	background:var(--brown);
	color:#fff;
	font-size:12px;
	font-weight: 700;
	cursor:pointer;
	text-transform:uppercase;
	transition:all 300ms;
}

.formBtns li .formBtn:hover{
	background:var(--darkgray);
	color:#fff;
	transform:translateY(-2px);
	box-shadow:2px 2px 3px rgba(0,0,0,0.21);
}
/* Form Btn */
/* Inside page */


/*-----------alam-----*/
.contact-drop{background:#000;}
.contact-drop option{background:#ddd; color:#000;}

.careerFormRight{
	margin-top: 30px;
}
.careerFormRight .form-control{background:#f7f7f7; color:#000;}
.form-group .form-control.btn {
	background: #bc986b;
	color: #fff;
	border-color: #bc986b;
	padding: 6px 30px;
	border-radius: 7px;
	text-transform: uppercase;
	cursor: pointer;
	width:48%;
}
.plot-size{ display:flex; flex-wrap:wrap;justify-content: space-between;}
.plot-size-box{width: 32%; margin-bottom:15px;background: #f5efef;padding: 20px;}
.plot-size-icon{border-bottom: 1px solid #fff;padding: 10px; align-items:center;text-align: center;}
.plot-size-icon:nth-last-child(1){border-bottom:none;}
.plot-size-icon-img{margin-right: 21px;margin: auto;}
.plot-size-icon-img img{ width:40px;margin: auto;border: 1px solid #ccc;height: 40px;padding: 7px;border-radius: 50%;}
.plot-size-icon-text span{text-transform: uppercase;
    margin: 10px 0;
    letter-spacing: 3px;
    display: inline-block;
    font-size: 12px;}
.plot-size-icon-text p{margin-bottom: 0;font-size: 20px;}
.contact-con{ padding: 20px;box-shadow: 0 0 3px #e1e1e1;}
.header-mob a{padding: 5px;
	background:linear-gradient(to right, #dcb553 , yellow);
    border: 1px solid #dbdbdb;
    border-radius: 2px;
    font-weight: bold;
    color: #000;}
.mob-campus{ display:none;}
.modal-header{ flex-wrap:wrap; text-align:center;background: #ffd538;}
.modal-header h5, .modal-header p{ width:100%;margin-bottom: 8px;}
.icon-form{border-right: 1px solid #fff5d1;width: 33%;text-align: center;}
.icon-form:last-child{border-right:none;}
.icon-form img{ width: 56px; margin: auto;padding: 4px;}
.icon-form p a{ color:#000000;}
.modal-header p{ text-transform:uppercase; font-size:16px;}
.modal-footer{ justify-content:space-between;background: #ffd538;}
.amenities-wrapper{
	position: relative;
	display:flex;
	flex-wrap:wrap;
}
.amenities-slide
{
	width: calc(100% / 4);
	padding:10px;
	position:relative;
}

.galHead{
	margin-bottom: 30px;
}

.galBtn{
	margin: 0 5px;
	filter: grayscale(1);
}
.galBtn:hover,
.galBtn.active{
	filter: grayscale(0);
}

.amenities-slide .gal-caps
{	
	position: absolute;
    bottom: 10px;
    color: #fff;
    font-weight: 800;
    left: 20px;
}

.gal-slider .swiper-slide .galImg{
	height: 450px;
	position: relative;
	background: center / cover no-repeat;
	z-index: 1;
}

.gal-slider .swiper-slide .galImg::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.10);
	z-index: -1;
}

.gal-slider .gal-caps{
	position: absolute;
	left: 10px;
	bottom: 10px;
	font-size: 15px;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	z-index: 9;
}

.gal-slider .swiper-slide .img-type{
	position: absolute;
	right: 10px;
	bottom: 0;
	font-size: 10px;
	color: #fff;
	z-index: 2;
	pointer-events: none;
}
.fixed-form img{ width:70%;     margin: auto;margin-bottom:15px;}
.closeForm {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50% 0;
    background: #fdfb05; 
    color: #212121;
    cursor: pointer;
    -webkit-box-shadow: 1px 2px 6px #000;
    box-shadow: 1px 2px 6px #000;
}
.closeForm img {
    padding: 15px;
    -ms-filter: brightness(0%);
	width:100%;
    filter: brightness(0%);
}
.pagemenu ul li:nth-last-child(1) a{
	animation-name: example;
	animation-duration: 1s;	
	animation-iteration-count: infinite;}
.enquirybtn{position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    padding: 5px;
    background: #ffd538;
    z-index: 9999;
    font-weight: bold;
	display:none;
    letter-spacing: 4px;
    font-size: 21px;
    text-transform: uppercase;
	animation-name: example;
	animation-duration: 1s;	
	animation-iteration-count: infinite;
	border-radius: 4px;
}
@keyframes example {
  50%  {background-color: yellow;}
  100% {background-color: #fff1bd;}
}
.m-banner{ display: none;}
/*responsive*/
@media (max-width: 1200px) {
  .logo{width: 100px;}
  .stats li{flex-basis: 0;}
  .projectBox a{height: 300px;}
  .stats li section p{letter-spacing: normal;}
}
@media (max-width: 1030px) {.pagemenu ul {
    display: none !important;}
}

@media (min-height: 1024px) {
}

@media (min-height: 1280px) {
}

@media (max-width: 912px) {
  .hm-overviewImg{display: none;}
  .hm-projectWrapper.padding{padding-top: 0;}
  .projectBox{max-width: 50%; flex-basis: auto;}
  .heading p{width: 100%;}
}

@media (max-width: 920px) {
	.downloadBox a p {font-size: 12px;font-weight: 500;margin-bottom: 10px;margin-top: 10px;}
	.downloadBox, .location-text, .location-map{-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50%; margin:5px 0;}
	.featBox {width: 33%;}
	.location-text section {padding: 20px;} 
	.amenities-slide { width: calc(100% / 3);}
}
@media (max-width: 768px) {
  body{font-size: 12px;}
  .mbMenuContainer .mbMenu div[class^="col"]{text-align: center;}
  .mbMenuContainer .mbMenu ul li{margin: 0 auto;}
  .mbMenuContainer .mbMenu .bigMenuList ul li a{font-size: 10vw; line-height: 1; font-weight: 300;}
  .mbMenuContainer .mbMenu .smallMenuList ul{width:100%; display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; padding: 15px 0; margin: 15px 0; border: solid rgb(255 255 255 / 50%); border-width: 1px 0;}
  .mbMenuContainer .mbMenu .smallMenuList ul li{padding: 0; margin: 0;}
  .mbMenuContainer .mbMenu .smallMenuList ul li a{font-size: 20px;}
  .mbMenuContainer .mbMenu .socialMediaLink{margin-top: 0;}
  .mbMenuContainer .mbMenu .socialMediaLink ul li a{font-size: 1rem;}
  .banner{height: 70vh;}
  .bannerText{width: 70%;}
  .bannerText p, .heading .hasline{font-size: 12px;}
  .bannerText h1, .bannerText h2{font-size: 30px;}
  .bannerQuery{display: flex;}
  .hm-overviewText section article h5{font-size: 22px;}
  .readmore a, .readmore button{line-height: 28px; min-height: 30px; min-width: 110px; font-size: 11px;}
  .hm-overviewText section{padding-right: 0;}
  .hm-overviewText section article{display: flex; flex-wrap: wrap;}
  .hm-overviewText section article h5{width: 100%;}
  .hm-overviewText section article p{width: 50%; margin-bottom: 0; padding: 0 10px;}
  .stats{flex-wrap: wrap;}
  .stats li{flex-basis: auto;}
  .chatBtn{ display:none;}
  .hm-projectWrapper.padding{padding-top: 0;}
  .projectBox{max-width: 50%; flex-basis: auto; padding: 2px !important;}
  .heading h2{font-size: 2.4rem;}
  .heading p{width: 90%;}
  .whyUsBox .whyUsText h3{font-size: 11px;}
}

/* Samsung S8+ landscape */
@media (max-width: 740px) {
  .mbMenuContainer .mbMenu .smallMenuList{padding: 8px 15px;}
  .mbMenuContainer .mbMenu .bigMenuList ul li a{font-size: 8vw;}
  .mbMenuContainer .mbMenu .smallMenuList ul li a{font-size: 16px;}
  .mbMenuContainer .mbMenu .smallMenuList ul li a br{display: none;}
  .bannerQuery a{font-size: 14px;}
  .bannerQuery a i{width: 30px; height: 30px;}
  .heading .hasline:before{left: 0;}
  .heading .hasline.now:before{width: 40px;}
  .hm-overviewText section article p{width: 100%; padding: 0; margin-bottom: 10px;}
  .readmore{margin-top: 20px;}
  .readmore a, .readmore button{font-size: 10px;}
  .stats{margin-top: 30px; gap: 10px;}
  .stats li{flex-grow: unset;}
  .stats li section h2 .counter{font-size: 5vw;}
  .stats li section h2 small{font-size: 50%;}
  .stats li section p{font-size: 11px;}
  .projectBox a{height: 380px;}
  .testimSlider{padding-bottom: 20px;}
  .testimSlider .swiper-slide article aside{height: auto; padding: 60px 15px 20px;}
  .testimSlider .swiper-slide article aside h3{font-size: 15px;}
  .testimSlider .swiper-slide article aside h4{font-size: 13px;}
  .footLinks{margin-bottom: 30px;}
  .mainFooter .footLinks ul li{display: inline-block; margin: 10px 15px 10px 0;}
  .mainFooter .footLinks > ul li{padding-left: 13px;}
  .mainFooter .footLinks > ul li:before{margin-top: -1px;}
  .footer-area .bottom{padding: 3rem 0; border-top: 1px solid rgb(255 255 255 / 10%);}
  .pageLogo {width: 60%;}
  .pagemenu ul {width: 100%;overflow: auto;}
  .overviewImg img {width: 61%;margin: auto;}
  .mulberry-county img {width:100%;}
  .gal-slider .swiper-slide .galImg {height: 250px;}
}

@media (max-width: 667px) {
  .dropdown li a {font-size: 20px !important;}
  .heading h2{font-size: 2rem;}
  .project-details h2 {font-size: 24px;}
  .formText p{ padding:0;}
  .featSlider{ flex-wrap:wrap;}
  .formBtnContainer { padding: 0;}
  .featBox {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50%;}
  .formText p {ont-size: 15px;padding: 0 0%;}
  .teamBox h2 {font-size: 20px;}
  .downloadsContainer .downloadBox{-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50%;margin-bottom: 10px;}
.plot-size-box{width: 48%;}
	.amenities-slide { width: calc(100% / 2);}
}

@media (max-width: 540px) {
  .header{padding: 5px 15px;}
  .bannerQuery{left: 15px; bottom: 10px;}
  .scrollDown{bottom: 10px; height: 80px;}
  .projectBox{max-width: 100%;}
	.downloadBox, .location-text, .location-map{-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%; margin:5px 0;}
}

@media (max-width: 480px) {
}

@media (max-width: 425px) {
  .insideBanner{height: 60vh !important;}
  .heading p{width: 100%;}
  .whyUsBox{width: 50%;}
  .whyUsBox:nth-child(3n){border-right-color: rgb(0 0 0 / 10%);}
  .whyUsBox:nth-last-child(3){border-bottom-color: rgb(0 0 0 / 10%);}
  .whyUsBox:nth-child(2n) {border-right-color: transparent;}
  .featBox {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%;}
  .formBtnContainer{ padding:10px 5px;}
  .overviewText section {padding-right: 0;}
  .teamBox h2{ font-size:18px;}
  .teamBox p{ font-size:15px;}
  .formBtns li .formBtn { width: 100%;}
  .downloadsContainer .downloadBox{-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%;margin-bottom: 10px;}
	.plot-size-box{width: 1008%;}
	.mob-campus{ display:block;}
	.fixed-form {display: block; width:100%; position:static;} 
	.mob-campus {display   : block;position  : fixed;bottom    : 0;z-index   : 9999;background:#f0c00c;width     : 100%;text-align: center;color     : #fff;box-shadow: 0 0 5px #000;}
.mob-campus ul li {
		width  : 50%;
		float  : left;
		padding: 0 5px;
		list-style-type:none;
	}
	.fixed-form .formFooter button{ margin:auto;}

	.mob-campus ul li:first-child {
		border-right:1px solid #fff;
	}

	

	.mob-campus ul li a {
		color      : #fff;
		padding    : 7px;
		display    : block;
		text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.57);
		font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
	}

	.mob-campus ul li a i {
		margin-right: 5px;
		background  : #fff;
		width       : 25px;
		height      : 25px;
		line-height : 25px;
		color       : #0a679e;
		text-shadow : none;
	}
	button.close {right: 20px;}
	.amenities-slide { width: calc(100% / 1);}

  .banner{height: 60vh;}
  .bannerText {
    width: 100%;
}
}
 
@media (max-width: 390px) {
  .logo{width: 80px;}
  .header.fixed .logo{ height: 38px;}
  .header.fixed .logo img{height: 120%;}
  .menuBtn{height: 28px;}
  .mbMenuContainer .mbMenu .smallMenuList ul{gap: 15px;}
  .mbMenuContainer .mbMenu .smallMenuList ul li a{font-size: 14px;}
  .carousel-control-next.banner-next, .carousel-control-prev.banner-prev{width: 35px; height: 35px; top: auto; bottom: 10px; transform: translateY(0);}
  .carousel-control-prev.banner-prev{left: auto; right: 15px; bottom: 50px;}
  .carousel-control-next.banner-next{right: 15px;}
  .bannerText{width: 100%;
    padding: 3px;}
  .bannerText p{letter-spacing: 1px; font-weight: 600;}
  .bannerText h1, .bannerText h2{font-size: 25px;}
  .bannerQuery{flex-direction: column;}
  .padding{padding-top: 3rem; padding-bottom: 3rem;}
  .heading h2{font-size: 26px;}
  .hm-overviewText section article h5{font-size: 20px;}
  .stats li section h2 .counter{font-size: 8vw;}
  .stats li section p{font-weight: 600;}
  .projectBox a h4{font-size: 18px;}
  .projectBox a span i{height: 34px;}
  .testimSlider .swiper-slide article i{width: 50px; height: 50px; margin-bottom: -25px;}
  .testimSlider .swiper-slide article aside{padding-top: 40px;}
  .testimSlider .swiper-slide article aside h3{font-size: 14px; font-weight: 600;}
  .testimSlider .swiper-slide article aside h4{font-weight: 600;}
  .footer-area .bottom{flex-wrap: wrap;}
  .m-banner{ display: block;}
  .d-banner{ display: none;}
}

@media (max-width: 320px) {
}

@media (max-height: 540px) {
  .logo{width: 70px;}
  .menuBtn{height: 30px;}
  .banner{height: 100vh;}
  .scrollDown{bottom: 10px;} 
  .bannerQuery{display: flex;}
  .hm-overviewImg, .fixed-form{position: initial;
    width: 100%; display:block;}
}

@media (max-height: 414px) {
  .mbMenuContainer .mbMenu div[class^="col"]{width: 50%; flex-grow: 1;}
  .mbMenuContainer .mbMenu .bigMenuList ul li a{font-weight: 300; line-height: 1;}
  .mbMenuContainer .mbMenu .smallMenuList ul li a{font-size: 15px;}
  .mbMenuContainer .mbMenu .smallMenuList ul li a br{display: none;}
  .banner{height: 120vh;}
  .bannerText{width: 60%;}
  .bannerText h1, .bannerText h2{font-size: 36px;}
  .bannerText p{margin-bottom: 0; letter-spacing: 1px; font-weight: 600;}
  .scrollDown{height: 80px;}
  .bannerQuery a{font-size: 14px;}
  .bannerQuery a i{width: 30px; height: 30px;}
  .projectBox a{height: 90vh;}
}

@media (max-height: 390px) {
  .mbMenuContainer .mbMenu{align-items: flex-start;}
  .mbMenuContainer .mbMenu div[class^="col"]{width: 100%;}
  .mbMenuContainer .mbMenu .bigMenuList ul li a{font-size: 6.5vw;}
  .bannerText{width: 80%;}
  .bannerText h1, .bannerText h2{font-size: 32px;}
}
