/********************
 GENERAL
*********************/

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  position: relative;
}

html {
  --brown-200: #ece0ce;
  --brown-300: #c7b1a0;
  --brown: #a6907e;
  --maroon-300: #584842;
  --maroon: #3d302b;
  --maroon-500: #332824;
  --cream: #f5efe5;
  --white: #ffffff;
  --black: #1a1918;
  --green: #284e2a;
  --red: #753232;

  --loos: "Loos", sans-serif;
  --looswide: "LoosWide", sans-serif;
  --helvetica: "Helvetica", sans-serif;

  --small-hmargin: 20px;
  --medium-hmargin: 40px;
  --large-hmargin: 80px;
  --xlarge-hmargin: 180px;
  --small-vmargin: 40px;
  --medium-vmargin: 80px;
  --large-vmargin: 120px;
  --xlarge-vmargin: 180px;
}

@media screen and (max-width: 1200px) {
  html {
    --small-hmargin: 20px;
    --medium-hmargin: 40px;
    --large-hmargin: 60px;
    --xlarge-hmargin: 120px;
    --small-vmargin: 40px;
    --medium-vmargin: 60px;
    --large-vmargin: 80px;
    --xlarge-vmargin: 120px;
  }
}

@media screen and (max-width: 992px) {
  html {
    --small-hmargin: 20px;
    --medium-hmargin: 30px;
    --large-hmargin: 40px;
    --xlarge-hmargin: 80px;
    --small-vmargin: 20px;
    --medium-vmargin: 40px;
    --large-vmargin: 60px;
    --xlarge-vmargin: 80px;
  }
}

@media screen and (max-width: 500px) {
  html {
    --small-hmargin: 20px;
    --medium-hmargin: 20px;
    --large-hmargin: 20px;
    --xlarge-hmargin: 40px;
    --small-vmargin: 20px;
    --medium-vmargin: 20px;
    --large-vmargin: 40px;
    --xlarge-vmargin: 80px;
  }
}

a {
  text-decoration: none;
  cursor: pointer;
}

.protect {
  pointer-events: none;
}

div {
  align-items: start;
}

.hidden-title {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  right: 200vw;
  bottom: 200vh;
}

img {
  display: block;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-track-piece {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--maroon);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--maroon-300);
}

::-webkit-scrollbar-thumb:active {
  background: var(--maroon-500);
}

::-webkit-scrollbar-corner {
  background: var(--cream);
}

/********************
 FONTS
*********************/

@font-face {
  font-family: "Loos";
  src: url("../fonts/Loos-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Loos";
  src: url("../fonts/Loos-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Loos";
  src: url("../fonts/Loos-Bold.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "LoosWide";
  src: url("../fonts/Loos-Wide-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "LoosWide";
  src: url("../fonts/Loos-Wide-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "LoosWide";
  src: url("../fonts/Loos-Wide-Bold.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaNeueLight.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaNeueLightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaNeueRoman.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaNeueItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaNeueMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaNeueMediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaNeueBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaNeueBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: fallback;
}

/********************
 TITLES AND TEXTS
*********************/

body {
  font-family: var(--helvetica);
  color: var(--black);
  font-size: 1rem;
  line-height: 1.4;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 500;
  font-family: var(--looswide);
  line-height: 1;
}

h1,
.h1,
h2,
.h2 {
  font-size: 4.3rem;
}

h1 i,
.h1 i,
h2 i,
.h2 i {
  font-weight: 300;
  font-style: normal;
}

h3,
.h3 {
}

@media screen and (max-width: 1500px) {
  h1,
  .h1,
  h2,
  .h2 {
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 1200px) {
  h1,
  .h1,
  h2,
  .h2 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 992px) {
  h1,
  .h1,
  h2,
  .h2 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 500px) {
  h1,
  .h1,
  h2,
  .h2 {
    font-size: 2rem;
  }
}

/********************
 COMMONS
*********************/

/* BTN */
.btn {
  display: block;
  text-align: center;
  width: max-content;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  min-width: min(100%, 200px);
  text-overflow: ellipsis;
  cursor: pointer;
  border-radius: 10px;
  background-color: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  padding: 6px 30px 5px;
  margin: 0 auto;
  font-size: inherit;
  line-height: inherit;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border-color 0.2s ease-in-out, filter 0.2s ease-in-out;
}

.btn > p {
  margin: 0 !important;
}

.btn.locked {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.6;
}

.btn:hover {
  background-color: var(--brown-300);
  color: var(--maroon);
}

.btn:active {
  background-color: var(--brown);
}

.btn.white {
  background-color: var(--cream);
  color: var(--maroon);
}

.btn.white:hover {
  background-color: var(--brown-300);
}

.btn.white:active {
  background-color: var(--brown);
}

/* PRELOADER */

.preloader {
  display: block;
  height: 5px;
  width: 100%;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 20px;
}

.preloader > span {
  position: absolute;
  animation: none;
  width: 100%;
  height: 100%;
  left: -100%;
  border-radius: 3px;
  background-color: var(--brown);
}

.preloader.active {
  margin-bottom: 20px;
}

.preloader.active > span {
  animation: preloader 1s linear 0s infinite normal forwards;
}

@keyframes preloader {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* BOUNCE */

.bounce {
  animation-name: bounce;
  animation-duration: 0.4s;
  animation-timing-function: cubic-bezier(0.2, 0.9, 0.3, 1.4);
  animation-iteration-count: 1;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0.6);
  }
  60% {
    transform: scale(1.2);
  }
  0% {
    transform: scale(1);
  }
}

/* WAVE */

.wave {
  animation-name: wave;
  animation-duration: 1.1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes wave {
  0% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}

/********************
 HEADER
*********************/
#head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--small-vmargin) var(--medium-hmargin);
  gap: var(--large-hmargin);
  z-index: 100;
  pointer-events: none;
}

#head > a:first-child {
  position: absolute;
  left: var(--medium-hmargin);
  top: 20px;
  width: max-content;
  transition: opacity 0.2s ease-in-out;
}

#head > a:first-child:hover {
  opacity: 0.7;
}

#head svg {
  height: 4rem;
}

#head svg > * {
  fill: var(--maroon);
  transition: fill 0.2s ease-in-out;
}

#head.light svg > * {
  fill: var(--white);
}

#head a {
  display: block;
  width: max-content;
  position: relative;
  pointer-events: all;
  color: var(--maroon);
  transition: color 0.2s ease-in-out;
}

#head.light a {
  color: var(--white);
}

#head a > span {
  white-space: nowrap;
}

#head a > span:last-child {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
  font-weight: 500;
}

#head a:hover > span:last-child,
#head a.active > span:last-child {
  opacity: 1;
}

#head a:hover > span:first-child,
#head a.active > span:first-child {
  opacity: 0;
  transition: opacity 0.1s ease-in-out 0.05s;
}

@media screen and (max-width: 1200px) {
  #head {
    justify-content: flex-end;
  }
}

/********************
 MOBILE HEADER
*********************/
#burger {
  position: fixed;
  top: 0;
  right: 0;
  padding: 20px 20px 0 0;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 56px;
  height: 43px;
  z-index: 102;
  cursor: pointer;
}

#burger > span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 100px;
  background-color: var(--maroon);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out,
    background-color 0.2s ease-in-out;
}

#burger.light > span {
  background-color: var(--cream);
}

#burger.active > span {
  background-color: var(--maroon);
}

#burger.active > span:nth-child(1) {
  transform: translateY(10px) rotate(33deg);
}

#burger.active > span:nth-child(2) {
  transform: translateX(10px);
  opacity: 0;
}

#burger.active > span:nth-child(3) {
  transform: translateY(-10px) rotate(-33deg);
}

#head_mobile {
  display: none;
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 0.2s ease-in-out;
  pointer-events: none;
  transform: translateX(100%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  height: 100vh;
  z-index: 101;
}

#head_mobile a {
  color: var(--maroon);
  font-size: 1.2rem;
}

#head_mobile.active {
  transform: translateX(0);
  pointer-events: all;
}

#head_mobile a.active {
  font-weight: 600;
}

#head_mobile > a:last-child {
  position: absolute;
  top: 20vh;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  transition: opacity 0.2s ease-in-out;
}

#head_mobile > a:last-child:hover {
  opacity: 0.7;
}

#head_mobile img {
  height: 2rem;
  width: auto;
  max-width: calc(100vw - 80px);
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  #head {
    display: none;
  }
  #burger,
  #head_mobile {
    display: flex;
  }
}

/********************
 FOOTER
*********************/
#foot {
  background-color: var(--brown);
  color: var(--brown-200);
  padding: var(--small-vmargin) var(--medium-hmargin) 10px;
  font-size: 0.9rem;
}

#foot a {
  color: var(--brown-200);
  transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out,
    filter 0.2s ease-in-out;
  width: max-content;
  display: block;
}

#foot a.active {
  font-weight: 600;
  color: var(--white);
}

#foot a:hover {
  color: var(--white);
}

.foot-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.foot-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

.foot-right > p:first-child {
  font-weight: 500;
  font-size: 1.1rem;
}

.foot-top img {
  height: 3rem;
}

.foot-bottom {
  margin-top: var(--medium-vmargin);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.8rem;
  position: relative;
}

.foot-bottom > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 20px;
}

#foot .foot-bottom > div:last-child a {
  display: inline;
}

.foot-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

a.foot-center:hover {
  filter: brightness(1.3);
}

.foot-bottom .foot-center {
  top: unset;
  bottom: 0;
  transform: translateX(-50%);
}

.foot-bottom img {
  height: 30px;
}

@media screen and (max-width: 1100px) {
  .foot-top img {
    height: 2rem;
  }
}

@media screen and (max-width: 900px) {
  #foot .foot-top .foot-center {
    display: none;
  }
  #foot .foot-bottom .foot-center {
    position: relative;
    order: 1;
    bottom: unset;
    left: unset;
    transform: unset;
  }
  #foot .foot-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  #foot .foot-bottom > div:first-child {
    order: 2;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
  }
  #foot .foot-bottom > div:last-child {
    order: 3;
  }
}

@media screen and (max-width: 400px) {
  .foot-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .foot-left,
  .foot-right {
    text-align: center;
    align-items: center;
    gap: 5px;
  }
  .foot-right > p:first-child {
    display: none;
  }
}

/********************
 ANIMATIONS
*********************/
.anim-title:not(.ck) {
  opacity: 0;
}

.anim-title.inited {
  opacity: 1;
}

.anim-title > p > span,
.anim-title > p > i {
  display: inline-block;
  overflow: hidden;
}

.anim-title > p > span > span,
.anim-title > p > i > span {
  display: block;
  position: relative;
  transform: translateY(120%);
}

.anim-trigger:not(.animate) .anim-title > p > span > span,
.anim-trigger:not(.animate) .anim-title > p > i > span {
  transition: transform 0.5s ease-in-out 0s, opacity 0.5s ease-in-out 0s !important;
}

.anim-trigger.animate .anim-title > p > span > span,
.anim-trigger.animate .anim-title > p > i > span {
  transform: translateY(0);
}

.anim-title > p > i:last-child {
  margin-left: 10px;
}

.fade-up,
.fade-bottom,
.fade-right,
.fade-left,
.fade {
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.fade-up {
  transform: translateY(20px);
}

.fade-left {
  transform: translateX(20px);
}

.fade-right {
  transform: translateX(-20px);
}

.fade-bottom {
  transform: translateY(-20px);
}

.anim-trigger.animate .fade-up,
.anim-trigger.animate .fade-left,
.anim-trigger.animate .fade-right,
.anim-trigger.animate .fade-bottom {
  opacity: 1;
  transform: translate(0, 0);
}

.anim-trigger.animate .delay-1 {
  transition-delay: 0.2s;
}

.anim-trigger.animate .delay-2 {
  transition-delay: 0.4s;
}

.anim-trigger.animate .delay-3 {
  transition-delay: 0.6s;
}

.anim-trigger.animate .delay-4 {
  transition-delay: 0.8s;
}

.anim-trigger.animate .delay-5 {
  transition-delay: 1s;
}

.anim-trigger.animate .delay-6 {
  transition-delay: 1.2s;
}

.anim-trigger.animate .delay-7 {
  transition-delay: 1.4s;
}

.anim-trigger.animate .delay-8 {
  transition-delay: 1.6s;
}

.anim-trigger.animate .delay-9 {
  transition-delay: 1.8s;
}

.anim-trigger.animate .delay-10 {
  transition-delay: 2s;
}

.anim-trigger.animate .delay-11 {
  transition-delay: 2.2s;
}

.anim-trigger.animate .delay-12 {
  transition-delay: 2.4s;
}

.anim-trigger.animate .delay-13 {
  transition-delay: 2.6s;
}

.anim-trigger.animate .delay-14 {
  transition-delay: 2.8s;
}

.anim-trigger.animate .delay-15 {
  transition-delay: 3s;
}

@media screen and (max-width: 992px) {
  .fade-right,
  .fade-left {
    transform: translateY(20px);
  }
}

/*************
  404
**************/
.p404 {
  min-height: 100vh;
  /*min-height: 100svh;*/
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream);
  text-align: center;
}

.p404 > div > p {
  margin: 20px 0;
}

/********************
 LEGALS
*********************/
.legals {
  padding: var(--large-vmargin) var(--large-hmargin);
  padding-top: calc(100px + var(--small-vmargin));
  background-color: var(--cream);
}

.legals > * {
  max-width: 1200px;
}

.legals a:not(.btn) {
  color: var(--brown) !important;
  transition: color 0.2s ease-in-out;
}

.legals a:not(.btn):hover {
  color: var(--maroon-300) !important;
}

.legals h1,
.legals h2 {
  margin-bottom: 40px;
}

.legals h3 {
  margin: 20px 0 10px;
}

.legals p {
  margin: 10px 0;
}

.legals .btn {
  margin: 20px 0;
}

@media screen and (max-width: 992px) {
  .legals {
    padding-top: calc(80px);
  }
}

/*************
  COOKIES
**************/

/********************
 COOKIES
*********************/
.cookies {
  position: fixed;
  bottom: 10px;
  left: 50%;
  border: 1px solid var(--white);
  background-color: rgba(53, 46, 43, 0.9);
  z-index: 104;
  color: var(--white);
  padding: 15px;
  width: 1500px;
  max-width: calc(100% - 20px);
  transform: translateX(-50%) translateY(40px);
  pointer-events: none;
  opacity: 0;
  font-size: 0.9rem;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
}

.cookies.active {
  pointer-events: all;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: transform 0.6s ease-in-out 0.6s, opacity 0.6s ease-in-out 0.6s;
}

.cookies > p {
  max-width: 800px;
}

.cookies > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  width: max-content;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.cookies .btn {
  margin: 0;
}

.cookies p > a {
  color: var(--brown-300);
  transition: color 0.2s ease-in-out;
}

.cookies p > a:hover {
  color: var(--brown-200);
}

@media screen and (max-width: 400px) {
  .cookies {
    max-width: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--white);
    padding: 10px;
    flex-wrap: wrap;
  }
}

/********************
 COMMONS
*********************/

/* landing */

.landing {
  min-height: 100vh;
  /*min-height: 100svh;*/
  width: auto;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--large-vmargin) var(--large-hmargin);
  overflow: hidden;
  color: var(--white);
}

.landing-back {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.landing-back > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 4s ease-in-out;
}

.anim-trigger .landing-back > img {
  transform: scale(1.15);
}

.anim-trigger.animate .landing-back > img {
  transform: scale(1);
}

.landing-front {
  position: relative;
  z-index: 2;
  width: max-content;
  text-align: center;
}

.landing-front h1,
.landing-front h2 {
  margin-bottom: 20px;
}

/* two cols */

.landing-front div.editable {
  max-width: 500px;
  margin: 0 auto;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--large-hmargin);
  align-items: stretch;
}

.two-cols.full {
  gap: 0;
}

.two-cols > div:first-child {
  padding: var(--large-vmargin) 0 var(--large-vmargin) var(--large-hmargin);
  display: flex;
  align-items: center;
  justify-content: center;
}

.two-cols > div:first-child > div {
  margin: 0 auto;
}

.two-cols > div:first-child div.editable,
.two-cols > div:first-child div.editable {
  max-width: 600px;
}

.two-cols.reverse > div:first-child {
  padding: var(--large-vmargin) var(--large-hmargin) var(--large-vmargin) 0;
}

.two-cols.full > div:first-child,
.two-cols.reverse.full > div:first-child {
  padding: var(--large-vmargin) var(--large-hmargin);
}

.two-cols > div:last-child {
  padding: var(--large-vmargin) var(--large-hmargin);
}

.two-cols.full > div:last-child {
  padding: 0;
}

.two-cols > div:last-child > div {
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 40vw;
  position: relative;
}

.two-cols > div:last-child > div > img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.two-cols.reverse > div:first-child {
  order: 2;
}

.two-cols.reverse > div:last-child {
  order: 1;
}

.two-cols h1,
.two-cols h2 {
  margin-bottom: 40px;
  color: var(--maroon);
}

.two-cols .editable:not(.btn) > p {
  margin: 10px 0;
}

.two-cols > div:first-child > div > .btn,
.two-cols > div:first-child > div > div > .btn {
  margin-top: 40px;
}

.two-cols > div:first-child .tags > div.editable,
.two-cols > div:first-child .tags div.editable {
  max-width: 100%;
}

.two-cols .tag > p {
  margin: 0 !important;
}

@media screen and (max-width: 992px) {
  .two-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .two-cols.reverse > div:first-child {
    order: 1;
  }
  .two-cols.reverse > div:last-child {
    order: 2;
  }
  .two-cols > div:first-child,
  .two-cols.reverse > div:first-child {
    padding: var(--large-vmargin) var(--large-hmargin) 0;
  }
  .two-cols.full > div:first-child,
  .two-cols.full.reverse > div:first-child {
    padding: var(--large-vmargin) var(--large-hmargin);
  }
  .two-cols h1,
  .two-cols h2 {
    margin-bottom: 20px;
  }
  .two-cols > div:first-child > div > .btn,
  .two-cols > div:first-child > div > div > .btn {
    margin-top: 20px;
  }
}

/* tags */

.tags {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin: 0 auto;
  max-width: 600px;
}

.tag {
  border: 1px solid var(--maroon);
  background-color: var(--white);
  color: var(--black);
  border-radius: 9000px;
  padding: 8px 20px;
  font-family: var(--loos);
  font-weight: 500;
  flex: 1;
}

/* editable */

.editable_model {
  display: none;
}

.editable a:not(.btn) {
  color: var(--maroon-300);
  transition: color 0.2s ease-in-out;
}

.editable a:not(.btn):hover {
  color: var(--maroon-500);
}

/********************
 INDEX
*********************/

.index-1 .landing-front > img {
  height: 10rem;
  max-width: 70vw;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

@media screen and (max-width: 650px) {
  .index-1 .landing-front > img {
    max-width: calc(100% - 80px);
  }
}

.index-2,
.index-4 {
  background-color: var(--cream);
}

/********************
 OFFER
*********************/
.offer-2,
.offer-3,
.offer-4 {
  text-align: center;
  background-color: var(--cream);
}

.offer-2 h2 {
  max-width: 700px;
}

.offer-4 {
  padding: var(--large-vmargin) var(--large-hmargin);
}

.offer-4 div.editable {
  font-size: 2rem;
  font-family: var(--looswide);
  font-weight: 300;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-4 .btn {
  margin-top: var(--small-vmargin);
}

@media screen and (max-width: 992px) {
  .offer-4 div.editable {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 500px) {
  .offer-4 div.editable {
    font-size: 1.3rem;
  }
}

/********************
 CAREER
*********************/
.career-1 {
  background-color: var(--cream);
  padding-top: calc(100px + var(--small-vmargin));
}

.career-1.two-cols > div:first-child,
.career-1.two-cols > div:last-child {
  padding-top: 0;
}

@media screen and (max-width: 992px) {
  .career-1 {
    padding-top: calc(80px);
  }
  .career-1.two-cols > div:first-child,
  .career-1.two-cols > div:last-child {
    padding-top: var(--large-vmargin);
  }
}

/********************
 CONTACT
*********************/
.contact {
  background-color: var(--cream);
  display: flex;
  align-items: stretch;
  gap: var(--large-hmargin);
  padding: var(--large-vmargin) var(--large-hmargin);
  padding-top: calc(100px + var(--small-vmargin));
}

.contact > div:first-child {
  flex-basis: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact > div:last-child {
  flex-basis: 40%;
}

.contact > div:last-child > div {
  position: relative;
  overflow: hidden;
  min-height: 40vw;
  height: 100%;
}

.contact > div:last-child > div > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact h1 {
  margin-bottom: 40px;
}

.success {
  color: var(--green);
  margin-top: 20px;
}

.error {
  color: var(--red);
  margin-top: 20px;
}

.success:empty,
.error:empty {
  display: none;
}

.grecaptcha-badge {
  display: none;
}

.fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  margin-bottom: 30px;
}

input,
textarea {
  border: none;
  border-bottom: 1px solid var(--black);
  font-family: var(--helvetica);
  color: var(--black);
  padding: 5px;
  font-size: 1rem;
  outline: none;
  background-color: transparent;
  border-radius: 0;
}

input::placeholder,
textarea::placeholder {
  font-style: italic;
  font-weight: 300;
}

textarea {
  border: 1px solid var(--black);
  width: 100%;
  resize: vertical;
}

.attachments {
  margin-top: 10px;
  position: relative;
}

.attachments > input {
  opacity: 0;
  appearance: none;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
}

.attachments-add {
  cursor: pointer;
  color: var(--maroon);
  transition: color 0.2s ease-in-out;
  font-style: italic;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.attachments-add:hover {
  color: var(--brown);
}

.attachments svg {
  display: block;
  height: 0.8rem;
  width: auto;
  margin-bottom: 1px;
}

.attachments svg path {
  fill: currentColor;
  transition: fill 0.2s ease-in-out;
}

.attachment {
  color: var(--black);
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out,
    padding 0.2s ease-in-out;
  cursor: pointer;
  padding: 2px 10px;
  border: 1px solid var(--maroon);
  border-radius: 9000px;
  width: max-content;
  position: relative;
  margin-bottom: 5px;
}

.attachment:hover {
  color: var(--red);
  border-color: var(--red);
  padding-right: calc(20px + 0.8rem);
}

.attachment svg {
  height: 0.8rem;
  width: 0.8rem;
  opacity: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s ease-in-out;
  color: var(--red);
}

.attachment:hover svg {
  opacity: 1;
}

.attachments .error {
  margin: 5px 0;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox input {
  accent-color: var(--brown);
  cursor: pointer;
}

.checkbox p {
  margin: 0;
}

.checkbox input:disabled + p {
  opacity: 0.7;
}

.checkbox a {
  color: var(--brown);
  transition: color 0.2s ease-in-out;
}

.checkbox a:hover {
  color: var(--maroon-300);
}

.contact .checkbox {
  margin-top: 10px;
}

@media screen and (max-width: 992px) {
  .contact h1 {
    margin-bottom: 20px;
  }
  .contact {
    display: block;
    padding-top: calc(80px);
  }
  .contact > div:first-child {
    padding-bottom: var(--large-vmargin);
  }
}

@media screen and (max-width: 650px) {
  .fields-grid {
    grid-template-columns: 1fr;
  }
}
