:root {
  --color-primary: #000000;
  --color-sec:#FFFFFF;
}

*,
*::before,
*::after {
  margin: 0;
  box-sizing: border-box;
/*  font-family: sans-serif;*/
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.4;
}

button {
  cursor: pointer;
}



h1,h2,h3,h4,h5,h6,p{
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

iframe {
  vertical-align: bottom;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}

img,
svg {
  vertical-align: middle;
}

.container,
.container-big {
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.container {
  max-width: 1430px;
}

.container-big {
  max-width: 1610px;
}

.whatsapp {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index:9;
}

/* -------------------------------------------------------------- */

.zoom-effect {
  overflow: hidden;
}

.zoom-effect > a {
  display: block;
}

.zoom-effect .zoom {
  position: relative;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  will-change: transform;
}

.zoom-effect:hover .zoom {
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
}

/* -------------------------------------------------------------- */
/* body{
  padding-top:69px;
} */

.header {
  box-shadow: 0 3px 5px 0 rgb(0 0 0 / 7%);
  /* position: absolute; */
  top: 0;
  z-index: 1;
  width: 100%;
  background:#ffffff;
}

.header .container-big {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-icon {
  width: 40px;
  height: 24px;
  z-index: 9;
  display: block;
  position: relative;
  cursor: pointer;
  margin-left: 10px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-icon span {
  background: #000000;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2),
.menu-icon span:nth-child(3) {
  top: 10px;
}

.menu-icon span:nth-child(4) {
  top: 20px;
}

.menu-icon.open span:nth-child(1) {
  top: 10px;
  width: 0;
  left: 50%;
}

.menu-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-icon.open span:nth-child(4) {
  top: 10px;
  width: 0;
  left: 50%;
}

.menu-icon.open span {
  background: #ffffff;
}

.submenu li + li {
  margin-top: 10px;
}

.navigation-ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}

.navigation-link {
  font-size: 18px;
  display: block;
  text-transform: uppercase;
  padding-top: 27px;
  padding-bottom: 27px;
}

.navigation-ul li:not(:last-child) .navigation-link span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: #000;
  transition: all 0.3s ease-in-out;
}

.navigation-link span {
  position: relative;
}

.navigation-ul li:not(:last-child) .navigation-link:hover span::after {
  width: 100%;
}

.navigation-ul li:last-child .navigation-link {
  color: #ffffff;
  background: #000000;
  padding: 27px 45px;
  transition: background 0.3s ease-in-out;
}

.navigation-ul li:last-child .navigation-link:hover {
  background: var(--color-primary);
}

/* ------------------------------------------------------------------ */

.scroller {
  text-align: center;
  display: block;
}

.scroller .text {
  font-size: 18px;
  font-weight: 400;
  display: block;
  width: 100%;
}

.scroller .shape {
  width: 20px;
  height: 30px;
  display: inline-block;
  border: 1px solid;
  border-radius: 13px;
  position: relative;
}

.scroller .shape::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 25%;
  width: 2px;
  height: 6px;
  transform: translate(-50%, -50%);
  background: #000000;
  animation: anim 2s infinite;
}

@keyframes anim {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------------ */

.discover-section {
  padding-top: 30px;
}

.discover-title {
  text-align: center;
}

.discover-title h2 {
  font-size: 90px;
  line-height: 75px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.discover-title span {
  font-size: 40px;
  font-weight: 300;
  display: block;
  color: var(--color-primary);
  line-height: 1;
  margin-top: 10px;
}

.discover-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 70px;
}

.discover-list-item {
  overflow: hidden;
  border-radius: 20px;
  display: block;
}

.discover-list-image {
  position: relative;
  height: 100%;
}

.discover-list-image .icon {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}
.owl-carousel .discover-list-image .icon{
  width:auto;
}

.discover-list-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 20%,
    rgb(255 255 255 / 0%) 100%
  );
}

.discover-list-image span {
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 500;
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  color: #ffffff;
  z-index: 1;
  padding-right:10px;
}

.discover-list-image span img {
  margin-left: 10px;
}

.owl-carousel .discover-list-image span img{
  width: auto;
}

.intersted {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
  background: #000000;
  border-radius:20px;
}

.intersted-content {
  position: absolute;
  right: 100px;
  bottom: 65px;
  z-index:2;
}

.intersted-content h3 {
  font-size: 55px;
  color: var(--color-primary);
  text-transform: uppercase;
  line-height: 1.1;
}

.link-button {
  margin-top: 25px;
  display: flex;
  align-items: center;
  border: 1px solid #ffffff;
  color: #ffffff;
  width: fit-content;
  padding: 14px 30px;
  border-radius: 100px;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.link-button img {
  margin-left: 10px;
}

.link-button:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.dubai-show {
  margin-top: 88px;
}

.side-block {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  align-items: center;
}

.side-block-image,
.side-block-content {
  width: 50%;
}

.side-block-image img {
  width: 100%;
}

.side-block-content {
  padding-right: 50px;
}

.side-block-content h2 {
  font-size: 65px;
  line-height: 1;
  margin-bottom: 20px;
}

.side-block-content p {
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.fill-button,
.outline-button {
  min-width: 226px;
  border: 1px solid #2F503B;
  width: fit-content;
  padding: 14px 30px;
  border-radius: 100px;
  display: inline-block;
  text-align: center;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.fill-button span,
.outline-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.fill-button img,
.outline-button img {
  margin-left: 10px;
}

.fill-button {
  color: #ffffff;
  background: var(--color-primary);
}

.outline-button {
  margin-left: 30px;
  display: flex;
  justify-content: center;
  background:#ffffff;
}

.fill-button:hover,
.outline-button:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: white;
}

.prime-location {
  margin-top: 80px;
  text-align: center;
}

.prime-location h2 {
  font-size: 140px;
  font-weight: 100;
  line-height: 0.8;
  margin-bottom: 30px;
}

.banner-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.banner-logo {
  margin-bottom: 20px;
}

.banner-image {
  width: 45%;
  position: relative;
  z-index: 0;
  padding-right: 40px;
  min-height: 700px;
  display: flex;
}

.banner-image .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 30px;
}
.banner-image .main-image-about {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 15%;
}
img.main-image-cv {
    margin-top: 13%;
    margin-left: 13%;
}


.banner-image .play-icon {
  position: absolute;
  left: -40px;
  top: 38%;
  transform: translate(-50%, -50%);
  animation: zoom 2s infinite;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.banner-image::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 320px;
  height: calc(100% - 50px);
  background: #F5F5F7;
  border-radius: 0 0 40px 40px;
  z-index: -1;
}

.banner-content {
  width: 50%;
}

.banner-content .sub-text {
  font-size: 50px;
  line-height: 0.9;
}

.banner-content .sub-text span {
  font-size: 35px;
  margin-top: 5px;
  color: var(--color-primary);
  display: block;
}

.banner-content h1 + p {
  margin-top: 20px;
}

.banner-content p + .options {
  margin-top: 20px;
}

.banner-content h1:not(.sub-text) {
  font-size: 90px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.banner-content h1:not(.sub-text) span {
  font-size: 46px;
  line-height: 1.1;
  color: var(--color-primary);
  display: block;
  margin-top: 10px;
}

/* ------------------------------------------------------------------ */

.fancybox-slide--html .submit-details .fancybox-close-small {
  right: 20px;
  top: 20px;
  padding: 3px;
  border: 1px solid;
  border-radius: 100%;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.fancybox-slide--html .submit-details .fancybox-close-small:hover {
  border-color: var(--color-primary);
  background: #9e9e9e70;
}

.submit-details {
  border-radius: 30px;
  width: 100%;
}

.submit-details.fancybox-content {
  padding-top: 0;
}

.submit-details-inside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.submit-details-left {
  width: 245px;
  background: #000000;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  position: relative;
}

.submit-details-left .text {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 20px;
  width: fit-content;
}

.submit-details-left h5 {
  color: #ffffff;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1;
}

.submit-details-left span {
  color: #C4A563;
}

.submit-details-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 40px;
  padding: 40px 0 60px 0;
}

.submit-details-list li {
  text-align: center;
}

.submit-details-list span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 100;
  display: block;
  line-height: 1.1;
  margin-top: 10px;
}

.submit-details-right {
  width: calc(100% - 245px);
  padding-left: 45px;
  margin-left: auto;
}

.submit-details-right h3 {
  font-size: 48px;
}

.submit-details-right h3,
.submit-details-right h4 {
  text-transform: uppercase;
}
.submit-details-right h4 {
  font-size: 28px;
  font-weight: 100;
  line-height: 1;
}

.submit-details-form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 14px;
  margin-top: 30px;
  max-width: 500px;
}

.submit-details-form input {
  padding: 10px;
  border: 2px solid;
  border-radius: 10px;
}

.submit-details-button {
  display: flex;
  align-items: center;
  width: fit-content;
  font-size: 18px;
  padding: 15px 0;
  background: #000000;
  border: 1px solid #000000;
  width: 226px;
  font-weight: 400;
  margin-top: 15px;
  color: #ffffff;
  border-radius: 100px;
  margin-left: auto;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
  justify-content: center;
}

.submit-details-button img {
  margin-left: 10px;
}

.submit-details-button:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* ------------------------------------------------------------------ */

.footer {
  margin-top: 55px;
}

.video-poup.fancybox-content {
  padding: 0;
  border-radius: 10px;
}

.fancybox-slide--html .video-poup .fancybox-close-small {
  z-index: 9;
  padding: 1px;
  border-radius: 50%;
  opacity: 1;
  width: 25px;
  height: 25px;
  background: #ffffff;
}

.pre-footer {
  padding-bottom: 40px;
  background: #000000;
}

.pre-footer .bottom-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-icons {
  display: flex;
  align-items: center;
  row-gap: 10px;
}

.social-icons li + li {
  margin-left: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #65696f;
  border-radius: 50%;
  transition: background 0.3s ease-in-out;
}

.social-icons a:hover {
  background: var(--color-primary);
  border: 2px solid #9e9e9e;
}

.copy-rights {
  font-size: 14px;
  color: #ffffff;
}

.adtion-links {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.adtion-links li:not(:first-child) {
  margin-left: 5px;
}

.adtion-links a {
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

.adtion-links a:hover {
  color: #9e9e9e;
}

.navigation-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 12px;
  margin: auto;
}

.navigation-footer a:not(:first-child) {
  margin-left: 50px;
}

.navigation-footer a {
  color: #ffffff;
  display: inline-block;
  transition: color 0.3s ease-in-out;
}

.navigation-footer a:hover {
  color: #9e9e9e;
}

.footer-logo {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.footer-logo img {
  padding: 0 15px;
  background: #000000;
  position: relative;
  z-index: 1;
}

.footer-logo::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #ffffff;
}

.footer {
  background: #000;
  padding: 60px 0 110px 0;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  justify-content: space-between;
}

.footer-form-side h3 {
  color: var(--color-sec);
  font-size: 40px;
}

.footer-form-side h4 {
  font-size: 21px;
  color: #ffffff;
  margin-bottom: 35px;
  font-weight: 100;
}

.footer-form {
  max-width: 596px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
}

.footer-form input {
  width: 100%;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 10px 20px;
  height: 48px;
  background: transparent;
  border-radius: 10px;
}

.footer-form input::placeholder {
  color: #ffffff;
  opacity: 1;
}

.footer-form input::-ms-input-placeholder {
  color: #ffffff;
}

.footer-form-button {
  width: 226px;
  display: flex;
  padding: 13px 0;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  border: none;
  margin: 20px auto 0 auto;
  border-radius: 100px;
  background: var(--color-primary);
  transition: opacity 0.3s ease-in-out;
  border: 1px solid #ffffff;
}

.footer-form-button:hover {
  opacity: 0.8;
}

.footer-form-button img {
  margin-left: 10px;
}

.owner-information {
  display: flex;
  align-items: center;
  width: 600px;
}

.owner-information .content {
  width: calc(100% - 200px);
  padding-left: 25px;
}

.owner-information .content h4 {
  color: var(--color-sec);
  font-size: 40px;
  text-transform: uppercase;
}

.owner-information .content h5 {
  font-size: 21px;
  font-weight: 300;
  color: #ffffff;
}

.owner-information .content ul {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #ffffff;
}

.owner-information .content li + li {
  margin-top: 18px;
}

.owner-information .content a {
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

.owner-information .content img {
  margin-right: 10px;
}

.owner-information .content a:hover {
  color: var(--color-primary);
}

/* ------------------------------------------------------------------ */
.about-devloper {
  padding: 30px 0;
}

.about-devloper .container {
  display: flex;
  flex-wrap: wrap;
  row-gap:30px;
  justify-content: space-between;
}

.about-devloper-left,
.about-devloper-right {
  width: 45%;
}

.about-devloper-left h2 {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 22px;
}

.about-devloper-left p:not(:last-child) {
  margin-bottom: 20px;
}

.accordion-item-title {
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.accordion-item-title.active {
  color: var(--color-primary);
}

.accordion-item-title img {
  margin-top: -3px;
}

.accordion-item:not(:last-child) {
  padding-bottom: 25px;
  border-bottom: 1px solid;
}

.accordion-item:not(:first-child) {
  padding-top: 24px;
}

.accordion-content {
  font-size: 14px;
  padding-top: 12px;
}

.accordion-content,
.accordion-content:empty {
  display: none;
}

.section-between {
  padding: 30px 0;
}

.section-between .container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.section-between-image,
.section-between-content {
  width: 47%;
}

.section-between-content h2 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;

}

.section-between-content .community{
  font-size:90px;
  line-height:.5;
}

.section-between-content .community span{
  font-size:40px;
  line-height:1;
  color:var(--color-primary);
}

.section-between-content p + p {
  margin-top: 20px;
}

.section-between-content .fill-button {
  margin-top: 25px;
}

.facilty-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top:30px;
}

.facilty-list li {
  width: calc(100% / 6);
  display: flex;
  justify-content: center;
}

.facilty-list img {
  height: auto;
}

/* ------------------------------------------------------------------ */
.gallery-block{
  padding:30px 0;
}

.gallery-title{
  display: flex;
  row-gap:15px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index:0;
}

.gallery-title::after{
  content: "";
  position: absolute;
  top:50%;
  left:0;
  width:100%;
  height:1px;
  background: #000000;
  z-index:-1;
}

.gallery-title h2{
  font-size:40px;
  line-height:1;
  background:#ffffff;
  padding-right:18px;
}

.gallery-buttons{
  display: flex;
  align-items: center;
  background: #ffffff;
}

.gallery-buttons .fill-button{
  margin-left:18px;
}

.gallery-carousel{
  margin-top:30px;
}

.gallery-carousel .owl-item,
.gallery-carousel .item{
  overflow: hidden;
  border-radius:40px;
}

.gallery-carousel button {
  --size: 60px;
  --side: 30px;
  position: absolute;
  top: 50%;
  font-size:0 !important;
  margin-top: -30px;
  width: var(--size);
  height: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.gallery-carousel button.owl-prev {
  left: var(--side);
  background: url(../images/owl-left.png)no-repeat !important;
  background-size: cover !important;
}

.gallery-carousel button.owl-next {
  right: var(--side);
  background: url(../images/owl-right.png) no-repeat !important;
  background-size: cover !important;
}

.tabs-content div:not(:first-child) {
  display: none;
}

.tab-text {
  display: none;
}
.tab-text.active {
  display: block;
}

.counter-block-inside{
  padding:50px;
  background: #000000;
  border-radius:40px;
  text-align: center;
  position: relative;
  //background: url(../images/bg.png) no-repeat;
  background-size: contain;
}

.counter-block-inside .star{
  position: absolute;
  top:0;
  left:60px;
}

.counter-block-inside .title{
  color: var(--color-sec);
  font-size: 30px;
}

.counter-block-inside h2{
  font-size:40px;
  color:#ffffff;
  line-height:1;
}

.counter-block-list{
  display: flex;
  flex-wrap: wrap;
  row-gap:25px;
  margin-top:20px;
}

.counter-block-list li{
  width: calc(100% / 3);
  padding:10px;
}

.counter-block-list li:nth-child(2){
  border-left:1px solid var(--color-sec);
  border-right:1px solid var(--color-sec);
}

.counter-block-list span{
  font-size:65px;
  font-weight: 400;
  color:#ffffff;
  line-height:1;
}
.counter-block-list p{
  font-size:21px;
  color: var(--color-sec);
  text-transform: uppercase;
}

.floor-carousel .item{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 30px;
}

.floor-carousel .item .content,
.floor-carousel .item .image{
  width:100%;
}

.floor-plan{
  margin-top:80px;
}

.floor-plan .title{
  text-align: center;
}

.floor-plan h2{
  font-size:90px;
  line-height: 1;
}

.floor-plan .sub{
  font-size:40px;
  line-height:1;
  color: var(--color-primary);
}

.floor-carousel{
  margin-top:30px;
}

.floor-carousel .content h3 {
  color:#464E55;
  font-size:50px;
  line-height:1;
  margin-bottom:30px;
}


.floor-carousel .content h3 span{
  display: block;
  font-size:18px;
}

.floor-carousel ul li{
  padding:10px 0;
  border-bottom: 1px solid var(--color-primary);
}

.floor-carousel ul li:first-child,
.floor-carousel ul li:first-child p{
  color: var(--color-primary);
}

.floor-carousel ul h5{
  font-size:18px;
}

.floor-carousel ul p{
  width:100%;
  color:#464E55;
  font-size:14px;
}

.floor-carousel ul p span{
  float: right;
}

.owl-dots {
  margin-top:60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-dot{
  width:20px;
  height:20px;
  border-radius:50%;
  background: var(--color-primary) !important;
  transition: width .3s ease-in-out, height .3s ease-in-out, background .3s ease-in-out;
}

.owl-dot:not(.active){
  width:14px;
  height:14px;
  background: #C7C7C7 !important; 
}

.owl-dot:not(:first-child){
  margin-left:10px;
}

.thank{
  position: relative;
}

.thank>img{
  width:100%;
}

.thank .content{
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin: auto;
  text-align: center;
  max-width:630px;
  background:#fff;
  border-radius:20px;
  padding: 50px;
  height: fit-content;
}

.thank .content h5{
  font-size:40px;
  line-height:1;
  text-transform: uppercase;
  margin:10px 0 15px 0;
}

.gray-block{
  padding:50px 0 35px 0;
  background:#F5F5F7;
}

.gray-block .title{
  text-align: center;
}

.gray-block .list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top:50px;
}

.gray-block .list img{
  width:calc(100% / 3)
}

.discover-carousel .owl-stage{
  padding-left:0 !important;
}
/*cls*/
img.map-img {
    width: 100%;
    height: 100%;
}
h1.pro-head {
    font-size: 40px;
    font-weight: normal;
    text-align: center;
}
p.prop-p {
    font-size: 28px;
    font-weight: initial;
    color: #C4A563;
    text-transform: uppercase;
}

a.fill-button:hover {
    background: white;
    color: var(--color-primary);
}
ul.facilty-list img {
  width: 132px;
}
img.options {
    width: 70%;
}
img.circle-group {
    width: 98%;
}
.inner-bg{
    position: absolute;
    top: 30%;
    z-index: -2;
}