.white {
  background-color: white;
}

.t-white {
  color: #ffffff;
}

.t-dark {
  color: #52503b;
}

.beige {
  background-color: #faf8f0;
}

.t-up {
  text-transform: uppercase;
}

.t-center {
  text-align: center;
}

.i-left {
  align-items: left;
}

.f-start {
  display: flex;
  justify-content: flex-start;
}

.f-end {
  display: flex;
  justify-content: flex-end;
}

.f-between {
  display: flex;
  justify-content: space-between;
}

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

.t-center {
  text-align: center;
}

.s-start {
  align-items: self-start;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-40 {
  margin-right: 40px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-14 {
  margin-bottom: 14px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-100 {
  margin-bottom: 100px;
}

.m-0 {
  margin: 0;
}

.pb-100 {
  padding-bottom: 100px;
}

.db {
  display: block;
}

.button-light {
  border-radius: 6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  padding: 11px 18px;
  background-color: #ffffff;
  border: none;
  color: #52503b;
}
.button-light:hover {
  background-color: #E48716;
  color: #52503b;
}

.button-dark {
  border-radius: 6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  padding: 11px 18px;
  background-color: #52503b;
  border: none;
  color: #ffffff;
}
.button-dark:hover {
  background-color: #E48716;
  color: #52503b;
}

.button-transparent {
  border-radius: 6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  padding: 11px 18px;
  background-color: transparent;
  border: 4px solid;
  color: #52503b;
}
.button-transparent:hover {
  background-color: #E48716;
  color: #52503b;
  border: none;
}

header {
  padding-top: 1em;
  padding-bottom: 1em;
  background-color: #52503b;
}
header .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
  padding: 0;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  header .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (min-width: 600px) {
  header .container {
    padding-right: 50px;
    padding-left: 50px;
  }
}
header .container .header-link {
  color: #ffffff;
  text-decoration: none;
  margin-right: 24px;
  vertical-align: middle;
}
header .container .header-link:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  display: none;
  background-color: #E48716;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
}
header .container .header-link:hover {
  color: #E48716;
}
header .container .header-link:hover:after {
  display: block;
}
header .container .header-linklast-child {
  margin-right: 0;
}
@media only screen and (max-width: 600px) {
  header .container .header-link {
    display: none;
  }
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  position: relative;
  background-image: url(../../src/photo/house.svg);
  background-size: cover;
}
.intro .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 600px) {
  .intro .container {
    padding-left: 100px;
    padding-right: 100px;
  }
}
.intro .container img {
  width: 256px;
  height: 90px;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .intro .container h1 {
    font-size: 38px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 375px) {
  .intro .container h1 {
    font-size: 28px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 600px) {
  .intro h2 {
    margin-bottom: 0;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 200;
  }
}
@media only screen and (max-width: 375px) {
  .intro h2 {
    font-size: 12px;
    line-height: 1.3;
  }
}
@media only screen and (min-width: 600px) {
  .intro h2 {
    margin-bottom: 0;
  }
}

.section-quote {
  background-color: #ffffff;
}
.section-quote .container-quote {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 0;
}
@media only screen and (max-width: 600px) {
  .section-quote .container-quote {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.section-quote .container-quote .p-quote {
  font-weight: 700;
  font-size: 96px;
  line-height: 1.2;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .section-quote .container-quote .p-quote {
    font-size: 35px;
    line-height: 1.3em;
  }
}

.container-about {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media only screen and (max-width: 600px) {
  .container-about {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 900px) {
  .container-about {
    padding-right: 50px;
    padding-left: 50px;
  }
}
.container-about .about-inner {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 600px) {
  .container-about .about-inner {
    display: block;
  }
}
.container-about .about-inner .about-text {
  width: 50%;
  margin-right: 40px;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  .container-about .about-inner .about-text {
    text-align: justify;
    margin: 0;
    width: 100%;
  }
}
.container-about .about-inner .about-text:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 600px) {
  .container-about .about-inner .about-text button {
    display: block;
    margin: 0 auto;
  }
}

.container-arragements {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 900px) {
  .container-arragements {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 600px) {
  .container-arragements h3 {
    text-align: center;
  }
}
@media only screen and (min-width: 600px) {
  .container-arragements h3 {
    text-align: center;
  }
}
.container-arragements .container-inner {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 600px) {
  .container-arragements .container-inner {
    display: flex;
    flex-direction: column;
  }
}
.container-arragements .container-inner .arragements-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.33333%;
  margin-right: 70px;
}
.container-arragements .container-inner .arragements-inner:last-child {
  margin-right: 0;
}
.container-arragements .container-inner .arragements-inner img {
  margin-bottom: 12px;
}
@media only screen and (max-width: 600px) {
  .container-arragements .container-inner .arragements-inner {
    width: 100%;
    margin-bottom: 50px;
  }
  .container-arragements .container-inner .arragements-inner:last-child {
    margin-bottom: 0;
  }
}

.section-white .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 600px) {
  .section-white .container {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media only screen and (min-width: 600px) {
  .section-white .container {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media only screen and (max-width: 600px) {
  .section-white .container img {
    margin: auto;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .section-white .container h3 {
    text-align: center;
  }
}
.section-white .container .section-inner-escape {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 600px) {
  .section-white .container .section-inner-escape {
    display: flex;
    flex-direction: column;
  }
}
.section-white .container .section-inner-escape .inner-escape {
  width: 50%;
  margin-right: 100px;
}
.section-white .container .section-inner-escape .inner-escape:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 600px) {
  .section-white .container .section-inner-escape .inner-escape {
    width: 100%;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
  }
}
.section-white .container .section-inner-escape .inner-escape .escape-description {
  display: flex;
  margin-bottom: 42px;
  align-items: normal;
}
@media only screen and (max-width: 900px) {
  .section-white .container .section-inner-escape .inner-escape .escape-description {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 600px) {
  .section-white .container .section-inner-escape .inner-escape .escape-description {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
}
.section-white .container .section-inner-escape .inner-escape .escape-description p {
  margin-bottom: 0;
}
.section-white .container .section-inner-escape .inner-escape .escape-description .img-description {
  margin-right: 16px;
}
@media only screen and (max-width: 600px) {
  .section-white .container .section-inner-escape .inner-escape .escape-description .img-description {
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
    align-self: center;
  }
  .section-white .container .section-inner-escape .inner-escape .escape-description .img-description:last-child {
    margin-bottom: 0;
  }
}

.section-white .orange-rectangle {
  margin-left: 0;
}

.container-together {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 900px) {
  .container-together {
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
  }
}
.container-together .together-inner {
  width: 50%;
  margin-right: 20px;
}
@media only screen and (max-width: 900px) {
  .container-together .together-inner {
    margin-right: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 900px) {
  .container-together .together-inner p {
    margin-bottom: 40px;
    text-align: justify;
  }
}
.container-together .together-inner-between {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 900px) {
  .container-together .together-inner-between {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.container-together .together-inner-between .together-block {
  width: 50%;
  margin-right: 20px;
}
.container-together .together-inner-between .together-block:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 900px) {
  .container-together .together-inner-between .together-block {
    width: 100%;
    margin-bottom: 60px;
    margin-right: 0;
  }
  .container-together .together-inner-between .together-block:last-child {
    margin-bottom: 0;
  }
}
.container-together .together-inner-between .together-block .together-description {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 900px) {
  .container-together .together-inner-between .together-block .together-description {
    display: flex;
    justify-content: space-between;
  }
}

.section {
  background-color: #faf8f0;
}
.section .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 600px) {
  .section .container {
    padding-right: 50px;
    padding-left: 50px;
  }
}
.section .container .review {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 600px) {
  .section .container .review {
    display: flex;
    flex-direction: column;
  }
}
.section .container .review .review-block {
  margin-bottom: 40px;
  margin-right: 50px;
  padding: 30px;
  background-color: #ffffff;
}
@media only screen and (max-width: 600px) {
  .section .container .review .review-block {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 600px) {
  .section .container .review .review-block {
    width: 100%;
  }
}
.section .container .review .review-block:last-child {
  margin-right: 0;
}
.section .container .review .review-block .p-guest {
  text-align: center;
}

footer {
  background-color: #52503b;
}
footer .container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1280px) {
  footer .container {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media only screen and (max-width: 600px) {
  footer .container {
    flex-direction: column;
  }
}
footer .container .footer-inner {
  width: 50%;
  margin-right: 100px;
}
@media only screen and (max-width: 600px) {
  footer .container .footer-inner {
    margin-right: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
footer .container .footer-inner ul {
  display: flex;
  justify-content: flex-start;
}
@media only screen and (max-width: 900px) {
  footer .container .footer-inner p {
    margin-bottom: 30px;
  }
}
footer .container form {
  width: 100%;
  position: relative;
}
footer .container form input {
  display: block;
  padding: 16px 30px;
  width: 100%;
  color: #52503b;
  font-size: 14px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  border-radius: 8px;
  border: none;
}
footer .container form .button-footer {
  position: absolute;
  top: 0.8em;
  right: 1em;
  height: 2.3em;
  background-color: #52503b;
  border: none;
  border-radius: 10px;
  padding: 5px 10px;
  color: #ffffff;
  color: #faf8f0;
  font-size: 14px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
}
footer .container form .button-footer:hover {
  background-color: #E48716;
  color: #52503b;
}
@media only screen and (max-width: 1280px) {
  footer .container .footer-data {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media only screen and (max-width: 600px) {
  footer .container .footer-data p {
    font-weight: 200;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
  }
}

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

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #52503b;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
ul li {
  list-style-type: none;
}

span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

h1 {
  font-size: 48px;
  line-height: 53px;
  font-weight: 300;
}

h2 {
  margin-top: 34px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h3 {
  font-size: 32px;
  line-height: 36px;
  font-weight: 300;
  margin: 0;
}

h4 {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

h5 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
}

.orange-rectangle {
  display: block;
  margin: auto;
  margin-bottom: 30px;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.foto-section {
  height: 100vh;
  background-image: url(../../src/photo/chairs.svg);
  background-size: cover;
}
@media only screen and (max-width: 600px) {
  .foto-section {
    height: 300px;
  }
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 600px) {
  .container {
    padding-right: 50px;
    padding-left: 50px;
  }
}
.container .section-inner-escape {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 600px) {
  .container .section-inner-escape {
    display: flex;
    flex-direction: column;
  }
}
.container .section-inner-escape .inner-escape {
  width: 50%;
  margin-right: 100px;
}
.container .section-inner-escape .inner-escape:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 600px) {
  .container .section-inner-escape .inner-escape {
    width: 100%;
  }
}
.container .section-inner-escape .inner-escape .escape-description {
  display: flex;
  margin-bottom: 42px;
  align-items: normal;
}
.container .section-inner-escape .inner-escape .escape-description p {
  margin-bottom: 0;
}
.container .section-inner-escape .inner-escape .escape-description img {
  margin-right: 16px;
}

.foto-section-second {
  height: 100vh;
  background-image: url(../../src/photo/wardrobe.svg);
  background-size: cover;
}
@media only screen and (max-width: 600px) {
  .foto-section-second {
    height: 300px;
  }
}

.button-big {
  border-radius: 6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  background-color: #52503b;
  padding: 14px 18px;
  color: #ffffff;
  border: none;
}
.button-big:hover {
  background-color: #E48716;
  color: #52503b;
}

.container-booking {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 0;
}
@media only screen and (max-width: 900px) {
  .container-booking {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 600px) {
  .container-booking .button-booking .button-transparent {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .container-booking .button-booking {
    display: flex;
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */
