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

:root {
  --primary-color: #425951;
  --body-color: #181818;
  --vibrant-color: #dbffe5;
  --light: #f2f7ff;
  --facebook: #4267b2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #ff0000;
  --whatsapp: #25d366;
  --instagram: #c92bb7;
  --josefin: "Oswald", sans-serif;
  --golden-gradient: radial-gradient(ellipse farthest-corner at right bottom,
      #dbffe5 0%,
      #7ba587 8%,
      #425951 30%,
      #243b33 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #a6fbbe 8%,
      #7ba587 25%,
      #425951 62.5%,
      #243b33 100%);
  --golden-gradient-hover: radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #a6fbbe 8%,
      #7ba587 25%,
      #425951 62.5%),
    radial-gradient(ellipse farthest-corner at right bottom,
      #dbffe5 0%,
      #7ba587 8%,
      #425951 30%,
      #243b33 40%,
      transparent 80%);
}

body {
  font: 400 1rem "Open Sans", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  background:#1e1e1e;
  color: #fff;
}

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

.font-weight-bolder {
  font-weight: 800 !important;
}

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

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

a {
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}

a.bg-primary:hover {
  background-color: var(--primary-color) !important;
}

html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  object-fit: cover;
  display: block;
}

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

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

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

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

/*header*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #0f0e0e;
  box-shadow: 0 0 4px #fff;
  padding: 10px 0;
  z-index: 997;
  transition: all 300ms ease-in-out;
}

.header.fixed {
  background-color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.header .d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
}

.logo img {
  width: 120px;
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 1px solid rgb(0 0 0 / 10%);
}

.estates-logo {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.estates-logo span {
  font-size: .45em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
}

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

.navi ul {
  gap: 0 10px;
}

.navi li a {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px;
  font-weight: 600;
  position: relative;
  transition: all 300ms ease-in-out;
}
.navi li a:hover {
  color: #fe805d !important;
}

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

.header.fixed .navi li a {
  font-size: 12px;
}

.navi li a i {
  color: #ffffff;
}

.menuBtn {
  height: 40px;
  background-color: transparent;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.menuBtn .menuLine {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  width: 26px;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn:hover {
  color: #000;
}

.menuBtn .menuLine::before,
.menuBtn .menuLine::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn:hover .menuLine::before,
.menuBtn:hover .menuLine::after {
  opacity: 0.75;
}

.menuBtn .menuLine::before {
  width: 100%;
}

.menuBtn .menuLine::after {
  width: 70%;
}

.menuBtn:hover .menuLine::after {
  width: 85%;
}

.header.fixed .menuBtn .menuLine::before,
.header.fixed .menuBtn .menuLine::after {
  background-color: var(--body-color);
}

.menuBtn.closeMenuBtn {
  gap: 2px;
}

.menuBtn.closeMenuBtn .menuLine::before {
  -webkit-transform: rotate(45deg) translate(3px, 2px);
  transform: rotate(45deg) translate(3px, 2px);
}

.menuBtn.closeMenuBtn .menuLine::after {
  width: 100%;
  -webkit-transform: rotate(-45deg) translate(3px, -2px);
  transform: rotate(-45deg) translate(3px, -2px);
}

.heading {
  display: table;
  font-size: 100px;
  line-height: 0.8;
  margin-bottom: 20px;
}

.heading .h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.heading .h1 span {
  color: var(--primary-color);
}

.readmore {
  width: 100%;
  margin-top: 2.5rem;
  display: flex;
  gap: 5px;
  align-items: center;
}

.readmore a, .readmore .button  {
  display: table;
  padding: 10px 15px;
  min-width: 140px;
  color: #fff;
  background: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
  position: relative;
  z-index: 1;
}

.readmore button {
  border-radius: 0;
  border: none;
  font-size: 14px;
  background: none;
}

.readmore a:hover {
  background-position: right;
}

.readmore .button.w-auto {
  min-width: 1px;
}

.readmore .button.bg-white {
  color: var(--body-color);
  background: #fff !important;
}

.readmore .button.bg-white:hover {
  color: #fff;
  background: var(--body-color) !important;
}

.readmore .button.bg-whatsapp {
  color: #fff;
  background: #07b664;
}

.readmore .button.bg-whatsapp:hover {
  background: var(--body-color) !important;
}

.readmore.d-flex {
  justify-content: center;
  gap: 10px;
}

.blink {
  -webkit-animation: blink 1s linear alternate infinite;
  animation: blink 1s linear alternate infinite calc(var(--i) * 100ms);
}

@keyframes blink {
  50% {
    background-color: var(--youtube);
  }
}

.header .fa-facebook-f {
  background: var(--facebook);
}

.header .fa-x-twitter {
  background: var(--twitter);
}

.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.banner video
{
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.banner
{
  position: relative;
}
.banner-text
{
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  width: 90%;
  text-align: center;
}
.banner-text h1
{
  color: #fe805d;
  font-weight: 700;
  letter-spacing: 2px;
}
h1, h2
{
  color: #fe805d;
}
.about-img {
  position: relative;
}

.about-img:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  border: 2px solid #fe805d;
  z-index: -1;
}

.about-img img {
  border-radius: 5px;
  -webkit-transform: translate(30px, 30px);
  transform: translate(30px, 30px);
}
.about-img1 img {
  border-radius: 5px;
  -webkit-transform: translate(10px, 10px);
  transform: translate(10px, 10px);
}
.bglight {
  background: #141414;
}

.book-btn a{
  display: flex;
  background: #ee1b24;
  color: #fff;
  gap: 6px;
  margin-bottom: 8px;
  align-items: center;
  cursor: pointer;
}

.book-btn:hover {
  background: #fe805d;
}

.book-btn p {
  margin-bottom: 0;
}

.book-icon {
  width: 40px;
}

.book-text {}

.reviews {
  font-weight: 600;
}

.reviews-btn {
  border: 1px solid #ee1b24;
  padding: 5px 9px;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
}

.reviews-btn:hover {
  background: #ee1b24;
  color: #fff;
  transition: all ease-in-out 500ms;
}

.galleryslider .swiper-button-next {
  right: 50px;
  left: auto;
  top: auto;
  bottom: 0;
  background: #fff;
  width: 44px;
}

.galleryslider .swiper-button-prev {
  right: 112px;
  left: auto;
  top: auto;
  bottom: 0;
  background: #fff;
  width: 44px;
}

.galleryslider .swiper-button-prev:after,
.galleryslider .swiper-button-next:after {
  height: 20px;
  font-size: 23px;
  color: #ee1b24;
  font-weight: bold;
}
.eventsslider
{
  padding-bottom: 60px;
}
.events-box {
  
  border: 1px solid #ee1b24;
  padding: 20px;
  display: inline-block;
  cursor: pointer;
  height: 100%;
  min-height: 85px;
  align-items: center;
  display: flex;
}
.events-box p{
  margin-bottom: 0;
}
.events-box-date
{
  font-weight: 600;
  color: #ee1b24;

}
.eventsslider .swiper-button-next {
  right: calc(50% - 50px);
  left: auto;
  top: auto;
  bottom: 0;
  background: #fff;
  width: 44px;
  border: 1px solid #ee1b24;
}

.eventsslider .swiper-button-prev {
  right: 50%;
  left: auto;
  top: auto;
  bottom: 0;
  background: #fff;
  width: 44px;
  border: 1px solid #ee1b24;
}

.eventsslider .swiper-button-prev:after,
.eventsslider .swiper-button-next:after {
  height: 20px;
  font-size: 23px;
  color: #ee1b24;
  font-weight: bold;
}
/*Footer*/
.footer-area {
  background-color: var(--body-color);
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 14px;
  padding-bottom: 0 !important;
}

.footer-area::before{
  content: '';
  position: absolute;
  background: url(../images/logo-icon.svg) top left / 40% no-repeat;
  inset: 0;
  filter: invert(1) opacity(0.02);
  z-index: -1;
}

.footer-area a{color:#fff;}
.footer-area a:hover{color: var(--secondary-color);}

.footer-logo{width: 120px;}

.footerAbout .footer-title{
  font-size: 14px;
  font-family: var(--serif);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footerAbout .footerSocial {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.footerAbout .footerSocial li a {
  color: #fff;
  font-size: 14px;
  display: block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
  text-align: center;
}

.footerAbout .footerSocial li a:hover {
  background-color: var(--light);
}

.footerSocial li a:hover .fa-facebook-f{
	color: var(--facebook);
}
.footerSocial li a:hover .fa-linkedin-in{
	color: var(--linkedin);
}
.footerSocial li a:hover .fa-twitter{
	color: var(--twitter);
}
.footerSocial li a:hover .fa-youtube{
	color: var(--youtube);
}
.footerSocial li a:hover .fa-whatsapp{
	color: var(--whatsapp);
}
.footerSocial li a:hover .fa-instagram{
	color: var(--instagram);
}

.footerBox ul li {
  margin: 8px 0;
}

.footerBox ul li a {
  font-size: 14px;
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
  transition: all 300ms ease-in-out;
}

.footerBox .footerLinks li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 1px solid;
  transition: all 300ms ease-in-out;
}

.footerBox .footerLinks li a:hover:before {
  width: 100%;
}

.footer-area .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin: 1.25rem 0;
  border: solid rgb(255 255 255 / 15%);
  border-width: 1px 0;
}

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

.footer-area .bottom p:last-child {
  justify-content:center;
}

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

.button-top {
  background: var(--primary-color);
  position: fixed;
  cursor: pointer;
  left: 10px;
  bottom: 10px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  z-index: 99;
}

.button-top:hover {
  background: var(--secondary-color);
  color: var(--body-color);
}
/* 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;
} 

.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;
}

/*transformation Animation*/

.contactBox h4 {
  margin-bottom: 1rem;
}

.contactBox ul li{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.contactBox ul li:last-child{margin-bottom: 0;}

.contactBox ul li i{
  color: var(--secondary-color);
  width: 20px;
}

.contactBox ul li a{
  color: #fff;
}

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

/* blogs */
.swiper-slide.blogBox {
  height: auto;
}

.blogBox section {
  height: 100%;
  border-radius: 10px;
  background-color: var(--light);
}

.blogBox section, .blogBox section article {
  transition: all 300ms ease-in-out;
}

.blogBox section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0 0 0 / 10%);
}

.blogBox section .img-fluid {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.blogBox section .img-fluid i {
  position: absolute;
  right: 20px;
  top: 0;
  height: 50px;
  width: 45px;
  border-radius: 0 0 5px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/icons/link.png) center / 24px no-repeat var(--corp-color);
  z-index: 2;
}

.blogBox section .img-fluid img {
  height: 200px;
  object-fit: contain;
  background: #ccc;
}

.blogBox section article {
  padding: 20px;
}

.blogBox section article h5 a {
  color: var(--body-color);
  font-size: 17px;
  font-family: var(--font-bold);
}

.blogBox section article h5 a:hover {
  color:#131212;
}

.blogBox section article ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.blogBox section article ul li {
  padding: 0 10px;
  border-right: 1px solid;
  font: 700 13px/1 var(--font-bold);
  color: rgb(0 0 0 / 70%);
  text-transform: uppercase;
}

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

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

.blogBox section article ul li a {
  color: var(--corp-color);
}

.blogBox section article ul li a:hover {
  color: #191919;
}

.blogBox section article p {
  font-size: 14px;
  margin-bottom: 0;
}
	.menuBtn {
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  width: 25px;
  height: 25px;
  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;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

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

.menu-enquire {
  display: flex;
  gap: 5px;
}

.menu-enquire {}

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

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

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

.menuContainer {
  position: fixed;
  top: 0;
  width: 320px;
  right: 0;
  bottom: 0;
  height: 100%;
  overflow: auto;
  background-color: #fff;
  padding: 70px 20px 20px;
  display: none;
  z-index: 999;
  top:52px;
}

.menuContainer ul li a {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray);
  padding: 10px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.dnone{ display:none;}
.heading.d-flex .headingToggleBtn {
    font-size: 2rem;
    color:rgba(255,255,255,0.59);
    position: relative;
    padding: 0;
    border: 0;
    font-weight: 700;
    background-color: transparent;
    text-transform: uppercase;
    padding:0 21px;
    cursor: pointer;
}
.heading.d-flex .headingToggleBtn.active {
    color: #fff;
    font-size: 3rem;
}
.heading.d-flex .headingToggleBtn::after {
    content: '';
    position: absolute;
    inset: 0 0 0 auto;
    width: 1px;
    height: 100%;
    border-radius: 50%;
    background-color: #DCDBDB;
    transform: rotate(30deg);
}

.heading.d-flex .headingToggleBtn:last-of-type:after{
  display: none;
}
.modal-title {
  color: #000;
}
@media screen and (max-width:1024px)
{
.navi ul {
    gap: 0 4px;
}
.events-box-man5 .events-box-man
{
	flex-wrap:wrap;
}
.events-box-man5 .imgbox
{
    width: 100%;
}
.events-box-man5 .imgbox img
{
	width:100%;
}
}

@media screen and (max-width:500px)
{
.book-btn {
    width: 210px;
}
.book-img img
{
	height:450px;
  object-fit: contain;
}
.galleryslider p
{
  text-align: justify;
}
.heading.d-flex .headingToggleBtn.active {
  color: #fff;
  font-size: 2rem;
}
.blogBox section article ul li {
  font-size: 12px;
}
.blogBox section .img-fluid img {
  height: auto;
  max-height: 200px;
}
}