@import "/assets/fonts/Lao/lao.css";
@import "/assets/fonts/Futura/futura.css";
.lao {
  font-family: "Lao";
  font-weight: 400;
}

.futura-book {
  font-family: "Futura-book";
}

.futura-light {
  font-family: "Futura-light";
}

.futura-medium {
  font-family: "Futura-medium";
}

::-moz-selection {
  color: #3a4032;
  background: #c9a36b;
}

::selection {
  color: #efece7;
  background: #c9a36b;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

a {
  color: #767c6e;
  transition: 0.25s;
}
a:hover {
  color: #3a4032;
  transition: 0.25s;
}

a.no-decoration {
  text-decoration: none;
  text-decoration-line: none;
  color: #3a4032;
}

.uppercase {
  text-transform: uppercase;
}

.letter-spacing-normal {
  letter-spacing: normal;
}

.text-48 {
  font-size: 48px;
}

.text-40 {
  font-size: 40px;
}

.text-32 {
  font-size: 32px;
}

.text-24 {
  font-size: 24px;
}

.text-20 {
  font-size: 20px;
}

.text-18 {
  font-size: 18px;
}

.text-16 {
  font-size: 16px;
}

@media (max-width: 1024px) {
  .text-48 {
    font-size: 42px;
  }
  .text-40 {
    font-size: 38px;
  }
  .text-32 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .text-48 {
    font-size: 32px;
  }
  .text-40 {
    font-size: 36px;
  }
  .text-32 {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .text-48 {
    font-size: 26px;
  }
  .text-40 {
    font-size: 32px;
  }
  .text-32 {
    font-size: 22px;
  }
  .text-24 {
    font-size: 20px;
  }
  .text-20,
  .text-18 {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .text-48 {
    font-size: 24px;
  }
  .text-40 {
    font-size: 30px;
  }
  .text-32 {
    font-size: 20px;
  }
}
.shadow-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

header {
  position: fixed;
  top: 0;
  background-color: #efece7;
  z-index: 5;
  width: 100%;
  transition: background-color 0.5s, color 0.5s, transform 1s;
}
header.transparent {
  background-color: transparent;
  color: #efece7;
}
header.transparent > .header-top > .header-logo > .header-logo-light {
  display: block;
}
header.transparent > .header-top > .header-logo > .header-logo-dark {
  display: none;
}
header.transparent > .header-top > .header-nav > nav > a {
  color: #efece7;
}
header.hidden {
  transform: translateY(-100%);
  pointer-events: none;
}
header > .header-top {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 2.5rem 7.5rem;
}
header > .header-top > .header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
header > .header-top > .header-logo img {
  max-width: 13.5rem;
}
header > .header-top > .header-logo .header-logo-light {
  display: none;
}
header > .header-top > .header-nav > nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.125rem;
}
header > .header-top > .header-nav > nav > a {
  color: #3a4032;
  text-decoration: none;
}
header > .header-top > .header-nav > nav > .current {
  text-decoration: underline;
}
header > .header-top > .header-burger-control {
  display: none;
}
header > .header-burger-container {
  display: none;
}
header > .header-burger-container nav > a {
  color: #3a4032;
  text-decoration: none;
}

@media (max-width: 1024px) {
  header .header-top {
    padding: 2.5rem;
  }
  header .header-top > .header-logo img {
    max-width: 8.5rem;
  }
  header .header-top > .header-nav {
    display: none;
  }
  header .header-top > .header-burger-control {
    display: block;
    transition: opacity 0.5s;
  }
  header .header-top > .header-burger-control.fadeIn {
    opacity: 0;
  }
  header > .header-burger-container {
    height: calc(100dvh - 3.75rem);
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s;
  }
  header > .header-burger-container.open {
    max-height: calc(100dvh - 3.75rem);
  }
  header > .header-burger-container.open > div {
    opacity: 1;
    transition: opacity 2s;
  }
  header > .header-burger-container > div {
    opacity: 0;
    transition: opacity 0.5s;
  }
  header > .header-burger-container > .burger-nav > nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  header > .header-burger-container > .burger-social {
    position: absolute;
    bottom: 3.5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 600px) {
  header .header-top {
    padding: 1.25rem;
  }
}
footer {
  padding: 2.5rem 7.5rem;
  border-top: 1px solid rgba(58, 64, 50, 0.6);
  min-height: 50vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 18px;
}
footer > div {
  z-index: 1;
}
footer > .footer-top {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
}
footer > .footer-top > div {
  flex-basis: 100%;
  display: flex;
}
@media (max-width: 1024px) {
  footer > .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
footer > .footer-top > .footer-logo {
  align-items: start;
}
footer > .footer-top > .contacts-wrapper {
  justify-content: center;
}
footer > .footer-top > .contacts-wrapper > .contacts {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
footer > .footer-top > .contacts-wrapper > .contacts > div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.75rem;
}
footer > .footer-top > .contacts-wrapper > .contacts > .social-links {
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.25rem;
}
footer > .footer-top > .contacts-wrapper > .contacts > .social-links img {
  width: 20px;
  height: 20px;
}
footer > .footer-top > .weblinks-wrapper {
  justify-content: end;
}
footer > .footer-top > .weblinks-wrapper > .weblinks {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
footer > .footer-bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
footer > .footer-bottom > div {
  flex-basis: 100%;
  display: flex;
}
@media (max-width: 1024px) {
  footer > .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
footer > .footer-bottom > .policy {
  justify-content: end;
}
footer > .footer-bottom > .policy > a {
  text-decoration: none;
  color: #3a4032;
}
footer > img {
  position: absolute;
  bottom: 0;
  left: 0;
}
footer > .mobile {
  height: 80%;
  object-fit: cover;
  display: none;
}

@media (max-width: 1024px) {
  footer {
    padding: 6.25rem 2.5rem;
    min-height: 60vh;
    gap: 140px;
  }
  footer .footer-top .contacts {
    align-items: center;
    margin-top: 20px;
    text-align: center;
  }
  footer .footer-top .contacts > div > div {
    display: none;
  }
  footer .footer-top .weblinks-wrapper > .weblinks {
    margin-top: 100px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    gap: 18px 32px;
  }
  footer .footer-top .weblinks-wrapper > .weblinks > a {
    flex-basis: calc(50% - 32px);
    text-align: center;
  }
  footer > .desktop {
    display: none;
  }
  footer > .mobile {
    display: block;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 6.25rem 1.25rem;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Futura-book";
  background-color: #efece7;
  color: #3a4032;
  letter-spacing: 0.05em;
}

main,
footer {
  background-color: #efece7;
}

.cookiescript_fsd_reportby {
  display: none !important;
}

main {
  margin: 10rem 7.5rem;
  min-height: 100vh;
}
main > h1 {
  margin-bottom: 1.5rem;
}
main > h2,
main h3,
main h4,
main p {
  margin-bottom: 1rem;
}
main > ul {
  padding-left: 1rem;
  margin-bottom: 1rem;
}
main > .cookie-report-container label {
  gap: 5px;
}
main > .cookie-report-container button {
  outline: none;
  border: none;
  background-color: #3a4032;
  color: #efece7;
  padding: 0.5rem 1rem;
  transition: background-color 0.2s;
}
main > .cookie-report-container button:active {
  background-color: rgba(58, 64, 50, 0.6);
}
main > .cookie-report-container table {
  display: block;
  overflow-x: auto;
}

@media (max-width: 1024px) {
  main {
    margin: 10rem 2.5rem;
  }
}
@media (max-width: 600px) {
  main {
    margin: 10rem 1.25rem;
  }
}

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