
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Marcellus&display=swap');

:root {
  --primary-color: #d19f6d;
  --secondary-color: #f8e4d0;
  --light-color: #f9f4ff;
  --dark-color: #1d0b30;
  --body-color: #1f1f1f;
  --facebook: #4267B2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #FF0000;
  --whatsapp: #25D366;
  --instagram: #c92bb7;
  --serif: 'Marcellus', serif;
  --primary-gradient: linear-gradient(90deg, var(--dark-color), var(--secondary-color), var(--dark-color));
}

html{
  scroll-behavior: smooth;
}

body {
  color: var(--body-color);
  font: 400 1rem "Montserrat", sans-serif;
  overflow-x: hidden;
}

svg:not([fill]) {
  fill: currentColor;
  stroke: currentColor;
}

hr{
  border-top-color: var(--secondary-color);
}

p {
  line-height: 1.5;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.rounded{
  border-radius: 10px !important;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
}
a{
  color: var(--primary-color);
  line-height: inherit;
  text-decoration: none;
  outline: 0;
  transition: color .25s;
}
a:hover {
  color: var(--dark-color);
}

.ui-dark a:hover {
  color: #f0ecea;
}

img, video, iframe {
  width: 100%;
  display: block;
}

.rw--gap{
  row-gap: 30px;
}
.form--rw--gap{
  row-gap: 10px;
}

.object-cover {
  object-fit: cover;
}

.container-fluid{
    padding-left: 2rem;
    padding-right: 2rem;
}

.filter-white {
  -ms-filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0);
  filter: grayscale(1) brightness(0);
}

/*header*/
.header_site {
	width: 100%;
	padding: 0 2rem;
	position: fixed;
	top: 0;
	display:flex;
	align-items:center;
	justify-content: space-between;
  background-color: var(--dark-color);
	z-index: 9999;
	transition:all 300ms ease-in-out;
}
.header_site.fixed {
	padding: 0 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
	width:140px;
	position: relative;
	transition:all 300ms ease-in-out;
}

.header_site.notfixed .logo,
.header_site.fixed .logo{
	width:100px;
}

.navi {
  display: flex;
  gap: 30px;
}

.navi ul {
  gap: 0 10px;
}

.navi li a {
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px;
  letter-spacing: 1px;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
  transition: all 300ms ease-in-out;
}

.navi li a.active,
.navi li:hover > a {
  color: var(--primary-color);
}

.header_site.fixed .navi li a {
  font-size: 14px;
}

.navi li a i {
  font-size: 11px;
  color: var(--primary-color);
}

.navi .dropdown {
  position: absolute;
  top: 100%;
  width: 220px;
  left: calc(50% - 110px);
  padding: 1rem;
  background-color: #fff;
  border-top: 2px solid var(--primary-color);
  border-bottom: 4px solid var(--primary-color);
  opacity: 0;
  visibility: hidden;
  translate: 0 20px;
  pointer-events: none;
  transition: all 300ms ease-in-out;
}

.navi li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
  pointer-events: all;
}

.navi .dropdown.drop-sm a {
  display: block;
  color: var(--body-color);
  font-weight: 600;
  font-size: 13px;
}

.navi .dropdown.drop-sm a:hover {
  color: var(--primary-color);
}

.navi .dropdown.drop-sm li:not(:last-of-type) a {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(0 0 0 / 15%);
}

.menuBtn {
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  width: 30px; 
  height: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
  z-index: 99999;
  padding: 0;
  right: 0;
}

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

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

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

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

.mbMenuContainer{
	position:fixed;
	left:0;
	right:0;
	top:0;
	bottom:0;
	z-index:999;
	display:none;
}

.mbMenuContainer.active{
}

.mbMenuContainer.active::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(14 32 50 / 75%);
  backdrop-filter: blur(5px);
  -webkit-clip-path: circle(100% at 50% 50%);
  clip-path: circle(100% at 50% 50%);
}

.mbMenuContainer .mbMenu{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
	position:relative;
	height:100%;
	width:100%;
  max-width: 400px;
	padding:90px 1rem 10px;
  margin-left: auto;
	margin-right:-1px;
	overflow:auto;
	opacity:0;
	transform:scale(0);
  background: url(../images/pattern-bg3.png) var(--primary-color);
  background-blend-mode: color-burn;
	transition:all 1s cubic-bezier(0,1.06,.39,1.32);
	transition-delay:1s;
}

.mbMenuContainer.active .mbMenu{
	opacity:1;
	transform:scale(1);
}

.mbMenuContainer .mbMenu ul{
	margin:0;
}

.mbMenuContainer .mbMenu ul li a{
	display:flex;
  justify-content: space-between;
  align-items: center;
	color:#fff;
  font: 400 1.25rem var(--serif);
	transition:all 300ms ease-in-out;
}

.mbMenuContainer .mbMenu .mb__nav ul li a{
  padding: 10px 0;
}

.mbMenuContainer .mbMenu .mb__nav ul li:not(:last-of-type) a{
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

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

.mbMenuContainer .mbMenu .socialOne{
  margin-top: 1rem;
	padding:10px;
  border-radius: 100px;
  background-color: rgb(255 255 255 / 15%);
}

.mbMenuContainer .mbMenu .socialOne ul{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.mbMenuContainer .mbMenu .socialOne ul li a i{
	font-size:20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--dark-color);
  border: 1px solid rgba(0, 0, 0, 0.15);
	text-align:center;
}

.mbMenuContainer .mbMenu ul .menuDrop{
	display:none;
}

.mbMenuContainer .mbMenu ul .menuDrop ul{
	padding-left:10px;
}

.mbMenuContainer .mbMenu ul .menuDrop ul li a{
	font-size: 14px;
}

.mbMenuContainer .mbMenu ul .menuDrop ul li a:hover{
	text-decoration:underline;
}
/*header*/

.hero_carousel{
	height: calc(100vh - 61px);
	position:relative;
	background:var(--dark-color);
  margin-top: 61px;
	z-index:1;
}

.hero_carousel img{
	position:fixed;
	left:0;
	top:0;
	z-index:-1;
}

.hero_carousel .carousel-item.active img{
  animation: zoom__in 20s linear alternate infinite;
}

@keyframes zoom__in{
  100%{transform: scale(1.25,1.25);}
}

.hero_text{
  max-width: 400px;
	width:90%;
	position:absolute;
	left:0;
	top:30%;
	z-index:9;
  text-transform: uppercase;
}

.hero_text section{
	width:100%;
	height:100%;
  padding: 1rem;
  background-color: rgb(29 11 48 / 90%);
  backdrop-filter: blur(2px);
  border-right: 4px solid var(--primary-color);
  color: #fff;
	transition:transform 500ms linear;
}

.hero_text h5{
  font-weight: 300;
}

.hero_text .h2{
  color: var(--primary-color);
	font-weight:200;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero_text h6{
  font-weight: 300;
}

.scrollDown{
	position:absolute;
	left:50%;
	bottom:1rem;
	width:50px;
	height:50px;
  background-color: rgb(255 255 255 / 15%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
	cursor:pointer;
  transition: all 300ms ease-in-out;
	z-index:9;
}

.scrollDown:hover{
  background-color: #fff;
  color: var(--body-color);
}

.scrollDown svg {
  position: absolute;
  height: 35px;
  width: 10px;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translate(-50%,-50%);
  transform-origin: center center;
  z-index: 2;
}

.carousel-indicators{
	bottom:1rem;
	left:auto;
	align-items:center;
	margin-right:3vw;
}

.carousel-indicators li{
	width:10px;
	height:10px;
	border-radius:50%;
	background-color:rgba(255, 255, 255, 0.35);
	border:1px solid rgb(0 0 0 / 16%);
	opacity:1;
}

.carousel-indicators li:hover, .carousel-indicators .active{
	background-color:var(--primary-color);
  border-color: transparent;
}

.carousel-control-next.banner-next, .carousel-control-prev.banner-prev{
	top:auto;
	width:40px;
	height:40px;
	bottom:10px;
	background-color:rgb(0 0 0 / 40%);
	border-radius:50px;
	opacity:1;
	z-index:9;
}

.carousel-control-next.banner-next{
	right:calc(50% - 42px);
}

.carousel-control-prev.banner-prev{
	left:calc(50% - 42px);
}

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

.carousel-control-next.banner-next:hover, .carousel-control-prev.banner-prev:hover{
	background-color:#9a764c;
}

/* odometer */
.entry_number:not(:first-child){
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.entry_number .entry_number_inside{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.entry_number span:not(.number_title){
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 200;
}
.entry_number .number_title{
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.12ch;
  font-weight: 300;
  display: block;
  width: 100%;
  text-align: center;
}
/* odometer */

/* overview */
.overview_section__img{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

.overview_section__img img{
  height: calc(100% - (1rem + 80px));
  object-fit: cover;
}

.overview_section__img .img__shadow{
  display: block;
  height: 80px;
  background-color: var(--primary-color);
}
/* overview */

.opacity{
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms linear, visibility 300ms linear;
}
.opacity--on:hover .opacity{
  opacity: 1;
  visibility: visible;
}

/* office, retail, restaurant */
.spec_strip__inside{
  display: block;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.spec_strip__inside img{
  transition: all 300ms ease-in-out;
}

.spec_strip__inside:hover img{
  transform: scale(1.125,1.125);
}

.spec_text_section{
  position: absolute;
  inset: auto 0 0px;
  padding: 10px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: linear-gradient(transparent,transparent, #fff) left 0% / 100% 200%; */
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}

.spec_strip__inside:hover .spec_text_section{
  background-position-y: 100%;
}

.spec_text_section .spec_section__title{
  background-color: var(--dark-color);
  color: #fff;
  padding: 10px 3rem 10px 10px;
  clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
}

.title_icon{
  margin-bottom: 10px;
  width: 20px;
}
/* office, retail, restaurant */

/* hm segments */
.hm-segments {
  padding-top: 2.5rem;
  position: relative;
}

.hm-segments .segmentContainer {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* .hm-segments .segmentContainer:before,
.hm-segments .segmentContainer:after{
	content:'';
	position:absolute;
	background:rgba(31, 31, 39, 0.54);
	z-index:1;
}

.hm-segments .segmentContainer:before{
	left:0;
	right:0;
	top:50%;
	height:1px;
}

.hm-segments .segmentContainer:after{
	top:0;
	bottom:0;
	left:50%;
	width:1px;
} */

.hm-segments .segmentContainer > li {
  position: relative;
  height: 50vh;
  width: 25%;
  background: center / cover no-repeat;
}

.hm-segments .segmentContainer li a {
  display: block;
  position: relative;
  height: 100%;
  padding: 10px;
  background-color: rgba(0 0 0 / 80%);
  -webkit-transition: all 600ms ease-in-out;
  -o-transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -ms-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}

.hm-segments .segmentContainer li:nth-child(1) a {
  animation: blink 2s linear alternate infinite;
}
@keyframes blink{
  to{background-color: rgb(147 80 20 / 80%);}
}

.hm-segments .segmentContainer li:nth-child(2) a {
  animation: blink2 2s linear alternate infinite;
  animation-delay: 500ms;
}
@keyframes blink2{
  to{background-color: rgba(89, 18, 87, 0.8);}
}

.hm-segments .segmentContainer li:nth-child(3) a {  
  animation: blink3 2s linear alternate infinite;
  animation-delay: 200ms;
}
@keyframes blink3{
  to{background-color: rgb(166 145 18 / 80%);}
}

.hm-segments .segmentContainer li:nth-child(4) a {
  animation: blink4 2s linear alternate infinite;
  animation-delay: 800ms;
}
@keyframes blink4{
  to{background-color: rgba(18, 89, 37, 0.8);}
}

.hm-segments .segmentContainer li:nth-child(5) a {
  animation: blink5 2s linear alternate infinite;
  animation-delay: 400ms;
}
@keyframes blink5{
  to{background-color: rgba(143, 141, 21, 0.8);}
}

.hm-segments .segmentContainer li:nth-child(6) a {
  animation: blink6 2s linear alternate infinite;
  animation-delay: 50ms;
}
@keyframes blink6{
  to{background-color: rgb(168 32 42 / 80%);}
}

.hm-segments .segmentContainer li:nth-child(7) a {
  animation: blink7 2s linear alternate infinite;
}
@keyframes blink7{
  to{background-color: rgba(40, 18, 89, 0.8);}
}

.hm-segments .segmentContainer li:nth-child(8) a {
  animation: blink8 2s linear alternate infinite;
  animation-delay: 250ms;
}
@keyframes blink8{
  to{background-color: rgba(18, 68, 89, 0.8);}
}

.hm-segments .segmentContainer li a:hover{
  animation: none !important;
  background-color: rgba(0 0 0 / 10%);
}

.hm-segments .segmentContainer li section {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  letter-spacing: 1px;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.hm-segments .segmentContainer li:hover section{
  min-height: 90%;
}

.hm-segments .segmentContainer li a section .imgBox {
  top: 10%;
  left: 50%;
  width: 90px;
  margin: 0 auto 30px;
  padding: 20px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.hm-segments .segmentContainer li a:hover section .imgBox {
  background: var(--corp-color);
  margin-right: 0;
  width: 60px;
  padding: 13px;
}

.hm-segments .segmentContainer li section * {
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.hm-segments .segmentContainer li section .menuText span {
  position: relative;
  display: block;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
  text-align: left;
}

.hm-segments .segmentContainer li section .menuText span:after {
  content: "";
  position: absolute;
  left: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 47px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hm-segments .segmentContainer li section .menuText p {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
  padding-left: 15%;
}

.hm-segments .segmentContainer li section .menuText small{
  padding-left: 15%;
  letter-spacing: normal;
  display: block;
  color: #fff;
}

.hm-segments .segmentContainer li a:hover section .menuText small{
  opacity: 0;
}
/* hm segments */

.mnemonic__in{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.mnemonic__in .icon{
  max-width: 30px;
}

.opac--title {
  font-size: 12vw;
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  font-weight: 800;
  color: rgba(125, 125, 125, 0.062);
  line-height: 1;
}

.ui-image .opac--title {
  color: rgb(255 255 255 / 10%);
}

/* -----Accordion----- */
.accordion-header {
  margin-bottom: 1px;
}

.accordion-wrapper .accordion-header {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}

.accordion-button {
  width: 100%;
  padding: 14px 20px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #fff;
  color: var(--primary-color);
  border-radius: 0;
  border: 1px solid rgb(0 0 0 / 10%);
  border-bottom-width: 0;
}

.accordion-button:hover {
  color: var(--primary-color);
}
.accordion-button.collapsed {
  color: var(--dark-color);
  background-color: #fff;
  border-bottom-width: 1px;
}

.accordion-button i {
  transition: all 300ms ease-in-out;
  transform: rotate(225deg);
  color: var(--dark-color);
}

.accordion-button.collapsed i {
  transform: rotate(0deg);
  color: var(--primary-color);
}

.accordion-wrapper .card-body {
  border: 1px solid rgb(0 0 0 / 10%);
  border-top: 0;
  background-color: #fff;
  margin-bottom: 1rem;
  padding: .5rem 1.5rem;
}

.list-group-item{
  border-color: rgb(0 0 0 / 10%);
}
/* -----Accordion----- */

/* location */
.location-main {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}

.location-box {
  width: 30%;
}
.location-img {
  width: 70px;
  margin: auto;
  background-color: var(--dark-color);
  padding: 14px;
  border-radius: 50%;
}

.location-text p {
  text-align: center;
  margin: 10px 0 0 0;
}
/* location */

/* Downloads */
.download--box .mnemonic__in{
  padding: 2rem;
  background-color: #fff;
  row-gap: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}
.download--box .mnemonic__in:hover{
  background-color: var(--dark-color);
  color: var(--secondary-color);
}
.download--box .mnemonic__in .icon{
  filter: brightness(0);
}
.download--box .mnemonic__in:hover .icon{
  filter: brightness(1);
}
/* Downloads */

/* testimonials */
.testimBox{
  height: auto;
  max-width: 550px;
}

.testimBox .inner{
  height: 100%;
  padding: 2rem;
  background-color: var(--primary-color);
  text-align: center;
  transform: scale(.8,.8);
  filter: blur(3px);
  transition: all 300ms ease-in-out;
  position: relative;
}

.swiper-slide-active.testimBox .inner{
  transform: scale(1,1);
  filter: blur(0);
  background-color: #fff;
}
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right{
  transform: scale(.8,.8);
}

.quotation-mark{
  position: absolute;
  right: -65px;
  top: 50%;
  color: rgb(0 0 0 / 5%);
  font-size: 34rem;
  line-height: 0.5;
  transition: all 500ms ease-in-out;
  opacity: 0;
}

.swiper-slide-active.testimBox .inner .quotation-mark{
  opacity: 1;
  top: 0px;
}

.testim-img{
  width: 70px;
  height: 70px;
  overflow: hidden;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.testim-text{
  max-height: 120px;
  padding-right: 10px;
}

.testim-name{
  display: block;
  margin-top: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.testim-name small{
  color: var(--dark-color);
}
/* testimonials */

/* Delivered Projects Home */
.delivered--projects{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* gap: .75rem; */
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
/* .delivered--projects::before{
  content: '';
  position: absolute;
  inset: 50% 0 auto;
  border-bottom: 1px solid var(--primary-color);
  transform: translateY(-50%);
  z-index: -1;
} */
.delivered--projects--box{
  padding: 0 8px;
  position: relative;
  isolation: isolate;
}
.delivered--projects--box::before{
  content: '';
  position: absolute;
  inset: 50% 0 auto;
  border-bottom: 1px solid var(--primary-color);
  transform: translateY(-50%);
  z-index: -1;
}
.delivered--projects--box.sm{
  flex-grow: 1;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.delivered--projects--box.big{
  max-width: 15%;
  flex: 0 0 15%;
  font-family: var(--serif);
  color: var(--primary-color);
}
.delivered--projects--box .insider{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 10px;
}
.delivered--projects--box .img--box{
  background-color: var(--dark-color);
  overflow: hidden;
}
.delivered--projects--box .img--box img{
  object-fit: cover;
  transition: all 300ms ease-in-out;
}
.delivered--projects--box .img--box:hover img{
  transform: scale(1.125,1.125);
}

.delivered--projects--box.sm .box__title{
  height: 40px;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.delivered--projects--box.sm .box__location{
  height: 40px;
}
.delivered--projects--box.big .box__location{
  text-transform: uppercase;
}

.delivered--projects--box .connector{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--primary-color);
  background-color: var(--primary-color);
}
/* Delivered Projects Home */


.viewmore {
  width: 100%;
  margin-top: 1.25rem;
}

.viewmore .button {
  width: max-content;
  text-transform: uppercase;
  color: var(--secondary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 300ms ease-in-out;
}
.viewmore .button:hover{
  gap: 15px;
}

.viewmore .button i {
  width: 30px;
  color: var(--secondary-color);
}

.viewmore .button:hover, .viewmore .button:hover i {
  color: #fff;
}

.viewmore .button.text-primary:hover, .viewmore .button.text-primary:hover i{
  color: #fff !important;
}

.viewmore .button.text-primary i{
  color: var(--primary-color);
}

.watermark{
  position: absolute;
  height: 80%;
  top: 0%;
  right: 0%;
  transform: translate(10%,-20%);
  z-index: -1;
}
.watermark img{
  height: 100%;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) opacity(0.2);
  transition: transform 700ms ease-in-out, opacity 700ms ease-in-out, filter 1500ms linear;
}
.watermark img.doneTranslate{
  filter: brightness(1) opacity(1);
}

.section-title--container{
  margin-bottom: 2.5rem;
}

.section-title {
  display: table;
  position: relative;
  margin-bottom: 2.5rem;
  z-index: 1;
}

.section-title.d-flex {
  gap: 10px;
}

.section-title.border-bottom{
  border-bottom-width: 2px !important;
}

.section-title .section-title-logo{
  width: 120px;
  margin: 0 auto 1rem;
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
  display: block;
}

.section-title .h1 {
  color: var(--primary-color);
  font-size: 3rem;
  font-weight: 100;
}

.section-title h6 {
  font-weight: 300;
  letter-spacing: 2px;
}

.text-grad{
  background-image: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-serif{
  font-family: var(--serif);
}

.text-sans{
  font-family: "Roboto", sans-serif !important;
}

.text-light{
  color: var(--light-color) !important;
}
.text-dark{
  color: var(--dark-color) !important;
}
.text-primary{
  color: var(--primary-color) !important;
}
.text-secondary{
	color:var(--secondary-color) !important;
}

.ui-white{
  background-color: #fff !important;
}

.ui-primary{
  background-color: var(--primary-color) !important;
}

.ui-secondary{
  background-color: var(--secondary-color) !important;
}
.ui-dark{
  background-color: var(--dark-color) !important;
  color: #fff;
}

.ui-light{
  background-color: var(--light-color) !important;
}
.ui-gradient{
  background: var(--primary-gradient);
}

.ui-image{
  background: center / cover no-repeat fixed;
}

.ui-image::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 60%);
  z-index: -1;
}

.ui-image.ui-secondary{
  background-attachment: initial;
}

.ui-image.ui-secondary::before{
  background-color: transparent;
}

.scroller{
  overflow: auto;
}

.scroller::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--light-color);
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.readmore {
  width: 100%;
  margin-top: 2.5rem;
}

.readmore.d-flex{
  gap: 10px 1rem;
}

.readmore .button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  min-width: 150px;
  max-width: max-content;
  padding: 10px 1rem;
  color: #fff;
  background-color: var(--primary-color);
  border: 1px solid transparent;
  font-weight: 300;
  font-size: 14px;
  border-radius: 50px;
  text-align: center;
  text-transform: uppercase;
  transition: all 300ms ease-out;
}

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

.readmore .button i{
  font-size: 85%;
}

.readmore .button:hover, .readmore .button.ui-dark:hover {
  background: #fff !important;
  color: var(--body-color);
  border-color: var(--primary-color);
  box-shadow: 0 10px 2rem rgb(0 0 0 / 16%);
}

.readmore .button:hover i{
  color: var(--primary-color);
}

.readmore .circular {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}
.readmore .circular:hover {
  background-color: var(--primary-color);
  color: var(--primary-color);
}

.readmore .button.mw-auto{
  min-width: 1px;
  padding: 1rem;
}

.readmore .button.solid.white:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.readmore .button.solid.white{
  background-color: var(--light-color);
  color: var(--secondary-color);
}
.readmore .button.ui-secondary {
  border: none;
  background: var(--secondary-color);
}
.readmore .button.ui-secondary:hover {
  background: var(--primary-color) !important;
  color: #fff;
}

.controls {
  position: absolute;
  width: 110px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  z-index: 9;
}

.controls a {
  position: static;
  display: table;
  width: 100%;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: center;
  color: var(--primary-color);
  font-size: 13px;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  opacity: 1;
}

.controls a:last-child {
  border-bottom: none;
}

.controls a:focus,
.controls a:hover {
  color: var(--primary-color) !important;
  opacity: 1;
}

.multiply{
  mix-blend-mode: multiply;
}

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

/* custom swiper controls */
.swiper-button-next, .swiper-button-prev{
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}
.swiper-button-next.sm, .swiper-button-prev.sm{
  width: 30px;
  height: 30px;
  background-size: 14px;
}

.section-title .d-flex{
  gap: 10px;
}
.section-title .swiper-button-next, .section-title .swiper-button-prev{
  position: static;
  margin-top: 0;
}

.swiper-button-next:hover, .swiper-button-prev:hover{
  background-color: var(--dark-color);
  color: #fff;
}

.swiper-button-next:after, .swiper-button-prev:after{
  color: inherit;
  font-size: 1rem;
}

.bottom-control{
  top: calc(100% - 1.75rem);
}

.bottom-control.sm{
  top: calc(100% - .5rem);
}

.bottom-control.swiper-button-next{
  right: calc(50% - 55px);
}
.bottom-control.swiper-button-prev{
  left: calc(50% - 55px);
}

.bottom-control.swiper-button-next.sm{
  right: calc(50% - 35px);
}
.bottom-control.swiper-button-prev.sm{
  left: calc(50% - 35px);
}

.swiper-pagination{
  bottom: 0 !important;
}

.swiper-pagination-bullet-active{
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 10px;
}
/* custom swiper controls */

/*Footer*/
.footer-area {
  border-top: 1px solid var(--primary-color);
  color: #fff;
  position: relative;
  z-index: 9;
  font-size: 14px;
}

.footer-area::before{
  content: '';
  position: absolute;
  background: url(../images/footer-sketch.svg) center bottom / 60% repeat-x;
  inset: 0;
  filter: opacity(0.15);
  z-index: -1;
}

.foot-logo img{
  max-width: 180px;
  margin: 0 auto;
}

.footer-area ul{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.footer--links li a{
  display: block;
  color: #fff;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 1rem;
  transition: all 300ms ease-in-out;
}

.footer--links li a:hover{
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.footer--social i{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgb(255 255 255 / 15%);
  color: var(--primary-color);
  transition: all 300ms ease-in-out;
}

.footer--social i:hover{
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.copyrights {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.copyrights p {
  display: flex;
  align-items: center;
  margin-left: 15px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.button-top {
  background-color: rgba(0, 0, 0, 0.32);
  border: 1px solid rgb(255 255 255 / 0%);
  position: fixed;
  left: calc(50% - 20px);
  bottom: -40px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  z-index: 99;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.button-top:hover {
  background-color: var(--primary-color);
  border-color: rgb(255 255 255 / 10%);
}
/*Footer*/

/* internal pages start from here */
.hero_inside__banner{
  margin-top: 45px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--dark-color);
}

.hero_inside__banner .display-4{
  font-weight: 200;
}

.hero_inside__banner .watermark{
  height: 100%;
  transform: translate(0%,0%);
}
.hero_inside__banner .watermark img{
  filter: none;
}

.breadcrumb{
  background-color: transparent;
  margin-bottom: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
  color: var(--light-color);
}

.breadcrumb li a{
  color: var(--light-color);
}

.breadcrumb li a:hover{
  color: var(--light-color);
}

.breadcrumb li.active{
  color: var(--secondary-color);
}

.empire_section__inside .mnemonics_wrapper{
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 4px double var(--secondary-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.enquiry__box .mnemonic__in[data-toggle="modal"]{
  padding: 2rem;
  background-color: rgb(255 255 255 / 10%);
  backdrop-filter: brightness(2) blur(2px);
  border: 1px solid rgb(255 255 255 / 50%);
  color: #fff;
  /* font-weight: 700; */
  text-transform: uppercase;
  gap: 1rem;
  transition: all 300ms ease-in-out;
}

.enquiry__box .mnemonic__in[data-toggle="modal"]:hover{
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-color: transparent;
}

.enquiry__box .mnemonic__in[data-toggle="modal"] .icon{
  filter: invert(1);
}
.enquiry__box .mnemonic__in[data-toggle="modal"]:hover .icon{
  filter: invert(0);
}

.floorplan__box .floorplan__box__inside{
  display: block;
  position: relative;
  isolation: isolate;
}

.floorplan__box .floorplan__box__inside::before,
.floorplan__box .floorplan__box__inside::after{
  content: '';
  position: absolute;
  z-index: 1;
  transition: all 300ms ease-in-out;
}

.floorplan__box .floorplan__box__inside::before{
  background-color: rgb(29 11 48 / 75%);
  inset: 0;
}
.floorplan__box .floorplan__box__inside::after{
  inset: 10px;
  border: 1px solid var(--secondary-color);
}

.floorplan__box .floorplan__box__inside:hover::before{
  opacity: 0.25;
}

.floorplan__box .floorplan__box__inside:hover::after{
  border-color: var(--primary-color);
}

.floorplan__box .floorplan__box__inside .floorplan__base{
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%,50%);
  width: calc(100% - 22px);
  padding: 10px;
  text-align: center;
  z-index: 2;
  transition: all 300ms ease-in-out;
}

.floorplan__box .floorplan__box__inside:hover .floorplan__base{
  bottom: 11px;
  transform: translate(-50%, 0);
  background-color: var(--secondary-color);
  border-top: 1px solid var(--primary-color);
}

.floorplan__box .floorplan__box__inside .floorplan__base span{
  text-transform: uppercase;
  padding: 5px 10px;
  font-size: 12px;
  display: inline-block;
  border-radius: 40px;
  border: 1px solid;
  transition: all 300ms ease-in-out;
}

.floorplan__box .floorplan__box__inside .floorplan__base span:hover{
  background-color: var(--primary-color);
  color: var(--light-color);
  border-color: transparent;
}

.contact_box .contact_box__inside{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact_box .contact_box__inside .small--title{
  margin-bottom: 2rem;
  font-weight: 300;
}

.contact_box .contact_box__inside .con-links li:not(:last-of-type){
  margin-bottom: 10px;
}

.contact_box .contact_box__inside .con-links li em{
  font-style: normal;
}

.contact_box .contact_box__inside .con-links li a{
  display: flex;
  align-items: center;
  color: var(--body-color);
}

.contact_box .contact_box__inside .con-links li a:hover{
  color: #fff;
}

.contact_box .contact_box__inside .con-links li a i{
  flex: 0 0 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid var(--body-color);
  margin-right: 10px;
  color: var(--body-color);
}

.contact--map{
  width: 100%;
  transition: all 300ms ease-in-out;
}

.contact--map iframe{
  background-color: var(--body-color);
  display: block;
}

.suncity-text p:last-of-type{
  margin-bottom: 0;
}

.mission--box .mission--box__inside{
  padding: 1.5rem;
  border: 1px solid var(--dark-color);
}

.mission--box .mission--box__inside .icon{
  width: 30px;
}

.sun-num section{
  text-align: center;
}

.sun-num section h2{
  font-weight: 200;
}

.sun-num section h2 .odometer{
  font-size: 120%;
}

.sun-num section p{
  margin-bottom: 0;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 14px;
}

.more-projectBox{
  margin: 15px 0;
}
/* internal pages end here */


.flip-x{
  transform: rotateY(180deg);
}

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

.form-group>div {
  margin-top: 15px;
}

.form-group label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}

.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 16%);
  background: none;
  outline: none;
  padding-left: 0;
  padding-top: 0;
}

.form-control[readonly] {
  background: none;
}

.form-control.form-control-dark{
  border-bottom-color: rgb(255 255 255 / 15%);
  color: #fff;
}

select.form-control.form-control-dark{
  background-color: var(--primary-color);
}

.form-control.form-control-dark::placeholder{
  color: #8f8f8f;
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
  background: none;
}

/* customize modal */
.modal-backdrop.show {
  opacity: 1;
  background: rgb(0 10 12 / 95%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
  border-radius: 0;
}

button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  opacity: 1;
  text-shadow: none;
}

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

.modal-content {
  background-color: #fff;
  color: var(--body-color);
  border: none;
}
.modal-dialog {
  max-width: 700px;
}
.modal-content .modal-header {
  padding: 0;
  border: none;
}
.modal-content button.close {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
  text-shadow: none;
  color: var(--body-color);
  background-color: var(--secondary-color);
  opacity: 1;
}
.modal-header .close {
  color: #fff;
}
.modal-header {
  background: none;
  border: none;
}

.modal-logo{
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.modal-logo img{
  max-width: 240px;
}

.modal-body {
  padding: 1.5rem;
}
/* customize modal */

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

.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}

.fadeIn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.zoomOut{
  transform: scaleX(0);
  transform-origin: left;
  transition: all .5s ease-in-out;
}

.zoomIn{
  transform: scale(1);
}
/*transformation Animation*/

.separator{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: -40px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.separator::before,
.separator::after{
  content: '';
  width: 50%;
  border-bottom: 1px solid var(--secondary-color);
}

.list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.list li::before{
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: url(../images/logo-icon.svg) center / 18px no-repeat var(--primary-color);
}
