@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;700;900&display=swap");
*,
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

:root {
  --main-1: #ef4036;
  --color-1: #262626;
}
::selection {
  color: #ffffff;
  background-color: var(--main-1);
}
::moz-selection {
  color: #ffffff;
  background-color: var(--main-1);
}
body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: var(--color-1);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
textarea {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
a,
a:hover {
  text-decoration: none;
  color: inherit;
}
.header {
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  width: 100%;
  background-color: white;
}
.header-in {
  width: 1600px;
  margin: auto;
  padding: 20px 0px;
}
.header-in img {
  height: 60px;
}
.header-in ul {
  float: right;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
.header-in ul:hover li {
  opacity: 0.4;
}
.header-in ul:hover li.button-li {
  opacity: 1;
}
.header-in ul li:hover {
  opacity: 1;
  transform: scale(1);
  color: var(--main-1);
}
.header-in ul li.button-li:hover {
  opacity: 1;
  transform: scale(1);
}
.header-in li {
  float: left;
  transition: 0.3s;
  list-style: none;
  margin: 0px 0px;
  font-weight: 600;
  letter-spacing: 1px;
}
.header-in li a {
  padding: 0px 25px;
  width: 100%;
  cursor: pointer;
  height: 100%;
  display: block;
}
.header-in li .button-a {
  background-color: var(--main-1);
  color: #ffffff;
  padding: 20px;
  line-height: 10px;
  border-radius: 30px;
  display: inline-block;
  margin-top: -20px;
  margin-bottom: -20px;
  box-sizing: border-box;
  transition: 0.3s;
  border: 3px solid var(--main-1);
}
.header-in ul li .button-a:hover {
  border: 3px solid var(--main-1);
  background-color: transparent;
  color: var(--color-1);
}
.landing-container {
  width: 1600px;
  margin: auto;
  position: relative;
  height: 100%;
}
.landing-section {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.landing-section h1 {
  position: absolute;
  top: 100px;
  opacity: 0.05;
  white-space: nowrap;
  margin: 0;
  font-size: 800px;
  line-height: 800px;
  left: 300px;
}
.content-landing {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  height: calc(100% - 400px);
  transform: translateY(-50%);
}
.content-landing h3 {
  font-size: 40px;
  font-weight: 300;
  margin: 0;
  position: relative;
  z-index: 9;
}
.content-landing h2 {
  font-size: 100px;
  line-height: 80px;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 9;
}
.content-landing h2 n {
  color: var(--main-1);
}
.image-landing {
  width: 60%;
  position: absolute;
  bottom: -250px;
  left: -100px;
  z-index: 1;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 200px;
  z-index: 99;
  transform: translateY(-50%);
  background-color: #ffffff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  z-index: 5;
}
.play-button::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: gray;
  opacity: 0.4;
  transform: scale(1.5);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: play 2s linear infinite;
}
@keyframes play {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }
  90% {
    transform: scale(1.5);
    opacity: 0.1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.play-button::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
}
.play-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  transform: translate(-50%, -50%) scale(0.8);
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 40px solid #262626;
}
.form-landing {
  position: absolute;
  right: 0;
  width: 500px;
  padding: 50px 50px;
  padding-bottom: 80px;
  border-radius: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #262626;
  color: #ffffff;
  box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.15);
}
.form-price {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #ffffff;
  transform: translate3d(-50%, 50%, 100px) rotateX(50deg);
  width: 400px;
  padding: 50px 30px;
  padding-bottom: 80px;
  border-radius: 20px;
  opacity: 0;
  transition: 0.8s;
  box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.15);
  transform-origin: bottom;
}
.form-enq-2 {
  position: relative;
  background-color: #ffffff;
  transform: translate(0px);
  top: 0;
  left: 0;
  width: 400px;
  padding: 50px 30px;
  padding-bottom: 80px;
  border-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  opacity: 1;
  transition: 0.8s;
  box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.15);
}
.price-pop,
.bespoke-pop,
.start-pop {
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  z-index: 999999;
  top: 0;
  left: 0;
  perspective: 1000px;
  transform-style: preserve-3d;
}
.close-x {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
}
.pop-msg {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  perspective: 1000px;
  transform-style: preserve-3d;
  width: 700px;
  max-width: 90%;
  z-index: 99999;
}
.pop-in {
  width: 100%;
  padding: 30px;
  padding-top: 10px;
  padding-bottom: 40px;
  transform: rotateX(0deg);
  animation: pop-1 0.5s 1;
  animation-fill-mode: forwards;
  transform-origin: top;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 30px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: 0.5s;
}
@keyframes pop-1 {
  0% {
    transform: rotateX(-90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
.pop-close .pop-in {
  transform: rotateX(-90deg);
}
.pop-close {
  animation: pop-close 0.2s 1;
  transition-delay: 0.6s;
  animation-fill-mode: forwards;
}
@keyframes pop-close {
  0% {
    display: block;
  }
  100% {
    display: none;
  }
}
.right {
  text-align: right;
}
.button-2 {
  display: inline-block;
  padding: 15px 40px;
  color: #ffffff;
  background-color: var(--main-1);
  border-radius: 30px;
  cursor: pointer;
}
.button-2:hover {
  background-color: #262626;
}
.bg-glass {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%) rotateX(50deg);
  width: 95%;
  height: 95%;
  opacity: 0;
  transition: 0.8s;
  transform-origin: bottom;
}
.bg-glass-2 {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  transition: 0.8s;
  transform-origin: bottom;
}
.price-active .bg-glass {
  opacity: 1;
  transform: translate(-50%, -50%) rotateX(0deg);
}
.price-active .form-price {
  opacity: 1;
  transform: translate3d(-50%, -50%, 10px) rotateX(0deg);
}
.form-landing h2,
.form-price h2 {
  font-size: 50px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 50px;
  font-weight: 300;
}
.form-price h2 {
  font-size: 30px;
}
.form-landing p {
  text-align: center;
  margin: 0;
  margin-bottom: 30px;
  font-size: 20px;
  color: #ffffff;
}
.menu {
  display: none;
}
.form-landing input,
.form-landing select,
.form-price input,
.form-price select {
  padding: 20px;
  padding-top: 25px;
  padding-bottom: 15px;
  font-size: 17px;
  outline: none;
  display: block;
  width: 100%;
  background-color: #f7f9fb;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin: 7px 0px;
  box-shadow: inset 7px 7px 7px rgba(0, 0, 0, 0.04);
}
.form-landing button,
.form-price button {
  font-size: 20px;
  padding: 20px;
  width: 100%;
  margin-top: 5px;
  background-color: var(--main-1);
  color: #ffffff;
  border-radius: 10px;
  border: none;
}
.form-half {
  display: flex;
  flex-wrap: wrap;
  margin-top: -7px;
  margin-right: -5px;
  margin-left: -5px;
}
.form-half .form-div {
  max-width: 50%;
  padding-left: 5px;
  padding-right: 5px;
  flex: 0 50%;
}
.form-div {
  position: relative;
}
.form-div label {
  position: absolute;
  top: 50%;
  pointer-events: none;
  transition: 0.2s;
  transform: translateY(-50%);
  left: 20px;
  font-weight: 500;
  font-size: 17px;
  color: #757575;
}
.form-div input:placeholder-shown + label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  font-weight: 500;
  font-size: 17px;
  color: #757575;
}
.form-div input::placeholder {
  opacity: 0;
  transition: inherit;
}

.form-div input:-ms-input-placeholder {
  opacity: 0;
  transition: inherit;
}

.form-div input::-ms-input-placeholder {
  opacity: 0;
  transition: inherit;
}
.form-div input::-webkit-input-placeholder {
  opacity: 0;
  transition: inherit;
}
.form-div input:focus::-webkit-input-placeholder {
  opacity: 1;
}
.form-div input:not(:placeholder-shown) + label,
.form-div input:focus + label {
  transform: translateY(calc(-50% - 15px));
  opacity: 0.8;
  font-size: 13px;
  cursor: pointer;
}
.div-select label {
  transform: translateY(calc(-50% - 15px));
  opacity: 0.8;
  font-size: 13px;
  cursor: pointer;
}
.social-float {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 80px;
  padding: 10px;
  height: 100%;
}
.social-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.social-icons a {
  display: inline-block;
  width: 50px;
  background-color: #ffffff;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
  line-height: 50px;
  margin: 10px 0px;
  font-size: 25px;
  color: var(--main-1);
}
.map-1 {
  width: 100%;
  height: 400px;
}
.contact-h2 {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 3px;
  word-spacing: 5px;
  margin-top: 0px;
  margin-bottom: 50px;
}
.contact-h1 {
  font-size: 50px;
  color: var(--main-1);
  text-align: center;
  margin-top: 150px;
  margin-bottom: 0px;
}
.contact-container {
  width: 1400px;
  background-color: #ffffff;
  margin: auto;
  margin-top: 0px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 40, 0.2);
}
.contact-container p {
  font-size: 15px;
  margin-bottom: 0;
}
.contact-container h3 {
  font-size: 25px;
  margin-top: 15px;
  margin-top: 0;
}
.contact-col {
  width: 30%;
  float: left;
  border-right: 1.5px solid #ccc;
  padding: 10px 30px;
}
.contact-col:nth-child(3) {
  border: none;
}
.contact-col-1 {
  width: 10%;
  float: left;
  padding-top: 10px;
  padding-right: 30px;
  align-content: center;
  vertical-align: middle;
}
.contact-col i {
  font-size: 30px;
  color: var(--main-1);
}
.contact-button {
  width: 100%;
  padding: 10px;
  display: block;
  background-color: var(--main-1);
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  border-radius: 0px;
  margin: 10px 0px;
}
.contact-section {
  width: 1000px;
  margin: 50px auto;
  padding-top: 200px;
  margin-top: -200px;
  overflow: hidden;
}
.address-section {
  width: 1400px;
  overflow: hidden;
  margin: 50px auto;
}
.row-4 {
  display: flex;
  flex-wrap: wrap !important;
  justify-content: center;
  margin-left: -20px;
  margin-right: -20px;
}
.cont-col-4 {
  max-width: 33.33%;
  flex: 0 33.33%;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.cont-col-4:nth-child(1) {
  border-right: 1px solid #ccc;
}
.cont-col-4:nth-child(2) {
  border-right: 1px solid #ccc;
}
.cont-col-4:nth-child(3) {
  border-right: 1px solid #ccc;
}
.cont-col-4:nth-child(4) {
  border-right: 1px solid #ccc;
}
.address-section h4 {
  font-size: 30px;
  margin: 0;
}
.address-section h5 {
  font-size: 20px;
  color: var(--main-1);
  margin: 10px 0px;
  margin-top: 30px;
}
.address-section p {
  letter-spacing: 1px;
  line-height: 25px;
}
.contact-sec-1 {
  width: 700px;
  margin-bottom: 0px;
}
.contact-section h2 {
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 50px;
  text-align: center;
}
.contact-section h2 n {
  color: var(--main-1);
}
.contact-section p {
  font-size: 16px;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 500;
  color: gray;
}

form {
  margin: 0;
  padding: 0;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
}
.form-col {
  flex: 0 50%;
  max-width: 50%;
  padding: 10px;
}
.form-col input,
.form-col select {
  display: block;
  padding: 20px 30px;
  width: 100%;
  font-size: 20px;
  margin: 10px 0px;
  border: 2px solid #262626;
  border-radius: 10px;
}
.form-col textarea {
  display: block;
  padding: 20px 30px;
  width: 100%;
  resize: vertical;
  max-height: 300px;
  height: 300px;
  font-size: 20px;
  margin: 10px 0px;
  margin-top: 70px;
  border: 2px solid #262626;
  border-radius: 10px;
}
.form-col button {
  width: 100%;
  font-size: 20px;
  display: block;
  background-color: var(--main-1);
  border: none;
  padding: 20px 0px;
  color: #ffffff;
  border-radius: 10px;
}
p.form-p {
  font-size: 16px;
  letter-spacing: inherit;
  text-align: left;
  font-weight: 300;
}
.gallery {
  position: relative;
  margin: auto;
  margin-top: 150px;
}
.image-feature img {
  height: 100%;
}
.gallery-ui h1 {
  margin-bottom: 30px;
  margin-top: 0px;
  letter-spacing: 4px;
  font-size: 60px;
  color: #555;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
}
.container > a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}

.container > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 2px 16px var(--shadow);
}

.container {
  margin-bottom: 200px;
  display: grid;
  grid-gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
  grid-auto-rows: 300px;
  grid-auto-flow: dense;
}

.horizontal {
  grid-column: span 2;
}

.vertical {
  grid-row: span 2;
}

.big {
  grid-column: span 2;
  grid-row: span 2;
}

.blog-title {
  width: 50%;
  padding: 270px 7%;
  background-color: rgba(0, 0, 0, 0.15);
}
.container-2 {
  width: 1400px;
  margin: auto;
}
.container-5 {
  widows: 100%;
}
.container-gal {
  width: 1400px;
  margin: auto;
  max-width: 90%;
}
.recent-blog {
  position: absolute;
  top: 45%;
  width: 40%;
  padding: 100px;
  left: 50%;
  transform: translateY(-50%);
}
.recent-blog img {
  width: 500px;
  margin-left: -200px;
  border-radius: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.blog {
  
  background-color: rgba(0, 0, 0, 0.05);
}
.recent-blog h3 {
  font-size: 30px;
  color: gray;
}
.recent-blog p {
  margin: 20px auto;
  letter-spacing: 1px;
  line-height: 25px;
}
.blog-title n {
  font-weight: 500;
  color: gray;
}
.blog-title h1 {
  font-size: 120px;
  margin: 0;
  font-weight: 900;
  margin-bottom: 30px;
}
.recent-blog n {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--main-1);
  color: white;
}
.blog-title h2 {
  font-size: 30px;
  font-weight: 400;
  color: var(--main-1);
  margin: 0;
}
.blog-box {
  padding: 20px;
}
.blog-box-in {
  background-color: white;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 20px 15px rgba(0, 0, 0, 0.1);
}
.blog-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
}
.blog-content {
  padding: 30px;
}
.blog-content h2 {
  font-size: 20px;
  margin-top: 0px;
  font-weight: 700;
}
.blog-content p {
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 1px;
}
.blog-content n {
  font-weight: 600;
  color: darkgray;
  font-size: 17px;
  text-align: right;
  display: block;
}
.gallery-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 18px;
  gap: 18px;
  text-align: center;
}
.gallery-ui {
  background-color: #eaeaea;
  overflow: hidden;
  padding: 100px 0px;
  margin: 130px auto;
}
.gallery-btn-box {
  display: inline-block;
  padding: 15px;
  width: 250px;
  flex-shrink: 0;
  text-align: center;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 12px 12px 24px 0 rgba(0, 0, 0, 0.2),
    -12px -12px 24px 0 rgba(255, 255, 255, 0.5);
}
.btn-pressed {
  box-shadow: inset 6px 6px 10px 0 rgba(0, 0, 0, 0.2),
    inset -6px -6px 10px 0 rgba(255, 255, 255, 0.5);
}
.gallery-btn-box n {
  display: block;
  font-size: 20px;
  font-weight: bold;
}
.btn-pressed n {
  color: var(--main-1);
}
.contact-para {
  width: 100%;
  background-color: var(--main-1);
  color: #ffffff;
  overflow: hidden;
  padding: 50px 0px;
}
.contact-para-in {
  width: 1000px;
  margin: auto;
  text-align: justify;
}
.contact-para-in p {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 30px;
  font-weight: 500;
}
.offerings {
  padding: 200px 0px;
  padding-bottom: 100px;
  background-color: #e5e5e5;
}
.offerings-in {
  width: 1600px;
  margin: auto;
}
.offerings h1 {
  font-weight: 400;
  margin: 0;
  font-size: 40px;
  line-height: 30px;
}
.offerings h2 {
  font-size: 70px;
  margin: 0;
}
.offerings a {
  background-color: var(--main-1);
  display: inline-block;
  padding: 10px 30px;
  color: #ffffff;
  font-size: 30px;
  letter-spacing: 1px;
}
.offer-section {
  background-color: var(--color-1);
  padding: 100px 0px;
}
.offer-section-in {
  width: 1300px;
  margin: auto;
}
.offer-in {
  display: flex;
  flex-wrap: wrap;
}
.offerbox {
  padding: 10px;
  box-sizing: border-box;
}
.offer-6 {
  max-width: 50%;
  flex: 0 50%;
}
.offer-3 {
  max-width: 25%;
  flex: 0 25%;
}
.offer-box-in {
  height: 350px;
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
  overflow: hidden;
}
.offer-box-in img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  height: auto;
}
.offer-con {
  transform: rotateY(0deg);
  height: 100%;
  transition: 1s;
  transform-style: preserve-3d;
}

.offer-p {
  padding: 30px;
  width: 100%;
  background-color: #ffffff;
  z-index: -1;
  height: 100%;
  position: relative;
}
.offer-back {
  width: 100%;
  height: 100%;
  overflow: auto;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  padding: 20px;
  font-size: 14px;
  letter-spacing: 1px;
  transform: rotateY(180deg) translateZ(2px);
}
.offer-active .offer-con {
  transform: rotateY(180deg);
}
.offer-p h2 {
  font-size: 50px;
  margin: 0;
}
.offer-p h4 {
  font-weight: 500;
  font-size: 20px;
  margin-top: 40px;
}
.offer-p h3 {
  font-weight: bold;
  margin: 0;
  margin-top: 10px;
}
.offer-p n {
  font-weight: 500;
  color: darkgray;
  font-size: 13px;
}
.offer-p p {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 22px;
}
.offer-back span {
  display: block;
  cursor: pointer;
  margin-top: 10px;
  color: red;
  text-decoration: underline;
}
.offer-p a {
  display: inline-block;
  cursor: pointer;
  padding: 10px 20px;
  background-color: var(--main-1);
  color: #ffffff;
  border-radius: 5px;
}
.bespoke {
  background-image: url(../image/rustomjee/WhatsApp-Image-2020-10-20-at-5.45.59-PM-1.jpeg);
  background-size: cover;
  padding: 100px 0px;
  position: relative;
}
.white-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
.bespoke-box {
  width: 1000px;
  margin: auto;
  z-index: 9;
  overflow: hidden;
  position: relative;
  background-color: var(--main-1);
}
.bespoke-half {
  width: 50%;
  min-height: 100px;
  float: left;
}
.bespoke-in {
  padding: 50px 20px;
  padding-right: 50px;
}
.bespoke-1 {
  width: 100%;
  border-radius: 50px;
  height: 600px;
  padding: 70px;
  background-color: white;
}
.bespoke-1 h3 {
  font-size: 25px;
  line-height: 35px;
}
.bespoke-1 p {
  font-size: 20px;
  line-height: 25px;
}
.bespoke-1 a {
  font-size: 20px;
  text-align: center;
  width: 100%;
  display: inline-block;
  padding: 20px;
  background-color: var(--main-1);
  color: #ffffff;
  font-weight: 500;
  margin-top: 40px;
}
.bespoke h2 {
  position: absolute;
  left: 5%;
  bottom: 50%;
  transform: translateY(50%);
  text-align: left;
  color: #ffffff;
  margin: 0;
  font-size: 60px;
  line-height: 60px;
  font-weight: 900;
}
.value-1 {
  padding: 100px 0px;
  width: 1300px;
  margin: auto;
}
.value-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.value-col {
  max-width: 33.33%;
  flex: 0 33.33%;
  padding: 20px;
}
.value-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.value-img img {
  max-width: 100%;
}
.value-1 n {
  font-weight: 500;
  color: darkgray;
  font-size: 14px;
  display: block;
  margin-top: 20px;
}
.value-1 h3 {
  margin-top: 0px;
}
.value-1 h2 {
  text-align: center;
  margin: 0;
  margin-bottom: 50px;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 2px;
}
.avail-section {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.container-index {
  width: 1300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.flex-container-1 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -50px;
  margin-right: -50px;
}
.avail-flex:nth-child(1) {
  flex: 0 40%;
  max-width: 40%;
  padding-right: 50px;
  padding-left: 50px;
}
.avail-flex:nth-child(2) {
  flex: 0 60%;
  max-width: 60%;
  padding-right: 50px;
  padding-left: 50px;
}
.avail-section h3 {
  font-size: 70px;
  line-height: 70px;
  margin-top: 0;
}
.avail-section h3 div {
  overflow: hidden;
}

.avail-section h3 n {
  display: block;
  animation: fade-up-1 0.5s linear forwards;
  transform: translateY(100%);
  opacity: 0;
}
.avail-section h3 div:nth-child(1) n {
  animation-delay: 0s;
}
.avail-section h3 div:nth-child(2) n {
  animation-delay: 0.3s;
}
.avail-section h3 div:nth-child(3) n {
  animation-delay: 0.6s;
}
.percent-div {
  position: relative;
  width: 215px;
  height: 215px;
}
.percent-div svg {
  position: relative;
  width: 215px;
  height: 215px;
  animation: fade-up-1 0.5s linear forwards;
}
.percent-div svg circle {
  position: relative;
  width: 215px;
  height: 215px;
  fill: none;
  stroke-width: 15px;
  stroke-dasharray: 628;
  stroke-dashoffset: 628;
  stroke: var(--main-1);
  transform: translate(7.5px, 7.5px);
  stroke-linecap: round;
}
.percent-div svg circle:nth-child(1) {
  stroke-dashoffset: 0;
  stroke: #f5f5f5;
}
.percent-div svg circle:nth-child(2) {
  stroke-dashoffset: 628;
  animation: percentage 2s ease-out forwards;
  animation-timing-function: cubic-bezier(0.43, 1.5, 0.81, 0.22);
  transition: 0.5s;
  animation-fill-mode: forwards;
}
@keyframes percentage {
  0% {
    stroke-dashoffset: 628;
  }
  100% {
    stroke-dashoffset: 157;
  }
}
.avail-section h4 {
  font-size: 30px;
  font-weight: 400;
  animation: fade-up-1 0.5s linear forwards;
  margin-top: 0px;
  letter-spacing: 1px;
}
h4.percent-show {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  font-size: 70px;
  line-height: 70px;
  font-weight: 700;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.percent-show span {
  font-size: 20px;
}
.avail-section p {
  font-size: 18px;
  animation: fade-up-1 0.5s linear forwards;
  letter-spacing: 1px;
  line-height: 30px;
}
.avail-button {
  padding: 20px 0px;
  width: 200px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 100px;
  animation: fade-up-1 0.5s linear forwards;
  background-color: var(--main-1);
  color: #ffffff;
  display: block;
  border-radius: 10px;
}
.avail-button:hover {
    color:#ffffff;
    background: #262626;
    border-width: 2px;
    border-style: solid;
    border-color: #262626;
    border-image: none;
}
.flex-container-2 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.flex-counter {
  flex: 0 33.33%;
  max-width: 33.33%;
  padding-left: 20px;
  padding-right: 20px;
}
.flex-counter n {
  font-size: 50px;
  animation: fade-up-1 0.5s linear forwards;
  font-weight: 400;
  display: block;
  text-align: center;
}
.flex-counter p {
  text-align: center;
  color: var(--main-1);
}
@keyframes fade-up-1 {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.features,
.feature {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.feature-flex {
  flex: 0 50%;
  max-width: 50%;
  padding-left: 50px;
  padding-right: 50px;
}
.image-feature {
  width: 500px;
  height: 600px;
  overflow: hidden;
  display: block;
  margin: auto;
}
.features h2 {
  font-size: 60px;
  font-weight: 400;
}
.features p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1px;
}
.features h3 {
  font-size: 150px;
  float: right;
  margin: 0;
  color: var(--main-1);
}
.feature-2 {
  left: 80%;
}
.feature-3 {
  left: 160%;
}
.feature-4 {
  left: 240%;
}
.pricing {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.pricing-alt {
  position: relative;
  height: 100vh;
}
.pricing-alt .price-2 {
  transform: translate(-145%, -50%);
}
.pricing-alt .price-3 {
  transform: translate(45%, -50%);
}
.pricing-box {
  width: 450px;
  padding: 30px 40px;
  background-color: white;
  border-radius: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.3);
}
.pricing-box h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
}
.pricing-box h3 {
  text-align: center;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--main-1);
  font-size: 40px;
}
.pricing-box h3 n {
  font-size: 16px;
  font-weight: 500;
  color: #262626;
}
.pricing-row {
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
     font-size: 15px;
  margin: 20px auto;
}
.pricing-row i {
  font-size: 18px;
  color: var(--main-1);
}
.price-1 .pricing-row i{
    margin-left:20px;
}
.pricing-button {
  display:block;
    width:200px;
    margin:30px auto 0;
    padding:18px 20px;
    text-align:center;
    border-radius:35px;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
    border:2px solid transparent;
}
.price-1 {
  padding: 70px 40px;
  z-index: 99;
  background: #ff416c; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to left,
    #ff416c,
    #ff4b2b
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #ff416c, #ff4b2b);
  color: #ffffff;
}
.price-1 h3,
.price-1 i {
  color: #ffffff;
}
/* White Cards */
.price-2 .pricing-button,
.price-3 .pricing-button{
    background:var(--main-1);
    color:#fff;
    border:2px solid var(--main-1);
}
.price-2 .pricing-button:hover,
.price-3 .pricing-button:hover{
    background:#262626;
    border-color:#262626;
    color:#fff;
}
.price-1 .pricing-button,
.price-2 .pricing-button,
.price-3 .pricing-button{
    margin-left:auto;
    margin-right:auto;
}
/* Center Red Card */
.price-1 .pricing-button{
    background:transparent;
    border:2px solid #fff;
    color:#fff;
}

.price-1 .pricing-button:hover{
    background:#fff;
    color:#ff4b2b;
    border:2px solid #fff;
}
.price-1 h2 {
  width: 250px;
  padding: 10px;
  background-color: #ffffff;
  color: #262626;
  margin: auto;
  border-radius: 30px;
  margin-bottom: 10px;
  font-weight: 500;
}

.amenities {
  position: relative;
  height: 100%;
  margin: 120px auto;
  z-index: 99;
  overflow: hidden;
  margin-top: 0px;
}
.flex-container-2 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.amenities h2,
.loc-h2 {
  text-align: center;
  font-size: 50px;
  font-weight: 400;
  position: relative;
}
.amenities p {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 25px;
  width: 700px;
  text-align: center;
  margin: auto;
  margin-bottom: 40px;
}
.amenities i {
  text-align: center;
  font-size: 50px;
  margin-bottom: 10px;
  display: block;
  color: var(--main-1);
}
.footer-1 {
  width: 100%;
  z-index: 99;
  position: relative;
  padding: 50px 0px;
  overflow: hidden;
  background-color: #262626;
  color: #ffffff;
}
.footer-container {
  width: 1600px;
  margin: auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.footer-box {
  flex: 0 50%;
  max-width: 50%;
  padding-left: 20px;
  padding-right: 0px;
}
.social-footer {
  float: right;
}
.social-footer i {
  margin: 0px 10px;
  font-size: 20px;
}
.footer-line {
  height: 2px;
  background-color: #ffffff;
  margin: 20px 0px;
}
a.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin: 10px auto;
}
a.footer-link:hover {
  color: white;
}
.footer-box form {
  padding: 20px;
  margin: 0;
  border: 2px solid #ffffff;
}
.footer-box h4 {
  margin: 0;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 10px;
}
.footer-box h2 {
  font-size: 40px;
  margin: 0px;
}
.form-row-1 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.form-col-1 {
  flex: 0 50%;
  max-width: 50%;
  padding-left: 5px;
  padding-right: 5px;
}
.footer-box input {
  display: block;
  width: 100%;
  border: none;
  color: #ffff;
  padding: 20px;
  margin: 5px auto;
  background-color: rgba(255, 255, 255, 0.2);
}
.footer-box input::placeholder {
  color: #ccc;
}

.footer-box input:-ms-input-placeholder {
  color: #ccc;
}

.footer-box input::-ms-input-placeholder {
  color: #ccc;
}
.footer-box textarea::placeholder {
  color: #ccc;
}

.footer-box textarea:-ms-input-placeholder {
  color: #ccc;
}

.footer-box textarea::-ms-input-placeholder {
  color: #ccc;
}
.footer-box textarea {
  display: block;
  width: 100%;
  border: none;
  height: 80px;
  max-height: 200px;
  resize: vertical;
  min-height: 50px;
  padding: 20px;
  margin: 10px auto;
  background-color: rgba(255, 255, 255, 0.2);
}
.footer-box button {
  border: 2px solid #ffffff;
  background-color: transparent;
  padding: 15px 40px;
  color: #ffffff;
}
.copyright {
  text-align: center;
  font-size: 15px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 0px;
}
.container-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.know-1 {
  margin: 50px auto;
  margin-top: 200px;
  width: 1400px;
}
.know-2 {
  margin: 50px auto;
  width: 1400px;
}
.know-1 h1 {
  font-size: 100px;
}
.know-1 h1 n {
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 16px;
  text-transform: uppercase;
}
.flex-row-1 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -50px;
  margin-right: -50px;
}
.flex-col-6 {
  flex: 0 50%;
  max-width: 50%;
  padding-left: 50px;
  padding-right: 50px;
}
.know-1 p {
  letter-spacing: 1px;
  text-align: justify;
  line-height: 25px;
}
.know-1 h2 {
  font-size: 50px;
  margin-top: 100px;
}
.offer-row {
  display: flex;
  margin: auto;
  width: 90%;
  flex-wrap: wrap;
}
.flex-container-3 {
  display: flex;
  margin: auto;
  width: 400%;
  flex-wrap: nowrap;
}
.offer-col-3 {
  flex: 0 16.66666666666667%;
  max-width: 16.66666666666667%;
  padding: 50px;
  text-align: center;
  border-right: 1px solid #262626;
  background-color: #f5f5f5;
}
.am-flex {
  flex: 0 20%;
  max-width: 20%;
  padding: 120px 50px;
  text-align: center;
  border-right: 1px solid #262626;
  background-color: rgba(245, 245, 245, 0.5);
}
.am-flex:nth-last-child(1) {
  border: none;
}
.offer-col-3:nth-last-child(1) {
  border: none;
}
.offer-row i,
.am-flex i {
  text-align: center;
  display: block;
  font-size: 50px;
  margin-bottom: 30px;
  color: var(--main-1);
}
.container-3 {
  background-color: var(--main-1);
  padding: 100px 0px;
}
.container-in-3 {
  background-color: #ffffff;
  margin: auto;
  width: 1400px;
  padding: 100px;
}
.container-3 h2 {
  font-size: 50px;
  margin-top: 0px;
  text-align: center;
}

p.para-3 {
  margin-bottom: 100px;
}

.container-3 p,
.container-3 ol,
p.para-3 {
  position: relative;
  text-align: center;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 30px;
  margin-top: 50px;
}
.container-3 i {
  position: absolute;
  font-size: 50px;
  color: #ccc;
}
.fa-quote-left {
  left: -10px;
  top: -50px;
}
.fa-quote-right {
  right: -10px;
  bottom: -50px;
}
.container-4 {
  margin: 100px auto;
  width: 1000px;
  text-align: center;
}
.container-4 p {
  font-size: 25px;
  letter-spacing: 1px;
  line-height: 35px;
  font-weight: 500;
}
.container-btn {
  background-color: var(--main-1);
  color: #ffffff;
  padding: 20px 10px;
  width: 200px;
  margin: 50px auto;
  font-weight: 700;
  border-radius: 10px;
}
.location-1 {
  width: 1600px;
  margin: auto;
  margin-top: 200px;
}
.location-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.location-col {
  flex: 0 50%;
  max-width: 50%;
  padding-left: 20px;
  padding-right: 20px;
}
.location-1 h2 {
  font-size: 30px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 400;
  background-color: var(--main-1);
  color: white;
  padding: 5px 20px;
  letter-spacing: 10px;
}
.price-feature {
  overflow: hidden;
  margin-top: 10px;
  line-height: 25px;
  font-size: 15px;
  font-weight: 500;
  color: gray;
  transition: 1s;
  max-height: 0px;
}
.price-active-f {
  max-height: 300px;
  margin-bottom: 10px;
}
.location-1 p {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 4px;
  margin: 0;
}
.location-1 h1 {
  font-size: 80px;
  margin-top: 0;
}
.location-1 a {
  display: inline-block;
  margin: 10px;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 20px 40px;
  border-radius: 30px;
  background-color: white;
  font-weight: 500;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
.location-tabs {
  margin-left: -10px;
  margin-right: -10px;
}
.location-2 {
  width: 1600px;
  margin: 50px auto;
}
.location-2 h2 {
  font-size: 50px;
  margin-top: 0px;
}
.location-2 p {
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 25px;
  color: #555;
}
p.location-p-1 {
  font-size: 15px;
  line-height: 20px;
}
.loc-section-1 {
  padding: 100px 20px;
  width: 60%;
  border-bottom: 2px solid #ccc;
}
.loc-section-1 i {
  margin-right: 10px;
  font-size: 25px;
  color: var(--main-1);
}
.location-map {
  margin-top: 20px;
  width: 100%;
  height: 300px;
}
.pricing-list {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0px;
  border-top: 2px dotted #ccc;
  margin-left: -20px;
  margin-right: -20px;
}
.pricing-box-1 {
  max-width: 70%;
  flex: 0 70%;
  padding-left: 20px;
  padding-right: 20px;
}
.pricing-box-2 {
  max-width: 30%;
  flex: 0 30%;
  padding-left: 20px;
  padding-right: 20px;
}
.pricing-box-2 img {
  width: 100%;
}
.pricing-box-1 n {
  float: right;
}
.pricing-read {
  color: var(--main-1);
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}
.pricing-read i {
  font-size: 15px;
  font-weight: 400;
}
.ame-col {
  flex: 0 33.33%;
  max-width: 33.33%;
  padding-left: 20px;
  padding-right: 20px;
}
.gallery-3 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 40px;
}
.location-form {
  position: sticky;
  top: 0px;
  width: 30%;
  right: 0;
  padding: 30px 30px;
  overflow: hidden;
  float: right;
}
.location-form form {
  margin-top: 150px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  padding: 50px 30px;
  background-color: #262626;
  border-radius: 30px;
  border: 2px solid #ccc;
}
.location-form h4 {
  margin-top: -10px;
  font-size: 40px;
  text-align: center;
  margin-bottom: 10px;
  color: #ffffff;
}
.location-form p {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  line-height: 20px;
}
.location-form input {
  width: 100%;
  border-radius: 20px;
  padding: 15px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: none;
  font-size: 16px;
}
.location-form textarea {
  width: 100%;
  padding: 15px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border-radius: 20px;
  font-size: 16px;
  resize: vertical;
  border: none;
  max-height: 200px;
  min-height: 100px;
}
.location-form button {
  padding: 15px;
  border-radius: 20px;
  background-color: var(--main-1);
  color: #ffffff;
  font-size: 18px;
  border: none;
  width: 100%;
}
.loc-menu {
  position: fixed;
  top: 10vh;
  z-index: 99999;
  height: 0vh;
  background-image: url(../image/bg-menu.jpg);
  background-size: cover;
  color: #ffffff;
  overflow: hidden;
  width: 100%;
  transition: 1s;
  transition-timing-function: cubic-bezier(0.77, 0.16, 0.52, 0.96);
}
.loc-active {
  height: 91vh;
}
.loc-menu-in {
  width: 100%;
  height: 90vh;
  overflow: hidden;
  position: relative;
  padding-top: 100px;
  transform: scale(1.2);
  transition: 1s;
  opacity: 0;
  transition-delay: 1s;
}
.loc-active .loc-menu-in {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.5s;
}
.loc-menu-box {
  position: relative;
  right: 0;
  margin: auto !important;
  width: 90% !important;
}
.loc-menu-grid {
  width: calc(100% / 5) !important;
  padding: 0px 20px;
  float: left;
}
.loc-menu-grid a:hover img {
  transform: scale(1.4);
}
.loc-menu-grid a {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  display: block;
}
.loc-menu-grid img {
  height: 100%;
  transition: 0.7s;
  display: block;
  margin: auto;
}
.loc-menu-grid h2 {
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 100%;
  font-weight: 400;
  font-size: 20px;
}
.overlay-bg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.loc-menu-grid h3 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  margin: 0px;
  margin-bottom: 70px;
}
.loc-menu h4 {
  font-size: 50px;
  margin: 0;
  text-align: right;
  margin-right: 40px;
  letter-spacing: 10px;
  text-transform: uppercase;
}
.loc-social {
  position: absolute;
  top: 38%;
  left: 25px;
  transform: translateY(-50%);
}
.loc-social a {
  display: block;
  font-size: 20px;
  margin: 40px auto;
}
.menu-box {
  display: none;
}
.post-1 {
  margin-top: 150px;
  margin-bottom: 50px;
  max-width: 80%;
  display: block;
}
.post-1 img {
  width: 100%;
  display: block;
}
.blog-row img {
  height: 80px;
  object-fit: cover;
}
#img-2 {
  display: none;
}
.video-pop {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999999;
  height: 100%;
}
.video-frame {
  width: 1000px;
  max-width: 90%;
  height: 500px;
  z-index: 99;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.container-lg-1 {
  width: 1400px;
  margin: auto;
  max-width: 95%;
  margin-top: 200px;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 20px;
  margin-bottom: 50px;
}
.container-lg-1 h1 {
  text-align: center;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 50px;
}
.container-lg-1 ol {
  padding-left: 20px;
  margin-bottom: 40px;
  font-weight: 500;
  color: #555;
}
.container-lg-1 ul {
  margin: 10px auto;
  list-style-type: none;
}
.container-lg-1 ul li::before {
  content: "\f058";
  padding-right: 20px;
  font-weight: bold;
  margin-left: -40px;
  font-family: FontAwesome;
  font-size: 18px;
  text-rendering: auto;
  color: var(--main-1);
}
.loader-1 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  opacity: 1;
  animation: loader-1 0.5s 1;
  animation-fill-mode: forwards;
  background-color: white;
  animation-delay: 2s;
}
@keyframes loader-1 {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
    visibility: visible;
    display: block;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
.loader-box {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
}
.loader-box svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader-box svg path {
  stroke: #262626;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-dasharray: 227;
  stroke-dashoffset: 227;
  fill-opacity: 0;
  animation: loader-line 1.5s 1;
  animation-fill-mode: forwards;
}
.loader-span {
  background-color: var(--main-1);
  width: 100%;
  height: 100%;
  border-radius: 100%;
  animation: loader-span 1s 1;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  transform: scale(0);
}
.row-rev {
  flex-direction: row-reverse;
}
.price-pp {
  width: 400px;
  text-align: center;
  max-width: 90%;
  margin: auto;
}
@keyframes loader-span {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(2);
  }
}
.center {
  text-align: center;
}
@keyframes loader-line {
  0% {
    stroke-dashoffset: 227;
  }
  80% {
    stroke-dashoffset: 0;
    fill-opacity: 0;
    stroke: #262626;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
    stroke: #ffffff;
  }
}
.contact-float-icons {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 999999;
  transition: 0.5s;
}
.contact-float-icons a {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--main-1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  margin-top: 10px;
  font-size: 30px;
  transition: 0.5s;
  transition-delay: 0.3s;
  border-radius: 50%;
}
.contact-float-icons a:nth-child(2) {
  transition-delay: 0.5s;
}
.cnt-icons a {
  transform: translateX(100px);
}
.enquiry-pop-2 {
  position: fixed;
  top: 100px;
  transform: translateX(100%);
  right: 0px;
  z-index: 999999999;
  transition: 0.5s;
}
.active-enq {
  transform: translateX(0px);
}
.enq-pop-btn-2 {
  position: absolute;
  top: 100px;
  right: 100%;
  background-color: var(--main-1);
  color: #ffffff;
  transform: rotate(-90deg) translateY(85px);
  cursor: pointer;
  width: 200px;
  text-align: center;
  padding: 10px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0px -10px 20px 0px rgba(0, 0, 0, 0.15);
}
.loc-landing {
  margin-top: 0px;
  margin-bottom: 10px;
}
.loc-flex {
  display: flex;
  gap: 30px;
}
.loc-box {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  flex-basis: 0;
  justify-content: space-between;
  background-color: #f5f5f5;
  border-radius: 20px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
.loc-p {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1px;
}
.loc-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
.read-more {
  color: #0b66ff;
  cursor: pointer;
  font-weight: 500;
}
.read-more:hover {
  text-decoration: underline;
}
.loc-box-link {
  display: flex;
  justify-content: end;
}
.loc-box-link a {
  display: inline-block;
  margin-top: 20px;
  background-color: var(--main-1);
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
}
.bottom-cta {
  background-image: url("../image/coworking-2.jpg");
  background-size: cover;
  background-position: right;
  text-align: center;
  color: #ffffff;
  /*margin-top: 60px;*/
}
.bottom-cta-bg {
  padding: 100px 0px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.bottom-cta h2 {
  font-size: 50px;
  margin: 0px;
  margin-bottom: 30px;
}
.bottom-cta p {
  max-width: 800px;
  margin: auto;
  opacity: 0.8;
}
.bottom-cta a {
  margin-top: 50px;
}

p.para-2 {
  font-size: 24px;
  font-weight: 400;
  text-align: left;
  line-height: normal;
  margin: 100px 0px;
}

.seo-page-container {
  max-width: 1600px;
  margin: 200px auto;
  width: 95%;
  display: flex;
  gap: 30px;
  font-size: 24px;
}
.seo-page-container h1 {
  font-size: 80px;
  margin: 0;
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  #img-1 {
    display: none;
  }
  #img-2 {
    display: block;
  }
}
@media screen and (max-width: 1700px) {
  .seo-page-container {
    max-width: 1000px;
  }
  .seo-page-container h1 {
    font-size: 45px;
  }
  .seo-page-container p {
    font-size: 20px;
  }
  .offer-back {
    font-size: 13px;
  }
  .offer-p {
    padding: 20px;
  }
  .post-1 {
    max-width: 90%;
  }
  .landing-container,
  .header-in {
    width: 1000px;
  }
  .form-landing {
    width: 400px;
    padding: 60px 30px;
  }
  .form-landing p,
  .form-landing input,
  .form-landing button {
    font-size: 17px;
  }
  .form-landing h2 {
    font-size: 30px;
    line-height: 30px;
  }
  .header-in img {
    height: 55px;
  }
  .header-in li {
    font-size: 15px;
  }
  .header-in li a {
    padding: 0 15px;
  }
  .header-in li .button-a {
    padding: 15px;
  }
  .content-landing h2 {
    font-size: 70px;
  }
  .content-landing h3 {
    font-size: 30px;
  }
  .play-button {
    width: 80px;
    height: 80px;
  }
  .image-landing {
    bottom: -180px;
    left: -80px;
  }
  .container-index {
    width: 1000px;
  }
  .avail-section h3 {
    font-size: 50px;
    line-height: 50px;
  }
  .avail-section h4 {
    font-size: 25px;
  }
  h4.percent-show {
    font-size: 70px;
  }
  .avail-section p {
    font-size: 15px;
    line-height: 23px;
  }
  .avail-button {
    margin-bottom: 50px;
    margin-top: 30px;
  }
  .image-feature {
    width: 80%;
    height: 500px;
  }
  .features p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
  }
  .features h3 {
    font-size: 100px;
  }
  .features h2 {
    font-size: 50px;
  }
  .pricing-box {
    width: 350px;
    padding: 30px 20px;
  }
  .price-1 {
    padding: 50px 20px;
  }
  .pricing-row {
    font-size: 12px;
    font-weight: 500;
    margin: 20px auto;
  }
  .pricing-box h3 {
    font-size: 25px;
  }
  .container-2,
  .know-1,
  .know-2 {
    width: 1000px;
  }
  .pricing-box h2 {
     text-align:center;
    margin:0 auto 20px;
    font-size:24px;
    font-weight:700;
  }
  .footer-container {
    width: 1000px;
  }
  .footer-box h2 {
    font-size: 24px;
  }
  .footer-box {
    font-size: 14px;
  }
  .know-1 h1 {
    font-size: 70px;
  }
  .know-1 h1 n {
    font-size: 14px;
    letter-spacing: 12px;
  }
  .offer-row {
    width: 100%;
  }
  .offer-col-3 {
    font-size: 15px;
    padding: 50px 20px;
  }
  .container-in-3 {
    width: 1000px;
    padding: 80px;
  }
  .container-3 p,
  .container-3 li,
  p.para-3 {
    font-size: 15px;
    line-height: 25px;
  }
  .container-3 h2 {
    font-size: 35px;
  }
  .container-3 i {
    font-size: 30px;
  }
  .location-1,
  .location-2 {
    width: 1000px;
  }
  .location-1 h1 {
    font-size: 50px;
  }
  .location-1 h2 {
    font-size: 20px;
  }
  .location-1 a {
    display: inline-block;
    margin: 8px;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 15px 30px;
    border-radius: 30px;
    background-color: white;
    font-weight: 500;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
  }
  .location-image-1 img {
    width: 100%;
  }
  .location-2 p {
    font-size: 15px;
    line-height: 23px;
  }
  .location-form p {
    font-size: 13px;
    line-height: 18px;
  }
  .ame-col {
    flex: 0 50%;
    max-width: 50%;
  }
  .location-form {
    width: 36%;
  }
  .location-form form {
    margin-top: 80px;
    padding: 30px;
  }
  .location-form input,
  .location-form textarea {
    font-size: 14px;
  }
  .location-form button {
    padding: 10px;
  }
  .location-form h4 {
    font-size: 30px;
  }
  .offerings-in {
    width: 1000px;
  }
  .offerings h2 {
    font-size: 50px;
  }
  .offerings h1 {
    font-size: 30px;
  }
  .offerings a {
    font-size: 20px;
  }
  .offer-section-in,
  .value-1 {
    width: 1000px;
  }
  .offer-section {
    padding: 50px 0px;
  }
  .offer-p h2 {
    font-size: 40px;
  }
  .offer-p p {
    font-size: 13px;
    line-height: 20px;
  }
  .offer-box-in {
    height: 270px;
  }
  .bespoke {
    padding: 50px 0px;
  }
  .bespoke-1 h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .bespoke-1 p {
    font-size: 15px;
    line-height: 20px;
  }
  .bespoke-1 a {
    margin-top: 30px;
  }
  .bespoke-1 {
    height: 500px;
  }
  .value-img {
    height: 170px;
  }
  .blog-title h1 {
    font-size: 90px;
  }
  .contact-container {
    width: 1200px;
    max-width: 90%;
  }
  .address-section {
    width: 1100px;
    max-width: 80%;
  }
  .contact-col-1 {
    padding-right: 10px;
  }
  .contact-para-in p {
    font-size: 16px;
  }
  .recent-blog img {
    width: 300px;
  }
  .recent-blog h3 {
    font-size: 25px;
  }
  .recent-blog n {
    font-size: 15px;
  }
  .recent-blog p {
    margin: 20px auto;
    letter-spacing: 1px;
    line-height: 22px;
    font-size: 15px;
  }
  .recent-blog {
    position: absolute;
    top: 55%;
    width: 40%;
    padding: 0px 100px;
    left: 50%;
    transform: translateY(-50%);
  }
  .blog-title {
    padding-left: 11%;
  }
  .blog-box {
    padding: 20px 0px;
  }
  .blog-image {
    height: 200px;
  }
  .blog-content h2 {
    font-size: 17px;
  }
  .blog-content p {
    font-size: 13px;
    line-height: 17px;
  }
  .blog-content n {
    font-size: 14px;
  }
  .content-landing {
    height: 340px;
  }
  .form-landing {
    top: 55%;
  }
  .features,
  .feature {
    width: 1240px;
  }
  .offer-box-in {
    height: 300px;
  }
  .landing-section h1 {
    letter-spacing: 20px;
    position: absolute;
    top: 50px;
    opacity: 0.05;
    white-space: nowrap;
    margin: 0;
    font-size: 600px;
    line-height: 600px;
    left: 100px;
  }
}

@media screen and (max-height: 700px) {
  .form-landing {
    padding: 20px 30px;
  }
  .form-landing input,
  .form-landing select,
  .form-price input,
  .form-price select {
    padding-top: 15px;
    padding-bottom: 10px;
    font-size: 15px;
  }
  .form-div input:placeholder-shown + label {
    font-size: 15px;
  }
  .form-div input:not(:placeholder-shown) + label,
  .form-div input:focus + label,
  .div-select label {
    font-size: 12px;
    transform: translateY(calc(-50% - 10px));
  }
  .form-landing p,
  .form-landing input,
  .form-landing button {
    font-size: 14px;
  }
  .form-landing button,
  .form-price button {
    padding: 15px;
  }
  .loc-menu-grid a {
    height: 300px;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .loc-menu {
    top: 80px;
  }
  .loc-menu-grid {
    padding: 0 20px;
  }
  .loc-menu-grid h3 {
    margin-bottom: 30px;
  }
  .loc-menu h4 {
    font-size: 20px;
  }
}
@media screen and (max-height: 600px) {
  .form-landing {
    padding: 20px 30px;
  }
  .form-landing input,
  .form-landing select,
  .form-price input,
  .form-price select {
    padding-top: 15px;
    padding-bottom: 10px;
    font-size: 15px;
  }
  .form-div input:placeholder-shown + label {
    font-size: 15px;
  }
  .form-div input:not(:placeholder-shown) + label,
  .form-div input:focus + label,
  .div-select label {
    font-size: 12px;
    transform: translateY(calc(-50% - 10px));
  }
  .form-landing p,
  .form-landing input,
  .form-landing button {
    font-size: 14px;
  }
  .form-landing button,
  .form-price button {
    padding: 15px;
  }
  .header-in {
    padding: 5px 0px;
  }
  .play-button {
    width: 80px;
    height: 80px;
    left: 100px;
  }
  .play-button span {
    transform: translate(-50%, -50%) scale(0.8);
  }
  .image-landing {
    width: 50%;
  }
  .content-landing h3 {
    font-size: 20px;
  }
  .content-landing h2 {
    font-size: 50px;
    line-height: 40px;
  }
  .content-landing {
    height: 240px;
  }
  .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  .avail-section h3 {
    font-size: 30px;
    line-height: 30px;
  }
  .percent-div {
    transform: scale(0.7);
    width: 215px;
    margin-bottom: -50px;
    transform-origin: top left;
  }
  .avail-section p {
    font-size: 13px;
    line-height: 20px;
  }
  .flex-counter n {
    font-size: 30px;
  }
  .avail-button {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 15px;
    padding: 10px 0px;
  }
  .features h2 {
    font-size: 30px;
  }
  .price-1 {
    padding: 30px 20px;
  }
  .image-feature {
    width: 60%;
    height: 300px;
  }
  .features p {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 1px;
  }
  .pricing-box h3 {
    margin-bottom: 10px;
  }
  .amenities p {
    font-size: 13px;
    line-height: 17px;
  }
  .amenities h2,
  .loc-h2 {
    font-size: 30px;
    line-height: 30px;
  }
  .am-flex {
    padding: 30px 50px;
  }
  .loc-menu-grid h2 {
    font-size: 20px;
  }
  .pricing-button {
    margin-top: 0px;
    padding: 10px;
  }
  .features h3 {
    font-size: 50px;
  }
  .loc-menu-grid a {
    height: 200px;
  }
  .loc-menu-grid h3 {
    margin-bottom: 30px;
  }
  .loc-menu h4 {
    font-size: 20px;
  }
  .recent-blog h3 {
    font-size: 18px;
  }
  .blog-title h2 {
    font-size: 20px;
  }
  .blog-title h1 {
    font-size: 50px;
    margin-bottom: 15px;
  }
  .blog-title {
    height: 150px;
  }
  .recent-blog p {
    font-size: 12px;
    line-height: 17px;
  }
  .recent-blog img {
    width: 250px;
  }
  .recent-blog {
    top: 70%;
  }
  .location-form form {
    padding: 15px;
    margin-top: 45px;
    border-radius: 20px;
  }
  .location-form textarea {
    min-height: 60px;
  }
  .location-form input,
  .location-form textarea {
    padding: 10px;
    font-size: 12px;
  }
}
@media screen and (max-width: 1050px) {
  .seo-page-container {
    flex-direction: column;
    gap: 50px;
    margin: 150px auto;
  }
  .seo-page-container p {
    font-size: 18px;
  }
  .footer-box {
    padding-right: 20px;
  }

  p.para-2 {
    font-size: 18px;
  }
  .pricing-alt .price-2 {
    transform: translate(0%, 0%);
  }
  .pricing-alt .price-3 {
    transform: translate(0%, 0%);
  }
  .landing-container,
  .header-in {
    width: 95%;
  }
  .landing-container {
    padding-bottom: 100px;
  }
  .loc-flex {
    flex-direction: column;
    align-items: center;
  }
  .loc-box {
    max-width: 500px;
  }
  .loc-box img {
    height: auto;
  }
  .landing-section {
    position: relative;
    height: auto;
    top: auto;
    left: auto;
    margin-top: 150px;
  }
  .landing-section h1 {
    display: none;
  }
  .content-landing {
    width: 500px;
    text-align: center;
    position: relative;
    height: 400px;
    transform: translate(0px, 0px);
    top: auto;
    margin: auto;
    margin-bottom: 30px;
    z-index: 9;
  }
  .image-landing {
    width: 110%;
    left: -30px;
  }
  .form-landing {
    width: 400px;
    transform: translate(0px);
    position: relative;
    top: auto;
    margin: auto;
  }
  .pricing {
    position: relative;
    top: auto;
    height: auto;
    left: auto;
    margin-top: -100px;
    padding-top: 100px;
  }
  .container-index,
  .avail-section {
    position: relative;
    top: auto;
    width: auto;
    left: auto;
    transform: translate(0px, 0px);
  }
  .pricing-box {
    position: relative;
    margin: 50px auto;
    top: auto;
    left: auto;
    transform: translate(0px, 0px);
  }
  .amenities h2,
  .loc-h2 {
    font-size: 30px;
  }
  .amenities p {
    font-size: 15px;
  }
  .flex-container-3 {
    display: flex;
    margin: auto;
    width: 100%;
    flex-wrap: wrap;
  }
  .am-flex,
  .offer-col-3 {
    max-width: 33.33%;
    flex: 0 33.33%;
    border: none;
    padding: 50px;
  }
  .flex-container-1 {
    display: flex;
    width: 80%;
    margin: auto;
  }
  .avail-flex:nth-child(1) {
    flex: 0 100%;
    max-width: 100%;
  }
  .avail-flex:nth-child(2),
  .flex-col-6,
  .location-col {
    flex: 0 100%;
    margin-top: 30px;
    max-width: 100%;
  }
  .feature {
    width: 100%;
    left: 0;
    margin: 80px auto;
  }
  .features,
  .feature {
    position: relative;
    width: 100%;
  }
  .feature-flex,
  .footer-box {
    flex: 0 100%;
    max-width: 100%;
  }
  .footer-box {
    margin-bottom: 30px;
  }
  .header li {
    display: none;
  }
  .image-feature {
    width: 100%;
  }
  .features h2 {
    font-size: 30px;
  }
  .features h3 {
    font-size: 50px;
  }
  .features p {
    font-size: 14px;
  }
  .footer-container {
    width: 90%;
  }
  .container-2,
  .know-1,
  .know-2 {
    width: 90%;
  }
  .know-1 {
    margin-top: 140px;
  }
  .know-2 {
    margin-top: 0px;
  }
  .know-1 h2 {
    font-size: 30px;
  }
  .container-in-3 {
    width: 90%;
    padding: 50px 30px;
  }
  .container-4,
  .location-1,
  .location-2,
  .offerings-in,
  .offer-section-in,
  .value-1 {
    width: 90%;
  }
  .social-float {
    display: none;
  }
  .location-1 {
    margin-top: 140px;
  }
  .loc-section-1 {
    width: 100%;
  }
  .location-form {
    width: 100%;
    position: relative;
    float: none;
  }
  .offer-6,
  .value-col {
    max-width: 100%;
    flex: 0 100%;
  }
  .offer-3 {
    max-width: 50%;
    flex: 0 50%;
  }
  .bespoke-box {
    width: 90%;
  }
  .bespoke-half {
    width: 100%;
  }
  .bespoke h2 {
    position: relative;
    transform: translate(0px, 0px);
    text-align: center;
    margin-top: 40px;
    left: auto;
  }
  .bespoke-in {
    padding-right: 20px;
  }
  .bespoke-half {
    min-height: inherit;
  }
  .value-img {
    height: 300px;
  }
  .recent-blog {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0px, 0px);
    padding: 20px 50px;
  }
  .recent-blog img {
    margin-left: 0px;
  }
  .blog-title {
    width: 90%;
    padding-top: 150px;
    padding-bottom: 50px;
  }
  .blog-image {
    height: 400px;
  }
  .container-gal {
    width: 90%;
  }
  .gallery-ui {
    margin-bottom: 30px;
    padding: 50px 0px;
  }
  .gallery-ui h1 {
    font-size: 40px;
  }
  .contact-col,
  .contact-col-1 {
    width: 50%;
    border: none;
  }
  .address-section {
    width: 90%;
  }
  .contact-section,
  .contact-para-in {
    width: 90%;
  }
  .menu {
    display: block;
    float: right;
    width: 40px;
    margin-top: -10px;
  }
  .menu span {
    width: 100%;
    height: 4px;
    margin: 6px auto;
    background-color: #262626;
    display: block;
  }
  .menu-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 0px;
    background-color: #262626;
    color: #ffffff;
    z-index: 9999999;
    display: block;
    overflow: hidden;
    transition: 0.5s;
  }
  .menu-active {
    max-height: 100vh;
  }
  .menu-1 {
    position: relative;
    margin: auto;
    margin-top: 200px;
    width: 500px;
    max-width: 90%;
  }
  .menu-1 ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .menu-1 li {
    font-size: 40px;
    transition: 0.8s;
    opacity: 0;
    transform: translateY(20px);
  }
  .menu-1 li a {
    cursor: pointer;
  }
  .menu-active li {
    opacity: 1;
    transform: translateY(0);
  }
  .menu-1 li:nth-child(2) {
    transition-delay: 0.1s;
  }
  .menu-1 li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .menu-1 li:nth-child(4) {
    transition-delay: 0.3s;
  }
  .menu-1 li:nth-child(5) {
    transition-delay: 0.4s;
  }
  .menu-1 li:nth-child(6) {
    transition-delay: 0.5s;
  }
  .menu-1 li:nth-child(7) {
    transition-delay: 0.6s;
  }
  .menu-1 li:nth-child(8) {
    transition-delay: 0.7s;
  }
  .menu-1 li a:hover {
    text-decoration: underline;
  }
  .menu-1 li i {
    font-size: 20px;
  }
  .menu-in {
    position: relative;
    overflow-y: scroll;
    width: 100vw;
    height: 100vh;
  }
  .social-menu {
    margin: 40px auto;
  }
  .social-menu a {
    margin: 0px 20px;
    font-size: 30px;
  }
  .menu-link {
    margin: 50px auto;
  }
  .menu-link a {
    display: block;
    font-weight: 500;
    color: #ccc;
    margin: 10px auto;
  }
  .menu-link a:hover {
    color: #ffffff;
  }

  .close-in {
    position:absolute;
    top:20px;
    right:20px;
    width:40px;
    height:40px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
     font-size:20px;
    cursor:pointer;
    z-index:99999999;
  }
  .menu-drop {
    overflow: hidden;
    transition: 0.5s;
    margin-left: 40px;
    max-height: 0px;
  }
  .menu-drop-active {
    max-height: 600px;
  }

  .pricing-alt {
    margin-top: -50px;
  }
}
@media screen and (max-width: 750px) {
  .bottom-cta h2 {
    font-size: 40px;
  }
  .contact-col,
  .contact-col-1 {
    width: 100%;
    padding: 20px 0px;
  }
  .cont-col-4 {
    max-width: 100%;
    flex: 0 100%;
  }
  .form-col {
    max-width: 100%;
    flex: 0 100%;
  }
  .form-col textarea {
    margin-top: 0px;
    height: 150px;
  }
  .contact-section {
    margin-top: -240px;
  }
  .form-col input,
  .form-col select,
  .form-col textarea {
    font-size: 15px;
    padding-left: 20px;
  }
  .form-col button {
    font-size: 15px;
  }
  .contact-section h2 {
    font-size: 20px;
  }
  .contact-para {
    padding: 20px 0px;
  }
  .contact-para-in p {
    font-size: 14px;
    line-height: 22px;
  }
  .amenities p {
    width: 90%;
  }
  .row-4 {
    display: flex;
    flex-wrap: wrap !important;
  }
}
@media screen and (max-width: 550px) {
  .contact-float-icons a {
    width: 55px;
    height: 55px;
    font-size: 20px;
    line-height: 55px;
  }
  .container-5 {
    margin-top: 100px;
  }
  .bg-glass,
  .bg-glass-2 {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
  .video-frame {
    height: 200px;
  }
  .form-price {
    width: 90%;
    padding: 30px 10px;
    padding-bottom: 30px;
  }
  .form-price h2 {
    font-size: 30px;
    line-height: 30px;
  }
  .menu-1 {
    margin-top: 100px;
  }
  .menu-1 li {
    font-size: 25px;
    margin: 10px auto;
  }
  .social-menu a {
    font-size: 25px;
  }
  .flex-container-1 {
    width: 90%;
  }
  .avail-flex:nth-child(1) {
    padding-right: 0px;
    padding-left: 0px;
  }
  .avail-flex:nth-child(2) {
    padding-right: 0px;
    padding-left: 0px;
  }
  .header-in {
    padding: 10px 0px;
  }
  .content-landing {
    width: 90%;
    height: 50vw;
    margin-bottom: 100px;
  }
  .content-landing h2 {
    font-size: 45px;
  }
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .content-landing h2 {
    font-size: 45px;
    line-height: 50px;
  }
  .content-landing h3 {
    font-size: 20px;
  }
  .play-button {
    width: 100px;
    height: 100px;
    top: 70%;
  }
  .form-landing {
    width: 95%;
    padding: 50px 10px;
  }
  .avail-section h3 {
    font-size: 40px;
    line-height: 40px;
  }
  .flex-counter n {
    font-size: 40px;
  }
  .feature {
    margin: 50px auto;
  }
  .feature-flex {
    padding-left: 0px;
    padding-right: 0px;
  }
  .pricing-box {
    width: 90%;
  }
  .amenities h2,
  .loc-h2 {
    font-size: 25px;
  }
  .am-flex,
  .offer-col-3 {
    max-width: 50%;
    flex: 0 50%;
    padding: 30px 20px;
  }
  .amenities {
    margin-bottom: 50px;
  }
  .social-footer {
    float: none;
    margin-left: -10px;
  }
  .footer-box form {
    padding: 10px;
  }
  .form-col-1 {
    flex: 0 100%;
    max-width: 100%;
  }
  .footer-1 {
    padding: 50px 0px;
  }
  .copyright {
    font-size: 12px;
  }
  .know-1 h1 {
    font-size: 50px;
    margin: 0px;
  }
  .know-1 h1 n {
    letter-spacing: 8px;
  }
  .container-3 h2 {
    font-size: 25px;
  }
  .container-3 {
    padding: 30px 0px;
  }
  .container-4 p {
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 28px;
    font-weight: 500;
  }
  .location-1 {
    margin-top: 100px;
  }
  .location-form form {
    margin-top: 0px;
  }
  .location-form {
    padding: 0px;
  }
  .location-form form {
    padding: 30px 10px;
    border-radius: 20px;
  }
  .loc-section-1 {
    padding: 50px 0px;
  }
  .location-2 h2 {
    font-size: 35px;
  }
  .location-col {
    margin-top: 0px;
  }
  .pricing-box-1,
  .pricing-box-2 {
    max-width: 100%;
    flex: 0 100%;
  }
  .pricing-box-2 img {
    margin-top: 30px;
  }
  .ame-col {
    max-width: 100%;
    flex: 0 100%;
  }
  .offerings h2 {
    font-size: 35px;
  }
  .offerings h1 {
    font-size: 20px;
  }
  .offerings a {
    font-size: 12px;
    padding: 10px;
  }
  .offer-p h2 {
    font-size: 25px;
  }
  .offer-box-in {
    height: 280px;
  }
  .offer-3 {
    max-width: 100%;
    flex: 0 100%;
  }
  .bespoke h2 {
    font-size: 30px;
    line-height: 30px;
  }
  .bespoke-1 {
    padding: 20px;
    height: 450px;
    border-radius: 20px;
  }
  .value-1 h2 {
    font-size: 30px;
  }
  .value-1 {
    padding: 50px 0px;
  }
  .value-img {
    height: 200px;
  }
  .offerings {
    padding-top: 150px;
  }
  .recent-blog {
    padding: 20px;
  }
  .blog-title h2 {
    font-size: 20px;
  }
  .blog-title h1 {
    font-size: 50px;
  }
  .blog {
    /* padding: 30px 0px; */
  }
  .blog-image {
    height: 200px;
  }
  .gallery-btn-box {
    width: 90%;
    padding: 15px;
  }
  .container {
    margin-bottom: 50px;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
  }
  .gallery-ui {
    margin-top: 80px;
  }
  .offer-row i,
  .am-flex i {
    font-size: 30px;
  }
  .post-1 {
    display: block;
    max-width: 98%;
  }
}

.container-6 {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 20px;
  margin-top: 100px;
}
.container-6 h2 {
  font-size: 40px;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1700px) {
  .container-6 {
    max-width: 1000px;
  }
}
