/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --back: #151515;
  --back-light: #111111;
  --primary-color: #23263a;
  --text-color: #ffffff;
  --button-color: #d5a941;
  --button-color-hover: #f1d186;
  --font-title: "Italiana", serif;
  --font-text: "Josefin Sans", sans-serif;
  --font-button: "Roboto", sans-serif;
  --line-menu: #43371a;
}

body {
  background-color: var(--back);
  color: white;
}

.full-width {
  width: 100%;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.debug {
  border: 1px solid red;
}

a {
  color: white;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-title);
}

p,
button,
label {
  font-family: var(--font-text);
  font-size: 16px;
}

.btn {
  padding: 12px 50px;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  background-color: transparent;
  font-family: var(--font-button);
}

.btn-primary {
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

.btn-secondary {
  color: black;
  background-color: var(--button-color);
  border-radius: 5px;
  font-weight: 700;
}

.btn-primary:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.btn-secondary:hover {
  background-color: var(--button-color-hover);
}

.title-section {
  padding-top: 90px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.title-section .dot {
  height: 3px;
  width: 3px;
  background-color: var(--button-color-hover);
  border-radius: 10px;
}

.title-section .dot:first-child {
  margin-bottom: 15px;
}
.title-section .dot:last-child {
  width: 3px;
  margin-top: 15px;
}

.title-section h2 {
  color: var(--button-color-hover);
  font-size: 50px;
  white-space: nowrap;
  font-family: var(--font-text);
  font-weight: 100;
  line-height: 50px;
}
.title-section h3 {
  color: var(--button-color-hover);
  font-size: 18px;
  white-space: nowrap;
  font-family: var(--font-text);
  font-weight: 100;
}

.cookie-container {
  padding-top: 100px;
}

/* Header */
header {
  position: fixed;
  background-color: var(--back-light);
  z-index: 999;
}
.header {
  height: 60px;
  display: flex;
  align-items: center;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 50%;
  filter: brightness(100);
}

.logo img:hover {
  filter: none;
}

.navbar {
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 1s ease;
}
nav {
  height: 100%;
  width: 100%;
}

ul {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  padding: 10px 0;
}

li {
  height: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line-menu);
}

li:first-child {
  border-left: none;
  padding-left: 0px;
}

li:last-child {
  border-right: none;
}

.navbar ul li a {
  font-family: var(--font-title);
  transition: all 0.5s ease;
  font-size: 16px;
  letter-spacing: 1px;
}

.navbar ul li a:hover {
  color: var(--button-color);
}

.burger {
  height: 60px;
  width: 60px;
  position: fixed;
  right: 15px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 9999;
}

.burger-line-container {
  height: 40px;
  width: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  cursor: pointer;
}

.burger-line {
  height: 1px;
  width: 80%;
  background-color: var(--button-color);
  position: relative;
  transition: all 1s ease;
}

.burger.active .burger-line-container .burger-line:first-child {
  transform: rotate(135deg);
  top: 10px;
}
.burger.active .burger-line-container .burger-line:nth-child(2) {
  transform: rotate(200deg);
  opacity: 0;
}
.burger.active .burger-line-container .burger-line:last-child {
  transform: rotate(-135deg);
  top: -10px;
}

/* Copyright */
.copyright {
  background-color: var(--back-light);
}

.copyright-container p {
  text-align: center;
  padding: 7px;
  font-size: 13px;
  font-family: var(--font-button);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.5s ease;
}
.copyright-container a {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.5s ease;
}
.copyright-container a:hover {
  color: rgba(255, 255, 255, 1);
}

/* Carousel */
.carousel {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.carousel-arrow {
  height: 100%;
  width: 10%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

.carousel-arrow-left {
  left: 0;
}
.carousel-arrow-right {
  right: 0;
}

.arrow-container {
  height: 60px;
  width: 60px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.arrow-container i {
  color: white;
  font-size: 20px;
}

.arrow-container:hover {
  transform: scale(1.1);
  background-color: rgba(0, 0, 0, 0.5);
}

.controls-container {
  height: 50px;
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  z-index: 9;
}

.controls {
  height: 100%;
  width: 130px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.control {
  height: 5px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border-radius: 5px;
}

.control.active {
  background-color: rgba(255, 255, 255, 1);
}
.quick-contact {
  height: 100vh;
  width: 40px;
  right: 15%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.quick-contact .line {
  width: 1px;
  background-color: white;
}

.quick-contact .line:first-child {
  height: 20%;
  margin: 0px 0px 10px 0px;
}
.quick-contact .line:nth-child(3) {
  height: 6%;
  margin: 10px 0px 10px 0px;
}
.quick-contact .line:nth-child(5) {
  height: 6%;
  margin: 10px 0px 10px 0px;
}
.quick-contact .line:nth-child(7) {
  height: 6%;
  margin: 10px 0px 10px 0px;
}

.quick-contact .line:last-child {
  height: 20%;
  margin: 10px 0px 0px 0px;
}

.quick-contact i {
  font-size: 20px;
  color: white;
  cursor: pointer;
  transition: all 0.5s ease;
  height: 40px;
  width: 40px;
  display: flex;
  border-radius: 100%;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.quick-contact i:hover {
  background-color: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

.slide {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0%;
  z-index: 0;
  opacity: 0;
  transition: all 1s ease;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
}

.slide.fix {
  left: 0 !important;
}

.slide .image {
  height: 100%;
  width: 100%;
  position: absolute;
}

.slide .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  filter: brightness(0.5) grayscale(100000);
  transition: all 2s ease;
  left: 0;
}

.slide .image .philter {
  height: 100%;
  width: 100%;
  background-color: var(--back-light);
  position: absolute;
  top: 0;
  opacity: 0.8;
  mix-blend-mode: darken;
}

.carousel:hover .slide .image img {
  filter: brightness(0.7);
  width: 101%;
  left: -0.5%;
}

.slide .text {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slide .text .text-container {
  height: 100%;
  padding: 20px;
}

.slide .text .text-container .text-content {
  height: 100%;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.slide .text .text-container .text-content h2 {
  font-size: 75px;
  letter-spacing: 2px;
  color: white;
}

.slide .text .text-container .text-content p {
  line-height: 30px;
  letter-spacing: 2px;
  color: white;
  font-weight: 200;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 800;
  width: 80%;
}

/* about Us */
.about-us {
  padding-bottom: 80px;
}

.about-us-container {
  display: flex;
  flex-direction: column;
}

.about-us-container p {
  width: 60%;
  font-size: 18px;
  text-align: center;
  line-height: 25px;
  padding-top: 30px;
  margin: 0 auto;
}

.about-us-photo {
  height: 400px;
  margin-top: 00px;
  display: flex;
  padding-top: 30px;
}

.about-us-photo .image-item {
  height: 100%;
  width: calc(100% / 3);
  position: relative;
}
.about-us-photo .image-item:first-child {
  padding-right: 10px;
}
.about-us-photo .image-item:nth-child(2) {
  padding-right: 5px;
  padding-left: 5px;
  margin-top: 100px;
}
.about-us-photo .image-item:last-child {
  padding-left: 10px;
}

.about-us-photo .image-item .image {
  height: 100%;
  width: 100%;
  position: relative;
}
.about-us-photo .image-item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.about-us-photo .image-item .image .philter {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: grey;
  mix-blend-mode: luminosity;
  opacity: 0.2;
}

/* La Struttura */
.house {
  margin-top: 100px;
  padding-bottom: 100px;
  background-color: var(--back-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.house a {
  margin-top: 50px;
  margin: 0 auto;
}

.house-container {
  padding-top: 30px;
}
.house-container p {
  font-size: 20px;
  text-align: center;
  padding-bottom: 30px;
  width: 60%;
  margin: 0 auto;
}

.house-item {
  height: 100%;
  position: relative;
  width: 100%;
  display: flex;
  height: 620px;
  margin-bottom: 50px;
}

.house-photo {
  height: 100%;
  width: 50%;
}

.house-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.house-info {
  height: 100%;
  width: 50%;
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.house-info-text {
  height: 80%;
  width: 130%;
  position: absolute;
  background-color: var(--back);
  z-index: 99;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  padding: 30px 60px;
}

.photo-left .house-info .house-info-text {
  left: 0;
  border-bottom: 5px solid var(--button-color);
}
.photo-right .house-info .house-info-text {
  right: 0;
  border-bottom: 5px solid var(--button-color);
}

.house-info-text h3 {
  color: var(--button-color);
  font-family: var(--font-text);
  font-size: 40px;
  text-align: left;
  font-weight: 100;
}

.house-info-text p {
  font-size: 20px;
  margin-top: 10px;
  line-height: 30px;
  width: 100%;
  text-align: left;
  padding-bottom: 0 !important;
}

.house-info-text h4 {
  font-family: var(--font-text);
  font-size: 24px;
  margin-top: 30px;
  color: var(--button-color);
}

.house-info-text .details {
  border-left: 1px solid var(--button-color);
  margin-bottom: 50px;
}

.house-info-text .details p {
  font-size: 18px;
  line-height: 10px;
}
.house-info-text .details i {
  margin-left: 10px;
}

.house-button {
  padding: auto 30px;
}

/* Map */
.map-container {
  padding-top: 30px;
  padding-bottom: 50px;
}

.map {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map button {
  width: 300px;
  margin-bottom: 60px;
}

.map-container p {
  width: 80%;
  line-height: 25px;
  font-size: 18px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 30px;
}

.map-image-legend {
  width: 100%;
  height: 420px;
  position: relative;
  border-bottom: 5px solid var(--button-color);
  border-top: 5px solid var(--button-color);
  margin-bottom: 30px;
}

.google-maps {
  height: 100%;
  width: 100%;
}

.map-image img {
  height: 100%;
  width: 100%;
}

.map-legend {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  border-left: 1px solid var(--button-color);
  width: 20%;
  height: 100%;
  right: 0;
  padding: 40px 20px;
}
.map-legend .map-item {
  margin-bottom: 20px;
}
.map-legend h4 {
  font-family: var(--font-text);
  font-size: 20px;
  padding-bottom: 20px;
}
.map-legend input {
  height: 17px;
  width: 17px;
  margin-right: 10px;
}

.map-legend label {
  font-size: 18px;
}

.map-labels {
  height: 100%;
  width: 100%;
  position: absolute;
}

.map-label {
  transform: scale(5);
  transition: all 0.2s ease;
  position: absolute;
  opacity: 0;
}

#colazioni {
  left: 705px;
  top: 120px;
}

#colazioni.active {
  transform: scale(1.5);
  font-size: 30px;
  left: 695px;
  top: 110px;
  opacity: 1;
}

#supermarket {
  color: rgb(255, 174, 0);
  left: 855px;
  top: 225px;
}

#supermarket.active {
  transform: scale(1.5);
  font-size: 30px;
  left: 855px;
  top: 225px;
  opacity: 1;
}

/* Place */
.place {
  background-color: var(--back-light);
  padding-bottom: 50px;
}

.place-button {
  margin-top: 20px;
}
.place-button i {
  margin-right: 10px;
}
.place-container {
  padding-top: 50px;
}

.place-item {
  padding: 20px 0px;
  display: flex;
  align-items: center;
  position: relative;
  height: 500px;
  margin-bottom: 50px;
}

.place-item .place-info {
  width: 70%;
  position: absolute;
  z-index: 3;
  background-color: var(--back);
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.place-item .place-info h2 {
  font-family: var(--font-text);
  font-size: 40px;
  text-align: center;
  color: var(--button-color-hover);
}
.place-item .place-info p {
  font-family: var(--font-text);
  font-size: 20px;
  text-align: center;
  line-height: 30px;
}

.place-item .place-image {
  height: 100%;
  width: 50%;
  position: absolute;
}

.place-item .place-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: contrast(0.8) brightness(0.8);
}

.place-item-left .place-image {
  right: 0;
}

.place-item-right .place-image {
  left: 0;
}

.place-item-right .place-info {
  right: 0;
}

/* Contact */

.contact {
  background-color: var(--back);
  padding-bottom: 120px;
}

.contact-container {
  padding-top: 30px;
}
.contact-container p {
  font-size: 18px;
  width: 60%;
  margin: 0 auto;
  padding-bottom: 30px;
  text-align: center;
  line-height: 25px;
}

.contact-form {
  padding-top: 20px;
}

.contact-form form {
  width: 100%;
}

form h4 {
  color: var(--button-color);
  font-size: 18px;
  font-family: var(--font-text);
  margin-bottom: 5px;
  margin-top: 20px;
  font-weight: 100;
}

form h4:first-child {
  margin-top: 0;
}

.inputs-flex {
  display: flex;
}

.inputs-flex input:first-child {
  margin-right: 5px;
}
.inputs-flex input:last-child {
  margin-left: 5px;
}

form input,
form select,
form textarea {
  height: 40px;
  width: 100%;
  background-color: var(--back-light);
  border: none;
  border-left: 5px solid var(--button-color);
  padding-left: 10px;
  font-size: 16px;
  color: white;
  outline: none;
  margin-bottom: 10px;
}

form textarea {
  height: 100px;
  resize: none;
}

form input::placeholder {
  color: var(--button-color);
  font-weight: 100;
  font-style: italic;
}

form .checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  margin-top: 5px;
}

input[type="checkbox"] {
  height: 20px;
  width: 20px;
  margin: 0px;
  background-color: transparent;
  margin-right: 10px;
}

form .checkbox label {
  margin: 0;
}

form .checkbox label a {
  text-decoration: underline;
}

th {
  color: black;
}

td.active {
  background-color: var(--button-color) !important;
}
td.in-range {
  background-color: #d5a9415e !important;
}
td {
  color: black;
}

/* Gallery */
.gallery {
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.hidden-button {
  height: 50px;
  width: 50px;
  position: fixed;
  top: 30px;
  right: 30px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  z-index: 99999999999;
}

.hidden-button:hover {
  background-color: rgba(255, 0, 0, 0.3);
}

.hidden-button i {
  font-size: 30px;
}

.gallery.active {
  display: flex;
}

.gallery-container {
  height: 90%;
  width: 70%;
}

.gallery-carousel {
  height: 100%;
  width: 100%;
}

.big-photo-container {
  height: 85%;
  width: 100%;

  position: relative;
}

.photo-preview {
  height: 15%;
  width: 100%;
}

.gallery-slide {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.5s ease;
}

.gallery-slide .image {
  height: 100%;
  width: 100%;
}

.gallery-slide .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.photo-preview {
  overflow-x: auto;
  overflow-y: hidden;
}

.preview-scroll {
  height: 100%;
  display: flex;
}

.photo-preview .slide-preview {
  height: 100%;
  min-width: 200px;
}

.photo-preview .slide-preview img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1000) brightness(0.4);
  transition: all 0.4s ease;
  cursor: pointer;
}

.photo-preview .slide-preview:hover img {
  filter: grayscale(1000) brightness(0.8);
}

.photo-preview .slide-preview.active img {
  filter: grayscale(0) brightness(1);
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-arrow-left,
.gallery-arrow-right {
  position: absolute;
  height: 100%;
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
  top: 0;
}

.gallery-arrow-left {
  left: 0;
}

.gallery-arrow-right {
  right: 0;
}

.gallery-arrow-container {
  height: 60px;
  width: 60px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease;
  transform: scale(1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-arrow-container:hover {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--back-light);
}

.footer {
  padding-top: 50px;
}

.footer .logo-footer {
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-footer img {
  height: 100%;
  filter: brightness(100);
}

.footer-info {
  padding: 20px;
}

.footer-info p {
  text-align: center;
  font-size: 18px;
  line-height: 25px;
}

.footer-contact {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}

.footer-contact-item {
  height: 45px;
  width: 45px;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.footer-contact-item:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.snackbar {
  width: 100%;
  padding: 20px;
  display: none;
  margin-bottom: 20px;
  padding: 20px 20px;
  border-radius: 20px;
  font-family: var(--font-title);
  font-weight: 800;
}

.snackbar.success {
  display: block;
  background-color: rgb(0, 255, 187);
  border: 3px solid rgb(1, 171, 125);
  color: rgb(1, 113, 83);
}
.snackbar.error {
  display: block;
  background-color: rgb(255, 143, 143);
  border: 3px solid rgb(171, 1, 1);
  color: rgb(113, 1, 1);
}

/* PC */
@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
  }
}
/* Tablet */
@media screen and (max-width: 950px) {
  .navbar {
    position: fixed;
    height: 100vh;
    top: 0;
    left: 100%;
    background-color: var(--back-light);
  }

  .navbar.active {
    left: 0;
  }

  .navbar nav ul {
    flex-direction: column;
    padding: 20px;
    position: absolute;
    height: 97vh;
    bottom: 0;
  }

  .navbar nav ul li {
    width: 100%;
    padding: 0;
    border-right: none;
    border-bottom: 1px solid var(--line-menu);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar nav ul li:last-child {
    border-bottom: none;
  }

  .navbar nav ul li a {
    font-size: 25px;
  }

  .burger {
    display: flex;
  }
  .logo {
    width: 100%;
    justify-content: center;
    z-index: 999;
  }
  .logo a {
    width: 100%;
    justify-content: center;
    z-index: 999;
  }

  .carousel-arrow {
    display: none;
  }

  .text,
  .text-container,
  .text-content {
    width: 100% !important;
  }

  .text-content h2 {
    text-align: center;
    font-size: 60px !important;
    width: 100%;
  }
  .text-content p {
    width: 90% !important;
    margin: 0 auto;
    text-align: center;
  }

  .text-content a {
    margin: 0 auto;
  }

  .quick-contact {
    height: 40px;
    width: 100%;
    bottom: 6vh !important;
    left: 0;
    position: absolute;
    display: flex;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    z-index: 9;
  }

  .quick-contact .line {
    display: none;
  }

  .quick-contact i {
    height: 60px;
    width: 60px;
    font-size: 25px;
    margin-right: 20px;
  }

  .quick-contact i:last-of-type {
    margin-right: 0;
  }

  .house-item,
  .photo-left,
  .photo-right {
    position: relative !important;
    display: block;
    bottom: 0;
  }

  .house-info {
    position: absolute;
    width: 100% !important;
    left: 0px;
    bottom: 0;
  }

  .house-photo {
    width: 100%;
    height: 50%;
  }

  .house-photo img {
    object-position: bottom center;
  }

  .house-info-text {
    width: 100% !important;
    height: 70%;
    position: absolute;
    bottom: 0;
    padding: 20px !important;
  }

  .house-info-text h4 {
    margin-top: 10px;
  }
  .details {
    margin-bottom: 20px !important;
  }

  .place-item {
    display: block !important;
    height: auto !important;
  }

  .place-info,
  .place-image {
    height: 100% !important;
    width: 100% !important;
  }

  .place-info {
    display: flex !important;
    align-items: center !important;
    justify-self: auto !important;
    position: relative !important;
    top: 0;
    height: auto !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
  }

  .place-item-left .place-image,
  .place-item-right .place-image {
    height: 100% !important;
    top: 0;
    left: 0%;
    width: 100% !important;
    object-fit: cover !important;
  }

  .inputs-flex {
    flex-direction: column;
  }

  .inputs-flex input {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }

  .gallery-container {
    height: 100vh;
    width: 100vw;
  }

  .hidden-button {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }

  .gallery-arrow-container {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }

  .place-button {
    width: 100%;
  }
}

/* Phone */
@media screen and (max-width: 710px) {
  .text-content h2 {
    text-align: center;
    font-size: 60px !important;
    line-height: 60px !important;
    margin-bottom: 20px;
    width: 100%;
  }
  .about-us {
    padding-bottom: 0px;
  }
  .about-us-container .title-section {
    order: 0;
  }

  .about-us-photo {
    display: flex;
    flex-direction: column;
    height: 500px;
    height: auto;
  }

  .about-us-photo .image-item {
    width: 100%;
    margin-top: 5px !important;
    height: 200px;
    padding: 0 !important;
  }

  .about-us-photo .image-item .image {
    width: 100%;
    padding: 0 !important;
  }

  .about-us-container p {
    order: 1;
    width: 95%;
  }

  .details {
    display: none;
  }

  .house-info-text h4 {
    display: none;
  }

  .house-info-text .buttons {
    padding-top: 30px;
  }

  .house-info-text button {
    width: 100%;
    margin-bottom: 10px;
  }
  .gallery-arrow-left,
  .gallery-arrow-right {
    width: 20% !important;
  }
}
