@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: underline;
}

/*------=============Montserrat font family============---*/
/*-----========Raleway font family===============---*/
.hidden {
  display: none;
}

/*_______________COMMON CSS FOR MENUS FOR ALL PAGES_______________*/
/*______SVG ANIMATION_____*/
.main {
  background-color: #d48365;
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.main svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

#EARTH {
  transform: translate(0, -50%);
  opacity: 0.4;
  transition: 0.5s;
  cursor: pointer;
  animation: EARTH 2s linear forwards;
}
@keyframes EARTH {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(0, 0);
  }
}

#AIR {
  transform: translate(50%, 0);
  opacity: 0.4;
  transition: 0.5s;
  cursor: pointer;
  animation: AIR 2s linear forwards;
}
@keyframes AIR {
  0% {
    transform: translate(50%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

#WATER {
  transform: translate(-50%, 0);
  opacity: 0.4;
  transition: 0.5s;
  cursor: pointer;
  animation: WATER 2s linear forwards;
}
@keyframes WATER {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

#UNIVERSE {
  transform: translate(50%, 50%);
  opacity: 0.4;
  transition: 0.5s;
  cursor: pointer;
  animation: UNIVERSE 2s linear forwards;
}
@keyframes UNIVERSE {
  0% {
    transform: translate(50%, 50%);
  }
  100% {
    transform: translate(0, 0);
  }
}

#FIRE {
  transform: translate(-50%, 50%);
  opacity: 0.4;
  transition: 0.5s;
  cursor: pointer;
  animation: FIRE 2s linear forwards;
}
@keyframes FIRE {
  0% {
    transform: translate(-50%, 50%);
  }
  100% {
    transform: translate(0, 0);
  }
}

/*______SVG ANIMATION END_____*/
.nav_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5% 3%;
  position: fixed;
  top: 0;
  z-index: 16;
  transition: 0.5s;
  background: #dc9b84;
  box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.4);
}
.nav_wrap .logo {
  width: 5%;
}
.nav_wrap .logo img {
  width: 100%;
  margin-bottom: 4%;
}
.nav_wrap .contact-no {
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  position: absolute;
  right: 9%;
  cursor: pointer;
  transition: 0.6s;
}
.nav_wrap .contact-no:hover {
  color: #404041;
}
.nav_wrap .menu_icon {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.5em;
  cursor: pointer;
}
.nav_wrap .menu_icon span {
  display: block;
  height: 2px;
  width: 50px;
  background-color: #ffffff;
  transition: 0.5s;
}

.menu-items-container {
  position: fixed;
  z-index: 13;
  overflow: hidden;
}
.menu-items-container .menu-list {
  position: fixed;
  top: 0;
  left: 100%;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 10;
  overflow: hidden;
  transition: 0.8s ease;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 1em;
  padding-left: 4%;
  background: #d48365;
  overflow: hidden;
}
.menu-items-container .menu-list svg {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.menu-items-container .menu-list svg .group {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: yellow;
}
.menu-items-container .menu-list ul {
  width: 25%;
  transition: 0.4s;
}
.menu-items-container .menu-list ul li {
  margin-bottom: 2%;
  list-style-type: none;
  width: 100%;
  transition: 0.5s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.menu-items-container .menu-list ul li:hover a {
  color: #b87b2d;
  margin-left: 3%;
  color: #404041;
}
.menu-items-container .menu-list ul li:hover .fa-greater-than {
  left: -10%;
  opacity: 1;
  color: #404041;
}
.menu-items-container .menu-list ul li:hover .fa-caret-down {
  transform: rotate(180deg);
}
.menu-items-container .menu-list ul li .fa-greater-than {
  position: absolute;
  left: -100%;
  font-size: 30px;
  opacity: 0;
  transition: 0.5s;
  top: 10px;
}
.menu-items-container .menu-list ul li a {
  color: #ffffff;
  font-size: 30px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  margin-left: 0;
  transition: 0.5s;
  margin-left: 60%;
}
.menu-items-container .menu-list ul li a .fa-caret-down {
  font-size: 22px;
  transition: 0.2s;
}
.menu-items-container .menu-list ul li .menu-1-style {
  animation: fade_left_1 0.4s ease 0.5s forwards;
}
@keyframes fade_left_1 {
  0% {
    margin-left: 50%;
  }
  100% {
    margin-left: 0%;
  }
}
.menu-items-container .menu-list ul li .menu-2-style {
  animation: fade_left_2 0.5s ease 0.5s forwards;
}
@keyframes fade_left_2 {
  0% {
    margin-left: 50%;
  }
  100% {
    margin-left: 0%;
  }
}
.menu-items-container .menu-list ul li .menu-3-style {
  animation: fade_left_3 0.6s ease 0.5s forwards;
}
@keyframes fade_left_3 {
  0% {
    margin-left: 50%;
  }
  100% {
    margin-left: 0%;
  }
}
.menu-items-container .menu-list ul li .menu-4-style {
  animation: fade_left_4 0.7s ease 0.5s forwards;
}
@keyframes fade_left_4 {
  0% {
    margin-left: 50%;
  }
  100% {
    margin-left: 0%;
  }
}
.menu-items-container .menu-list ul li .menu-5-style {
  animation: fade_left_5 0.8s ease 0.5s forwards;
}
@keyframes fade_left_5 {
  0% {
    margin-left: 50%;
  }
  100% {
    margin-left: 0%;
  }
}
.menu-items-container .menu-list ul li .menu-6-style {
  animation: fade_left_6 0.9s ease 0.5s forwards;
}
@keyframes fade_left_6 {
  0% {
    margin-left: 50%;
  }
  100% {
    margin-left: 0%;
  }
}
.menu-items-container .menu-list ul li .menu-7-style {
  animation: fade_left_7 1s ease 0.5s forwards;
}
@keyframes fade_left_7 {
  0% {
    margin-left: 50%;
  }
  100% {
    margin-left: 0%;
  }
}
.menu-items-container .menu-list ul li .menu-8-style {
  animation: fade_left_8 1.1s ease 0.5s forwards;
}
@keyframes fade_left_8 {
  0% {
    margin-left: 50%;
  }
  100% {
    margin-left: 0%;
  }
}
.menu-items-container .menu-list ul li .menu-9-style {
  animation: fade_left_9 1.2s ease 0.5s forwards;
}
@keyframes fade_left_9 {
  0% {
    margin-left: 50%;
  }
  100% {
    margin-left: 0%;
  }
}
.menu-items-container .menu-list ul li .menu-10-style {
  animation: fade_left_10 1.3s ease 0.5s forwards;
}
@keyframes fade_left_10 {
  0% {
    margin-left: 50%;
  }
  100% {
    margin-left: 0%;
  }
}
.menu-items-container .menu-list ul li .menu-11-style {
  animation: fade_left_10 1.4s ease 0.5s forwards;
}
@keyframes fade_left_11 {
  0% {
    margin-left: 50%;
  }
  100% {
    margin-left: 0%;
  }
}
.menu-items-container .menu-list ul li .dropdown {
  width: -moz-fit-content;
  width: fit-content;
  height: 0;
  overflow: hidden;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  transition: 0.7s;
}
.menu-items-container .menu-list ul li .dropdown li {
  list-style: none;
  margin: 0;
  margin-bottom: 1%;
}
.menu-items-container .menu-list ul li .dropdown li:hover a {
  color: #ffffff;
}
.menu-items-container .menu-list ul li .dropdown li a {
  margin-left: 0;
  font-size: 22px;
  text-transform: uppercase;
}
.menu-items-container .menu-list ul li:hover .dropdown {
  height: 180px;
  padding: 2% 0;
}

input, ul.submenu {
  display: none;
}

/*position the label*/
label {
  position: relative;
  display: block;
  cursor: pointer;
  font-size: 25px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  transition: 0.5s;
}

/*show the submenu when input is checked*/
input:checked ~ ul.submenu {
  display: block;
  padding: 0;
  margin: 0;
}

/*------directle linked with js------*/
.top_line {
  transform: rotate(45deg);
}

.middle_line {
  display: none;
}

.bottom_line {
  transform: rotate(-45deg) translate(7px, -7px);
}

/*-------End---------*/
/*_______END OF MENU________*/
.tatva-container {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  z-index: 10;
  transition: 0.8s;
}
.tatva-container h4 {
  position: absolute;
  right: 0;
  top: 45vh;
  width: 5%;
  right: 1%;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: lighter;
  font-size: 40px;
  color: #ffffff;
  z-index: 20;
  cursor: pointer;
  animation: rightArrow 3s linear alternate infinite;
}
@keyframes rightArrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(0);
  }
}
.tatva-container h4 img {
  width: 100%;
  transform: rotate(349deg);
}
.tatva-container h3 {
  position: absolute;
  left: 0;
  top: 45vh;
  height: -moz-fit-content;
  height: fit-content;
  width: 5%;
  left: 1%;
  font-weight: lighter;
  font-size: 40px;
  color: #ffffff;
  z-index: 20;
  cursor: pointer;
  animation: leftArrow 3s linear alternate infinite;
}
@keyframes leftArrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0);
  }
}
.tatva-container h3 img {
  width: 100%;
  transform: rotate(11deg);
}
.tatva-container .common {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #404041;
  transition: 0.7s;
  overflow: hidden;
  /* svg{
     width: 100%;
     height: 100%;
   }*/
}
.tatva-container .common p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  color: #ffffff;
  text-align: center;
  line-height: 1.1;
}
.tatva-container .common p .touch {
  display: block;
  font-size: 21px;
  margin-top: 5%;
  color: #d48365;
  text-decoration: none;
  cursor: pointer;
}
.tatva-container .common p .touch svg {
  animation: rightFade 2s ease infinite;
}
@keyframes rightFade {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(0);
  }
}
.tatva-container .common p .touch a {
  display: inline;
  font-size: 22px;
  cursor: pointer;
  text-decoration: none;
  color: #d48365;
}
.tatva-container .common p a {
  display: inline;
  font-size: 48px;
  cursor: pointer;
  text-decoration: none;
  color: #d48365;
}

.tatva-container .common p a:hover {
  color: #fff;
}

/*___Earth PAGE ANIMATION____*/
.tree1 {
  animation: Tree1 25s linear alternate infinite;
}
@keyframes Tree1 {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10%);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}

.tree2 {
  animation: Tree2 30s linear alternate infinite;
}
@keyframes Tree2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.tree3 {
  animation: Tree3 22s linear 1s alternate infinite;
}
@keyframes Tree3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-27%);
  }
  100% {
    transform: translateY(0);
  }
}

.tree4 {
  animation: Tree4 25s linear 3s alternate infinite;
}
@keyframes Tree4 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18%);
  }
  100% {
    transform: translateY(0);
  }
}

.tree5 {
  animation: Tree5 12s linear 3s alternate infinite;
}
@keyframes Tree5 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9%);
  }
  100% {
    transform: translateY(0);
  }
}

.tree6 {
  animation: Tree6 23s linear 2s alternate infinite;
}
@keyframes Tree6 {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5%);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateY(12%);
  }
  100% {
    transform: translateY(0);
  }
}

.tree7 {
  animation: Tree7 19s linear 5s alternate infinite;
}
@keyframes Tree7 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15%);
  }
  100% {
    transform: translateY(0);
  }
}

/*____Earth page animation end here___*/
/*____AIR PAGE ANIMATION____*/
.cloud-1 {
  animation: CLOUD_1 24s ease-in 0.5s alternate infinite;
}
@keyframes CLOUD_1 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-18%);
  }
  100% {
    transform: translateX(0);
  }
}

.cloud-2 {
  animation: CLOUD_2 15s ease-in-out 1s alternate infinite;
}
@keyframes CLOUD_2 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-15%);
  }
  100% {
    transform: translateX(0);
  }
}

.cloud-3 {
  animation: CLOUD_3 27s ease-in-out 1.2s alternate infinite;
}
@keyframes CLOUD_3 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(0);
  }
}

.cloud-4 {
  animation: CLOUD_4 25s ease-in-out 0.4s alternate infinite;
}
@keyframes CLOUD_4 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(0);
  }
}

.cloud-5 {
  animation: CLOUD_5 20s ease-in-out alternate infinite;
}
@keyframes CLOUD_5 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(0);
  }
}

.cloud-6 {
  animation: CLOUD_5 22s ease-in-out alternate infinite;
}
@keyframes CLOUD_5 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0);
  }
}

/*____AIR PAGE ANIMATION____*/
/*___UNIVERSE PAGE____*/
.big-star {
  animation: BIG_STAR 10s linear 0.2s alternate infinite;
}
@keyframes BIG_STAR {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-5%);
  }
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}

.star-1, .star-14 {
  animation: STAR_1 4s linear 0.2s alternate infinite;
}
@keyframes STAR_1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.star-2, .star-13, .star-15 {
  animation: STAR_2 15s linear alternate infinite;
}
@keyframes STAR_2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.star-3, .star-12, .star-20 {
  animation: STAR_3 8s linear alternate infinite;
}
@keyframes STAR_3 {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-8%);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

.star-4, .star-11, .star-16 {
  animation: STAR_4 5s linear alternate infinite;
}
@keyframes STAR_4 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.star-5, .star-10, .star-17 {
  animation: STAR_5 12s linear 0.2s alternate infinite;
}
@keyframes STAR_5 {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-10%);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

.star-6, .star-9, .star-18 {
  animation: STAR_6 10s linear alternate infinite;
}
@keyframes STAR_6 {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10%);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

.star-7, .star-8, .star-19 {
  animation: STAR_7 3s linear 0.2s alternate infinite;
}
@keyframes STAR_7 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*____UNIVERSE PAGE____*/
/*___WATER PAGE__________*/
.circle-1, .circle-5, .circle-6, .circle-7, .circle-23, .circle-31 {
  animation: CIRCLE_1 40s ease 0.2s infinite;
}
@keyframes CIRCLE_1 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.circle-2, .circle-8, .circle-9, .circle-29, .circle-28 {
  animation: CIRCLE_2 30s ease 0.2s infinite;
}
@keyframes CIRCLE_2 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.circle-3, .circle-13, .circle-14, .circle-15, .circle-30 {
  animation: CIRCLE_3 35s ease 1s infinite;
}
@keyframes CIRCLE_3 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.circle-4, .circle-10, .circle-11, .circle-12, .circle-16 {
  animation: CIRCLE_4 27s ease 0.5s infinite;
}
@keyframes CIRCLE_4 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.circle-18, .circle-25, .circle-26, .circle-27, .circle-22 {
  animation: CIRCLE_5 23s ease 0.5s infinite;
}
@keyframes CIRCLE_5 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.circle-24, .circle-19, .circle-20, .circle-21, .circle-17, .circle-32 {
  animation: CIRCLE_6 30s ease 0.5s infinite;
}
@keyframes CIRCLE_6 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

/*_____WATER PAGE__________*/
/*____START OF FIRE PAGE_____*/
.sun {
  animation: SUN 15s ease 0.5s infinite;
}
@keyframes SUN {
  0% {
    transform: translateY(-3%);
    opacity: 1;
  }
  50% {
    transform: translateY(30%);
    opacity: 0;
  }
  100% {
    transform: translateY(-3%);
    opacity: 1;
  }
}

.mountain {
  animation: mountain 20s ease alternate infinite;
}
@keyframes mountain {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.2;
  }
}

/*____END OF FIRE PAGE_____*/
/*____START OF CONTACT PAGE___*/
.map-wrap {
  background-color: #404041;
  margin-top: 6%;
}
.map-wrap .map {
  width: 100%;
}
.map-wrap .map img {
  width: 100%;
}

.map-details {
  background: #d48365;
}
.map-details h1 {
  margin-top: 3%;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 300;
}
.map-details h1 img {
  width: 3%;
}
.map-details .details {
  float: right;
  width: 38%;
  padding-right: 5%;
  padding-bottom: 5%;
}
.map-details .details h5 {
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 4%;
}
.map-details .details ol {
  padding: 0;
  margin: 0;
}
.map-details .details ol li {
  padding-left: 3%;
  gap: 2%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1%;
}
.map-details .details ol li::marker {
  color: #ffffff;
}
.map-details .details ol li p {
  margin: 0;
  font-size: 17px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  display: inline;
}
.map-details .details ol li p:nth-child(1) {
  float: left;
}
.map-details .details ol li p:nth-child(2) {
  float: right;
}

/*____END OF CONTACT PAGE_____*/
/*____AMENITIES PAGE________*/
.amenities-wrap {
  background-color: #404041;
  margin-top: 6%;
}
.amenities-wrap .heading {
  display: flex;
  align-items: start;
  gap: 2%;
  padding-top: 5%;
}
.amenities-wrap .heading img {
  width: 5%;
}
.amenities-wrap .heading .caption {
  width: 25%;
}
.amenities-wrap .heading .caption h1 {
  font-family: "Raleway", sans-serif;
  font-size: 48px;
  color: #d48365;
  text-transform: capitalize;
}
.amenities-wrap .heading .caption p {
  font-size: 22px;
  color: #ffffff;
}
.amenities-wrap .pancha-tatvas {
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 6%;
}
.amenities-wrap .pancha-tatvas .tatva {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 15%;
}
.amenities-wrap .pancha-tatvas .tatva a {
  text-decoration: none;
  position: relative;
}
.amenities-wrap .pancha-tatvas .tatva a p {
  font-size: 60px;
  color: #d48365;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.5s;
  transform: translate 1s linear;
}
.amenities-wrap .pancha-tatvas .tatva:hover img {
  opacity: 0;
  cursor: pointer;
}
.amenities-wrap .pancha-tatvas .tatva:hover a p {
  opacity: 1;
  transform: translate(-3%, -50%);
}
.amenities-wrap .pancha-tatvas .tatva img {
  width: 100%;
  margin-bottom: 15%;
  transition: 0.5s;
}
.amenities-wrap .pancha-tatvas .tatva h3 {
  font-size: 30px;
  color: #d48365;
  margin: 0;
}
.amenities-wrap .pancha-tatvas .tatva p {
  font-size: 22px;
  color: #ffffff;
  margin: 0;
}

/*_____AMENITIES PAGE______*/
/*____EARTH PAGE_____*/
.earth-sec-1 {
  background: #d48365;
  padding-top: 6%;
}
.earth-sec-1 .img-1 {
  width: 100%;
  position: relative;
}
.earth-sec-1 .img-1 img {
  width: 100%;
}
.earth-sec-1 .img-1 p {
  position: absolute;
  font-size: 30px;
  color: #ffffff;
  bottom: 5%;
  padding: 0 25%;
  text-align: center;
  width: 100%;
}

.earth-sec-2 {
  background: #404041;
  padding: 10%;
}
.earth-sec-2 .parent {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.earth-sec-2 .parent .left {
  width: 15%;
  margin-bottom: -11%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.earth-sec-2 .parent .left img {
  width: 100%;
}
.earth-sec-2 .parent .left p {
  color: #d48365;
  font-size: 30px;
}
.earth-sec-2 .parent .right {
  width: 60%;
}
.earth-sec-2 .parent .right img {
  width: 100%;
}
.earth-sec-2 .parent .right p {
  color: #d48365;
  font-size: 30px;
  margin-bottom: 0;
}
.earth-sec-2 .parent .right span {
  font-size: 22px;
  color: #ffffff;
}

.earth-sec-3 {
  background-color: #f4e0d9;
  padding: 6% 0;
}
.earth-sec-3 p {
  font-size: 22px;
  color: #d48365;
  margin-left: 10%;
}
.earth-sec-3 .img-3 {
  width: 80%;
  margin: 0 auto;
}
.earth-sec-3 .img-3 img {
  width: 100%;
}

/*___EARTH PAGE____*/
/*_____ABOUT US PAGE____*/
.about-banner-wrap {
  padding-top: 6%;
}
.about-banner-wrap .about-banner {
  width: 100%;
  position: relative;
}
.about-banner-wrap .about-banner img {
  width: 100%;
}
.about-banner-wrap .about-banner .caption {
  position: absolute;
  left: 5%;
  top: 5%;
}
.about-banner-wrap .about-banner .caption span {
  color: #d48365;
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
}
.about-banner-wrap .about-banner .caption p {
  color: #d48365;
  font-size: 48px;
  font-family: "Montserrat", sans-serif;
}

.about-sec-2 {
  background: #f4e0d9;
  padding-top: 5%;
}
.about-sec-2 .logo {
    width: 10%;
    margin: 2% auto;
}
.about-sec-2 .logo img {
  width: 100%;
}
.about-sec-2 .mid-image {
  width: 100%;
  margin: 0 auto;
  padding: 1% 10%;
  position: relative;
  background: linear-gradient(180deg, #f4e0d9 0%, #f4e0d9 50%, #d48365 50%, #d48365 100%);
}
.about-sec-2 .mid-image img {
  width: 100%;
}
.about-sec-2 .mid-image .owl-nav {
  position: absolute;
  width: 80%;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-sec-2 .mid-image .owl-nav .owl-next {
  margin-right: -4%;
}
.about-sec-2 .mid-image .owl-nav .owl-next i {
  color: #ffffff;
  font-size: 48px;
}
.about-sec-2 .mid-image .owl-nav .owl-prev {
  margin-left: -4%;
}
.about-sec-2 .mid-image .owl-nav .owl-prev i {
  color: #ffffff;
  font-size: 48px;
}
.about-sec-2 .desc {
  background-color: #d48365;
  padding: 0 20%;
  padding-bottom: 5%;
}
.about-sec-2 .desc h1 {
  font-size: 48px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
.about-sec-2 .desc p {
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  text-align: center;
}
.about-sec-2 .desc .all-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7%;
}
.about-sec-2 .desc .all-container .small-card {
  width: 26%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2%;
}
.about-sec-2 .desc .all-container .small-card img {
  width: 40%;
}
.about-sec-2 .desc .all-container .small-card p {
  width: 100%;
}
.about-sec-2 .desc .all-container .line {
  height: 15vh;
  width: 1px;
  background-color: #404041;
}

.about-sec-3 {
  background-color: #f4e0d9;
}
.about-sec-3 .img {
  width: 100%;
}
.about-sec-3 .img img {
  width: 100%;
}
.about-sec-3 .pattern {
  width: 100%;
}
.about-sec-3 .pattern img {
  width: 100%;
  opacity: 0.4;
}
.about-sec-3 .contents {
  padding: 3% 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-sec-3 .contents span {
  font-size: 22px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.about-sec-3 .contents h1 {
  font-size: 48px;
  color: #d48365;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.about-sec-3 .contents p {
  font-size: 22px;
  text-align: center;
  font-family: "Raleway", sans-serif;
}
.about-sec-3 .contents .res-icons {
  display: grid;
  grid-template-columns: repeat(5, 18%);
  align-items: start;
  justify-content: space-between;
  padding: 3% 0 0 0;
  width: 100%;
}
.about-sec-3 .contents .res-icons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.about-sec-3 .contents .res-icons div img {
  width: 55%;
  padding-bottom: 7%;
}
.about-sec-3 .contents .res-icons div span {
  line-height: 1.3;
}
.about-sec-3 .middle {
  width: 80%;
  margin: 0 auto;
}
.about-sec-3 .middle img {
  width: 100%;
}
.about-sec-3 .earth-icons {
  margin-top: 10%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: relative;
}
.about-sec-3 .earth-icons .one {
  width: 15%;
}
.about-sec-3 .earth-icons .two {
  width: 25%;
}
.about-sec-3 .earth-icons .three {
  width: 20%;
}
.about-sec-3 .earth-icons .four {
  width: 30%;
}
.about-sec-3 .earth-icons .five {
  width: 30%;
  width: 10%;
  position: absolute;
  top: -5%;
  left: 10%;
}
.about-sec-3 .earth-icons .six {
  width: 10%;
  position: absolute;
  top: -18%;
  right: 24%;
}

/*____ABOUT US PAGE____*/
/*_____NEW EARTH PAGE_________*/
.earth-items-container {
  position: relative;
}
.earth-items-container .content {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.earth-items-container .content h1 {
  font-family: "Raleway", sans-serif;
  font-size: 48px;
  color: #d48365;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 3%;
}
.earth-items-container .content p {
  font-size: 22px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  display: block;
  text-align: center;
  margin-bottom: 3%;
  text-transform: uppercase;
}
.earth-items-container .content .items {
  display: grid;
  grid-template-columns: repeat(6, 11%);
  align-items: start;
  justify-content: center;
  gap: 2%;
  row-gap: 2em;
  margin-bottom: 3%;
}
.earth-items-container .content .items div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.earth-items-container .content .items div img {
  width: 60%;
}
.earth-items-container .content .items div span {
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  color: #d48365;
  line-height: 1.5;
}

.full-img-section {
  width: 100%;
  overflow: hidden;
}
.full-img-section .img {
  width: 100%;
  position: relative;
}
.full-img-section .img img {
  width: 100%;
}
.full-img-section .img .big-a {
  position: absolute;
  width: 45%;
  right: -8%;
  bottom: 0;
  height: 100%;
}
.full-img-section .img .big-a img {
  width: 100%;
  height: 100%;
}
.full-img-section span {
  font-size: 22px;
  color: #d48365;
  font-family: "Montserrat", sans-serif;
  background-color: #f4e0d9;
  display: block;
  padding: 10px 0 0 10%;
}

.earth-mid-section {
  background-color: #f4e0d9;
  /*______________DIRECTLY LINKED WITH JAVASCRIPT_____________*/
}
.earth-mid-section .mid-image {
  width: 100%;
  margin: 0 auto;
  padding: 6% 10%;
  position: relative;
  background: linear-gradient(180deg, #f4e0d9 0%, #f4e0d9 50%, #d48365 50%, #d48365 100%);
}
.earth-mid-section .mid-image img {
  width: 100%;
}
.earth-mid-section .mid-image span {
  font-size: 22px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}
.earth-mid-section .mid-image .owl-nav {
  position: absolute;
  width: 80%;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.earth-mid-section .mid-image .owl-nav .owl-next i, .earth-mid-section .mid-image .owl-nav .owl-prev i {
  color: #ffffff;
  font-size: 48px;
}
.earth-mid-section .mid-image .owl-nav .owl-prev {
  margin-left: -4%;
}
.earth-mid-section .mid-image .owl-nav .owl-next {
  margin-right: -4%;
}
.earth-mid-section .mid-image .item span {
  font-size: 30px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}
.earth-mid-section .mid-image .item p {
  font-size: 22px;
  color: #404041;
  font-family: "Raleway", sans-serif;
}
.earth-mid-section .parellel-imgs {
  background-color: #d48365;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 0 10%;
  padding-bottom: 6%;
  margin-top: -1px;
}
.earth-mid-section .parellel-imgs div {
  width: 32%;
}
.earth-mid-section .parellel-imgs div img {
  width: 100%;
}
.earth-mid-section .parellel-imgs div span {
  font-size: 22px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}
.earth-mid-section .full-img {
  width: 100%;
  margin-bottom: 3%;
}
.earth-mid-section .full-img img {
  width: 100%;
}
.earth-mid-section .full-img span {
  color: #d48365;
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  margin-left: 10%;
}
.earth-mid-section .full-img .desc {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 1% 10%;
}
.earth-mid-section .full-img .desc .left {
  width: 40%;
}
.earth-mid-section .full-img .desc .left h4 {
  font-size: 48px;
  color: #d48365;
  font-family: "Montserrat", sans-serif;
}
.earth-mid-section .full-img .desc .left p {
  font-size: 22px;
  color: #d48365;
  font-family: "Montserrat", sans-serif;
}
.earth-mid-section .full-img .desc .right {
  width: 40%;
  font-size: 22px;
  color: #d48365;
  font-family: "Montserrat", sans-serif;
}
.earth-mid-section .parellel-imgs-2 {
  display: grid;
  grid-template-columns: repeat(3, 32%);
  align-items: start;
  justify-content: space-between;
  padding: 5% 10%;
  row-gap: 1em;
}
.earth-mid-section .parellel-imgs-2 div {
  width: 100%;
}
.earth-mid-section .parellel-imgs-2 div img {
  width: 100%;
}
.earth-mid-section .parellel-imgs-2 div span {
  font-size: 22px;
  color: #d48365;
  font-family: "Montserrat", sans-serif;
}
.earth-mid-section .btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4%;
}
.earth-mid-section .btn-container #viewMoreBtn {
  outline: 0;
  font-size: 22px;
  border: none;
  background: transparent;
  font-family: "Montserrat", sans-serif;
  color: #d48365;
}
.earth-mid-section .image-hidden {
  display: none;
}
.earth-mid-section .earth-icons {
  margin-top: 5%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: relative;
}
.earth-mid-section .earth-icons .one {
  width: 15%;
}
.earth-mid-section .earth-icons .two {
  width: 25%;
}
.earth-mid-section .earth-icons .three {
  width: 20%;
}
.earth-mid-section .earth-icons .four {
  width: 30%;
}
.earth-mid-section .earth-icons .five {
  width: 30%;
  width: 10%;
  position: absolute;
  top: -5%;
  left: 10%;
}
.earth-mid-section .earth-icons .six {
  width: 10%;
  position: absolute;
  top: -18%;
  right: 24%;
}
.earth-mid-section .earth-icons .the-sun {
  width: 15%;
  position: absolute;
  left: 20%;
  top: 5%;
  animation: theSun 10s linear alternate infinite;
}
.earth-mid-section .earth-icons .the-sun img {
  width: 100%;
}
@keyframes theSun {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.earth-mid-section .earth-icons .cloudy {
  width: 100%;
}

.menu-items-container .menu-list ul li.tab-dis {
  display: none;
}

/*____END OF NEW EARTH PAGE_________*/
/*____START OF SPECIFICATION PAGE____*/
.specification-banner {
  width: 100%;
  padding-top: 6%;
}
.specification-banner img {
  width: 100%;
}

.specification-desc-wrap {
  background-color: #d48365;
  overflow: hidden;
}
.specification-desc-wrap .specification-grid {
  max-width: 80%;
  padding: 2% 0;
}
.specification-desc-wrap .specification-grid .row .desc h3 {
  font-size: 30px;
  color: #404041;
  font-family: "Montserrat", sans-serif;
}
.specification-desc-wrap .specification-grid .row .desc ul {
  padding: 0;
}
.specification-desc-wrap .specification-grid .row .desc ul li {
  font-size: 22px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 3%;
  line-height: 1.4;
}

.specification-more-wrap {
  background-color: #404041;
}
.specification-more-wrap .mid-image {
  width: 100%;
  margin: 0 auto;
  padding: 1% 10%;
  position: relative;
  background: linear-gradient(180deg, #d48365 0%, #d48365 50%, #404041 50%, #404041 100%);
}
.specification-more-wrap .mid-image img {
  width: 100%;
}
.specification-more-wrap .specification-grid {
  max-width: 80%;
  padding: 3% 0;
  overflow: hidden;
}
.specification-more-wrap .specification-grid .row .desc h3 {
  font-size: 30px;
  color: #d48365;
  font-family: "Montserrat", sans-serif;
}
.specification-more-wrap .specification-grid .row .desc ul {
  padding: 0;
}
.specification-more-wrap .specification-grid .row .desc ul li {
  font-size: 22px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 1%;
}

/*___END OF SPECIFICATION PAGE_____*/
/*______START OF PLAN IMAGES______*/
.plan-images-wrap {
  width: 100%;
  background: #d48365;
  padding: 12% 10% 3% 10%;
}
.plan-images-wrap img {
  width: 100%;
}
.plan-images-wrap .plan-info {
  padding-top: 3%;
}
.plan-images-wrap .plan-info .row .title h1 {
  font-family: "Raleway", sans-serif;
  font-size: 48px;
  color: #d48365;
  color: #ffffff;
}
.plan-images-wrap .plan-info .row .title h1 img {
  width: 6%;
}
.plan-images-wrap .plan-info .row ol {
  padding: 0;
  margin: 0;
}
.plan-images-wrap .plan-info .row ol li {
  font-size: 22px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 3%;
}
.plan-images-wrap .plan-info .row h5 {
  font-size: 22px;
  color: #ffffff;
  font-size: "Raleway", sans-serif;
  font-weight: 700;
}

.plan-sec-2, .plan-sec-1 {
  background-color: #dc9b84;
  overflow: hidden;
}
.plan-sec-2 .description, .plan-sec-1 .description {
  padding: 3% 3% 3% 5%;
}
.plan-sec-2 .description h1, .plan-sec-1 .description h1 {
  font-size: 48px;
  font-family: "Raleway", sans-serif;
  color: #ffffff;
  margin-bottom: 3%;
}
.plan-sec-2 .description h1 img, .plan-sec-1 .description h1 img {
  width: 6%;
}
.plan-sec-2 .description h5, .plan-sec-1 .description h5 {
  margin-bottom: 4%;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  letter-spacing: 1px;
  font-size: 22px;
}
.plan-sec-2 .description .row ol, .plan-sec-1 .description .row ol {
  margin-bottom: 0;
}
.plan-sec-2 .description .row ol li, .plan-sec-1 .description .row ol li {
  font-size: 22px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 2%;
}

.plan-sec-1 {
  background: #d48365;
  padding-top: 6%;
}

.residential-plan-imgs {
  padding: 4% 10%;
  background: #f4e0d9;
  overflow: hidden;
}
.residential-plan-imgs h1 {
  font-size: 48px;
  font-family: "Montserrat", sans-serif;
  color: #d48365;
  text-align: center;
  margin-bottom: 3%;
}
.residential-plan-imgs .row {
  position: relative;
}
.residential-plan-imgs .row .full-img {
  width: 100%;
  position: relative;
}
.residential-plan-imgs .row .full-img ::after {
  z-index: 10;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.1) 42%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.3) 100%);
}
.residential-plan-imgs .row .full-img img {
  border: 3px solid #d48365;
  width: 100%;
}
.residential-plan-imgs .row div {
  position: relative;
  padding: 0;
}
.residential-plan-imgs .row div .heading {
  display: flex;
  align-items: start;
  position: absolute;
  top: 3%;
  left: 0;
  gap: 1%;
  z-index: 10;
  width: 100%;
}
.residential-plan-imgs .row div .heading img {
  border: none;
  width: 4%;
}
.residential-plan-imgs .row div .heading .head {
  width: 100%;
}
.residential-plan-imgs .row div .heading .head h2 {
  font-size: 35px;
  font-family: "Montserrat", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  color: #d48365;
  margin: 0;
}
.residential-plan-imgs .row div .heading .head span {
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-weight: 200;
}
.residential-plan-imgs .row div .icons {
  position: absolute;
  right: 5%;
  bottom: 2%;
  display: flex;
  align-items: start;
  justify-content: end;
  width: 50%;
  gap: 6%;
  z-index: 10;
  margin-bottom: 1%;
}
.residential-plan-imgs .row div .icons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 18%;
  gap: 0.4em;
}
.residential-plan-imgs .row div .icons div img {
  border: none;
  width: 90%;
  margin-right: 8px;
}
.residential-plan-imgs .row div .icons div span {
  font-size: 17px;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
}
.residential-plan-imgs .button {
  font-size: 22px;
  font-family: "Raleway", sans-serif;
  margin-top: 4%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.residential-plan-imgs .button a {
  text-decoration: none;
  color: #404041;
  width: -moz-fit-content;
  width: fit-content;
}
.residential-plan-imgs .button i {
  color: #d48365;
  margin-left: -6px;
  opacity: 0;
  transition: 0.5s;
}
.residential-plan-imgs .button:hover i {
  margin-left: 6px;
  opacity: 1;
}

/*______END OF PLAN IMAGES_____*/
/*____START OF WALKTHROUGH PAGE___*/
.walkthrough-sec-wrap {
  background: #d48365;
  padding-top: 12%;
}
.walkthrough-sec-wrap .youtube-video {
  width: 80%;
  height: 80vh;
  margin: 0 auto;
  position: relative;
}
.walkthrough-sec-wrap .youtube-video iframe {
  width: 100%;
  height: 100%;
}
.walkthrough-sec-wrap .content {
  width: 60%;
  margin: 4% auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.walkthrough-sec-wrap .content span {
  font-size: 30px;
  color: #404041;
  font-family: "Raleway", sans-serif;
}
.walkthrough-sec-wrap .content h1 {
  font-size: 48px;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  text-align: center;
}
.walkthrough-sec-wrap .content p {
  font-size: 22px;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  text-align: center;
}
.walkthrough-sec-wrap .earth-mid-section {
  background-color: #d48365;
  overflow: hidden;
}
.walkthrough-sec-wrap .earth-mid-section .earth-icons {
  margin-top: 12%;
  opacity: 0.5;
}

/*____END OF WALKTHROUGH PAGE_____*/
/*____START OF RESIDENTIAL INTERIOR START___*/
.interior-img-wrap {
  background: #404041;
  overflow: hidden;
}
.interior-img-wrap .row .left {
  position: relative;
}
.interior-img-wrap .row .left .flex {
  position: absolute;
  right: 0;
  bottom: 0;
}
.interior-img-wrap .row .left .flex h1 {
  font-size: 48px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}
.interior-img-wrap .row .left .flex img {
  width: 5%;
}
.interior-img-wrap .row .right {
  width: 80%;
}
.interior-img-wrap .row .right img {
  width: 100%;
}
.interior-img-wrap .row .flex {
  margin-top: 3%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1%;
}
.interior-img-wrap .row .flex h1 {
  color: #d48365;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
}
.interior-img-wrap .row .flex img {
  width: 6%;
}

/*____START OF RESIDENTIAL INTERIOR END___*/
/*____CONATCT US PAGE START HERE____*/
.address-details-wrap {
  background-color: #404041;
  overflow: hidden;
}
.address-details-wrap .row .contact-info {
  padding: 0 5% 0 10%;
}
.address-details-wrap .row .contact-info h1 {
  font-size: 48px;
  color: #d48365;
  font-family: "Raleway", sans-serif;
  margin-bottom: 5%;
}
.address-details-wrap .row .contact-info p {
  font-size: 22px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 4%;
}
.address-details-wrap .row .contact-info p span {
  color: #d48365;
  text-transform: uppercase;
}
.address-details-wrap .row .contact-info ul {
  margin: 0;
  padding: 0;
}
.address-details-wrap .row .contact-info ul li {
  list-style: none;
  display: inline-block;
  padding-right: 1%;
}
.address-details-wrap .row .contact-info ul li a {
  text-decoration: none;
}
.address-details-wrap .row .contact-info ul li a i {
  font-size: 22px;
  color: #ffffff;
  height: 55px;
  width: 55px;
  border: 1px solid #d48365;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s;
}
.address-details-wrap .row .contact-info ul li a i:hover {
  background: #d48365;
}
.address-details-wrap .row .blue-form {
  width: 100%;
  background-color: #d48365;
  padding: 7% 10%;
}
.address-details-wrap .row .blue-form h1 {
  font-size: 48px;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  margin-bottom: 3%;
  text-align: center;
}
.address-details-wrap .row .blue-form form {
  font-family: "Roboto", sans-serif;
}
.address-details-wrap .row .blue-form form .field {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2%;
}
.address-details-wrap .row .blue-form form .field input {
  width: 49%;
  font-size: 22px;
  font-family: "Raleway", sans-serif;
  background: #f4e0d9;
  border: none;
  height: 65px;
  color: #404041;
  letter-spacing: 1px;
  padding-left: 2%;
}
.address-details-wrap .row .blue-form form .field input:focus {
  outline: 0;
}
.address-details-wrap .row .blue-form form .msg-box {
  width: 100%;
  margin-bottom: 2%;
}
.address-details-wrap .row .blue-form form .msg-box textarea {
  width: 100%;
  background: #f4e0d9;
  border: none;
  color: #404041;
  font-size: 22px;
  letter-spacing: 1px;
  padding: 2% 0 0 2%;
  font-family: "Raleway", sans-serif;
}
.address-details-wrap .row .blue-form form .msg-box textarea:focus {
  outline: 0;
}
.address-details-wrap .row .blue-form form .last-line {
  display: flex;
  align-items: center;
  justify-content: end;
}
.address-details-wrap .row .blue-form form .last-line button {
  background-color: transparent;
  font-size: 22px;
  font-family: "Raleway", sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  float: right;
  transition: 0.5s;
  position: relative;
  border: none;
}
.address-details-wrap .row .blue-form form .last-line button i {
  margin-left: -5px;
  opacity: 0;
  transition: 0.5s;
}
.address-details-wrap .row .blue-form form .last-line button:hover i {
  opacity: 1;
  margin-left: 6px;
}
.address-details-wrap .row .blue-form form .last-line button span {
  z-index: 2;
  position: relative;
}

.modal-header {
  background: #f4e0d9;
  border-bottom: none;
  padding: 0 0;
}
.modal-header button {
  background-color: #d48365;
  padding: 20px;
}

.modal-body {
  background: #f4e0d9;
}
.modal-body .blue-form {
  width: 100%;
  background-color: #ffffff;
  padding: 3% 10%;
  border: 3px solid #d48365;
}
.modal-body .blue-form h1 {
  font-size: 48px;
  color: #404041;
  font-family: "Raleway", sans-serif;
  margin-bottom: 0%;
  text-align: center;
  margin-bottom: 1%;
}
.modal-body .blue-form p {
  text-align: center;
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  color: #d48365;
  text-align: center;
  margin-bottom: 4%;
}
.modal-body .blue-form form {
  font-family: "Roboto", sans-serif;
}
.modal-body .blue-form form .field {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2%;
}
.modal-body .blue-form form .field input {
  width: 49%;
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  background: transparent;
  border: 1px solid #d48365;
  height: 55px;
  color: #404041;
  letter-spacing: 1px;
  padding-left: 2%;
}
.modal-body .blue-form form .field input:focus {
  outline: 0;
}
.modal-body .blue-form form .msg-box {
  width: 100%;
  margin-bottom: 2%;
}
.modal-body .blue-form form .msg-box textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #d48365;
  color: #404041;
  font-size: 22px;
  letter-spacing: 1px;
  padding: 2% 0 0 2%;
  font-family: "Montserrat", sans-serif;
}
.modal-body .blue-form form .msg-box textarea:focus {
  outline: 0;
}
.modal-body .blue-form form .last-line {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-body .blue-form form .last-line button {
  background-color: transparent;
  font-size: 22px;
  font-family: "Raleway", sans-serif;
  color: #404041;
  padding: 10px 2% 10px 2%;
  letter-spacing: 1px;
  float: right;
  transition: 0.5s;
  position: relative;
  border: none;
}
.modal-body .blue-form form .last-line button i {
  margin-left: -5px;
  opacity: 0;
  color: #d48365;
  transition: 0.5s;
}
.modal-body .blue-form form .last-line button:hover i {
  margin-left: 6px;
  opacity: 1;
}
.modal-body .blue-form form .last-line button span {
  z-index: 2;
  position: relative;
}

.modal-dialog {
  width: 70%;
}

.enquire-btn {
  z-index: 10;
  position: fixed;
  width: -moz-fit-content;
  width: fit-content;
  right: 1%;
  bottom: 0.5%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.5s;
  gap: 0.3em;
}
.enquire-btn span {
  font-size: 17px;
  color: #404041;
  font-family: "Raleway", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -15%;
  opacity: 0;
  transition: 0.5s;
}
.enquire-btn div {
  width: 40%;
  height: 85px;
  width: 85px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.enquire-btn div img {
  width: 50%;
}
.enquire-btn:hover span {
  opacity: 1;
  margin-top: 0%;
}

/*____CONTACT US PAGE END HERE___*/
/*_____START OF CONSTRUCTION UPDATE PAGE_____*/
.multiple-plan-imgs {
  overflow: hidden;
  padding: 5% 10%;
  background-color: #f4e0d9;
}
.multiple-plan-imgs h1 {
  font-size: 48px;
  color: #ffffff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 3%;
}
.multiple-plan-imgs div img {
  border: 3px solid #d48365;
}
.multiple-plan-imgs button {
  background-color: transparent;
  font-size: 22px;
  font-family: "Raleway", sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  float: right;
  transition: 0.5s;
  position: relative;
  border: none;
  width: 100%;
}
.multiple-plan-imgs button i {
  margin-left: -5px;
  opacity: 0;
  transition: 0.5s;
}
.multiple-plan-imgs button:hover i {
  opacity: 1;
  margin-left: 6px;
}
.multiple-plan-imgs button span {
  z-index: 2;
  position: relative;
}

/*____END OF CONSTRUCTION UPDATE PAGE___*/
@media (max-width: 1600px) {
  .enquire-btn div {
    width: 40%;
    height: 60px;
    width: 60px;
  }
  .nav_wrap .contact-no {
    font-size: 17px;
  }
  .about-sec-3 .contents span {
    font-size: 17px;
  }
  .earth-items-container .content p {
    font-size: 17px;
  }
  .plan-sec-2 .description h1, .plan-sec-1 .description h1 {
    font-size: 40px;
  }
  .plan-sec-2 .description h5, .plan-sec-1 .description h5 {
    font-size: 17px;
  }
  .interior-img-wrap .row .left .flex h1 {
    font-size: 30px;
  }
  .residential-plan-imgs h1 {
    font-size: 40px;
  }
  .residential-plan-imgs .button {
    font-size: 17px;
  }
  .residential-plan-imgs .row div .heading .head h2 {
    font-size: 25px;
  }
  .residential-plan-imgs .row div .heading .head span {
    font-size: 16px;
  }
  .residential-plan-imgs .row div .icons div span {
    font-size: 15px;
  }
  .multiple-plan-imgs button {
    font-size: 17px;
  }
  .menu-items-container .menu-list ul li:hover .dropdown {
    height: 150px;
  }
  .menu-items-container .menu-list ul li .dropdown li a {
    font-size: 17px;
  }
  .menu-items-container .menu-list ul li .fa-greater-than {
    top: 5px;
  }
  .nav_wrap .menu_icon span {
    width: 40px;
  }
  .menu-items-container .menu-list ul {
    gap: 0.1em;
  }
  .menu-items-container .menu-list ul li a {
    font-size: 17px;
  }
  .menu-items-container .menu-list ul li .fa-greater-than {
    font-size: 17px;
  }
  .tatva-container .common p {
    font-size: 40px;
  }
  .tatva-container .common p a {
    font-size: 40px;
  }
  .tatva-container .common p span a {
    font-size: 40px;
  }
  .about-sec-2 .desc h1 {
    font-size: 40px;
  }
  .about-sec-2 .desc p {
    font-size: 17px;
  }
  .about-sec-3 .contents p {
    font-size: 17px;
  }
  .about-sec-3 .contents h1 {
    font-size: 40px;
  }
  .about-sec-3 .contents span {
    font-size: 17px;
  }
  .about-banner-wrap .about-banner .caption p {
    font-size: 40px;
  }
  .about-banner-wrap .about-banner .caption span {
    font-size: 17px;
  }
  .map-details h1 {
    font-size: 40px;
  }
  .amenities-wrap .heading .caption h1 {
    font-size: 40px;
  }
  .amenities-wrap .heading .caption p {
    font-size: 17px;
  }
  .amenities-wrap .pancha-tatvas .tatva p {
    font-size: 17px;
  }
  .earth-sec-2 .parent .left p {
    font-size: 17px;
  }
  .earth-sec-1 .img-1 p {
    font-size: 25px;
  }
  .earth-sec-2 .parent .right p {
    font-size: 25px;
  }
  .earth-sec-2 .parent .right span {
    font-size: 17px;
  }
  .earth-sec-3 p {
    font-size: 17px;
  }
  .amenities-wrap .pancha-tatvas .tatva h3 {
    font-size: 25px;
  }
  .earth-items-container .content .items div span {
    font-size: 15px;
  }
  .full-img-section span {
    font-size: 17px;
  }
  .earth-mid-section .mid-image .item span {
    font-size: 25px;
  }
  .earth-mid-section .mid-image .item p {
    font-size: 17px;
  }
  .earth-mid-section .parellel-imgs div span {
    font-size: 17px;
  }
  .earth-mid-section .full-img span {
    font-size: 17px;
  }
  .earth-mid-section .parellel-imgs-2 div span {
    font-size: 17px;
  }
  .earth-mid-section .full-img .desc .right {
    font-size: 17px;
  }
  .earth-mid-section .full-img .desc .left h4 {
    font-size: 30px;
  }
  .earth-mid-section .full-img .desc .left p {
    font-size: 17px;
  }
  .earth-items-container .content h1 {
    font-size: 40px;
  }
  .earth-mid-section .mid-image span {
    font-size: 17px;
  }
  .earth-mid-section .btn-container #viewMoreBtn {
    font-size: 17px;
  }
  /*___SPECIFICATION PAGE START____*/
  .specification-desc-wrap .specification-grid .row .desc h3 {
    font-size: 25px;
  }
  .specification-desc-wrap .specification-grid .row .desc ul li {
    font-size: 17px;
  }
  /*_____SPECIFICATION PAGE END____*/
  /*_____START OF WALKTHROUGH PAGE____*/
  .walkthrough-sec-wrap .content span {
    font-size: 25px;
  }
  .walkthrough-sec-wrap .content h1 {
    font-size: 40px;
  }
  .walkthrough-sec-wrap .content p {
    font-size: 17px;
  }
  /*_____END OF WALKTHROUGH PAGE______*/
  /*____START OF PLAN PAGE_____*/
  .plan-images-wrap .plan-info .row .title h1 {
    font-size: 40px;
  }
  .plan-images-wrap .plan-info .row ol li {
    font-size: 17px;
  }
  .plan-sec-2 .description h1 {
    font-size: 40px;
  }
  .plan-sec-2 .description .row ol li, .plan-sec-1 .description .row ol li {
    font-size: 17px;
  }
  .multiple-plan-imgs h1 {
    font-size: 40px;
  }
  .plan-images-wrap .plan-info .row h5 {
    font-size: 17px;
  }
  /*____END OF PLAN PAGE____*/
  /*____START OF RESIDENTIAL INTERIOR PAGE____*/
  .interior-img-wrap .row .flex h1 {
    font-size: 25px;
  }
  .multiple-plan-imgs .button {
    font-size: 17px;
  }
  /*____END OF RESIDENTIAL INTERIOR PAGE_____*/
  /*____START OF CONTACT PAGE_____*/
  .address-details-wrap .row .blue-form form .field input {
    font-size: 17px;
  }
  .address-details-wrap .row .blue-form form .msg-box textarea {
    font-size: 17px;
  }
  .address-details-wrap .row .blue-form form .last-line button {
    font-size: 17px;
  }
  .address-details-wrap .row .blue-form h1 {
    font-size: 40px;
  }
  .address-details-wrap .row .contact-info h1 {
    font-size: 40px;
  }
  .address-details-wrap .row .contact-info p {
    font-size: 17px;
  }
  .address-details-wrap .row .contact-info p {
    font-size: 17px;
  }
  .address-details-wrap .row .contact-info ul li a i {
    font-size: 17px;
    height: 45px;
    width: 45px;
  }
  .address-details-wrap .row .blue-form form .field input {
    height: 55px;
  }
  /*____END OF CONTACT PAGE_____*/
  .modal-body .blue-form h1 {
    font-size: 40px;
  }
  .modal-body .blue-form p {
    font-size: 17px;
  }
  .modal-body .blue-form form .field input {
    font-size: 17px;
  }
  .modal-body .blue-form form .msg-box textarea {
    font-size: 17px;
  }
  .modal-body .blue-form form .last-line button {
    font-size: 17px;
  }
}
@media (max-width: 1150px) {
  .residential-plan-imgs .row div .icons {
    width: 100%;
    gap: 3%;
  }
  .residential-plan-imgs .row div .icons div {
    width: 16%;
  }
  .tatva-container .common p {
    font-size: 30px;
  }
  .tatva-container .common p a {
    font-size: 30px;
  }
  .menu-items-container .menu-list svg {
    height: 100vh;
  }
  .nav_wrap .logo {
    width: 10%;
  }
  .menu-items-container .menu-list ul li.tab-dis {
    display: block;
  }
  .tab-desk-dis {
    display: none !important;
  }
  input:checked ~ ul.submenu {
    width: 100%;
    margin-top: 25px;
    padding-left: 15px;
  }
  label {
    font-size: 17px;
  }
  .submenu li {
    margin-bottom: 3% !important;
  }
  .submenu li a {
    margin-left: 0 !important;
  }
  .menu-items-container .menu-list ul {
    width: 30%;
  }
  .about-sec-2 .desc {
    padding: 0 8%;
  }
  .amenities-wrap .heading .caption {
    width: 50%;
  }
  .earth-sec-1 .img-1 p {
    padding: 0 16%;
  }
  .map-details .details {
    width: 45%;
  }
  .earth-items-container {
    background: #404041;
    padding: 5% 0;
  }
  .earth-items-container .content .items {
    display: grid;
    grid-template-columns: repeat(5, 15%);
  }
  .earth-items-container .content {
    position: static;
    transform: translate(0, 0);
    margin-top: -50%;
    padding: 4% 0;
  }
  .earth-items-container .content .items div {
    width: 100%;
  }
  .earth-sec-1 {
    background: #d48365;
    padding-top: 12%;
  }
  .map-wrap, .amenities-wrap {
    margin-top: 12%;
  }
  .about-banner-wrap, .specification-banner {
    padding-top: 12%;
  }
  .about-sec-3 .contents .res-icons {
    display: grid;
    grid-template-columns: repeat(3, 30%);
    row-gap: 2em;
  }
  .plan-sec-1 {
    background: #d48365;
    padding-top: 11%;
  }
}
@media (max-width: 767px) {
  .residential-plan-imgs .button {
    font-size: 15px;
  }
  .enquire-btn span {
    font-size: 15px;
  }
  .residential-plan-imgs h1 {
    font-size: 30px;
  }
  .interior-img-wrap .row .left .flex h1 {
    font-size: 20px;
  }
  .about-sec-3 .contents .res-icons {
    row-gap: 1em;
  }
  .residential-plan-imgs .row div .heading .head h2 {
    font-size: 20px;
  }
  .residential-plan-imgs .row div .heading .head span {
    font-size: 15px;
  }
  .residential-plan-imgs .row div .icons {
    width: 100%;
    display: none;
  }
  .nav_wrap .contact-no {
    left: 5%;
    display: none;
  }
  label {
    font-size: 18px;
  }
  input:checked ~ ul.submenu {
    margin-top: 5px;
  }
  .menu-items-container .menu-list ul li {
    margin-bottom: 7%;
  }
  .tatva-container .common p a {
    font-size: 20px;
  }
  .tatva-container .common p .touch a {
    font-size: 15px;
  }
  .tatva-container .common p .touch {
    font-size: 15px;
  }
  .tatva-container .common p a svg {
    height: 4vh;
  }
  .menu-items-container .menu-list ul li:hover .dropdown {
    height: 130px;
  }
  .main svg {
    width: 250%;
  }
  .menu-items-container .menu-list ul li .dropdown li a {
    font-size: 15px;
  }
  /*___INDEX PAGE_____*/
  .mid-container > div {
    margin-bottom: -1%;
  }
  .nav_wrap .logo {
    width: 15%;
  }
  .nav_wrap {
    padding: 1.5% 5%;
  }
  .menu-items-container .menu-list ul {
    width: 60%;
    transition: 0.5s;
    padding-left: 0;
  }
  .menu-items-container .menu-list ul li a {
    font-size: 18px;
  }
  .menu-items-container .menu-list ul li .fa-greater-than {
    font-size: 20px;
  }
  /*_____END OF INDEX PAGE____*/
  /*___About us page____*/
  .about-banner-wrap {
    padding-top: 19%;
  }
  .about-banner-wrap .about-banner .caption span {
    font-size: 15px;
  }
  .about-banner-wrap .about-banner .caption p {
    font-size: 30px;
    line-height: 1;
  }
  .about-sec-2 .desc h1 {
    font-size: 30px;
    padding: 2% 0;
  }
  .about-sec-2 .desc p {
    font-size: 15px;
  }
  .about-sec-2 .desc {
    padding: 0 5%;
  }
  .about-sec-2 .desc .all-container {
    flex-direction: column-reverse;
    gap: 2em;
    padding: 5% 0;
  }
  .about-sec-2 .desc .all-container .small-card {
    width: 55%;
  }
  .about-sec-3 .contents {
    padding: 3% 10%;
  }
  .about-sec-3 .contents span {
    font-size: 15px;
    width: 100%;
  }
  .about-sec-3 .contents h1 {
    font-size: 30px;
  }
  .about-sec-3 .contents p {
    font-size: 15px;
    text-align: justify;
  }
  .about-sec-2 .desc .all-container .line {
    width: 100%;
    height: 1px;
  }
  /*____END OF ABOUT US PAGE____*/
  /*___START of Amenities page___*/
  .amenities-wrap {
    margin-top: 19%;
  }
  .amenities-wrap .heading .caption {
    width: -moz-fit-content;
    width: fit-content;
  }
  .amenities-wrap .heading .caption h1 {
    font-size: 30px;
  }
  .amenities-wrap .heading .caption p {
    font-size: 15px;
    text-align: justify;
  }
  .amenities-wrap .pancha-tatvas {
    display: grid;
    grid-template-columns: repeat(2, 45%);
    row-gap: 2em;
  }
  .amenities-wrap .pancha-tatvas .tatva {
    width: 100%;
  }
  .amenities-wrap .pancha-tatvas .tatva img {
    width: 100%;
    margin-bottom: 5%;
  }
  .amenities-wrap .pancha-tatvas .tatva h3 {
    font-size: 20px;
  }
  .amenities-wrap .pancha-tatvas .tatva p {
    font-size: 15px;
  }
  .amenities-wrap .heading {
    padding-top: 5%;
    padding-right: 5%;
  }
  /*____END of Amenities page_____*/
  /*___CONTACT US PAGE START_____*/
  .map-wrap {
    margin-top: 19%;
  }
  .map-details .details {
    float: right;
    width: 100%;
    padding: 0 5% 5% 10%;
  }
  .map-details h1 {
    font-size: 30px;
    margin-bottom: 6%;
  }
  .map-details .details ol li p {
    margin: 0;
    font-size: 15px;
  }
  .map-details .details h5 {
    font-size: 15px;
  }
  .tatva-container .common p {
    font-size: 20px;
    width: 100%;
    padding: 0 10%;
  }
  .tatva-container .common p span a {
    font-size: 20px;
  }
  .tatva-container, .tatva-container h3 {
    font-size: 20px;
  }
  .tatva-container h4 {
    text-align: right;
    font-size: 20px;
  }
  .tatva-container h4 svg {
    width: 50%;
  }
  .tatva-container h4 svg rect {
    width: 100%;
  }
  .tatva-container h3 {
    text-align: left;
  }
  .tatva-container h3 svg {
    width: 50%;
  }
  /*___END OF CONTACT US PAGE_____*/
  /*__EARTH PAGE START___*/
  .earth-sec-1 .img-1 p {
    position: absolute;
    font-size: 20px;
    padding: 0;
    line-height: 1.2;
  }
  .earth-sec-1 {
    padding-top: 18%;
  }
  .earth-sec-2 .parent .right p {
    font-size: 20px;
  }
  .earth-sec-2 .parent .right span {
    font-size: 15px;
  }
  .earth-sec-2 .parent {
    display: flex;
    flex-direction: column-reverse;
  }
  .earth-sec-2 .parent .right {
    width: 100%;
  }
  .earth-sec-2 .parent .left {
    width: 50%;
    margin-bottom: 0;
  }
  .earth-sec-2 .parent .left p {
    font-size: 20px;
  }
  .earth-sec-3 p {
    font-size: 15px;
  }
  .about-sec-2 .mid-image .owl-nav .owl-next i, .about-sec-2 .mid-image .owl-nav .owl-prev i {
    font-size: 30px;
  }
  /*___EARTH PAGE END__*/
  .earth-mid-section .full-img .desc {
    flex-direction: column;
    padding: 5% 10%;
  }
  .earth-mid-section .full-img .desc .left {
    width: 100%;
  }
  .earth-mid-section .full-img .desc .right {
    width: 100%;
    text-align: justify;
  }
  .earth-mid-section .parellel-imgs {
    flex-direction: column;
    gap: 2em;
  }
  .earth-mid-section .parellel-imgs div {
    width: 100%;
  }
  .earth-mid-section .mid-image .owl-nav .owl-next i, .earth-mid-section .mid-image .owl-nav .owl-prev i {
    font-size: 30px;
  }
  .earth-mid-section .parellel-imgs-2 {
    grid-template-columns: repeat(1, 100%);
    gap: 2em;
  }
  .earth-mid-section .parellel-imgs-2 div {
    width: 100%;
  }
  .earth-items-container .content h1 {
    font-size: 30px;
  }
  .earth-items-container {
    background: #404041;
    padding: 5% 0;
  }
  .earth-items-container .content {
    position: static;
    transform: translate(0, 0);
    margin-top: -50%;
  }
  .earth-items-container .content .items {
    grid-template-columns: repeat(3, 30%);
    gap: 2%;
    row-gap: 2em;
  }
  .earth-items-container .content .items div span {
    font-size: 12px;
  }
  .earth-items-container .content h1 {
    margin-bottom: 5%;
  }
  .earth-mid-section .btn-container #viewMoreBtn {
    font-size: 15px;
  }
  #mob-earth, #mob-air, #mob-fire, #mob-water, #mob-universe {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
  }
  #desk-earth, #desk-air, #desk-fire, #desk-water, #desk-universe {
    display: none;
  }
  /*____Specification page start____*/
  .specification-desc-wrap .specification-grid .row .desc h3 {
    font-size: 20px;
  }
  .specification-desc-wrap .specification-grid .row .desc {
    padding-bottom: 6%;
  }
  .specification-banner {
    padding-top: 18%;
  }
  /*____Specification page end___*/
  /*____Walkthrough page start here___*/
  .walkthrough-sec-wrap {
    padding-top: 19%;
  }
  .walkthrough-sec-wrap .content {
    width: 80%;
  }
  .walkthrough-sec-wrap .content span {
    font-size: 20px;
  }
  .walkthrough-sec-wrap .content h1 {
    font-size: 30px;
  }
  .walkthrough-sec-wrap .content p {
    text-align: justify;
    font-size: 15px;
  }
  .walkthrough-sec-wrap .youtube-video {
    width: 80%;
    height: 50vh;
  }
  /*____WAlkthrough page end here_____*/
  /*____Plan page start here___*/
  .plan-images-wrap .plan-info .row .title h1 {
    font-size: 30px;
  }
  .plan-images-wrap .plan-info .row ol li {
    font-size: 15px;
  }
  .plan-sec-2 .description h1 {
    font-size: 30px;
  }
  .plan-sec-2 .description .row ol li, .plan-sec-1 .description .row ol li {
    font-size: 15px;
  }
  .multiple-plan-imgs h1 {
    font-size: 30px;
  }
  .multiple-plan-imgs .button {
    font-size: 15px;
  }
  .plan-images-wrap {
    padding-top: 19%;
  }
  .interior-img-wrap .row .flex h1 {
    font-size: 20px;
  }
  .plan-sec-1 {
    background: #d48365;
    padding-top: 18%;
  }
  /*____Plan page end here___*/
  /*____START OF CONTACT PAGE_____*/
  .address-details-wrap .row .blue-form form .field {
    flex-direction: column;
    margin-bottom: 0;
  }
  .address-details-wrap .row .blue-form form .field input {
    width: 100%;
    margin-bottom: 4%;
    font-size: 15px;
  }
  .address-details-wrap .row .blue-form form .msg-box textarea {
    font-size: 15px;
  }
  .address-details-wrap .row .blue-form h1 {
    font-size: 30px;
  }
  .address-details-wrap .row .contact-info h1 {
    font-size: 30px;
  }
  .address-details-wrap .row .contact-info p {
    font-size: 15px;
  }
  .address-details-wrap .row .contact-info ul li a i {
    font-size: 15px;
    height: 40px;
    width: 40px;
  }
  .address-details-wrap .row .contact-info {
    padding-left: 10%;
    overflow-y: hidden;
  }
  /*____END OF CONTACT PAGE____*/
  .earth-mid-section .mid-image .item span {
    font-size: 20px;
  }
  .earth-mid-section .mid-image .item p {
    font-size: 15px;
  }
  .modal-body .blue-form h1 {
    font-size: 30px;
  }
  .modal-body .blue-form p {
    font-size: 15px;
    line-height: 1.3;
  }
  .modal-body .blue-form form .field input, .modal-body .blue-form form .msg-box textarea {
    font-size: 15px;
  }
  .modal-body .blue-form form .field {
    flex-direction: column;
    margin: 0;
  }
  .modal-body .blue-form form .field input {
    margin-bottom: 3%;
    height: 50px;
  }
  .modal-body .blue-form form .field input, .modal-body .blue-form form .msg-box textarea {
    font-size: 15px;
    width: 100%;
  }
  .modal-body .blue-form form .last-line button {
    font-size: 15px;
  }
  .modal-body .blue-form {
    padding: 7% 3%;
  }
  .earth-items-container .content p {
    font-size: 15px;
    margin: 6% 0;
  }
}
@media (min-width: 768px) {
  #desk-earth, #desk-air, #desk-fire, #desk-water, #desk-universe {
    display: block;
  }
  #mob-earth, #mob-air, #mob-fire, #mob-water, #mob-universe {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */