/*
Theme Name: Orangerie
Author: HTAG TÉLÉCOM
Author URI: https://htag-telecom.fr/
Description: Theme destiné aux sites de chambres d'hôtes ou hôtels
Requires at least: WordPress 5.0
Version: 1.0
*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: -webkit-fill-available;
}

body {
  background-color: var(--third-color);
  color: var(--secondary-color);
  font-family: var(--content-font);
  font-weight: normal;
  font-size: 1.111vw; /* 16px */
  line-height: 150%;
  padding-top: 7.3924731182796vh; /* 55px */
  overflow-x: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

:root {
  /* MARGIN & PADDING */
  --section-padding-desktop: 4.167vw; /* 70px */
  --section-padding-mobile: 8.937vw; /* 37px */
  --section-margin-desktop: 6.944vw; /* 100px */
  --section-margin-mobile: 12.077vw; /* 50px */
  --title-margin-top-desktop: 2.917vw; /* 42px */
  --title-margin-bottom-desktop: 1.533vw; /* 22.08px */
  --title-margin-top-mobile: 10.145vw; /* 42px */
  --title-margin-bottom-mobile: 5.333vw; /* 22.08px */
  --button-padding-TB-desktop: 1.042vw; /* 15px */
  --button-padding-TB-mobile: 3.623vw; /* 15px */
  --button-padding-LR-desktop: 2.083vw; /* 30px */
  --button-padding-LR-mobile: 7.246vw; /* 30px */

  /* FONTS FAMILY */
  --title-font: "NewYork";
  --content-font: "Manrope", sans-serif;

  /* FONTS SIZES */
  --h1-size-desktop: 11.076vw; /* 159.5px */
  --h1-size-mobile: 11.541vw; /* 47.78px */
  --h2-size-big-desktop: 6.233vw; /* 89.76px */
  --h2-size-big-mobile: 9.616vw; /* 39.81px */
  --h2-size-small-desktop: 1.974vw; /* 28.43px */
  --h2-size-small-mobile: 5.565vw; /* 23.04px */
  --h3-size-desktop: 2.632vw; /* 37.9px */
  --h3-size-mobile: 6.679vw; /* 27.65px */

  /* COLORS */
  --primary-color: #ff3300;
  --secondary-color: #141414;
  --third-color: #fffbf9;
}

.breadcrumb {
  font-size: 0.833vw;
  padding: 0 var(--section-padding-desktop);
}

.breadcrumb a {
  color: var(--secondary-color);
}

.breadcrumb .last {
  font-weight: bold;
  color: var(--primary-color);
}

.title {
  margin: var(--title-margin-top-desktop) 0 var(--title-margin-bottom-desktop);
}

.title,
h3 {
  font-family: var(--title-font);
  font-weight: normal;
  line-height: 110%;
}

h1,
.h2_big,
.h2_small {
  text-transform: uppercase;
}

h1 {
  font-weight: normal;
  text-align: center;
  font-size: var(--h1-size-desktop);
  color: var(--primary-color);
}

.h2_big {
  font-size: var(--h2-size-big-desktop);
}

.h2_small {
  font-size: var(--h2-size-small-desktop);
}

h3 {
  font-size: var(--h3-size-desktop);
}

h2,
h3 {
  color: var(--secondary-color);
}

.content {
  padding: var(--section-margin-desktop) var(--section-padding-desktop);
}

.cursor_custom {
  cursor: url(https://orangerieduchateaudemotteville.com/wp-content/uploads/2022/07/cursor.svg)
      50 50,
    pointer;
}

/*! LINK & BUTTON STYLES START */
.link,
.button {
  cursor: pointer;
  position: relative;
  font-weight: 600;
}

.link {
  width: fit-content;
  margin: auto;
}

.link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.5px;
  background: var(--primary-color);
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link_page {
  text-transform: uppercase;
  color: var(--primary-color);
}

.link_page::before {
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.link_page:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.button {
  pointer-events: auto;
  background: var(--primary-color);
  color: var(--third-color);
  padding: var(--button-padding-TB-desktop) var(--button-padding-LR-desktop);
  display: inline-block;
}

.button_contact > span,
.button_menu > span,
.menu_button_contact > span,
.form .button > span {
  display: inline-block;
}

.button_contact:hover > span,
.button_menu:hover > span,
.menu_button_contact:hover > span,
.form .button:hover > span {
  opacity: 0;
}

.marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.marquee__inner {
  width: fit-content;
  display: flex;
  position: relative;
  --offset: 1.111vw; /* 16px */
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 1s linear infinite;
  animation-play-state: paused;
  opacity: 0;
}

.button_contact:hover .marquee__inner,
.button_menu:hover .marquee__inner,
.menu_button_contact:hover .marquee__inner,
.form .button:hover .marquee__inner {
  animation-play-state: running;
  opacity: 1;
  transition-duration: 0.4s;
}

.marquee span {
  text-align: center;
  white-space: nowrap;
  font-style: italic;
  padding: var(--button-padding-TB-desktop) 0.694vw; /* 10px */
}

@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }

  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
/*! LINK & BUTTON STYLES END */

.image_inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: all 1s;
}

/*! GALLERY IMAGE START */

.gallery_image {
  margin-top: 7.639vw; /* 110px */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  gap: 0 9.028vw;
  width: 100%;
  height: auto;
}

.image_list {
  width: 36.806vw; /* 530px */
}

.image_big {
  height: 44.444vw; /* 640px */
}

.image_small {
  height: 29.167vw; /* 420px */
}

/*! GALLERY IMAGE START */

@media screen and (max-width: 414px) {
  body {
    padding-top: 6.1383928571429vh;
    font-size: 3.865vw; /* 16px */
  }

  h1 {
    font-size: var(--h1-size-mobile);
  }

  .h2_big {
    font-size: var(--h2-size-big-mobile);
  }

  .h2_small {
    font-size: var(--h2-size-small-mobile);
  }

  h3 {
    font-size: var(--h3-size-mobile);
  }

  .content {
    padding: var(--section-margin-mobile) var(--section-padding-mobile);
  }

  .title {
    margin: var(--title-margin-top-mobile) 0 var(--title-margin-bottom-mobile);
  }

  .breadcrumb {
    font-size: 2.684vw; /* 11.11px */
    padding: 0 var(--button-padding-LR-mobile);
  }

  .button {
    padding: var(--button-padding-TB-mobile) var(--button-padding-LR-mobile);
  }

  .button span,
  .marquee span {
    font-size: 3.22vw; /* 13.33px */
  }

  .button_contact:hover > span,
  .button_menu:hover > span,
  .menu_button_contact:hover > span,
  .form .button:hover > span {
    font-size: 3.22vw; /* 13.33px */
  }

  .marquee span {
    padding: var(--button-padding-TB-mobile) 0.966vw; /* 10px */
  }
}

/*! HEADER START */
.menu {
  top: 0;
  position: fixed;
  width: 100%;
  background-color: var(--third-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--secondary-color);
  z-index: 10;
}

.button_menu,
.menu_button_contact {
  width: 7.639vw; /* 110px */
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.694vw;
  cursor: pointer;
}

.button_menu {
  background-color: var(--third-color);
  color: var(--secondary-color);
  border-right: 1px solid var(--secondary-color);
}

.menu_button_contact {
  background-color: var(--secondary-color);
  color: var(--third-color);
}

.custom-logo-link {
  display: flex;
}

.custom-logo {
  width: 6.944vw;
  height: auto;
  color: var(--secondary-color);
}

.button_menu,
.menu a,
.menu span {
  font-size: 0.833vw;
}
/*! HEADER END */

/*! MEMU MODAL START */
.modal-content {
  width: 100vw;
  min-height: 100vh;
  position: absolute;
  top: -100vh;
  z-index: 20;
}

.navigation {
  width: 100%;
  height: 100vh;
  display: flex;
  background-color: var(--secondary-color);
}

.menu-item {
  padding-top: 7.3924731182796vh;
  width: calc(100% / 6);
  height: 100%;
  background-color: var(--third-color);
  font-family: var(--title-font);
  display: flex;
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: initial;
  cursor: pointer;
}

.menu-item:not(:last-child) {
  border-right: 1px solid var(--secondary-color);
}

.menu-item a {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 4.676vw; /* 67.34px */
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-item:hover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 27.778vw; /* 400px */
}

.menu-item:nth-child(1):hover {
  background-image: url(https://orangerieduchateaudemotteville.com/wp-content/uploads/2022/07/orangerie-2022.webp);
}

.menu-item:nth-child(2):hover {
  background-image: url(https://orangerieduchateaudemotteville.com/wp-content/uploads/2022/07/nicolas-langlois-portrait.webp);
}

.menu-item:nth-child(3):hover {
  background-image: url(https://orangerieduchateaudemotteville.com/wp-content/uploads/2022/07/chambre-dhote-madame-de-motteville-1-scaled-1.webp);
}

.menu-item:nth-child(4):hover {
  background-image: url(https://orangerieduchateaudemotteville.com/wp-content/uploads/2022/07/mariages-1-scaled-1.webp);
}

.menu-item:nth-child(5):hover {
  background-image: url(https://orangerieduchateaudemotteville.com/wp-content/uploads/2022/07/seminaires-1-scaled-1.webp);
}

.menu-item:nth-child(6):hover {
  background-image: url(https://orangerieduchateaudemotteville.com/wp-content/uploads/2022/07/orangerie-accueil.webp);
}

.menu-item:hover a {
  color: #fff;
}

@media screen and (max-width: 834px) {
  .modal-content {
    padding-top: 6.474vw;
    min-height: -webkit-fill-available;
  }

  .navigation {
    flex-direction: column;
  }

  .modal-content,
  .navigation {
    height: calc(100vh - 6.474vw);
  }

  .menu-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--secondary-color);
  }

  .menu-item {
    width: 100%;
    height: 100%;
    flex-direction: row;
    padding: 0 9.028vw;
  }

  .menu-item:hover {
    width: 100%;
  }

  .menu-item a {
    writing-mode: horizontal-tb;
    transform: rotate(0) !important;
    font-size: 6.679vw;
  }
}

@media screen and (max-width: 414px) {
  .menu {
    padding-left: var(--section-padding-mobile);
    height: 13.041vw;
    flex-direction: row-reverse;
  }

  .menu_button_contact {
    display: none;
  }

  .button_menu {
    width: 26.57vw; /* 110px */
    border-right: none;
    border-left: 1px solid var(--secondary-color);
  }

  .button_menu > span,
  .menu span {
    font-size: 2.684vw; /* 11.11px */
  }

  .custom-logo {
    width: 24.155vw; /* 100px */
  }

  .modal-content {
    padding-top: 13.041vw;
    background-color: var(--third-color);
  }

  .modal-content,
  .navigation {
    height: calc(90vh - 13.041vw);
  }

  .menu-item {
    height: 100%;
  }

  .menu-item:hover {
    width: 100%;
  }
}
/*! MEMU MODAL END */

/*! FOOTER START */

footer {
  width: 100%;
  padding: 4.167vw 12.5vw; /* 60px 180px */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid var(--secondary-color);
}

.footer_left_col .custom-logo {
  width: 13.889vw; /* 200px */
  height: auto;
}

.footer_right {
  display: flex;
  gap: 7.639vw; /* 110px */
}

.footer_left_col,
.footer_right_col {
  text-align: center;
}

.list_col_title {
  font-family: var(--content-font);
  font-weight: normal;
  text-transform: uppercase;
  line-height: 150%;
  font-size: 0.625vw; /* 9px */
  margin-bottom: 2.778vw; /* 40px */
}

.list_col_links {
  font-size: 1.111vw;
  font-weight: 500;
}

.list_col_links li a {
  color: var(--secondary-color);
  text-transform: none;
}

.list_col_links li .link::before {
  background: var(--secondary-color);
}

@media screen and (max-width: 414px) {
  footer {
    padding: 14.493vw 8.937vw; /* 60px 37px */
  }

  footer,
  .footer_right {
    flex-direction: column;
    align-items: center;
    gap: 9.662vw; /* 40px */
  }

  .footer_left_col .custom-logo {
    width: 48.309vw; /* 200px */
  }

  .list_col_title {
    font-size: 2.237vw; /* 9.26px */
    margin-bottom: 0.694vw; /* 10px */
  }

  .list_col_links {
    font-size: 3.865vw; /* 16px */
  }
}

/*! FOOTER END */

/*! HOME START */

.hero_video {
  display: block;
  width: 100vw;
  overflow-x: hidden;
}

.video {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 414px) {
  .hero {
    margin-bottom: 0;
  }

  .hero_video {
    display: none;
  }
}

/*! HISTORY SECTION START */
.history {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.history_resume {
  width: 47.222vw; /* 680 */
}

.history_resume > :not(:last-child) {
  margin-bottom: 1.389vw; /* 20px */
}

.history_resume_title {
  color: var(--second-color);
}

.history_resume_text,
.history_resume a {
  margin-left: 15.278vw; /* 220px */
}

.history_image {
  width: 29.167vw; /* 420px */
  height: 36.806vw; /* 530px */
}

@media screen and (max-width: 414px) {
  .history {
    flex-direction: column-reverse;
  }

  .history > div {
    width: 100%;
  }

  .history_resume {
    text-align: center;
  }

  .history_resume > :not(:last-child) {
    margin-bottom: 4.831vw; /* 20px */
  }

  .history_resume_text,
  .history_resume a {
    margin-left: 0;
  }

  .history_image {
    height: 106.28vw; /* 440px */
  }
}
/*! HISTORY SECTION END */

/*! SERVICES SECTION START */
.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.167vw; /* 60px */
}

.services_title {
  width: 47.222vw; /* 680px */
  text-align: center;
}

.services_list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.services_list_card {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.389vw; /* 20px */
}

.card_visual {
  display: flex;
  gap: 1.389vw; /* 20px */
}

.visual_title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.visual_image {
  width: 23.611vw; /* 340px */
  height: 29.167vw; /* 420px */
}

.card_resume {
  display: flex;
  flex-direction: column;
  gap: 1.389vw; /* 20px */
  width: 23.611vw; /* 340px */
  padding: 0 1.389vw; /* 20px */
  text-align: center;
}

@media screen and (max-width: 414px) {
  .services {
    gap: 9.662vw; /* 40px */
  }

  .services_title {
    width: 100%;
  }

  .services_list {
    flex-direction: column;
    gap: 14.493vw; /* 60px */
  }

  .services_list_card {
    gap: 4.831vw; /* 20px */
  }

  .card_visual {
    flex-direction: column-reverse;
    align-items: center;
    gap: 4.831vw; /* 20px */
  }

  .visual_image {
    width: 82.126vw; /* 340px */
    height: 101.449vw; /* 420px */
  }

  .visual_title {
    writing-mode: horizontal-tb;
    transform: rotate(0);
  }

  .card_resume {
    width: 100%;
    padding: 0 4.831vw; /* 20px */
    gap: 4.831vw; /* 20px */
    font-size: 3.22vw; /* 13.33px */
  }
}
/*! SERVICES SECTION END */

/*! DISCOVER SECTION START */
.discover {
  display: flex;
  flex-direction: column;
  gap: 4.167vw; /* 60px */
}

.discover_title {
  width: 47.222vw; /* 680px */
}

.discover_list {
  display: flex;
  flex-wrap: wrap;
  gap: 9.028vw; /* 130px */
}

.discover_list_card:nth-child(4n-7) {
  margin-left: 7.639vw; /* 110px */
}

.discover_list_card {
  display: flex;
  flex-direction: column;
  gap: 1.389vw; /* 20px */
}

.discover_list_card a {
  margin: 0;
}

.card_image {
  width: 36.806vw; /* 530px */
  height: 29.167vw; /* 420px */
}

.discover_list_text {
  width: 29.167vw; /* 420px */
}

@media screen and (max-width: 414px) {
  .services {
    gap: 9.662vw; /* 40px */
  }

  .discover_list_card {
    text-align: center;
    gap: 4.831vw; /* 20px */
  }

  .card_image {
    width: 100%;
    height: 82.126vw; /* 340px */
  }

  .discover_title {
    width: 100%;
    text-align: center;
  }

  .discover_list {
    gap: 14.493vw; /* 60px */
  }

  .discover_list_card:nth-child(4n-7) {
    margin-left: 0;
  }

  .discover_list_card a {
    margin: auto;
  }

  .discover_list_text {
    width: 100%;
  }
}
/*! DISCOVER SECTION END */

/*! HOME END */

/*! HISTORY START */

.hero_title {
  color: var(--primary-color);
}

.history_page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 13.889vw; /* 200px */
}

.history_bloc {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.history_bloc_image {
  position: sticky;
  top: 20%;
  width: 44.444vw; /* 640px */
  height: 32.949vw; /* 474.47px */
}

.history_bloc_content {
  display: flex;
  flex-direction: column;
  gap: 1.389vw; /* 20px */
  width: 36.806vw; /* 530px */
}

.history_content_source {
  display: flex;
  flex-direction: column;
}

.history_content_source p {
  font-size: 0.625vw; /* 9px */
}

.history_bloc:nth-child(even) {
  flex-direction: row-reverse;
}

.history_bloc:nth-child(odd) .history_bloc_image {
  transform: rotate(-2deg);
}

.history_bloc:nth-child(even) .history_bloc_image {
  transform: rotate(2deg);
}

.history_bloc:nth-child(2) .history_bloc_image {
  height: 57.083vw; /* 822px */
}

.history_bloc_image {
  filter: drop-shadow(5px 5px 100px rgba(0, 0, 0, 0.1));
}

@media screen and (max-width: 414px) {
  .history_bloc_image,
  .history_bloc_content {
    width: 100%;
  }

  .history_bloc,
  .history_bloc:nth-child(even) {
    flex-direction: column;
  }

  .history_bloc_image {
    position: relative;
    height: 60.884vw; /* 252.06px */
  }

  .history_bloc:nth-child(2) .history_bloc_image {
    height: 105.481vw; /* 436.69px */
  }

  .history_content_source p {
    font-size: 2.684vw; /* 11.11px */
  }
}

/*! HISTORY END */

/*! BEDROOM START */

.bedroom_list {
  display: flex;
  flex-wrap: wrap;
  gap: 9.028vw; /* 130px */
}

.bedroom_list_card:nth-child(4n-7) {
  margin-left: 7.639vw; /* 110px */
}

.card_image {
  width: 36.806vw; /* 530px */
  height: 36.806vw; /* 530px */
  overflow: hidden;
}

.bedroom_card_link:hover .image_inner {
  transform: scale(1.2);
}

@media screen and (max-width: 414px) {
  .bedroom_list_card,
  .card_image {
    width: 100%;
  }

  .bedroom_list_card {
    gap: 14.493vw; /* 60px */
  }

  .bedroom_list_card:nth-child(4n-7) {
    margin-left: 0;
  }

  .card_image {
    height: 82.126vw; /* 340px */
  }
}

/*! BEDROOM END */

/*! BEDROOM INNER START */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.389vw; /* 20px */
  padding-bottom: var(--section-margin-desktop);
}

.hero_object {
  display: flex;
  justify-content: center;
  gap: 4.167vw; /* 60px */
}

.object_list {
  display: flex;
  align-items: center;
  gap: 0.694vw; /* 10px */
}

.object_image {
  width: 1.389vw; /* 20px */
  height: 1.389vw; /* 20px */
}

.double_price {
  display: flex;
  gap: 5.556vw; /* 80px */
}

.hero_price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.389vw; /* 20px */
  margin: 2.778vw 0 1.389vw; /* 40px 0 20px */
}

.hero_price h2 {
  margin: 0;
}

.object_title,
.hero_ability,
.hero_description {
  font-size: 0.833vw; /* 12px */
}

.hero_contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.389vw; /* 20px */
  width: 29.167vw;
  text-align: center;
}

.hero_image {
  width: 100%;
  height: 52.083vw; /* 750px */
  margin-top: 2.778vw; /* 40px */
}

.gallery_title {
  width: 41.667vw; /* 600px */
}

.next_bedroom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.111vw;
}

.next_bedroom .bedroom_card_link {
  width: 36.806vw; /* 530px */
  color: var(--secondary-color);
}

.next_bedroom_top {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 2.083vw; /* 30px */
}

.title_next {
  margin: 0;
}

.subtitle_next {
  font-size: 0.625vw; /* 9px */
  text-transform: uppercase;
}

@media screen and (max-width: 414px) {
  .hero {
    gap: 14.493vw; /* 60px */
  }

  .hero,
  .hero_price {
    align-items: flex-start;
  }

  .hero_title {
    order: 2;
    margin: 0;
  }

  .hero_object {
    order: 4;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4.831vw; /* 20px */
  }

  .object_list {
    width: 38.647vw; /* 160px */
    gap: 0.966vw; /* 10px */
  }

  .object_image {
    width: 4.831vw; /* 20px */
    height: 4.831vw; /* 20px */
  }

  .hero_price {
    order: 3;
    margin: 0;
    gap: 4.831vw; /* 20px */
  }

  .double_price {
    order: 3;
    flex-direction: column;
    gap: 4.831vw; /* 20px */
  }

  .hero_price h2 {
    font-size: 5.565vw; /* 23.04px */
  }

  .hero_contact {
    order: 5;
    width: 100%;
    text-align: left;
    align-items: flex-start;
    gap: 4.831vw; /* 20px */
  }

  .hero_image {
    order: 1;
    margin: 0;
    height: 82.126vw; /* 340px */
  }

  .hero_title,
  .hero_object,
  .hero_price,
  .hero_contact {
    padding: 0 var(--section-padding-mobile);
  }

  .object_title,
  .hero_description {
    font-size: 3.22vw; /* 13.33px */
  }

  .hero_ability,
  .subtitle_next {
    font-size: 2.684vw; /* 11px */
  }

  .hero_title {
    text-align: left;
  }

  .gallery_image {
    gap: 14.493vw; /* 60px */
    margin-top: 4.831vw; /* 20px */
  }

  .gallery_title {
    width: 80%;
  }

  .image_list {
    width: 100%;
  }

  .image_big {
    height: 106.28vw; /* 440px */
  }

  .image_small {
    height: 82.126vw; /* 340px */
  }

  .next_bedroom .bedroom_card_link {
    width: 100%;
  }
}

/*! BEDROOM INNER END */

/*! CONTACT START */

.contact {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12.5vw; /* 180px */
}

.contact_col {
  position: sticky;
  top: 15%;
  display: flex;
  flex-direction: column;
  gap: 7.639vw; /* 110px */
  margin-bottom: 6.944vw; /* 100px */
  font-weight: 500;
}

.contact_col_title {
  font-family: var(--content-font);
  font-weight: normal;
  text-transform: uppercase;
  line-height: 150%;
  font-size: 0.625vw; /* 9px */
  margin-bottom: 2.778vw; /* 40px */
}

.col_list li:not(:last-child) {
  margin-bottom: 0.694vw; /* 10px */
}

.col_list li a {
  text-transform: capitalize;
  color: var(--secondary-color);
}

.col_list li a:before {
  background-color: var(--secondary-color);
}

.wp-block-contact-form-7-contact-form-selector {
  width: 52.083vw;
}

.form {
  display: flex;
  flex-direction: column;
}

.form_item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.778vw 2.778vw 2.778vw 5.556vw; /* 40px 80px */
  border-bottom: 1px solid var(--secondary-color) !important;
}

.form_item:nth-child(1) {
  border-top: 1px solid var(--secondary-color) !important;
}

.form_item::before {
  content: "";
  position: absolute;
  top: 2.778vw; /* 40px */
  left: 0;
  color: rgba(20, 20, 20, 0.75);
  font-size: 0.625vw; /* 9px */
}

.form_item:nth-child(1):before {
  content: "01";
}

.form_item:nth-child(2):before {
  content: "02";
}

.form_item:nth-child(3):before {
  content: "03";
}

.form_item:nth-child(4):before {
  content: "04";
}

.form_item:nth-child(5):before {
  content: "05";
}

input,
select,
textarea {
  width: 100%;
}

.form_item,
input,
select,
textarea {
  font-size: 1.481vw; /* 21.33px */
  font-family: var(--content-font);
  font-weight: normal;
  background-color: transparent;
  border: none;
}

.form_item_title {
  color: rgba(20, 20, 20, 0.85);
  font-size: 1.111vw; /* 16px */
}

.form .button {
  width: fit-content;
  margin-top: 2.778vw; /* 40px */
}

.form .button input {
  color: var(--third-color);
  font-size: 1.111vw;
  cursor: pointer;
}

.wpcf7-not-valid-tip {
  padding-top: 1.389vw; /* 20px */
  font-size: 1.111vw; /* 16px */
}

.form .wpcf7-spinner {
  display: none;
}

:focus-visible {
  outline: none;
}

.wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  gap: 1.111vw; /* 16px */
  margin: 2.778vw 0 0; /* 40px */
}

.wpcf7-checkbox .wpcf7-list-item input {
  width: fit-content;
  cursor: pointer;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (max-width: 414px) {
  .contact {
    flex-direction: column;
  }

  .contact_col {
    width: 100%;
    position: relative;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 0;
    text-align: center;
  }

  .contact_col_right {
    display: none;
  }

  .contact_col_title {
    font-size: 2.237vw; /* 9.26px */
  }

  .wp-block-contact-form-7-contact-form-selector {
    width: 100%;
  }

  .form_item,
  input,
  select,
  textarea,
  .form_item_title,
  .form .button input,
  .form_item::before {
    font-size: 3.865vw; /* 16px */
  }

  .form_item {
    padding: 4.831vw; /* 20px */
  }

  .form_item::before {
    display: none;
  }

  .form .button {
    margin-top: 4.831vw; /* 20px */
  }

  .wpcf7-not-valid-tip {
    padding-top: 4.831vw; /* 20px */
    font-size: 3.865vw; /* 16px */
  }
}

/*! CONTACT END */

/*! PAGE 404 START */
.error_main {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.389vw; /* 20px */
  padding: 0 1.389vw;
  text-align: center;
}
/*! PAGE 404 END */
