/*******************************************************
VARIABLES
********************************************************/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Quicksand:wght@300..700&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Open Sans Condensed ExtraBold";
  src: url("fonts/OpenSans_Condensed-ExtraBold-BF63e1a1cdae546.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans Condensed Bold";
  src: url("fonts/OpenSans-CondBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
:root {
  --black: #000;
  --gold: #DFB367;
  --grey: #EFEFEF;
  --grey-contact: #ADADAD;
  --white: #FFF;
  font-family: "Open Sans";
}

body {
  display: flex;
  flex-direction: column;
  background-color: var(--grey);
}

html,
body {
  height: 100%;
  margin: 0;
}

main {
  flex: 1;
}

.wp-block-image {
  margin: 0;
  padding: 0;
  display: inline;
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

header {
  background-color: var(--black);
  min-height: 150px;
  padding: 0 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

header img {
  width: 100px;
  height: 100px;
  cursor: pointer;
}

header a {
  text-decoration: none;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
}

header li:last-child a {
  color: var(--gold);
}

header ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

nav ul li {
  cursor: pointer;
}

nav > #nav-check {
  display: none;
}

@media (max-width: 480px) {
  header {
    padding: 0 20px;
    min-height: 100px;
  }
  header img {
    width: 50px;
    height: 50px;
  }
  nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
    cursor: pointer;
  }
  nav .menu-menu-principal-container {
    position: absolute;
    width: 100%;
    background-color: var(--black);
    height: 0;
    transition: all 0.3s ease-in;
    top: 100px;
    left: 0;
    overflow: hidden;
  }
  nav ul {
    flex-direction: column;
    padding: 0 20px;
    gap: 25px;
  }
  nav ul li {
    width: 100%;
  }
  nav > #nav-check:checked ~ .menu-menu-principal-container {
    height: calc(100vh - 100px);
    z-index: 1;
  }
}
footer {
  background-color: var(--black);
  padding: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--white);
  font-weight: bold;
  font-size: 20px;
}

footer a {
  text-decoration: none;
  color: var(--white);
  font-weight: bold;
}

footer > a > img {
  width: 100px;
  height: 100px;
}

footer.main-nav a {
  text-transform: uppercase;
}

footer .main-nav li:last-child a {
  color: var(--gold);
}

footer ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

footer .info-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .info-nav .adress {
  line-height: 1.2;
}

@media (max-width: 480px) {
  footer {
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
    font-size: 16px;
  }
  footer > a > img {
    width: 50px;
    height: 50px;
  }
  footer ul {
    align-items: baseline;
  }
}
.homepage-header {
  width: 100%;
  position: relative;
  height: calc(100vh - 150px);
}
.homepage-header > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepage-header__info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .homepage-header__info {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .homepage-header__info img {
    width: 100%;
  }
}

h2 {
  font-weight: 800;
  font-size: 36px;
  font-family: "Open Sans Condensed ExtraBold";
}

.block-img-text {
  display: flex;
  flex-direction: row;
  gap: 0;
}
@media (max-width: 480px) {
  .block-img-text {
    flex-direction: column;
  }
}
.block-img-text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-img-text .wp-block-image {
  max-height: 560px;
}
.block-img-text .block-text {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: space-around;
}
@media (max-width: 480px) {
  .block-img-text .block-text {
    gap: 50px;
  }
}
.block-img-text .block-text p {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
.block-img-text .block-text .btn {
  width: 60%;
  margin: 0 auto;
}

.contact {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.contact .block-img-text {
  gap: 40px;
}

.page-single {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  line-height: 1.4;
}

.page-header {
  width: 100%;
  position: relative;
  height: 50vh;
}
.page-header > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header__info {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  gap: 60px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 150px;
}
@media (max-width: 480px) {
  .page-header__info {
    padding: 0 20px;
  }
}
.page-header__info h1 {
  font-size: 36px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .page-header__info h1 {
    font-size: 24px;
  }
}
.page-header__info p {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}
@media (max-width: 480px) {
  .page-header__info p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .page-header__info {
    text-align: center;
  }
}

.fullpage {
  height: 100vh;
}
.fullpage .btn {
  width: 200px;
}

.page-list {
  display: grid;
  gap: 70px;
  padding: 50px;
}
@media (min-width: 480px) {
  .page-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.page-block {
  display: flex;
  gap: 30px;
}
@media (max-width: 480px) {
  .page-block {
    flex-direction: column;
  }
}
.page-block .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 480px) {
  .page-block .wp-block-column img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.page-block .wp-block-column li {
  list-style: inside;
}

.btn {
  background-color: var(--gold);
  padding: 10px 30px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  border-radius: 3px;
  text-decoration: none;
  color: var(--black);
  border: none;
}
@media (max-width: 480px) {
  .btn {
    font-size: 18px;
  }
}
.btn-chevron::after {
  content: "";
  background: url('data:image/svg+xml,<svg width="17" height="25" viewBox="0 0 17 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.76543 25C1.31481 25 0.862371 24.8592 0.517127 24.5752C-0.172376 24.0095 -0.172376 23.0941 0.517127 22.5284L12.7408 12.5001L0.517127 2.47115C-0.172376 1.90545 -0.172376 0.989177 0.517127 0.42428C1.20663 -0.141427 2.32341 -0.141427 3.01275 0.42428L16.4829 11.4759C17.1724 12.0416 17.1724 12.9579 16.4829 13.5228L3.01275 24.5751C2.66866 24.8584 2.21705 25 1.76543 25Z" fill="%23010002"/></svg>');
  width: 17px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  .btn-chevron::after {
    transform: translateY(-50%) scale(0.7);
    right: 5%;
  }
}
.btn-download::after {
  content: "";
  background: url('data:image/svg+xml,<svg width="29" height="31" viewBox="0 0 29 31" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.375 15.9375V26.1458C1.375 26.9194 1.68229 27.6612 2.22927 28.2082C2.77625 28.7552 3.51812 29.0625 4.29167 29.0625H24.7083C25.4819 29.0625 26.2237 28.7552 26.7707 28.2082C27.3177 27.6612 27.625 26.9194 27.625 26.1458V15.9375" stroke="black" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.52075 15.9375L14.4999 21.7708L20.4791 15.9375" stroke="black" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.5 1.9375V18.7083" stroke="black" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  width: 29px;
  height: 31px;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  .btn-download::after {
    transform: translateY(-50%) scale(0.7);
    right: 5%;
  }
}

.info {
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 30px;
}
@media (max-width: 480px) {
  .info {
    display: flex;
    flex-direction: column;
  }
}
.info__photo {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.info__photo-caroussel {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}
.info__photo-caroussel .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  cursor: pointer;
}
.info__photo-caroussel .arrow.previous {
  left: 10px;
}
.info__photo-caroussel .arrow.next {
  right: 10px;
}
.info__photo-caroussel__single {
  min-width: 100%;
  display: flex;
  justify-content: center;
  background-color: white;
  transition: transform 0.5s ease-in-out;
}
.info__photo__color {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.info__photo__color-single {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3294117647));
  cursor: pointer;
}
.info__photo__color-single.active {
  border: 0.5px solid var(--black);
}
.info__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.info__text h1 {
  font-weight: 800;
  font-size: 36px;
  font-family: "Open Sans Condensed Bold";
}
.info__text p {
  line-height: 1.4;
}
.info__text details[open] summary ~ * {
  animation: open 0.3s ease-in-out;
}
@keyframes open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.info__text details {
  position: relative;
}
.info__text details::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--black);
}
.info__text details summary::-webkit-details-marker {
  display: none;
}
.info__text details summary {
  padding: 11px 0;
  border-top: 1px solid black;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  list-style: none;
}
.info__text details summary:after {
  content: "";
  background: url('data:image/svg+xml,<svg width="17" height="25" viewBox="0 0 17 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.76543 25C1.31481 25 0.862371 24.8592 0.517127 24.5752C-0.172376 24.0095 -0.172376 23.0941 0.517127 22.5284L12.7408 12.5001L0.517127 2.47115C-0.172376 1.90545 -0.172376 0.989177 0.517127 0.42428C1.20663 -0.141427 2.32341 -0.141427 3.01275 0.42428L16.4829 11.4759C17.1724 12.0416 17.1724 12.9579 16.4829 13.5228L3.01275 24.5751C2.66866 24.8584 2.21705 25 1.76543 25Z" fill="%23010002"/></svg>');
  position: absolute;
  transition: 200ms linear;
  width: 17px;
  height: 25px;
  top: 0%;
  right: 30px;
  transform: rotate(90deg);
  transform-origin: 0 12.5px;
}
.info__text details[open] summary:after {
  transform: translateY(50%) rotate(270deg);
}
.info__text details summary {
  outline: 0;
}
.info__text .info-details {
  display: none;
}
.info__text table {
  width: 100%;
  border-bottom: 0 !important;
}
.info__text table,
.info__text td {
  border: 1px solid;
  padding: 5px;
  font-size: 18px;
}
.info__text td {
  width: 50%;
}
.info__text td:first-child {
  font-weight: 600;
}
.info__text tr:last-child td {
  border-bottom: 0;
}
.info__text .btn {
  margin: 0 auto;
  width: 60%;
  font-weight: 600;
}

.discover {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.discover__list {
  display: grid;
  gap: 70px;
}
@media (min-width: 480px) {
  .discover__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.card img {
  object-fit: contain;
  width: 100%;
  background-color: var(--white);
  height: 300px;
}
.card a {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-decoration: none;
}
.card p {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 32px;
  color: var(--black);
  font-family: "Open Sans Condensed Bold";
  text-transform: uppercase;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "a b" "c d" "e e" "f f" "g .";
  gap: 20px 10px;
}
@media (max-width: 480px) {
  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
form p:not(:last-child) {
  width: 100%;
}
form label {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  font-weight: 600;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form textarea {
  border: 2px solid var(--grey-contact);
  border-radius: 5px;
  min-height: 50px;
  width: 100%;
}
form span {
  display: inline-flex;
}

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