﻿@import 'fonts.css';
/*
    texto de contacto
*/
/*=================================================================================================================*/
/*=================================================================================================================*/
/*=================================================================================================================*/
/*===================================================TABLER========================================================*/
/*=================================================================================================================*/
/*=================================================================================================================*/
.ti {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1;
  fill: none;
}

html {
  scroll-behavior: auto !important; /* Must be auto for Lenis, not smooth */
}

html, body {
  height: 100%;
}

body {
  font-family: PPAgrandir-Regular;
  background-color: #f8f4ef;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}
a :hover {
  text-decoration: none !important;
}

.c-blue {
  color: #072768;
}

.c-brown {
  color: #53341e;
}

.c-l-brown {
  color: #996f51;
}

.c-cream {
  color: #f8f4ef;
}

.bg-blue {
  background-color: #072768;
}

img {
  max-width: 100%;
}

.h-div {
  border-top: 1px solid gray;
  margin: 20px auto;
}

#main-header {
  display: none !important;
}

#mobile-nav {
  display: flex !important;
  flex-direction: column;
  background-color: #f8f4ef;
  color: #072768;
  border-bottom: 1px solid #072768;
  padding: 0;
  margin: 0;
}
#mobile-nav .mobile-nav-header {
  height: 60px;
  width: 100%;
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 12px;
  position: relative;
  z-index: 1045;
  background-color: #f8f4ef;
}
#mobile-nav .mobile-nav-header img {
  width: 40px;
}
#mobile-nav .mobile-nav-header button {
  color: #072768;
  padding: 0;
  border: 0px !important;
  background-color: transparent;
  margin: 10px 11px;
}
#mobile-nav #mobile-nav-body {
  width: 100%;
  display: none;
  padding: 20px 0px;
  position: relative;
  z-index: 1045;
  background-color: #f8f4ef;
}
#mobile-nav #mobile-nav-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap !important;
  gap: 10px;
  margin: 0;
  padding: 0;
}
#mobile-nav #mobile-nav-body ul li {
  text-align: center;
}
#mobile-nav #mobile-nav-body ul li a {
  font-family: "Times New Roman MT Condensed Regular";
  font-weight: 100;
  color: #996f51;
  text-decoration: none;
  font-size: 20px;
}
#mobile-nav #mobile-nav-body ul .active a {
  color: #072768;
}
#mobile-nav .mobile-nav-backdrop {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100dvh;
  /*display: none;*/
}
#mobile-nav .offcanvas {
  background-color: #f8f4ef;
  border-bottom: 1px solid #072768;
}
#mobile-nav .offcanvas-header {
  margin: 0;
  padding: 10px 23px 8px 12px;
  justify-content: space-between;
}
#mobile-nav .offcanvas-header img {
  width: 40px;
}
#mobile-nav .offcanvas-header button {
  color: #072768 !important;
  padding: 0;
  border: 0px !important;
  background-color: transparent;
}
#mobile-nav .offcanvas-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap !important;
  gap: 10px;
  margin: 0;
  padding: 0;
}
#mobile-nav .offcanvas-body ul li {
  text-align: center;
}
#mobile-nav .offcanvas-body ul li a {
  font-family: "Times New Roman MT Condensed Regular";
  font-weight: 100;
  color: #996f51;
  text-decoration: none;
  font-size: 20px;
}
#mobile-nav .offcanvas-body ul .active a {
  color: #072768;
}
#mobile-nav .offcanvas-backdrop {
  background-color: rgba(0, 0, 0, 0.3);
}

#content {
  padding-top: 60px;
}

.page-section {
  height: calc(100dvh - 60px);
}
.page-section .page-section-title {
  width: 100%;
  text-align: center;
  font-family: Sloop-Script;
  font-size: clamp(3rem, 2vw, 6rem);
  margin-top: 20px;
}

#footer-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 88px;
  color: #f8f4ef;
  background-color: #53341e;
}
#footer-section #footer-info {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: end;
}
#footer-section #footer-info #footer-date {
  margin-bottom: 2px;
}
#footer-section #footer-info #footer-location {
  font-size: 20px;
}
#footer-section #footer-info #footer-location a {
  font-family: "Times New Roman MT Condensed Regular";
}
#footer-section #footer-contact {
  font-family: Montserrat-Regular;
}
#footer-section #footer-contact a {
  color: #f8f4ef !important;
  text-decoration: none;
  font-family: Montserrat-Regular;
}

.custom-input label {
  margin-bottom: 0px;
  position: relative;
  border-bottom: 1px solid #072768;
  width: 100%;
}
.custom-input label input {
  width: 100%;
  padding: 0px;
  margin-top: 20px;
  border: none;
  outline: none;
  background-color: transparent !important;
}
.custom-input label input::placeholder {
  opacity: 0;
}
.custom-input label span {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(20px);
  font-size: 14px;
  transition-duration: 300ms;
  pointer-events: none;
  white-space: nowrap;
}
.custom-input label:focus-within > span,
.custom-input input:not(:placeholder-shown) + span {
  color: #53341e;
  transform: translateY(0px);
}

.custom-select label {
  margin-bottom: 0px;
  position: relative;
  border-bottom: 1px solid #072768;
  width: 100%;
  display: block;
  background-color: #f8f4ef !important;
}
.custom-select label select {
  width: 100%;
  padding: 0px;
  margin-top: 20px;
  border: none;
  outline: none;
  background-color: transparent !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.custom-select label select.has-value {
  color: inherit;
}
.custom-select label select option {
  background-color: #f8f4ef;
  color: #333;
  padding: 10px !important;
  border: none;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}
.custom-select label span {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(20px);
  font-size: 14px;
  transition-duration: 300ms;
  pointer-events: none;
  white-space: nowrap;
}
.custom-select label:focus-within > span,
.custom-select select.has-value + span {
  color: #53341e;
  transform: translateY(0px);
}

#trip-container {
  display: none;
}

#FormPostModal .modal-content {
  background-color: #f8f4ef;
  border-radius: 0px !important;
  font-family: "Montserrat-Regular";
  font-family: "Times New Roman MT Condensed Regular";
}
#FormPostModal .modal-content .modal-header {
  justify-content: end;
}
#FormPostModal .modal-content .modal-body {
  padding-top: 0px;
  color: #072768;
  font-size: 24px;
  text-align: center;
}
#FormPostModal .modal-content .modal-footer .btn-secondary {
  background-color: #072768;
  border: none;
  border-radius: 0px !important;
}

#BookingModal .modal-content {
  background-color: #f8f4ef;
  border-radius: 0px !important;
  font-family: "Montserrat-Regular";
  /*font-family: 'Times New Roman MT Condensed Regular';*/
}
#BookingModal .modal-content .modal-header {
  font-size: 24px;
  color: #072768;
}
#BookingModal .modal-content .modal-header p {
  font-size: 16px;
  font-weight: bold;
}
#BookingModal .modal-content .modal-header svg {
  fill: #072768;
}
#BookingModal .modal-content .modal-body {
  padding-top: 0px;
  color: #072768;
  font-size: 14px;
}
#BookingModal .modal-content .modal-body ul li::marker {
  content: "- ";
}
#BookingModal .modal-content .modal-footer .btn-primary {
  background-color: #072768;
  border: none;
  border-radius: 0px !important;
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
  box-shadow: none;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
#home-page #page-section-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#home-page #page-section-1 img {
  width: 70%;
}
#home-page #page-section-1 #scroll-indicator-container {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#home-page #page-section-1 #scroll-indicator-container #scroll-indicator {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  /*i {
      font-size: 20px;
      color: $main_blue;
      background-color: transparent !important;
      animation: bounce 1.2s infinite ease-in-out;
  }*/
}
#home-page #page-section-1 #scroll-indicator-container #scroll-indicator img {
  width: 15px;
  animation: bounce 0.8s infinite ease-in-out;
}
#home-page #page-section-1 #scroll-indicator-container #scroll-indicator img:nth-child(1) {
  animation-delay: 0s;
}
#home-page #page-section-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: #072768;
  align-items: center;
  height: auto;
  min-height: calc(100dvh - 60px);
}
#home-page #page-section-2 img {
  width: 90%;
  margin: 0 auto;
}
#home-page #page-section-2 .form-container {
  padding: 20px;
  width: 100%;
}
#home-page #page-section-2 .form-container form {
  font-family: Montserrat-Regular;
  margin: 0 auto;
  padding: 20px;
  background-color: #f8f4ef;
}
#home-page #page-section-2 .form-container form hr {
  margin-top: 0px;
}
#home-page #page-section-2 .form-container form .bus-trip {
  padding: 10px 10px 0px 10px;
  border: 1px solid #BD0000;
  border-radius: 3px;
}
#home-page #page-section-2 .form-container form .bus-trip::after {
  content: attr(data-label);
  width: auto;
  position: absolute;
  top: 0;
  /* align with top border */
  left: 20px;
  transform: translateY(-50%);
  background: #f8f4ef;
  padding: 0 3px;
  font-size: 12px;
  font-family: PPAgrandir-TightRegular;
  color: #BD0000;
  white-space: nowrap;
}
#home-page #page-section-2 .form-container form button {
  font-size: 16px;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: Montserrat-Regular;
  font-weight: normal;
  padding: 2px 4px;
}

#information-page #desktop-arches {
  display: none;
}
#information-page #mobile-arch {
  width: 100%;
  height: 100dvh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  scroll-padding-top: 58px;
}
#information-page #mobile-arch .center-frame {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: calc(100dvh + 30px);
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}
#information-page #mobile-arch .center-frame .overlay-img {
  width: 100%;
  height: auto; /* keeps aspect ratio */
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#information-page #mobile-arch .center-frame #scroll-indicator-container {
  position: absolute;
  width: 100%;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#information-page #mobile-arch .center-frame #scroll-indicator-container #scroll-indicator {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 20px;
}
#information-page #mobile-arch .center-frame #scroll-indicator-container #scroll-indicator img {
  width: 15px;
  animation: bounce 0.8s infinite;
  margin-bottom: 25px;
}
#information-page #mobile-arch .center-frame #scroll-indicator-container #scroll-indicator img:nth-child(1) {
  animation-delay: 0s;
}
#information-page #mobile-arch .scroll-bg {
  width: 100%;
  height: calc(100dvh - 58px);
  background-size: cover;
  background-position: center;
  z-index: 1;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  color: #53341e;
  padding-top: 120px;
  background-color: #f8f4ef;
}
#information-page #mobile-arch .scroll-bg a {
  color: #53341e;
}
#information-page #mobile-arch .scroll-bg .section-title {
  font-family: Sloop-Script;
  font-size: 50px;
  color: #072768;
  margin-bottom: 0px !important;
}
#information-page #mobile-arch #first-bg {
  background-image: url("/images/bg_first.png");
  height: 100dvh;
  background-size: cover;
  background-position: bottom;
}
#information-page #mobile-arch #second-bg {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 20px;
  font-family: "Times New Roman MT Condensed Regular";
  font-size: 20px;
  text-align: center;
  padding-top: 140px;
}
#information-page #mobile-arch #second-bg img {
  width: 40%;
}
#information-page #mobile-arch #third-bg {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: start;
  padding-top: 140px;
  text-align: center;
  font-family: "Times New Roman MT Condensed Regular";
  font-size: 20px;
}
#information-page #mobile-arch #third-bg table {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 1rem;
}
#information-page #mobile-arch #third-bg table .align-left {
  text-align: left;
}
#information-page #mobile-arch #third-bg table .align-right {
  text-align: right;
}
#information-page #mobile-arch #third-bg .text {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}
#information-page #mobile-arch #fourth-bg {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: start;
  padding-top: 140px;
  text-align: center;
  font-family: "Times New Roman MT Condensed Regular";
  font-size: 20px;
}
#information-page #mobile-arch #fourth-bg a {
  text-decoration: none;
  font-family: "Times New Roman MT Condensed Regular";
}
#information-page #mobile-arch #fourth-bg table {
  margin: 0 auto;
  margin-bottom: 1rem;
}
#information-page #mobile-arch #fourth-bg table .align-left {
  text-align: left;
}
#information-page #mobile-arch #fourth-bg table .align-right {
  text-align: right;
}
#information-page #mobile-arch #fourth-bg #hotel-booking {
  border-radius: 0px !important;
  font-weight: normal;
  font-size: 16px;
  color: whitesmoke;
  font-family: Montserrat-Regular;
  box-shadow: none;
}
#information-page #mobile-arch #fifth-bg {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: start;
  padding-top: 140px;
  text-align: center;
  font-family: "Times New Roman MT Condensed Regular";
  font-size: 20px;
}
#information-page #mobile-arch #fifth-bg .car-text {
  max-width: 60%;
  margin: 0 auto;
  margin-bottom: 40px;
  overflow: scroll;
}
#information-page #mobile-arch #fifth-bg a {
  font-family: "Times New Roman MT Condensed Regular";
}

#wedding-list-page #page-section-1 {
  background-color: #f8f4ef;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding-bottom: 100px;
  position: relative;
}
#wedding-list-page #page-section-1 #flowers {
  position: absolute;
  bottom: 0px;
  overflow: hidden;
  /*width: 150%;*/
}
#wedding-list-page #page-section-1 #flowers img {
  width: 150%;
  max-width: 150%;
}
#wedding-list-page #page-section-1 .page-section-title {
  margin-top: 20px;
  color: #072768;
}
#wedding-list-page #page-section-1 .center {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
#wedding-list-page #page-section-1 .center #text {
  font-family: "Times New Roman MT Condensed Regular";
  font-size: 20px;
  text-align: center;
  color: #53341e;
  max-width: 300px;
  margin: 0 auto;
}
#wedding-list-page #page-section-1 .center span {
  text-align: center;
}
#wedding-list-page #page-section-1 .center .link, #wedding-list-page #page-section-1 .center a {
  color: #072768;
  /*font-weight: bold;*/
  text-decoration: none;
  font-size: 20px;
  font-family: "Times New Roman MT Condensed Regular";
}

@media (min-width: 600px) {
  #mobile-nav {
    display: none !important;
  }
  #main-header {
    display: block !important;
    background-color: #f8f4ef;
    border-bottom: 1px solid #072768;
    color: #f8f4ef;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 1060;
  }
  #main-header nav {
    position: relative;
  }
  #main-header nav #right-menu {
    position: absolute;
    top: 0;
    right: 30px;
    z-index: 1060;
    display: flex;
    align-items: center;
    color: #072768;
  }
  #main-header nav #right-menu a {
    color: #072768;
    display: block;
    border-radius: 2px;
  }
  #main-header nav #right-menu a img {
    width: 20px;
  }
  #main-header nav div:nth-child(2) {
    border-top: 1px solid #f8f4ef;
  }
  #main-header nav div img {
    width: 30%;
    max-width: 250px;
    padding: 0px 0;
  }
  #main-header nav div ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0;
  }
  #main-header nav div ul .nav-list-item {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #main-header nav div ul .nav-list-item a {
    display: block;
    padding: 30px 20px;
    font-family: "Times New Roman MT Condensed Regular";
    font-size: 20px;
    letter-spacing: 0.5px;
    text-decoration: none;
  }
  #main-header nav div ul .nav-list-item a :focus-visible {
    border: 0px;
  }
  #main-header nav div ul .nav-list-item:not(.active) a {
    color: #996f51;
  }
  #main-header nav div ul .nav-list-item:not(.active) :hover {
    color: #072768;
    -webkit-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    transition: 0.3s linear;
  }
  #main-header nav div ul .nav-list-item.active a {
    color: #072768;
  }
  .page-section .page-section-title {
    font-size: 60px;
  }
  #home-page #page-section-1 {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
  #home-page #page-section-1 img {
    max-width: 50%;
    width: auto;
    height: auto;
  }
  #home-page #page-section-1 img:first-child {
    max-width: 30%;
  }
  #home-page #page-section-1 #scroll-indicator-container #scroll-indicator img {
    width: 40px;
    animation: bounce 0.8s infinite ease-in-out;
  }
  #home-page #page-section-1 #scroll-indicator-container #scroll-indicator img:nth-child(1) {
    animation-delay: 0s;
  }
  #home-page #page-section-2 form {
    width: 500px;
    max-width: none !important;
    min-width: none !important;
    margin: 0 auto;
    font-size: 16px;
  }
  #home-page #page-section-2 form button {
    font-size: 18px;
  }
  #information-page {
    background-color: #f8f4ef;
  }
  #information-page #mobile-arch {
    display: none;
  }
  #information-page #desktop-arches {
    display: block;
    width: auto;
    height: calc(100dvh - 88px);
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
  }
  #information-page #desktop-arches .center-frame {
    position: fixed;
    inset: 0;
    width: auto;
    height: 100dvh;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
  }
  #information-page #desktop-arches .center-frame .overlay-img {
    width: auto;
    overflow: hidden;
    height: 100dvh; /* keeps aspect ratio */
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    max-width: 1000%;
  }
  #information-page #desktop-arches .center-frame #scroll-indicator-container {
    position: absolute;
    width: 100%;
    bottom: -20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #information-page #desktop-arches .center-frame #scroll-indicator-container #scroll-indicator {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 20px;
  }
  #information-page #desktop-arches .center-frame #scroll-indicator-container #scroll-indicator img {
    width: 15px;
    animation: bounce 0.8s infinite;
    margin-bottom: 25px;
  }
  #information-page #desktop-arches .center-frame #scroll-indicator-container #scroll-indicator img:nth-child(1) {
    animation-delay: 0s;
  }
  #information-page #desktop-arches .scroll-bg {
    width: auto;
    height: calc(100dvh - 88px);
    background-size: cover;
    background-position: center;
    z-index: 1;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    color: #53341e;
    padding-top: 250px;
    background-color: #f8f4ef;
  }
  #information-page #desktop-arches .scroll-bg a {
    color: #53341e;
  }
  #information-page #desktop-arches .scroll-bg .section-title {
    font-family: Sloop-Script;
    font-size: 50px;
    color: #072768;
    margin-bottom: 0px !important;
  }
  #information-page #desktop-arches #first-bg {
    height: calc(100dvh - 118px);
    padding-top: 0px;
    overflow: hidden;
  }
  #information-page #desktop-arches #first-bg img {
    width: auto;
    overflow: hidden;
    height: 100dvh; /* keeps aspect ratio */
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    max-width: 1000%;
  }
  #information-page #desktop-arches #second-bg {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
    font-family: "Times New Roman MT Condensed Regular";
    font-size: 20px;
    text-align: center;
    height: calc(100dvh - 10px);
  }
  #information-page #desktop-arches #third-bg {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: start;
    padding-top: 300px;
    text-align: center;
    font-family: "Times New Roman MT Condensed Regular";
    font-size: 20px;
  }
  #information-page #desktop-arches #third-bg table {
    min-width: 300px;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  #information-page #desktop-arches #third-bg table .align-left {
    text-align: left;
  }
  #information-page #desktop-arches #third-bg table .align-right {
    text-align: right;
  }
  #information-page #desktop-arches #fourth-bg {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: start;
    padding-top: 280px;
    text-align: center;
    font-family: "Times New Roman MT Condensed Regular";
    font-size: 20px;
  }
  #information-page #desktop-arches #fourth-bg a {
    text-decoration: none;
    font-family: "Times New Roman MT Condensed Regular";
  }
  #information-page #desktop-arches #fourth-bg a span {
    color: #996f51;
  }
  #information-page #desktop-arches #fourth-bg table {
    min-width: 300px;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  #information-page #desktop-arches #fourth-bg table .align-left {
    text-align: left;
  }
  #information-page #desktop-arches #fourth-bg table .align-right {
    text-align: right;
  }
  #information-page #desktop-arches #fourth-bg #hotel-booking {
    border-radius: 0px !important;
    font-weight: normal;
    font-size: 16px;
    color: whitesmoke;
    font-family: Montserrat-Regular;
    box-shadow: none;
  }
  #information-page #desktop-arches #fifth-bg {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: start;
    padding-top: 300px;
    text-align: center;
    font-family: "Times New Roman MT Condensed Regular";
    font-size: 20px;
  }
  #information-page #desktop-arches #fifth-bg .car-text {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 40px;
    overflow: hidden;
  }
  #information-page #desktop-arches #fifth-bg a {
    font-family: "Times New Roman MT Condensed Regular";
  }
}
@media (min-width: 630px) {
  #wedding-list-page #page-section-1 #flowers {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  #wedding-list-page #page-section-1 #flowers img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
}
/* Desktop and up */
@media (min-width: 1024px) {
  /*.page-section {
      .page-section-title {
          font-size: 60px;
      }
  }*/
  #home-page #page-section-1 img {
    max-width: 40%;
    width: auto;
    height: auto;
  }
  #home-page #page-section-2 form {
    min-width: 600px !important;
    margin: 0 auto;
    font-size: 16px;
  }
  #home-page #page-section-2 form button {
    font-size: 18px;
  }
}
