/*
 * SvargaBhumi - style.css 1.0
 * Copyright 2020-2022 Baristoft.
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,500;0,700;1,500&display=swap');

:root {
  --primary-color: #424242;
  --secondary-color: #000;
  --tertiary-color: #f2d6ae;
  --dark-color: #bb9976;
  --light-color: #e9e3d7;
  --success-color: #5cb85c;
  --error-color: #d9534f;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #333;
}

h1,
h2 {
  font-weight: 300;
  line-height: 1.2;
  margin: 10px 0;
}

h1, h2 {
  font-family: 'Cinzel', sans-serif;
}

p {
  margin: 10px 0;
}

img {
  width: 100%;
}

.code,
pre {
  background-color: #333;
  color: #fff;
  padding: 10px;
}

.pb {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--light-color);
  width: 100%;
  height: 100vh;
  z-index: 100;
}

.pb img {
  margin: auto;
  width: 50px;
  height: 50px;
}

.pb-rotate {
  animation: rotate 2s infinite linear;
}

.logo {
  width: auto;
  height: 110px;
  padding: 5px 0;
}

.logo:hover {
  cursor: pointer;
}

.logo-small {
  display: none;
}

.menu,
.close {
  display: none;
  width: 25px !important;
  height: 30px !important;
  padding: 5px 0 5px 5px;
  margin: auto 0 auto 20px;
}

.menu:hover,
.close:hover {
  cursor: pointer;
}

.menu-close {
  display: flex;
  height: 120px;
}

.menu-contents {
  position: fixed;
  top: 0;
  right: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  width: 50vw;
  height: calc(100vh);
  font-family: 'Montserrat', sans-serif;
  z-index: 20;
  background: var(--light-color);
}

.menu-contents nav {
  display: none;
}

.menu-contents .contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  width: 100%;
}

.menu-contents .contents div {
  margin-bottom: 20px;
  max-width: 300px;
}

.menu-contents .contents p {
  color: rgba(0, 0, 0, 0.5);
}

.menu-contents .container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
/*border-bottom: 1px rgba(255, 255, 255, 0.5) solid;*/
}

.menu-contents .social {
  font-size: .85rem;
}

.menu-contents img {
  width: 125px;
  height: 125px;
}

.menu-contents a {
  color: #333;
}

.home-head > .container:first-child,
.about-head > .container:first-child,
.units-head > .container:first-child,
.units-main > .container:first-child,
.gallery-head > .container:first-child,
.tour-head > .container:first-child,
.contact-head > .container:first-child {
  padding-top: 110px;
}

.navbar {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;;
  background-color: transparent;
  color: #fff;
  height: 120px;
/*box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);*/
/*border-radius: 0 0 20px 20px;*/
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
  z-index: 20;
}

.navbar-black {
  background-color: #fff;
  animation: fadein 0.5s linear;
}

@keyframes fadein {
  0%   { background-color: transparent; }
  100% { background-color: #fff; }
}

.navbar ul {
  display: flex;
  padding-left: 20px;
}

.navbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--secondary-color);
  padding: 10px;
  margin: 0 5px;
  font-weight: 300;
}

.navbar a.active {
  font-weight: 500;
}

.navbar .btn {
  padding: 10px 30px !important;
}

.navbar a .invisible {
  font-size: 0.75rem;
}

.navbar .btn-outline {
  border-color: rgb(0, 0, 0, 0.7);
}

.wrapper {
  font-size: 0.75rem;
  opacity: 0;
}

.wrapper.active {
  opacity: 1;
}

.navbar a > div:nth-child(2):hover + .wrapper {
  opacity: 1;
}

.navbar .container .flex {
  width: 100%;
}

.navbar .container > *:last-child > *:first-child {
  margin-left: auto;
}

.navbar .flex {
  justify-content: flex-start;
}

.navbar .flex.request-brochure {
  justify-content: flex-end;
}

.navbar .flex.request-brochure a {
  margin: 0;
}

.nav-active {
  font-weight: bold;
  color: var(--secondary-color) !important;
}

.error-text {
  margin: auto;
  text-align: center;
}

.error-404 {
  display: flex;
  justify-content: flex-end;
  margin-top: 110px;
  min-height: calc(100vh - 300px);
}

.container-wrapper {
  margin-left: 5rem;
  margin-right: 5rem;
}

/* Home */
.home-head-container,
.about-head-container {
  position: absolute;
  width: 100%;
  display: flex;
  margin: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-content: center;
}

.home-head,
.about-head {
  position: relative;
  width: 100%;
  height: 51.7vw;
}

.home-head img,
.about-head img {
  width: 100%;
  height: 51.7vw;
  vertical-align: top;
}

.about video {
  width: 100%;
  background-color: #000;
}

.home-head::after,
.about-head::after {
  content: '\A';
  position: absolute;
  width: 100%;
  height: 51.7vw;
  top: 0;
  left: 0;
  background:rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.home-head h1,
.about-head h1 {
  font-size: 3.0rem;
  color: var(--secondary-color);
  text-align: center;
  font-weight: bold;
}

.home-head p,
.about-head p {
  margin: 0 auto;
  width: 80%;
  color: var(--secondary-color);
  text-align: center;
}

.home-head .grid,
.about-head .grid {
  overflow: visible;
  gap: 30px;
}

.home-head-text,
.about-head-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 4;
}

.home-head .home-head-text h1,
.home-head .home-head-text p,
.about-head .about-head-text h1,
.about-head .about-head-text p,
.units-head .container h1,
.units-head .container p,
/*.tour-head .container h1,
.tour-head .container p,
.units-main .container .card,*/
.gallery-head .container h1 {
  animation: slideInFromRight 0.75s ease-in;
}

.home-head .home-head-text,
.about-head .about-head-text,
.units-head .container,
.units-main .container,
.units-main .container-wrapper,
.units-head .container,
.units-main .container,
.gallery-head .container,
.tour-head .container {
  overflow-x: hidden;
}

.home-head .btn {
  margin-left: auto;
  margin-top: 50px;
}

/* Home - Units */
.home-units {
  position: relative;
  padding: 50px 0 50px 0;
  background-color: var(--light-color);
}

.home-units .flex,
.home-facilities .flex,
.home-locations .flex {
  justify-content: flex-start;
  align-content: flex-start;
}

.home-units h2,
.home-facilities h2,
.home-locations h2 {
  font-size: 2.0rem;
  font-weight: bold;
}

.home-units h3 {
  font-size: 1.1rem;
}

.home-units h4 {
  font-size: 1.2rem;
  font-weight: normal;
  color: #0f4c82;
}

.home-units-text, .home-units-image {
  width: 100%;
}

.home-units-image,
.units-image {
  position: relative;
}

.home-units svg,
.home-facilities svg,
.home-locations svg {
  width: 3.0rem;
  height: 1.4rem;
  margin-right: 2rem;
}

.home-units rect,
.home-facilities rect,
.home-locations rect {
  width: 3.0rem;
  height: 1.4rem;
  fill: #bb9976;
}

.home-units .grid {
  grid-template-columns: 1fr 4fr 1fr 4fr;
  gap: 30px;
  color: #a0a0a0;
  padding: 0.5rem 0;
}

.home-units .btn {
  font-size: 0.9rem;
  padding: 5px 0;
  color: #a67c52;
  background: transparent;
}

.home-units .swiper .flex {
  justify-content: space-between;
}

.home-units .swiper {
  width: calc(100% - 2*5.0rem);
  height: auto;
}

.home-units .swiper-button-prev {
  color: lightgray;
  transform: translateX(50px);
}

.home-units .swiper-button-next {
  color: lightgray;
  transform: translateX(-50px);
}

.home-units .grid {
  gap: 0;
  margin: 0;
}

/* Home - Facilities */
.home-facilities {
  background-image: url("../images/home_facilities_bg.png");
  background-size: 100% 100%;
}

.home-facilities h3 {
  font-weight: normal;
  font-size: 1rem;
}

.home-facilities .grid {
  align-items: start;
  grid-template-columns: 1fr 1fr;
}

.home-facilities .contents-0 {
  margin-left: 5rem;
}

.home-facilities .contents-1 {
  margin-right: 5rem;
  z-index: 1;
}

.home-facilities .facility {
  display: flex;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 250ms;
}

.home-facilities .facility:hover {
  background: #f0f0f0;
  color: #333;
  cursor: pointer;
}

.home-facilities .facility.active {
  background: #a67c52;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.home-facilities .facility > *:first-child {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  padding: 15px;
  text-align: center;
  margin: auto;
}

.home-facilities .facility img {
  width: auto;
  height: 50px;
}

/* Home - Locations */
.home-locations {
  background-color: var(--light-color);
}

.home-locations .grid {
  align-items: start;
}

.home-locations .contents-0 {
  margin-left: 5rem;
}

.home-locations .contents-1 {
  padding: 0;
  margin-top: 50px;
  margin-right: 5rem;
}

.home-locations #map {
  width: 100%;
  height: 450px;
}

.home-locations ul {
  margin: 10px 0;
}

.home-locations li {
  padding: 5px 0;
}

.home-locations .items {
  padding: 10px 20px;
  margin: 0;
}

.home-locations .items li:hover {
  cursor: pointer;
}

.surroundings {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.surroundings i {
  text-align: center;
  padding: 20px;
  background: #f2d6ae;
  margin: 0;
  transition: 250ms;
}

.surroundings i:hover {
  background: #f0f0f0;
  color: #333;
  cursor: pointer;
}

.surroundings i.active {
  background: #fff;
}

.box {
  border: 1px solid red;
}

/* About */
.about-pros h2,
.about-facilities h2 {
  color: #a67c52;
  font-size: 2rem;
  font-weight: bold;
}

.about-pros {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.about-facilities {
  padding: 3rem 0;
  background-color: var(--light-color);
  margin-top: -10px; /* hack */
}

.about-pros > .pro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: left;
}

.about-pros .p-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.about-pros > .pro:nth-child(odd) {
}

.about-pros > .pro:nth-child(even) {
  direction: rtl;
}

.about-facilities .facilities {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem 30px;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.about-facilities .facilities > div {
  grid-column: span 2;
}

.about-facilities .facilities > div:nth-child(1),
.about-facilities .facilities > div:nth-child(4),
.about-facilities .facilities > div:nth-child(8),
.about-facilities .facilities > div:nth-child(11) {
  grid-column: span 1;
}

.about-facilities .facilities img {
  width: 60px;
}

/* Units */
.units, .gallery, .tour, .contact {
  position: relative;
  min-height: 100vh;
}

.units-head > .container:first-child {
  padding-right: 25vw;
}

.units-head .listing .grid {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f0f0f0;
}

.units h3 {
  color: #0f4c82;
  font-weight: normal;
}

.units .bg2,
.gallery .bg2,
.tour .bg2 {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  z-index: -2; 
}

.units-head {
}

.units-head h1,
.gallery-head h1,
.tour-head h1,
.contact-head h1 {
  font-size: 3.0rem;
  font-weight: bold;
}

.units-main .flex {
  justify-content: space-between; 
}


.units-main .grid {
  align-items: flex-start;
}

.units-main .sub {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 2fr 1fr 1fr;
  color: gray;
}

.units-main .btn {
/*padding: 5px 0;
  color: #a67c52;
  background: transparent;*/
}

.units-main .details {
  padding: 10px 0;
  border: 1px solid lightgray;
  font-size: 0.9rem;
}

.units-main .details .table {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 3fr 1fr;
}

.units-main .details .table > div:nth-child(odd) {
  color: darkslategray;
  padding-left: 10px;
}

.units-main .details .table > div:nth-child(even) {
  color: gray;
  padding-right: 10px;
}

.units-main .details .text {
  color: gray;
  padding: 10px 10px;
}

.units-main .details .text span {
  color: darkslategray;
}

.units-main .status {
  padding: .5rem 1rem;
  border: 1px solid var(--secondary-color);
  font-weight: normal;
  color: var(--secondary-color);
}

.units-main .query-unit {
  width: 100%;
  text-align: center;
}

.units-main .title-with-icon {
  display: flex;
  align-content: flex-start;
  align-items: center;
  gap: 20px;
  padding-bottom: 1rem;
}

.units-main .fa-arrow-left {
  color: #a0a0a0;
}

.units-main .swiper > .flex-end,
.gallery-main .swiper > .flex-end {
  justify-content: flex-end;
  transform: translateY(40%);
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 99;
}

.units-main .swiper > .flex-center {
  justify-content: center;
}

.units-main .swiper {
  position: relative;
  width: 100%;
  height: auto;
}

.units-main .swiper .enlarge-image,
.gallery-main .swiper .enlarge-image {
  padding: 5px 10px;
  background-color: rgb(255, 255, 255, 0.9);
}

.units-main .swiper .enlarge-image,
.gallery-main .swiper .enlarge-image,
.close-preview {
  cursor: pointer;
}

.units-main .swiper-slide,
.gallery-main .main-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 100%; /*1:1*/
  background-color: #f0f0f0;
}

.units-main .swiper-slide img,
.gallery-main .main-swiper .swiper-slide img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.units-main .prev,
.units-main .next {
  margin: 0px 10px;
  color: gray;
}

.image-preview {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  height: calc(100vh + 32px);
  z-index: 99;
}

.image-preview img {
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

.close-preview {
  position: fixed;
  right: 0;
  top: 0;
  color: lightgray;
  padding: 10px;
  z-index: 100;
}

/* Gallery */
.gallery .container h3 {
  font-weight: normal;
}

.gallery .container .grid {
  grid-template-columns: 20% 80%;
  gap: 0px;
  align-items: flex-start;
}

.gallery .card {
  margin: 0 0 5rem 0;
}

.gallery .cats > div {
  width: 100%;
  padding: 2rem 20px;
  background-color: #424242;
  color: white;
  text-align: center;
  transition: 250ms;
}

.gallery .cats > div:hover {
  background-color: #bb9976;
}

.gallery .cats .active {
  background-color: #a67c52;
}

.gallery img {
}

.gallery-main .main-swiper .swiper-slide {
  padding-top: 75%; /*3:4*/
}

.gallery-main .swiper > .flex-end {
  transform: translateY(50%);
}

.gallery-main .thumb-swiper .swiper-slide {
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-main .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-main .swiper-slide {
  background-size: cover;
  background-position: center;
}

.gallery-main .main-swiper {
  height: 80%;
  width: 100%;
}

.gallery-main .thumb-swiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.gallery-main .thumb-swiper .swiper-slide {
  position: relative;
  padding-top: 12.51%;
  width: 16.67%;
  height: 16.67%;
  opacity: 0.5;
}

.gallery-main .thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.gallery-main .thumb-swiper .swiper-slide img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tour */
#panorama{
  /* comment for fixed dimentsions */
  position: relative;
  width: 100%;
  height: 45vw;
  margin: 0 auto;
  overflow: hidden;
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
#panorama:active { 
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

.tour-main .__selector {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.tour-main .__selector select {
  padding: 8px 4px;
  font-size: 1rem;
}

/* Contact */
.contact-main {
  background-color: rgb(0, 0, 0, 0.05);
  margin-bottom: 10rem;
}

.contact-main .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.contact .wrapper-wrapper {
  padding-right: 5vw;
}

.contact .grid {
  align-items: start;
  justify-content: flex-start;
  gap: 20px;
}

.contact .card {
  min-height: 300px;
  padding: 0;
}

#map,
#map2 {
  border-radius: 5px;
  border: 1px solid #f0f0f0;
}

.contact #map,
.contact #map2 {
  width: calc(100% - 50px);
  height: 50%;
}

.contact-main {
  padding: 50px 0;
}

.contact-main img {
  width: 50px;
  height: auto;
}

.contact-main .grid {
  align-items: center;
}

.contact-main h1 {
  font-size: 2rem;
  font-weight: bold;
}

.contact-main h2 {
  font-weight: bold;
}

.contact-main p {
  margin-bottom: 20px;
}

.contact-form input {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 5px;
}

.contact-form .btn {
  margin-left: auto;
}

.contact-form textarea[type="text"],
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select {
  border: 0;
  border-bottom: 1px solid #b4bbcb;
  width: 100%;
  padding: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

.contact-form select {
  padding: 5px 1px;
  color: gray;
  margin-bottom: 5px;
}

.contact-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus {
  outline-color: var(--light-color);
}

.contact-form-alert {
  margin: 0;
  font-size: 0.9rem;
  color: var(--error-color);
}

.hidden-with-pos {
  position: fixed;
  top: -500px;
  left: -500px;
}

.action-button {
  width: 50px;
  height: 50px;
  align-self: flex-end;
}

.action-button-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 70px;
  z-index: 10;
}

.action-button-container .container {
  display: flex;
  justify-content: flex-end;
}

.action-button-in {
  animation: slideInFromBottom 0.1s linear;
}

.action-button-out {
  animation: slideOutToBottom 0.1s linear;
}

.sendwhatsapp:hover {
  cursor: pointer;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, #424242 50%, var(--dark-color) 50%);
  color: #000;
}

.footer .container {
  overflow: hidden;
}

.footer p {
  margin: 8px 0;
}

.footer ul {
  margin: 8px 0;
}

.footer-main {
  font-family: 'Cinzel', sans-serif;
  font-size: 0.8rem;
  margin: 0;
  height: 100%;
}

.footer-contact {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
}

.footer-contact .btns {
  display: flex;
  justify-content: end;
}

.footer-contact .btn {
  color: white;
}

.footer .grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 0;
}

.footer .grid > .footer-main {
  padding: 3.5rem 0 3rem 20px;
  background-color: var(--dark-color);
}

.footer .grid > .footer-main:first-child {
  padding-right: 0px;
  background-color: #424242;
}

.footer .grid > .footer-main:first-child .flex {
  flex-direction: column;
}

.footer .grid > .footer-main:nth-child(2) {
  padding-left: 50px;
  padding-right: 50px;
}

.footer-main li {
  margin-bottom: 0.5rem;
}

.footer img {
  width: 120px;
  height: auto;
}

.footer a {
  color: #000;
}

.social {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin: 20px 0 10px 0;
}

.social a {
  margin: 0;
  color: #cbaa77;
  opacity: 0.8;
  font-size: 0.75rem;
}

.social a:hover {
  opacity: 0.6;
}

.footer input[type=text],
.footer textarea {
  width: 100%;
  padding: 10px; 
  border: 1px solid #ccc;
  box-sizing: border-box; /* Make sure that p&w stays in place */
  margin-bottom: 16px;
  resize: vertical;
  font-family: 'Montserrat', sans-serif;
}

.footer textarea {
  margin-bottom: 8px;
}

/* Animations */
.swipe-menu {
  animation: swipeMenu 0.5s ease-in-out;
  animation-fill-mode: forwards;
}

.swipe-menu-back {
  animation: swipeMenuBack 0.5s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes fadeEffect {
  0%   { opacity: 1.00; }
  50%  { opacity: 0.25; }
  100% { opacity: 1.00; }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes slideInFromLeft {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

@keyframes slideInFromRight {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}

@keyframes slideInFromTop {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

@keyframes slideInFromBottom {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}

@keyframes slideOutToBottom {
  0% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

@keyframes swipeMenu {
  0% { transform: translateX(75vw); }
  100% { transform: translateX(0); }
}

@keyframes swipeMenuBack {
  0% { transform: translateX(0); }
  100% { transform: translateX(75vw); }
}

/* Tablets and under */
@media(max-width: 767px) {
  .contact .grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media(max-width: 500px) {
  .navbar {
/*  height: 120px; */
  }

  .navbar .logo {
/*  display: none; */
  }

  .navbar .flex {
    justify-content: space-between;
  }

  .navbar .container nav {
    display: none;
  }

  .error-404 {
    margin-top: 120px;
  }

  .menu, .close {
    display: block;
  }

  .navbar .container,
  .menu-contents .container {
    padding: 0 20px;
  }

  .menu-contents {
    width: 75vw;
  }

  .menu-contents nav {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .menu-contents li {
    padding: 10px 0px;
    border-bottom: 1px rgba(0, 0, 0, 0.5) solid;
  }

  .menu-contents li:hover {
    background: rgba(196, 196, 196, 0.5);
  }

  .menu-contents p {
    font-size: 0.9rem;
  }

  .navbar ul {
    position: absolute;
    top: 75px;
    left: 15px;
    right: 20px;
  }

  .navbar li {
    padding: 0;
  }

  .nav-active {
    border-bottom: 2px var(--primary-color) solid;
  }

  .navbar a {
    padding: 5px 10px;
    font-size: 0.9rem;
  }

  .navbar a:hover {
    border-bottom: none;
  }

  .logo-small {
    display: block;
    width: auto;
    height: 40px;
  }

  .request-brochure {
/*  display: none; */
  }

  .home-head,
  .about-head,
  .home-head::after,
  .about-head::after {
    height: 100vh;
  }

  .units .bg,
  .gallery .bg,
  .contact .bg {
    top: .4vw;
    right: 6vw;
    width: 30vw;
  }

  .home-head img,
  .about-head img {
    object-fit: cover;
    height: 100vh;
  }

  .home-head .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .home-head h1,
  .about-head h1,
  .units-head h1,
  .gallery-head h1,
  .contact-head h1 {
    font-size: 45px;
  }

  .home-facilities .grid,
  .home-locations .grid,
  .units-main .grid,
  .footer .grid {
     grid-template-columns: 1fr;
  }

  .home-facilities .contents-0 .grid {
    grid-template-columns: 1fr 1fr;
  }

  .home .contents-0,
  .home-facilities .contents-0,
  .home-locations .contents-0 {
    margin-left: 0;
  }

  .home .contents-1,
  .home-facilities .contents-1,
  .home-locations .contents-1 {
    margin-right: 0;
  }

  .home-units .swiper {
    width: 100%;
  }

  .home-units .swiper-button-prev,
  .home-units .swiper-button-next {
    display: none;
  }

  .about-pros > .pro {
    grid-template-columns: 1fr;
  }
  
  .container-wrapper {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .contact .wrapper-wrapper {
    padding-right: 0;
  }

  .units-head .listing .grid {
    grid-template-columns: 1fr 1fr;
  }

  .units-head .listing .grid > *:nth-child(3n) {
    grid-column: span 2;
  }
  
  .gallery .container .grid {
    grid-template-columns: 0% 100%;
    align-items: flex-start;
    transform: translateY(200px);
  }

  .gallery .cats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    transform: translateY(-200px);
    height: 200px;
  }

  .gallery .cats > div {
    width: auto;
    padding: 2rem 20px;
  }

  .gallery .card {
    padding: 10px 10px 3px 10px;
    max-height: 70vh;
  }

  .footer .container {
    padding-left: 0;
    padding-right: 0;
  }

  .footer .grid > .footer-main:first-child {
    display: grid;
  }

  .footer .grid > .footer-main:nth-child(3) {
    padding-top: 0px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .footer img {
    width: 160px;
    margin-left: auto;
    margin-right: auto;
  }

}