@charset "UTF-8";
/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding-top: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media (orientation: portrait) {
  body {
    padding-top: 68px;
  }
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}
@media (orientation: portrait) and (max-width: 768px) {
  .container {
    padding: 7%;
  }
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin: 1rem 0;
  padding: 0;
}
ol li,
ul li,
dl li {
  margin: 1rem 0;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}

a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.25rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=time]):not([type=week]) {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=time]):not([type=week])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

/* Normalização adicional para elementos comuns */
ul, ol {
  list-style: none;
}

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

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

input, textarea, select, button {
  outline: none;
  border: none;
}

button {
  background: none;
  cursor: pointer;
}

/* Remove autofill styling */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.row {
  display: flex;
  gap: 20px;
}
@media (orientation: portrait) {
  .row {
    flex-direction: column;
  }
}
.row .col-1,
.row .col-2 {
  width: 50%;
}
@media (orientation: portrait) {
  .row .col-1,
  .row .col-2 {
    width: 100%;
  }
}

a.btn {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  color: #fff;
  background-color: #728665;
  transition: all 0.3s ease;
  padding: 14px;
  min-width: 300px;
  border-radius: 50px;
  text-transform: uppercase;
  text-align: center;
}
a.btn:hover {
  background-color: #273A1B;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-pagination-bullet {
  background: transparent;
  border: 2px solid #fff;
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 0.9;
}

/*--- HEADER ------------------------------------------------------------------------*/
header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
}
header .top-header {
  width: 100%;
  background: #273A1B;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
@media (orientation: portrait) {
  header .top-header {
    padding: 10px 0;
  }
}
header .top-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 50px;
}
header .top-header .container .phone {
  position: absolute;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
header .top-header .container .phone img {
  width: 40px;
  height: auto;
}
header .top-header .container .tagline {
  text-transform: uppercase;
}
@media (orientation: portrait) {
  header .top-header .container .tagline {
    display: none;
  }
}
header .top-header .container .cta {
  display: flex;
  align-items: center;
  position: absolute;
  right: 20px;
}
@media (orientation: landscape) {
  header .top-header .container .cta {
    gap: 20px;
  }
}
header .top-header .container .cta a.btn {
  min-width: 100px;
  padding: 7px 20px;
  letter-spacing: 2px;
  font-weight: 500;
}
header .top-header .container .cta a.btn:hover {
  background: #FDBC0E;
  color: #273A1B;
}
header .top-header .container .cta .ico-insta {
  width: 20px;
  height: 20px;
}
@media (orientation: portrait) {
  header .top-header .container .cta .ico-insta {
    display: none;
  }
}
header nav {
  width: 100%;
  padding: 0 0 5px 0;
  background-color: rgba(255, 255, 255, 0.75);
}
@media (orientation: portrait) {
  header nav {
    display: none;
  }
}
header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
}
header nav ul li {
  width: 20%;
  text-align: center;
  margin: 0;
}
header nav ul li a {
  color: #273A1B;
  font-weight: 800;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 7px 10px;
  border-radius: 50px;
}
header nav ul li:nth-child(1) a:hover, header nav ul li:nth-child(2) a:hover, header nav ul li:nth-child(4) a:hover, header nav ul li:nth-child(5) a:hover {
  color: #fff;
  background: #273A1B;
}
header nav img.logo {
  width: 200px;
  display: inline-block;
}

/*--- HERO ------------------------------------------------------------------------*/
.hero .hero-swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
@media (orientation: portrait) {
  .hero .hero-swiper .swiper-slide img.desk {
    display: none;
  }
}
@media (orientation: landscape) {
  .hero .hero-swiper .swiper-slide img.mob {
    display: none;
  }
}
.hero .hero-swiper .swiper-slide .content {
  width: 100%;
  position: absolute;
  top: 45%;
  left: 0;
}
@media (orientation: portrait) {
  .hero .hero-swiper .swiper-slide .content {
    top: 20%;
  }
}
.hero .hero-swiper .swiper-slide .content .container {
  max-width: 1100px;
}
@media (min-width: 1400px) {
  .hero .hero-swiper .swiper-slide .content .container {
    max-width: 1400px;
  }
}
.hero .hero-swiper .swiper-slide .content h3 {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -1px;
  color: #FDBC0E;
  font-size: 2.5rem;
  line-height: 2.75rem;
  max-width: 50%;
  margin-bottom: 40px;
}
@media (min-width: 1400px) {
  .hero .hero-swiper .swiper-slide .content h3 {
    font-size: 3.4rem;
    line-height: 3.8rem;
  }
}
@media (orientation: portrait) {
  .hero .hero-swiper .swiper-slide .content h3 {
    font-size: 2rem;
    line-height: 2.25rem;
    max-width: 100%;
    width: 100%;
  }
}
.hero .hero-swiper .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 50px);
  top: var(--swiper-navigation-top-offset, 55%);
}
@media (orientation: portrait) {
  .hero .hero-swiper .swiper-button-prev {
    display: none;
  }
}
.hero .hero-swiper .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 50px);
  top: var(--swiper-navigation-top-offset, 55%);
}
@media (orientation: portrait) {
  .hero .hero-swiper .swiper-button-next {
    display: none;
  }
}

/*--- WHY CHOOSE ------------------------------------------------------------------------*/
.why-choose .container {
  max-width: 1160px;
}
.why-choose .container h2 {
  text-align: center;
  margin: 40px 0;
  letter-spacing: 4px;
  font-size: 2rem;
  font-weight: 400;
}
@media (orientation: landscape) {
  .why-choose .container .col.col-2 {
    padding: 10px 40px;
  }
}
.why-choose .container .col.col-2 h3 {
  font-weight: 600;
  font-size: 1.6rem;
}
.why-choose .container .col.col-2 p {
  font-weight: 500;
  font-size: 1.2rem;
}
.why-choose .container .col.col-2 a.btn {
  margin-top: 30px;
  margin-top: 40px;
  padding: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 2px;
  width: 90%;
}
@media (orientation: portrait) {
  .why-choose .container .col.col-2 a.btn {
    width: 100%;
  }
}
.why-choose .container .yellowbox {
  width: 100%;
  background-color: #FDBC0E;
  height: 50px;
  margin-top: 40px;
}

/*--- AMENITIES ------------------------------------------------------------------------*/
.amenities {
  padding: 10px 0 100px 0;
  margin: 50px 0 0 0;
  background-color: #F4FAFF;
  text-align: center;
}
@media (orientation: portrait) {
  .amenities {
    padding: 10px 0 50px 0;
  }
}
.amenities h2 {
  text-align: center;
  margin: 10px 0 30px 0;
  letter-spacing: 1px;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 4px;
}
.amenities h3 {
  font-weight: 700;
  font-size: 1.45rem;
}
.amenities p.slogan {
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.25rem;
}
.amenities .col {
  text-align: left;
}
@media (orientation: landscape) {
  .amenities .col.col-2 {
    padding: 10px 40px;
    max-width: 550px;
  }
}
.amenities .col.col-2 h3 {
  font-weight: 700;
}
.amenities .col.col-2 p {
  font-weight: 500;
  font-size: 1.35rem;
}
.amenities .col.col-2 a.btn {
  padding: 25px;
  font-size: 1.15rem;
  letter-spacing: 2px;
  font-weight: 400;
  width: 100%;
  margin-top: 40px;
}
@media (orientation: landscape) {
  .amenities .col.col-2 a.btn {
    max-width: 400px;
  }
}

/*---BOOK NOW ------------------------------------------------------------------------*/
.booknow {
  padding: 50px 0;
  background-color: #273A1B;
  color: #fff;
  text-align: center;
}
@media (orientation: portrait) {
  .booknow {
    padding: 20px 0 0 0;
  }
}
.booknow .container {
  max-width: 960px;
}
.booknow .container h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.booknow .container h3 {
  margin: 40px auto 60px auto;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (orientation: portrait) {
  .booknow .container .item {
    margin-bottom: 40px;
  }
}
.booknow .container .item img {
  opacity: 0.75;
  transition: all 0.3s ease;
}
.booknow .container .item img:hover {
  opacity: 1;
}
.booknow .container .item .item-content {
  padding: 10px;
  background: #728665;
  text-align: left;
}
.booknow .container .item .item-content h4 {
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 5px 0;
}
.booknow .container .item .item-content p {
  margin: 0;
  letter-spacing: 2px;
  font-weight: 300;
}

/*--- ABOUT 1 ------------------------------------------------------------------------*/
.about1 {
  padding: 100px 0;
  margin: 0;
  background-color: #F4FAFF;
  text-align: center;
}
@media (orientation: portrait) {
  .about1 {
    padding: 50px 0;
  }
}
.about1 h2 {
  text-align: center;
  margin: 40px 0;
  letter-spacing: 1px;
  font-size: 1.8rem;
}
.about1 h3 {
  font-weight: 700;
}
.about1 p.slogan {
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto 40px auto;
}
.about1 .col {
  text-align: left;
}
@media (orientation: landscape) {
  .about1 .col.col-1 {
    padding: 10px 40px 0 10vw;
  }
}
.about1 .col.col-1 h3 {
  font-weight: 700;
}
.about1 .col.col-1 p {
  font-weight: 500;
  font-size: 1.35rem;
}
.about1 .col.col-1 a.btn {
  padding: 25px;
  font-size: 1.15rem;
  letter-spacing: 2px;
  font-weight: 400;
  width: 100%;
  max-width: 400px;
}
@media (orientation: landscape) {
  .about1 .col.col-1 a.btn {
    margin-top: 40px;
  }
}

/*--- PHOTO GALLERY ------------------------------------------------------------------------*/
.gallery {
  padding: 50px 0;
  background: #191919 url(img/bg-gallery.jpg) center no-repeat;
  background-size: cover;
  text-align: center;
  color: #fff;
}
@media (orientation: portrait) {
  .gallery {
    overflow-x: hidden;
  }
}
.gallery .container {
  max-width: 1000px;
}
.gallery .container .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, -50px);
}
.gallery .container .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, -50px);
}
.gallery .container .thumbs-swiper {
  margin-top: 10px;
}
.gallery .container .thumbs-swiper .swiper-slide {
  opacity: 0.75;
  transition: all 0.3s ease;
}
.gallery .container .thumbs-swiper .swiper-slide:hover {
  opacity: 1;
}
.gallery .container .thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

/*--- ABOUT 2 ------------------------------------------------------------------------*/
.about2 {
  padding: 100px 0;
  margin: 0;
  background-color: #F4FAFF;
  text-align: center;
}
.about2 h2 {
  text-align: center;
  margin: 40px 0;
  letter-spacing: 1px;
  font-size: 1.8rem;
}
.about2 h3 {
  font-weight: 700;
}
.about2 p.slogan {
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto 40px auto;
}
.about2 .col {
  text-align: left;
}
@media (orientation: landscape) {
  .about2 .col.col-2 {
    padding: 10px 40px;
    max-width: 550px;
  }
}
.about2 .col.col-2 h3 {
  font-weight: 700;
}
.about2 .col.col-2 p {
  font-weight: 500;
  font-size: 1.35rem;
}
.about2 .col.col-2 a.btn {
  padding: 25px;
  font-size: 1.15rem;
  letter-spacing: 2px;
  font-weight: 400;
  width: 100%;
  max-width: 400px;
  margin-top: 40px;
}

/*--- RATES ------------------------------------------------------------------------*/
#rates {
  background: #C8D4DE;
  padding: 40px 0;
}
@media (orientation: landscape) {
  #rates {
    padding: 40;
  }
}
#rates h2 {
  text-align: center;
  margin: 0 0 40px 0;
  letter-spacing: 1px;
  font-size: 1.85rem;
  letter-spacing: 4px;
  background: #C8D4DE;
}
#rates .wrapper {
  background: #fff;
  padding: 20px;
  text-align: center;
}
#rates .wrapper h3 {
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 2px;
  margin: 40px 0;
}
#rates .wrapper .rates {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: auto;
  margin-bottom: 40px;
}
@media (orientation: portrait) {
  #rates .wrapper .rates {
    flex-direction: column;
  }
}
#rates .wrapper .rates .item {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  width: 33.33%;
}
@media (orientation: portrait) {
  #rates .wrapper .rates .item {
    width: 100%;
  }
}
#rates .wrapper .rates .item .icon {
  background: transparent url(img/elipse.svg) center no-repeat;
  background-size: 100% auto;
  width: 175px;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
}
#rates .wrapper .rates .item .icon img {
  max-width: 125px;
}
#rates .wrapper .rates .item h4 {
  font-size: 1.75rem;
}
#rates .wrapper .rates .item p {
  font-size: 1.75rem;
}
#rates .wrapper .rates .item p span {
  font-size: 1.25rem;
}
#rates p.note {
  font-size: 1.35rem;
  font-weight: 500;
}

/*--- ATTRACTIONS ------------------------------------------------------------------------*/
.attractions {
  text-align: center;
  background: #F4FAFF;
  padding: 20px 0 0 0;
}
.attractions h2 {
  margin: 40px 0;
  letter-spacing: 4px;
  font-size: 1.85rem;
}
.attractions .swiper .swiper-slide {
  display: flex;
  background: #728665;
}
@media (orientation: portrait) {
  .attractions .swiper .swiper-slide {
    flex-direction: column;
  }
}
.attractions .swiper .swiper-slide .col {
  width: 50%;
  color: #fff;
  text-align: left;
}
@media (orientation: portrait) {
  .attractions .swiper .swiper-slide .col {
    width: 100%;
  }
}
.attractions .swiper .swiper-slide .col.col-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 40px;
}
.attractions .swiper .swiper-slide .col.col-2 h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.attractions .swiper .swiper-slide .col.col-2 p {
  font-size: 1.25rem;
  max-width: 650px;
}
@media (orientation: portrait) {
  .attractions .swiper .swiper-button-next,
  .attractions .swiper .swiper-button-prev {
    display: none;
  }
}
.attractions .attractions-preview {
  padding: 40px 0;
  background: #273A1B url(img/ico-badge.svg) 5% 0 no-repeat;
  background-size: 100px auto;
  color: #fff;
}
@media (orientation: portrait) {
  .attractions .attractions-preview {
    padding: 150px 0 40px 0;
  }
}
.attractions .attractions-preview .container {
  max-width: 960px;
}
@media (min-width: 1400px) {
  .attractions .attractions-preview .container {
    max-width: 1160px;
  }
}
.attractions .attractions-preview .container .col-1 {
  text-align: left;
}
.attractions .attractions-preview .container .col-1 h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.attractions .attractions-preview .container .col-1 p {
  font-size: 1.25rem;
  font-weight: 500;
}
.attractions .attractions-preview .container .col-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.attractions .attractions-preview .container .col-2 a.btn {
  border: 4px solid #FDBC0E;
  background: transparent;
  padding: 20px;
  width: 100%;
  max-width: 480px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 2px;
}
.attractions .attractions-preview .container .col-2 a.btn:hover {
  background: #FDBC0E;
  color: #273A1B;
}

/*--- CONTACT ------------------------------------------------------------------------*/
.contact {
  text-align: center;
  background: #F4FAFF;
  padding: 50px 0 75px 0;
}
.contact h2 {
  margin: 0 0 40px 0;
  font-size: 1.85rem;
  letter-spacing: 4px;
}
.contact .map {
  margin-bottom: 40px;
}
.contact .contact-content h3 {
  margin: 0 0 40px 0;
  font-size: 1.85rem;
  letter-spacing: 2px;
  font-weight: 700;
}
.contact .contact-content p {
  font-size: 1.25rem;
}
.contact .contact-content a.btn {
  padding: 20px;
  width: 100%;
  max-width: 480px;
  background: #FDBC0E;
  color: #181919;
  font-size: 1.25rem;
}
.contact .contact-content a.btn:hover {
  background: #728665;
  color: #fff;
}

/*--- FOOTER ------------------------------------------------------------------------*/
footer {
  padding: 60px 0;
  color: #666666;
  font-size: 0.9rem;
}
footer h5 {
  font-size: 1rem;
  font-weight: 600;
}
footer a:hover {
  color: #728665;
}
@media (orientation: landscape) {
  footer .container > .row > .col-1 {
    border-right: 1px solid #000;
  }
}
footer .container > .row > .col-1 > .row .col-1 {
  text-align: center;
}
@media (orientation: landscape) {
  footer .container > .row > .col-1 > .row .col-1 {
    width: 70%;
  }
}
footer .container > .row > .col-1 > .row .col-1 img {
  display: inline-block;
  margin: auto;
  width: 200px;
}
@media (orientation: landscape) {
  footer .container > .row > .col-1 > .row .col-2 {
    width: 30%;
  }
}
@media (orientation: portrait) {
  footer .container > .row > .col-1 > .row .col-2 {
    text-align: center;
  }
}
footer .container > .row > .col-1 > .row .col-2 ul li {
  margin: 0;
}
@media (orientation: landscape) {
  footer .container > .row > .col-2 {
    padding-left: 75px;
  }
}
@media (orientation: portrait) {
  footer .container > .row > .col-2 {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */