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

:root {
  --gray: #212121;
  --white: #fff;
  --orange: #e18d37;
  --blue: #040e2a;
  --facebook: #4267B2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #FF0000;
  --whatsapp: #25D366;
  --instagram: #c92bb7;
}

body {
  color: var(--gray);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  font-size: 14px;
}
ul {
  padding-left: 0;
  margin-bottom: 0;
}

a:hover {
  text-decoration: none;
}

.gap-row{
  row-gap: 20px;
}

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

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

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

.bg-dark .heading h2 {
  color: var(--orange);
}
.bg-orange {
  background-color: var(--orange) !important;
  color: #fff;
}
.bg-image {
  background: center / cover no-repeat fixed;
  position: relative;
  z-index: 1;
  color: #fff;
}
.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 60%);
  z-index: -1;
}

.container-fluid {
  padding: 0 50px;
}

/*header*/
.header {
  width: 100%;
  float: left;
  position: fixed;
  top: 0;
  z-index: 9999;
  transition: all 300ms ease-in-out;
}

.header.fixed {
  background: var(--blue);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

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

.header.fixed .logo {
  width: 70px;
}

.mainHeader,
.mainHeader nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.mainHeader nav ul {
  display: flex;
  flex-wrap: wrap;
}

.mainHeader nav > ul > li {
  margin: 0 20px;
  transition: all 300ms ease;
}

.mainHeader nav ul li a {
  display: block;
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 25px 0;
  transition: all 300ms ease;
  position: relative;
  z-index: 1;
}

.header.fixed .mainHeader nav > ul > li {
  margin: 0 10px;
}

.header.fixed .mainHeader nav ul li a {
  font-size: 13px;
}

.mainHeader nav ul li a i{
	font-size: 10px;
}

.mainHeader nav ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  border-bottom: 1px solid #fff;
  transition: all 300ms ease;
}

.mainHeader nav ul li:hover > a::before {
  transform: scaleX(1);
}

.mainHeader nav ul li .dropdown {
  position: absolute;
  right: 0%;
  top: 100%;
  width: 120%;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 35%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  text-align: center;
  pointer-events: none;
  transition: all 300ms ease-in-out;
}
.mainHeader nav ul li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  pointer-events: all;
}

.mainHeader nav ul li .dropdown ul li{
	flex-grow: 1;
	flex-basis: 0;
}

.mainHeader nav ul li .dropdown ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 5px;
  color: inherit;
  padding: 10px;
  font-weight: 300;
  border-right: 1px solid rgb(0 0 0 / 15%);
  font-size: 12px !important;
  line-height: 1;
}
.mainHeader nav ul li .dropdown ul li:last-of-type a {
  border-right: none;
}

.mainHeader nav ul li .dropdown ul li a .img-fluid{
	max-width: 40px;
}

.mainHeader nav ul li .dropdown ul li a:hover {
  background-color: var(--orange);
  color: #fff;
}

.menuBtn {
  width: 60px;
  height: 60px;
  cursor: pointer;
  overflow: hidden;
  background: var(--orange);
  border-radius: 50%;
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 300ms ease-in-out;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #fff;
  position: relative;
  -webkit-transition: 400ms ease-in-out all;
  transition: 400ms ease-in-out all;
}

.hamburger::before{
  transform: translateY(-6px);
}

.hamburger::after{
  transform: translateY(5px);
}

.menuBtn.open .hamburger{
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menuBtn.open .hamburger::before{
  opacity: 0;
}

.menuBtn.open .hamburger::after{
  -webkit-transform: translateY(-1px) rotate(-90deg);
  transform: translateY(-1px) rotate(-90deg);
}

.header.fixed .menuBtn {
  transform: scale(0.7, 0.7);
}

.mbMenuContainer {
  position: fixed;
  width: 300px;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  clip-path: circle(0% at top right);
  transition: all 800ms ease-in-out;
  /* display: none; */
}

.mbMenuContainer.mbMenu--open {
  display: block;
  clip-path: circle(250% at top right);
}

.mbMenuContainer .mbMenu a{
  color: #fff;
}

.mbMenuContainer .mbMenu {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 90px 2rem 2rem;
  background-color: var(--blue);
  overflow: auto;
  transition-delay: 1s;
}

.mbMenuContainer .mbMenu .mbNav{
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed rgb(255 255 255 / 10%);
}

.mbMenuContainer .mbMenu .mbNav li a{
  display: block;
  padding: 5px 0;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  transition: color 300ms ease-in-out;
}

.mbMenuContainer .mbMenu .mbNav li:hover > a{
  color: var(--orange);
}

.mbMenuContainer .mbMenu .mbNav .hasChild .dropdown{
  padding: 10px 15px;
  background: rgb(255 255 255 / 10%);
  display: none;
}

.mbMenuContainer .mbMenu .mbNav .hasChild .dropdown a{
  font-size: 13px;
  font-weight: 500;
}

.mbMenuContainer .mbMenu .socialBox{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mbMenuContainer .mbMenu .socialBox li a i{
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 50%;
  background-color: var(--orange);
  position: relative;
  z-index: 1;
}

.mbMenuContainer .mbMenu .socialBox li a i:hover{
  color: var(--orange);
}

.mbMenuContainer .mbMenu .socialBox li a i::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #fff;
  transform: scale(0,0);
  transition: all 500ms cubic-bezier(.17,.67,0,1.96);
  z-index: -1;
}


.mbMenuContainer .mbMenu .socialBox li a:hover i::after{
  transform: scale(1,1);
}

.mbMenuContainer .mbMenu .socialBox li a .fa-facebook-f{
	background-color: var(--facebook);
}
.mbMenuContainer .mbMenu .socialBox li a .fa-linkedin-in{
	background-color: var(--linkedin);
}
.mbMenuContainer .mbMenu .socialBox li a .fa-twitter{
	background-color: var(--twitter);
}
.mbMenuContainer .mbMenu .socialBox li a .fa-youtube{
	background-color: var(--youtube);
}
.mbMenuContainer .mbMenu .socialBox li a .fa-whatsapp{
	background-color: var(--whatsapp);
}
.mbMenuContainer .mbMenu .socialBox li a .fa-instagram{
	background-color: var(--instagram);
}
/*header*/

.banner {
  height: 100vh;
  position: relative;
  background: #000c2c;
  background: linear-gradient(#002155, #000c2c);
  z-index: 1;
  overflow: hidden;
}

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

.bannerText {
  width: 45%;
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  color: var(--white);
    background: linear-gradient(45deg, rgb(0 0 0 / 45%), transparent);
}
.insideBanner .bannerText { display:none;}
.text-black
{
	color:#000000 !important;
}
.bannerText h1 {
  font-weight: 100;
  font-size: 3.5rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bannerText ul li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 16px;
  font-weight: 200;
}

.bannerText ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
}

.bannerImg {
  position: absolute;
  right: 0;
  bottom: -12%;
  width: 38%;
  z-index: 1;
}

#bannerImg {
  transition: all 1s linear;
}

.scrollDown {
  position: absolute;
  left: 50px;
  bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -2px;
  font-size: 10px;
  padding-left: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9;
}

.scrollDown:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  border-right: 1px solid #fff;
  animation: hidden 3s ease infinite;
}

@keyframes hidden {
  50% {
    transform: scaleY(1);
  }
}

.scrollDown span {
  display: block;
  writing-mode: vertical-lr;
  text-orientation: upright;
}

p {
  font-weight: 400;
}

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

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

.heading h2,
.heading h4 {
  display: table;
  color: var(--gray);
}

.heading h2 {
  font-size: 3.5rem;
  font-weight: 100;
}

.heading h4 {
  font-size: 2rem;
  font-weight: 200;
}

.heading h5 {
  font-size: 1.75rem;
  font-weight: 200;
}

.readmore {
  width: 100%;
  float: left;
  margin-top: 20px;
}

.readmore a,
.readmore button {
  color: var(--orange);
  border: 1px solid var(--orange);
  font-weight: 300;
  padding: 13px 25px;
  min-width: 200px;
  position: relative;
  display: inline-block;
  z-index: 1;
  line-height: 1;
  transition: all 300ms ease-in-out;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.readmore button {
  background: none;
  outline: none;
  cursor: pointer;
}

.readmore a:before,
.readmore button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--orange);
  z-index: -1;
  transform: scaleX(0);
  transition: all 300ms ease-in-out;
}

.readmore a:hover,
.readmore button:hover {
  color: var(--white);
}

.readmore a:hover:before,
.readmore button:hover:before {
  transform: scaleX(1);
}

.readmore.whitemore a,
.readmore.whitemore button {
  color: var(--white);
  border-color: var(--white);
}

.readmore.whitemore a:before,
.readmore.whitemore button:before {
  background: var(--white);
}

.readmore.whitemore a:hover,
.readmore.whitemore button:hover {
  color: var(--orange);
}

.form-control {
  border-radius: 0;
  border-color: rgba(0, 0, 0, 0.19);
  padding: 0.6rem 15px;
  height: auto;
  font-size: 14px;
}

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

.hm-projectContainer {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#img1 {
  position: absolute;
  right: -50px;
  bottom: 0;
  opacity: 0.5;
  transition: all 1s ease;
  z-index: -1;
}

.star {
  width: 400px;
  position: absolute;
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.15;
}

.star.left {
  left: -100px;
  transform: rotate(15deg);
}

.star.top {
  top: 50px;
}

.star.btm {
  bottom: -40px;
}

.hm-projectHead {
  text-align: center;
  margin-bottom: 40px;
}

.hm-projectHead h2 {
  font-weight: 100;
  font-size: 6vw;
  margin-bottom: 20px;
  color: var(--orange);
}

.hm-projectHead h5 {
  font-weight: 200;
  font-size: 24px;
  line-height: 1.5;
}

.text-primary {
  color: var(--blue) !important;
}
.text-orange {
  color: var(--orange) !important;
}
.filter-white {
  filter: brightness(70);
}

.hm-projectBox {
  float: left;
  width: 100%;
  background: center no-repeat var(--blue);
  background-size: cover;
  padding: 4rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.hm-projectBox section {
  width: 500px;
}

.hm-projectBox section .hm-projectLogo {
  width: 140px;
  margin-bottom: 30px;
}

.hm-projectBox section h3 {
  font-size: 30px;
  font-weight: 200;
  text-transform: uppercase;
}

.hm-projectBox section > p {
  font-size: 16px;
  font-weight: 200;
}

.hm-projectBox section ul {
  margin-top: 20px;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #e18d37, #040e2a 50%);
}

.hm-projectBox section ul li {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 10px;
}

.hm-projectBox section ul li .img-fluid {
  max-width: 30px;
  flex: 0 0 30px;
}

.hm-projectBox section ul li p {
  margin-bottom: 0;
  padding-left: 10px;
  font-weight: 200;
}

.hm-projectBox section ul li p small {
  display: table;
  color: var(--orange);
}

/*custom swiper controls*/
.project-next.swiper-button-next,
.project-prev.swiper-button-prev {
  height: 70%;
  width: 30px;
  border-radius: 30px;
  background: var(--blue);
  margin-top: 0;
  color: var(--white);
  transition: all 300ms ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

.project-next.swiper-button-next {
  right: -15px;
}

.project-prev.swiper-button-prev {
  left: -15px;
}

.project-next.swiper-button-next:hover,
.project-prev.swiper-button-prev:hover {
  background: var(--orange);
}

.project-next.swiper-button-next:after,
.project-prev.swiper-button-prev:after {
  font-size: 20px;
}
/*custom swiper controls*/

.hm-featuresBox {
  display: flex;
}

.hm-features {
  width: 65%;
  background: #040e2a;
  padding: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.featIcons {
  display: flex;
  flex-wrap: wrap;
}

.featIcons li {
  width: 50%;
  flex-grow: 1;
  padding: 0px 20px 30px 0;
}

.featIcons li .img-fluid {
  max-width: 50px;
  margin-bottom: 20px;
}

.featIcons li article h6 {
  color: var(--orange);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}

.featIcons li article p {
  margin-bottom: 0;
  font-weight: 300;
  width: 80%;
}

.families {
  width: 100%;
  padding: 30px 20px 20px;
  margin: 30px 0 60px;
  background: linear-gradient(45deg, var(--orange), #dfad00, var(--orange));
  text-align: center;
  color: #000;
}

.families h5 {
  font-weight: 400;
}

.families h2 {
  font-weight: 200;
  font-size: 3.5rem;
  margin-bottom: 0;
}

.hm-features .star {
  width: 300px;
  opacity: 0.05;
}

.tower-img {
  width: 35%;
  padding: 5rem 0 0;
  background: linear-gradient(#a183a2, #4a5477);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#tower-img2 {
  position: absolute;
  top: 30rem;
  padding: 0 16%;
  transition: all 500ms ease;
}

/* Connectivity */
.locality-icon {
  width: 50%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.locality-icon #location-icon {
  width: 70%;
  margin-bottom: -24%;
  position: relative;
  z-index: 1;
}
.loc-connectivity-list ul li {
  display: flex;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.loc-connectivity-list ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.loc-connectivity-list ul li h2 {
  font-size: 4.5rem;
  font-weight: 100;
  line-height: 0.75;
  flex: 0 0 100px;
}
.loc-connectivity-list ul li h5 {
  text-transform: uppercase;
  font-weight: 400;
}
/* Connectivity */

/*Testimonials*/
.testim-bg {
  height: 100%;
  background: url(../images/collage.jpg) 0 0 no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scroll_move 20s linear infinite;
}

@keyframes scroll_move {
  50% {
    background-position: 50% 0;
  }
}

.testim-bg .heading {
  margin-bottom: 0;
}

.testimonial-slider {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

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

/* .testimText .quotation-mark{
	position:absolute;
	width:70px;
	pointer-events:none;
	opacity:0.15;
}

.testimText .quotation-mark.left{
	top:20px;
	left:10px;
}

.testimText .quotation-mark.right{
	bottom:20px;
	right:10px;
} */

.flipY {
  transform: rotateY(180deg);
}

.testimText section {
  padding: 2rem 3rem 6rem;
  text-align: center;
}

.testimText .testim-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.testimText section p {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

.testimText .testimName {
  margin-top: 30px;
}

.testimText .testimName h5 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 3px;
}

.testimText .testimName small {
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
}

.swiper-button-next,
.swiper-button-prev,
.carousel-control-next.sm-control,
.carousel-control-prev.sm-control {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  opacity: 1;
  transition: all 300ms linear;
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.carousel-control-next.sm-control:hover,
.carousel-control-prev.sm-control:hover {
  background: var(--blue);
}
.carousel-control-next.sm-control {
  right: 10px;
}
.carousel-control-prev.sm-control {
  left: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}
/*Testimonials*/

/*Footer*/
.footContact {
  display: flex;
  text-align: left;
  background: 110% 40px/ 230px no-repeat;
}

.footContact ul li a {
  font-size: 16px;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  color: var(--gray);
  font-weight: 600;
}

.footContact ul li a i {
  margin-right: 10px;
  color: var(--orange);
}
.footContact ul li a:hover {
  color: var(--orange);
}

.footer-area {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: var(--blue);
  color: var(--white);
}
.footer-area a {
  color: var(--white);
  font-size: 12px;
  transition: all 300ms ease;
}
.footer-area a:hover {
  color: var(--orange);
}

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

.footLogo {
  width: 70px;
  margin-bottom: 20px;
}

.footAbout section h2 {
  font-weight: 600;
  font-size: 25px;
}

.footAbout section ul {
  display: flex;
  margin: 30px 0 20px;
}

.footAbout section ul li {
  padding: 0 15px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-right: 1px solid #fff;
  line-height: 1;
}

.footAbout section ul li:first-child {
  padding-left: 0;
}

.footAbout section ul li:last-child {
  padding-right: 0;
  border-right: none;
}

.footAbout section ul li a {
  font-size: 10px;
}

.footBox {
  display: flex;
  justify-content: center;
}

.footBox h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 20px;
  text-transform: capitalize;
}

.footBox ul {
  padding-right: 40px;
}

.footBox ul:last-child {
  padding-right: 0;
}

.footBox ul li a {
  display: inline-block;
  padding: 5px 0;
}

.footBox.footSocial ul li a i {
  font-size: 18px;
}

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

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

/* Inside */
.pageHeader {
  padding: 2px;
  background-color: var(--orange);
}

.pagemenu {
  display: flex;
}

.pagemenu .pagelink {
  flex: 1 0 0;
}

.pagemenu .pagelink a {
  text-align: center;
  padding: 1.25rem;
  display: block;
  text-transform: uppercase;
  color: #fff;
  transition: all 300ms ease-in-out;
}

.pagemenu .pagelink a:hover {
  background-color: var(--blue);
}

.menuArrowBtn{
  background-color: var(--blue);
  color: #fff;
}

.menuArrowBtn:focus{
  color: #fff;
}

.project-logo{
  width: 200px;
}

.astralisOverviewContainer{
  width: 90%;
}

.overview-tower-img {
  position: absolute;
  right: 3rem;
  width: 150px;
    bottom: 0;
}

.overview-tower-img.queen-tower {
  top: auto;
  bottom: 0;
  width: 180px;
}

.overview-tower-img.queen-tower img{
  height: 100%;
  object-fit: cover;
  object-position: 0 90px;
}

.overview-tower-img.astralis-tower {
  width: 280px;
  right: 0;
  bottom: 0;
  top: auto;
  z-index: -1;
}

.overview-tower-img.astralis-tower img{
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.pointers {
  margin-top: 4rem;
}

.pointers .inner {
  border: solid var(--orange);
  border-width: 1px 0;
}

.statPoints {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-right: 1px solid var(--orange);
}

.statPoints:last-of-type {
  border-right: 0;
}

.statPoints h3 {
  font-weight: 800;
  color: var(--blue);
}

.fbBox {
  width: 25%;
  padding: 0 10px;
}

.fbBox .img-fluid {
  background-color: #fff;
  padding: 1rem;
}

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

.fbBox a:hover .img-fluid img {
  transform: scale(0.85, 0.85);
}

.fbBox .fpDetails {
  color: #fff;
  text-align: center;
  margin-top: -1.25rem;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.fbBox .fpDetails h6 {
  display: block;
  padding: 8px;
  background-color: var(--orange);
  border-radius: 30px;
}

.swiper-pagination{
	bottom: 0 !important;
}
.bg-dark .swiper-pagination-bullet{
	background-color: #fff;
}
.swiper-pagination-bullet-active{
	background-color: var(--orange) !important;
}

.scroller {
  overflow: auto;
  padding-right: 10px;
}

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

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #cfcfcf;
  border-radius: 10px;
}

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

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

/* amenities */
.amenities-details {
  height: 600px;
}
.amenities-box {
  padding: 1.25rem;
  background-color: #f8f4f1;
  display: flex;
  margin-bottom: 1.25rem;
}
.amenities-box:last-of-type {
  margin-bottom: 0;
}

.amenities-box .img-fluid {
  max-width: 60px;
  flex-basis: 60px;
}
.amenities-box article {
  max-width: calc(100% - 60px);
  flex-basis: calc(100% - 60px);
  padding-left: 1.25rem;
}
/* amenities */

/* specifications */
.specification-box .amenities-box {
  /* padding: 0; */
  background-color: rgb(255 255 255 / 10%);
}
.specification-box .amenities-box .img-fluid {
  filter: hue-rotate(175deg) brightness(10) contrast(0.6) opacity(0.9);
}
/* specifications */

.location-content .inner {
  padding-right: 3rem;
}

.attraction-slider {
  padding-bottom: 5rem;
}

.imgBox {
  width: 38%;
}

.imgBox .inner {
  position: relative;
  -webkit-box-reflect: below 0px
    linear-gradient(
      transparent,
      transparent,
      transparent,
      transparent,
      rgba(0, 0, 0, 0.35)
    );
  z-index: 1;
}

.imgBox .inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgb(0 0 0 / 60%));
}

.imgBox .inner .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 10px;
}

.iconBox {
  margin: 5px 0;
}

.iconBox .inner {
  height: 100%;
  background-color: rgb(255 255 255 / 80%);
  -webkit-backdrop-filter: blur(2px) brightness(2.5);
  backdrop-filter: blur(2px) brightness(2.5);
  color: var(--gray);
  text-align: center;
  box-shadow: 4px 2px 32px 0 rgb(0 0 0 / 35%);
}

.iconBox .inner .img-fluid {
  background-color: var(--orange);
  padding: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 10% 100%, 0 70%);
}

.iconBox .inner .img-fluid img {
  max-width: 50px;
  margin: 0 auto;
  filter: brightness(50) grayscale(1);
}

.iconBox .inner p {
  margin-bottom: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  padding: 1rem;
}
/* Inside */

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

/* Gallery */
.toggle-header{
  gap: 5px;
}
.btn.toggleBtn{
  border-radius: 0;
  border-color: rgb(0 0 0 / 10%);
}
.btn.toggleBtn:hover,
.btn.toggleBtn.activeBtn{
  background-color: var(--orange);
  color: var(--blue);
}
.galBox:not(.display){
  display: none;
}

.galBox .inner{
  display: block;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.galBox .inner:hover{
  color: var(--blue);
}

.galBox .inner::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3), #fff) 0 0 / 100% 200%;
  z-index: 2;
  transition: all 300ms ease-in-out;
}

.galBox .inner:hover::before{
  background-position: 0 98%;
}

.galBox .inner small{
  position: absolute;
  right: 10px;
  bottom: 5px;
  font-size: 10px;
  z-index: 3;
}

.galBox .inner .title{
  position: absolute;
  bottom: 5px;
  left: 10px;
  z-index: 3;
  font-weight: 700;
}
/* Gallery */

/* contact */
.noBanner{
  padding: 8rem 0 1rem;
  z-index: 1;
}

.noBanner::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(4 14 42 / 90%);
}

.noBanner img{
  top: 0;
  z-index: -1;
}

.noBanner .page-title{
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  font-weight: 100;
  text-transform: uppercase;
}

.addressBox ul li{
  margin-bottom: 10px;
}

.addressBox ul li a{
  display: flex;
  align-items: baseline;
  gap: 0 8px;
  color: inherit;
}

.addressBox ul li a:hover span{
  text-decoration: underline;
}

.addressBox ul li a i{
  max-width: 20px;
  flex: 0 0 20px;
  color: var(--orange);
}

.mapContainer iframe{
  height: 400px;
}
/* contact */

/* about */
.overview-icon {
  width: 200px;
  margin: 0 auto 1rem;
}
.hm-overview-bg::before{
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/star2.png) center / 40% no-repeat;
  z-index: -1;
  opacity: .04;
  filter: grayscale(1);
}
.overview-img img{
  width: 70%;
  margin: 0 auto;
}
.overviewText h5{
  color: var(--blue);
  margin-bottom: 0;
}

#walkthrough{
  opacity: 0.2;
  transition: all 500ms linear;
}

.playBtn {
  position: absolute;
  width: 80px;
  margin: 0 auto;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  transition: all 300ms;
  opacity: 0.8;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
}

.playBtn:focus{
  outline: none;
}

.playBtn:hover {
  opacity: 1;
}

.partner-logo{
  text-align: center;
}

.partner-logo .inner{
  height: 100%;
  padding: 1.25rem;
  background-color: var(--blue);
  color: #fff;
  transition: all 300ms ease-in-out;
}

.partner-logo .img-fluid{
  height: 100px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  mix-blend-mode: lighten;
}

.partner-logo .img-fluid img{
  height: auto;
  width: auto;
  max-height: 80%;
  max-width: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.partner-logo .inner p small{
  display: block;
  text-transform: uppercase;
  color: var(--orange);
}
/* about */

.list li {
  padding-left: 25px;
  position: relative;
  z-index: 1;
  list-style: none;
  margin-bottom: 8px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  background: url(../images/bullet.png) center / 100% no-repeat;
}

/*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;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.fadeIn {
  opacity: 1;
}
.layout.number.text-left {
    display: flex;
    flex-wrap: wrap;
}
.layout.number.text-left li{
	width:33%;
	margin:5px 0;
}
/*transformation Animation*/
.scroll-news
{  
    position: fixed;
    width: 100%;
    background: rgb(0 0 0 / 75%);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 9;
    bottom: 0;
    padding: 10px;
    color: #fff;
    left: 0;
    right: 0;
}
.scroll-news h6
{  
  margin-bottom: 0;
}
.scroll-news a
{  
    color: #fff;
    display: flex;
    gap: 8px;
}
.empoweredcommittee
{
  margin-bottom: 4rem;
}
.empoweredcommittee img
{
      margin-bottom: 1rem;
    border: 1px solid #13162c;
}
.scroll-news a img
{  
  width: 30px;
}
.modal.show
{
  z-index: 99999;
}
.modal-open .modal {
    z-index: 999999;
}
/*responsive*/
@media (max-width: 1200px) {
}

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

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

@media (max-width: 768px) {
.layout.number.text-left li{
	width:50%;
}
}

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

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

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

@media (max-width: 480px) {
.layout.number.text-left li{
	width:100%;
}
}

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

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

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