* {
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Barlow Condensed", sans-serif;
  color: #331f0b;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #e3e7e9;
}

html.o-hidden,
body.o-hidden {
  overflow: hidden;
}

::-moz-selection {
  background: #ff7e00;
  color: #FFFFFF;
}

::selection {
  background: #ff7e00;
  color: #FFFFFF;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
}

.container {
  max-width: calc(1240px + 40px);
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #e3e7e9;
  z-index: 999;
  padding: 24px 0;
}

@media screen and (max-width: 1000px) {
  .navbar {
    padding: 16px 0;
  }
}

.navbar.open .navbar__menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.navbar.open .navbar__menu-icon {
  background: #e3e7e9;
}

.navbar.open .navbar__menu-icon::before, .navbar.open .navbar__menu-icon::after {
  width: 100%;
}

.navbar.open .navbar__menu-icon::before {
  -webkit-transform: translateY(7px) rotate(-45deg);
          transform: translateY(7px) rotate(-45deg);
}

.navbar.open .navbar__menu-icon::after {
  -webkit-transform: translateY(-7px) rotate(45deg);
          transform: translateY(-7px) rotate(45deg);
}

.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar__logo {
  display: block;
  max-width: 303px;
  position: relative;
  z-index: 99;
}

@media screen and (max-width: 1000px) {
  .navbar__logo {
    max-width: 200px;
  }
}

.navbar__logo img {
  width: 100%;
}

.navbar__icon {
  position: relative;
  z-index: 99;
  background: #331f0b;
  width: 24px;
  height: 2px;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  display: none;
}

@media screen and (max-width: 1000px) {
  .navbar__icon {
    display: block;
  }
}

.navbar__icon::before, .navbar__icon::after {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background: #331f0b;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.navbar__icon::before {
  top: -7px;
}

.navbar__icon::after {
  bottom: -7px;
}

.navbar__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1000px) {
  .navbar__menu {
    position: fixed;
    top: 105px;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #e3e7e9;
    z-index: 9;
    overflow: hidden;
    padding: 24px;
    -webkit-transition: 300ms ease;
    transition: 300ms ease;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.navbar__menu__link {
  margin: 0 0 0 28px;
}

@media screen and (max-width: 1000px) {
  .navbar__menu__link {
    margin: 0 0 20px 0;
  }
}

.navbar__menu__link a {
  font: 600 24px/1 "Barlow Condensed", sans-serif;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.navbar__menu__link a:hover {
  color: #ff7e00;
}

.navbar__menu__button {
  margin: 0 0 0 44px;
}

@media screen and (max-width: 1000px) {
  .navbar__menu__button {
    margin: 20px 0 0 0;
  }
}

.navbar__menu__button a {
  font: 600 24px/1 "Barlow Condensed", sans-serif;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  padding: 18px 0 18px 38px;
  position: relative;
  background: #ff7e00;
}

@media screen and (max-width: 1000px) {
  .navbar__menu__button a {
    padding: 18px;
    text-align: center;
    width: 100%;
    display: block;
  }
}

.navbar__menu__button a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background: #ff7e00;
  height: 100%;
  width: 1000%;
}

@media screen and (max-width: 1000px) {
  .navbar__menu__button a::before {
    display: none;
  }
}

.content {
  padding: 160px 0 0 0;
}

@media screen and (max-width: 1000px) {
  .content {
    padding: 105px 0 0 0;
  }
}

.content__banner header {
  padding: 6px 0;
  background: #ff7e00;
}

.content__banner header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content__banner header .container img {
  max-width: 56px;
  margin: 0 14px 0 0;
}

@media screen and (max-width: 1000px) {
  .content__banner header .container img {
    max-width: 40px;
  }
}

.content__banner header .container h4 {
  font: 700 28px/1 "Barlow Condensed", sans-serif;
}

@media screen and (max-width: 1000px) {
  .content__banner header .container h4 {
    font-size: 17px;
  }
}

.content__banner > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 850px;
}

.content__bottom-banner {
  border-bottom: 2px solid #ff7e00;
  border-top: 2px solid #ff7e00;
  padding: 80px 0;
  background: url("../assets/flowers-texture.png") left/contain no-repeat;
}

@media screen and (max-width: 1000px) {
  .content__bottom-banner {
    padding: 40px 0;
    background-size: cover;
  }
}

.content__bottom-banner .container h3 {
  margin: 0 0 0 auto;
  max-width: 620px;
  width: 100%;
  font: 700 35px/42px "Barlow Condensed", sans-serif;
}

@media screen and (max-width: 1000px) {
  .content__bottom-banner .container h3 {
    font: 700 22px/26px "Barlow Condensed", sans-serif;
  }
}

.content__local {
  background: #331f0b;
  padding: 0 0 80px 0;
  position: relative;
}

.content__local::before {
  content: url("../assets/flowers-texture2.png");
  position: absolute;
  right: -1px;
  bottom: -1px;
  z-index: 1;
}

.content__local__banner {
  position: relative;
}

.content__local__banner::before {
  content: "";
  width: 100%;
  height: 40%;
  background: -webkit-gradient(linear, left bottom, left top, from(#331f0b), to(rgba(51, 31, 11, 0)));
  background: linear-gradient(0deg, #331f0b 0%, rgba(51, 31, 11, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.content__local__banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 850px;
}

.content__local__title {
  margin: -32px 0 72px 0;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 1000px) {
  .content__local__title {
    margin: -32px 0 32px 0;
  }
}

.content__local__title::before, .content__local__title::after {
  content: url("../assets/balls.png");
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 1000px) {
  .content__local__title::before, .content__local__title::after {
    display: none;
  }
}

.content__local__title::before {
  left: -12px;
}

.content__local__title::after {
  right: -12px;
}

.content__local__title .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content__local__title .container img {
  max-width: 70px;
  margin: 0 18px 0 0;
}

@media screen and (max-width: 1000px) {
  .content__local__title .container img {
    max-width: 48px;
  }
}

.content__local__title .container h2 {
  font: 600 28px/1.3 "Barlow Condensed", sans-serif;
  color: #FFFFFF;
  text-transform: uppercase;
}

@media screen and (max-width: 1000px) {
  .content__local__title .container h2 {
    font-size: 20px;
  }
}

.content__local__tabs {
  position: relative;
  z-index: 5;
}

.content__local__tabs .container {
  max-width: 1100px;
}

.content__local__tabs header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 40px 0;
  padding: 0 0 32px 0;
  border-bottom: 1px solid #5d4520;
}

@media screen and (max-width: 1000px) {
  .content__local__tabs header {
    overflow-x: auto;
    height: 144px;
    padding-left: 12px;
    margin: 0 0 32px 0;
  }
}

.content__local__tabs header button {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

@media screen and (max-width: 1000px) {
  .content__local__tabs header button {
    min-width: 84px;
    max-width: 84px;
  }
  .content__local__tabs header button:not(:last-of-type) {
    margin: 0 12px 0 0;
  }
}

.content__local__tabs header button::before {
  content: "";
  border: 1px solid #e2ac0f;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  border-radius: 1000px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.content__local__tabs header button::after {
  content: "";
  width: 5px;
  height: 15px;
  border-radius: 1000px;
  background-color: #e2ac0f;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  bottom: -10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.content__local__tabs header button.active, .content__local__tabs header button:hover {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}

.content__local__tabs header button.active::before, .content__local__tabs header button:hover::before {
  opacity: 1;
  visibility: visible;
}

.content__local__tabs header button.active::after {
  opacity: 1;
  visibility: visible;
}

.content__local__tabs header button img {
  height: 100%;
  width: 100%;
}

.content__local__tabs section {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 500ms ease-in-out;
  transition: 500ms ease-in-out;
}

.content__local__tabs section.active {
  max-height: 64rem;
  overflow: initial;
  opacity: 1;
  visibility: visible;
}

.content__local__tabs section h2 {
  text-transform: uppercase;
  color: #e2ac0f;
  font: 300 50px/1.1 "Barlow Condensed", sans-serif;
  margin: 0 0 28px 0;
}

@media screen and (max-width: 1000px) {
  .content__local__tabs section h2 {
    margin: 0 0 20px 0;
    font-size: 30px;
  }
}

.content__local__tabs section ul {
  max-width: 710px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content__local__tabs section ul li {
  width: 350px;
  color: #FFFFFF;
  margin: 0 0 4px 0;
  letter-spacing: .2px;
}

@media screen and (max-width: 1000px) {
  .content__local__tabs section ul li {
    width: 100%;
  }
}

.content__local__tabs section ul li,
.content__local__tabs section ul li * {
  font: 400 21px/1.3 "Barlow Condensed", sans-serif;
}

.content__local__tabs section ul li span {
  color: #ff7e00;
}

.content__local__carrossel {
  margin: 72px 0 40px 0;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 1000px) {
  .content__local__carrossel {
    margin: 48px 0 40px 0;
  }
}

.content__local__carrossel .swiper-slide {
  max-width: 680px;
  width: 100%;
}

.content__local__carrossel .swiper-slide figure img {
  width: 100%;
  height: 410px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

@media screen and (max-width: 1000px) {
  .content__local__carrossel .swiper-slide figure img {
    height: 300px;
  }
}

.content__local__carrossel .swiper-slide figure figcaption {
  display: block;
  margin: 0 0 0 20px;
  font: 400 16px/1 "Barlow Condensed", sans-serif;
  color: #FFFFFF;
  border-left: 2px solid #ff7e00;
  padding: 20px 0 2px 8px;
}

.content__local .button {
  width: 190px;
  position: relative;
  z-index: 5;
}

.content__comments {
  padding: 88px 0;
  background: #ff7e00;
  position: relative;
}

.content__comments::before {
  content: url("../assets/flowers-texture3.png");
  position: absolute;
  top: 144px;
  left: 0;
  z-index: 1;
  opacity: .5;
}

@media screen and (max-width: 1000px) {
  .content__comments::before {
    display: none;
  }
}

.content__comments .container {
  position: relative;
  z-index: 5;
}

.content__comments .container header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content__comments .container header > img {
  margin: 0 0 48px 0;
}

@media screen and (max-width: 1000px) {
  .content__comments .container header > img {
    margin: 0 0 32px 0;
  }
}

.content__comments .container header section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content__comments .container header section img {
  max-width: 64px;
  margin: 0 18px 0 0;
}

@media screen and (max-width: 1000px) {
  .content__comments .container header section img {
    max-width: 52px;
  }
}

.content__comments .container header section h4 {
  text-transform: uppercase;
  letter-spacing: .2rem;
  font: 600 24px/1.3 "Barlow Condensed", sans-serif;
}

@media screen and (max-width: 1000px) {
  .content__comments .container header section h4 {
    font-size: 17px;
  }
}

.content__comments .container ul {
  margin: 48px 0 80px 0;
}

@media screen and (max-width: 1000px) {
  .content__comments .container ul {
    margin: 48px 0 64px 0;
  }
}

.content__comments .container ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content__comments .container ul li:not(:last-of-type) {
  margin: 0 0 48px 0;
}

@media screen and (max-width: 1000px) {
  .content__comments .container ul li:not(:last-of-type) {
    margin: 0 0 40px 0;
  }
}

.content__comments .container ul li p {
  width: 100%;
  font: 500 23px/32px "Barlow Condensed", sans-serif;
  color: #FFFFFF;
  position: relative;
  padding: 0 0 0 60px;
  margin: 0 0 20px 0;
}

@media screen and (max-width: 1000px) {
  .content__comments .container ul li p {
    font: 500 17px/26px "Barlow Condensed", sans-serif;
  }
}

.content__comments .container ul li p::before {
  content: url("../assets/quote-left.png");
  color: #331f0b;
  top: -4px;
  position: absolute;
  left: 0;
}

.content__comments .container ul li p::after {
  content: url("../assets/quote-dir.png");
  overflow: hidden;
  display: inline-block;
  margin: 0 0 -28px 8px;
}

.content__comments .container ul li p img {
  display: inline;
}

.content__comments .container footer h2 {
  text-transform: uppercase;
  font: 600 26px/1.3 "Barlow Condensed", sans-serif;
  margin: 0 0 32px 0;
  text-align: center;
  letter-spacing: .3rem;
}

@media screen and (max-width: 1000px) {
  .content__comments .container footer h2 {
    font-size: 20px;
  }
}

.content__comments .container footer section {
  max-width: 730px;
  width: 100%;
  margin: 0 auto;
}

.content__comments .container footer section div {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.content__comments .container footer section div::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.content__comments .container footer section div button {
  overflow: hidden;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  display: block;
  left: 0;
  width: 100%;
  z-index: 9;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.content__comments .container footer section div button.hidden {
  opacity: 0;
  visibility: hidden;
}

.content__comments .container footer section div button:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
}

.content__comments .container footer section div button::before {
  content: url("../assets/play.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  z-index: 5;
}

.content__comments .container footer section div button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}

.content__comments .container footer section div button img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content__comments .container footer section div iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

/*//////////////////////////////////////////////////////////////////////////////////*/

.content__tour {
  padding: 0 0 88px 0;
  background: #ff7e00;
  position: relative;
}

.content__tour::before {
  content: url("../assets/flowers-texture3.png");
  position: absolute;
  top: 144px;
  left: 0;
  z-index: 1;
  opacity: .5;
}

@media screen and (max-width: 1000px) {
  .content__tour::before {
    display: none;
  }
}

.content__tour .container {
  position: relative;
  z-index: 5;
}

.content__tour .container header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content__tour .container header > img {
  margin: 0 0 48px 0;
}

@media screen and (max-width: 1000px) {
  .content__tour .container header > img {
    margin: 0 0 32px 0;
  }
}

.content__tour .container header section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content__tour .container header section img {
  max-width: 64px;
  margin: 0 18px 0 0;
}

@media screen and (max-width: 1000px) {
  .content__tour .container header section img {
    max-width: 52px;
  }
}

.content__tour .container header section h4 {
  text-transform: uppercase;
  letter-spacing: .2rem;
  font: 600 24px/1.3 "Barlow Condensed", sans-serif;
}

@media screen and (max-width: 1000px) {
  .content__tour .container header section h4 {
    font-size: 17px;
  }
}

.content__tour .container ul {
  margin: 48px 0 80px 0;
}

@media screen and (max-width: 1000px) {
  .content__tour .container ul {
    margin: 48px 0 64px 0;
  }
}

.content__tour .container ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content__tour .container ul li:not(:last-of-type) {
  margin: 0 0 48px 0;
}

@media screen and (max-width: 1000px) {
  .content__tour .container ul li:not(:last-of-type) {
    margin: 0 0 40px 0;
  }
}

.content__tour .container ul li p {
  width: 100%;
  font: 500 23px/32px "Barlow Condensed", sans-serif;
  color: #FFFFFF;
  position: relative;
  padding: 0 0 0 60px;
  margin: 0 0 20px 0;
}

@media screen and (max-width: 1000px) {
  .content__tour .container ul li p {
    font: 500 17px/26px "Barlow Condensed", sans-serif;
  }
}

.content__tour .container ul li p::before {
  content: url("../assets/quote-left.png");
  color: #331f0b;
  top: -4px;
  position: absolute;
  left: 0;
}

.content__tour .container ul li p::after {
  content: url("../assets/quote-dir.png");
  overflow: hidden;
  display: inline-block;
  margin: 0 0 -28px 8px;
}

.content__tour .container ul li p img {
  display: inline;
}

.content__tour .container footer h2 {
  text-transform: uppercase;
  font: 600 26px/1.3 "Barlow Condensed", sans-serif;
  margin: 0 0 32px 0;
  text-align: center;
  letter-spacing: .3rem;
}

@media screen and (max-width: 1000px) {
  .content__tour .container footer h2 {
    font-size: 20px;
  }
}

.content__tour .container footer section {
  max-width: 730px;
  width: 100%;
  margin: 0 auto;
}

.content__tour .container footer section div {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.content__tour .container footer section div::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.content__tour .container footer section div button {
  overflow: hidden;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  display: block;
  left: 0;
  width: 100%;
  z-index: 9;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.content__tour .container footer section div button.hidden {
  opacity: 0;
  visibility: hidden;
}

.content__tour .container footer section div button:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
}

.content__tour .container footer section div button::before {
  content: url("../assets/360.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  z-index: 5;
}

.content__tour .container footer section div button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}

.content__tour .container footer section div button img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content__tour .container footer section div iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

/*//////////////////////////////////////////////////////////////////////////////////*/

.content__diferenciais img {
  width: 100%;
  max-height: 850px;
  -o-object-fit: cover;
     object-fit: cover;
}

.content__diferenciais section {
  background: #331f0b;
  padding: 120px 0;
}

@media screen and (max-width: 1000px) {
  .content__diferenciais section {
    padding: 64px 0;
  }
}

.content__diferenciais section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content__diferenciais section .container * {
  text-align: center;
}

.content__diferenciais section .container h2 {
  text-transform: uppercase;
  font: 600 48px/1.1 "Barlow Condensed", sans-serif;
  color: #ff7e00;
  letter-spacing: .3rem;
  margin: 0 0 20px 0;
}

@media screen and (max-width: 1000px) {
  .content__diferenciais section .container h2 {
    font-size: 28px;
  }
}

.content__diferenciais section .container h4 {
  text-transform: uppercase;
  font: 600 28px/40px "Barlow Condensed", sans-serif;
  color: #FFFFFF;
  letter-spacing: .3rem;
  margin: 0 auto 88px auto;
  max-width: 1070px;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .content__diferenciais section .container h4 {
    font: 600 18px/26px "Barlow Condensed", sans-serif;
    margin: 0 auto 40px auto;
  }
}

.content__mid {
  position: relative;
  overflow-y: hidden;
  padding: 0 0 144px 0;
}

@media screen and (max-width: 1000px) {
  .content__mid {
    padding: 0 0 64px 0;
  }
}

.content__mid::before {
  content: url("../assets/flowers-texture4.png");
  position: absolute;
  top: 64px;
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 1000px) {
  .content__mid::before {
    display: none;
  }
}

.content__mid__planta {
  padding: 144px 0 88px 0;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 1000px) {
  .content__mid__planta {
    padding: 80px 0 64px 0;
  }
}

.content__mid__planta .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  .content__mid__planta .container {
    display: block;
  }
}

.content__mid__planta .container aside {
  max-width: 500px;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .content__mid__planta .container aside {
    margin: 0 0 32px 0;
  }
}

.content__mid__planta .container aside h2 {
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.content__mid__planta .container aside h2,
.content__mid__planta .container aside h2 * {
  font: 600 50px/1 "Barlow Condensed", sans-serif;
}

@media screen and (max-width: 1000px) {
  .content__mid__planta .container aside h2,
  .content__mid__planta .container aside h2 * {
    font-size: 34px;
  }
}

.content__mid__planta .container aside h2 span {
  display: block;
  color: #ff7e00;
}

.content__mid__planta .container aside p {
  max-width: 430px;
  width: 100%;
  font: 600 27px/1.1 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

@media screen and (max-width: 1000px) {
  .content__mid__planta .container aside p {
    font-size: 18px;
  }
}

.content__mid__planta .container img {
  max-width: 708px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content__mid__galeria {
  position: relative;
  z-index: 5;
}

.content__mid__galeria h2 {
  font: 600 53px/1 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  margin: 0 auto 48px auto;
}

@media screen and (max-width: 1000px) {
  .content__mid__galeria h2 {
    font-size: 30px;
    margin: 0 auto 32px auto;
  }
}

.content__mid__galeria .swiper-slide {
  max-width: 680px;
  width: 100%;
}

.content__mid__galeria .swiper-slide figure a {
  display: block;
}

.content__mid__galeria .swiper-slide figure a img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}

.content__mais-fotos {
  padding: 64px 0 72px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ff7e00;
}

@media screen and (max-width: 1000px) {
  .content__mais-fotos {
    padding: 24px 0 48px 0;
  }
}

.content__mais-fotos header {
  width: 100%;
}

.content__mais-fotos header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content__mais-fotos header img {
  max-width: 64px;
  margin: 0 18px 0 0;
}

@media screen and (max-width: 1000px) {
  .content__mais-fotos header img {
    margin: 0 12px 0 0;
    max-width: 56px;
  }
}

.content__mais-fotos header h4 {
  text-transform: uppercase;
  letter-spacing: .2rem;
  font: 600 24px/1.1 "Barlow Condensed", sans-serif;
}

@media screen and (max-width: 1000px) {
  .content__mais-fotos header h4 {
    font-size: 17px;
  }
}

.content__mais-fotos .swiper {
  margin: 40px 0 56px 0;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .content__mais-fotos .swiper {
    margin: 32px 0;
  }
}

.content__mais-fotos .swiper .swiper-slide {
  max-width: 680px;
  width: 100%;
}

.content__mais-fotos .swiper .swiper-slide figure a {
  display: block;
}

.content__mais-fotos .swiper .swiper-slide figure a img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}

.content__mais-fotos .button {
  background: #331f0b;
}

.content__mais-fotos .button::after {
  border-color: #331f0b;
}

.content__gafisa img {
  width: 100%;
}

.content__hines {
  padding: 64px 0;
  background: url("../assets/hines.webp") center/cover no-repeat;
  height: 750px;
}

.content__hines .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 1000px) {
  .content__hines .container {
    display: block;
  }
}

.content__hines .container aside {
  max-width: 340px;
  width: 100%;
  margin: 0 0 0 48px;
}

@media screen and (max-width: 1000px) {
  .content__hines .container aside {
    margin: 0 0 40px 0;
  }
}

.content__hines .container aside * {
  color: #FFFFFF;
}

.content__hines .container aside h2 {
  font: 500 56px/1 "Barlow Condensed", sans-serif;
  margin: 0 0 12px 0;
}

@media screen and (max-width: 1000px) {
  .content__hines .container aside h2 {
    font-size: 36px;
  }
}

.content__hines .container aside h6 {
  font: 400 24px/1 "Barlow Condensed", sans-serif;
}

.content__hines .container aside h6:not(:last-of-type) {
  margin: 0 0 12px 0;
}

.content__hines .container aside h6 strong {
  font: 600 40px/1 "Barlow Condensed", sans-serif;
}

.content__hines .container aside p {
  font: 400 24px/1 "Barlow Condensed", sans-serif;
}

@media screen and (max-width: 1000px) {
  .content__hines .container aside p {
    font-size: 18px;
  }
}

.content__contato form {
  padding: 40px 0 88px 0;
}

.content__contato form .container {
  max-width: 690px;
}

.content__contato form .container header {
  margin: 0 0 24px 0;
}

.content__contato form .container header div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content__contato form .container header div h2 {
  font: 700 34px/1 "Barlow Condensed", sans-serif;
  margin: 0 0 0 16px;
  letter-spacing: .3rem;
  text-transform: uppercase;
}

.content__contato form .container header h6 {
  font: 700 15px/1 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .2rem;
  margin: 12px 0 0 0;
  text-align: center;
}

.content__contato form .container label {
  font: 400 18px/1 "Barlow Condensed", sans-serif;
  margin: 0 0 12px 0;
  display: block;
}

.content__contato form .container label span {
  display: inline-block;
  font-size: 80%;
  opacity: .64;
}

.content__contato form .container select,
.content__contato form .container option,
.content__contato form .container input,
.content__contato form .container textarea {
  display: block;
  width: 100%;
  height: 46px;
  padding: .375rem .75rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  background: #e3e7e9;
  border: 1px solid #331f0b;
  border-radius: 6px;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.content__contato form .container select,
.content__contato form .container option {
  margin: 0 0 20px 0;
  background: #331f0b;
  color: #FFFFFF;
}

.content__contato form .container input {
  margin: 0 0 20px 0;
}

.content__contato form .container textarea {
  height: 96px;
}

.content__contato form .container textarea::-webkit-input-placeholder {
  opacity: 1;
}

.content__contato form .container textarea:-ms-input-placeholder {
  opacity: 1;
}

.content__contato form .container textarea::-ms-input-placeholder {
  opacity: 1;
}

.content__contato form .container textarea::placeholder {
  opacity: 1;
}

.content__contato form .container .button {
  margin: 32px 0 0 0;
  color: #331f0b;
  text-transform: uppercase;
  font-weight: 500;
  background: #e2ac0f;
  width: 100%;
}

.content__contato form .container .button::after {
  border-color: #e2ac0f;
}

.content__contato footer .container {
  border-top: 1px solid #3a250f;
  padding: 40px 64px;
}

@media screen and (max-width: 1000px) {
  .content__contato footer .container {
    padding: 32px 24px;
  }
}

.content__contato footer .container p {
  letter-spacing: 0.2px;
  font: 300 12px/1.6 sans-serif;
}

.content .swiper-slide img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.64);
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
  z-index: 9999;
  padding: 20px;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal article {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 2rem;
  border: 2px solid #a0a0a0;
  max-width: 1000px;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .modal article {
    padding: 1.25rem;
    border-radius: 1rem;
  }
}

.modal button {
  position: absolute;
  top: 2rem;
  right: 2rem;
  -webkit-transform: translate(100%, -100%);
          transform: translate(100%, -100%);
  color: #a0a0a0;
  font: 600 1.2rem/1 "Barlow Condensed", sans-serif;
}

@media screen and (max-width: 1000px) {
  .modal button {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    top: 1.25rem;
    right: 0.5rem;
  }
}

.modal img {
  max-width: 80vh;
  max-height: 80vh;
}

@media screen and (max-width: 1000px) {
  .modal img {
    max-width: 100%;
  }
}

.button {
  background: #ff7e00;
  color: #FFFFFF;
  border-radius: 1000px;
  height: 42px;
  font: 600 26px/1 "Barlow Condensed", sans-serif;
  position: relative;
  padding: 0 32px 2px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
}

.button:hover::after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
}

.button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 3px solid #ff7e00;
  border-radius: 50px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}
/*# sourceMappingURL=main.css.map */