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

* {
  box-sizing: border-box;
}

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

html {
  --green: #467250;
  --red: #724646;
  --orange-300: #dd692a;
  --orange: #d24800;
  --orange-500: #ad3d00;
  --orange-600: #7e2b00;
  --white: #fef9f6;
  --black: #1a1718;
  --grey: #dfd9d5;
  --perpetua: "Perpetura", 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: 50px;
    --large-vmargin: 70px;
    --xlarge-vmargin: 100px;
  }
}

@media screen and (max-width: 500px) {
  html {
    --small-hmargin: 20px;
    --medium-hmargin: 20px;
    --large-hmargin: 20px;
    --xlarge-hmargin: 40px;
    --small-vmargin: 20px;
    --medium-vmargin: 40px;
    --large-vmargin: 60px;
    --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(--white);
}

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

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

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

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

::-webkit-scrollbar-corner {
  background: var(--white);
}*/

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

@font-face {
  font-family: "Perpetura";
  src: url("../fonts/Perpetua/Perpetua-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: fallback;
}

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

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

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

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

body {
  font-family: var(--helvetica);
  font-size: 1rem;
  background-color: var(--white);
  color: var(--black);
  letter-spacing: 0.03rem;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: normal;
  font-family: var(--perpetua);
  letter-spacing: 0;
  line-height: 0.9;
}

h6 {
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0;
}

h1,
.h1,
h1 p,
.h1 p {
  font-size: 9rem;
}

h2,
.h2,
h2 p,
.h2 p {
  font-size: 7rem;
}

h3,
.h3,
h3 p,
.h3 p {
  font-size: 4.5rem;
}

h4,
.h4,
h4 p,
.h4 p {
  font-size: 3rem;
}

h5,
.h5,
h5 p,
.h5 p {
  font-size: 2rem;
}

@media screen and (max-width: 1500px) {
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 700px) {
  h1,
  .h1,
  h1 p,
  .h1 p {
    font-size: 6rem;
  }
  h2,
  .h2,
  h2 p,
  .h2 p {
    font-size: 5rem;
  }
}

@media screen and (max-width: 600px) {
  h2,
  .h2,
  h2 p,
  .h2 p {
    font-size: 4rem;
  }
}

/********************
 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;
  font-size: 0.9rem;
  border-radius: 9000px;
  background-color: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 12px 30px 11px;
  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.locked {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.6;
}

.btn.small {
  padding: 2px 20px;
  width: max-content;
  min-width: unset;
  color: var(--black);
}

.btn:hover,
.btn.active {
  background-color: var(--orange);
  color: var(--white);
}

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

/* PRELOADER */

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

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

.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: space-between;
  padding: 10px 40px;
  gap: 40px;
  z-index: 100;
  background-color: var(--white);
}

#head > a:first-child {
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: opacity 0.2s ease-in-out;
}

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

#head > a:first-child > img {
  height: 2.5rem;
  transform: translateY(-0.3rem);
}

#head > a:first-child > p {
  font-family: var(--perpetua);
  font-size: 2rem;
}

#head > div {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
}

#head > div > div {
  position: relative;
  height: 2.5rem;
  display: flex;
  align-items: center;
}

#head > div > div > a {
  display: block;
  width: max-content;
  position: relative;
  color: var(--black);
}

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

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

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

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

#head > div > div > div {
  position: absolute;
  top: 100%;
  left: -20px;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(254, 249, 246, 0.9);
  padding: 24px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: max-content;
  transition: opacity 0.2s ease-in-out;
}

#head > div > div > div::before {
  content: "";
  background-color: var(--black);
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 1px;
}

#head > div > div:hover > div {
  opacity: 1;
  pointer-events: all;
}

#head > div > div > div > a {
  color: var(--black);
  filter: drop-shadow(1px 1px 0px transparent);
  transition: filter 0.2s ease-in-out;
}

#head > div > div > div > a:hover {
  filter: drop-shadow(0.8px 0.8px 0px var(--black));
}

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

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

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

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

#burger.active > span:nth-child(3) {
  transform: translateY(-12px) 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: 20px;
  width: 100%;
  height: 100vh;
  z-index: 101;
  padding-bottom: 90px;
}

#head_mobile > a {
  color: var(--black);
  font-size: 1.6rem;
}

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

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

#head_mobile > div {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#head_mobile > div > a {
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 5px;
}

#head_mobile > div > a:first-child {
  flex-direction: column;
}

#head_mobile > div > a:first-child > img {
  height: 5rem;
}

#head_mobile > div > a:first-child > p {
  font-family: var(--perpetua);
  font-size: 1.6rem;
}

#head_mobile > div > a:last-child svg {
  height: 1.1rem;
  width: auto;
  display: block;
}

#head_mobile > div > a:last-child path {
  fill: var(--blac);
}

#head_mobile > div > a:last-child > p {
  font-size: 0.9rem;
}
@media screen and (max-height: 600px) {
  #head_mobile {
    padding: 0;
  }
  #head_mobile > div {
    display: none;
  }
}

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

/********************
 FOOTER
*********************/
#foot {
  background-color: var(--black);
  color: var(--white);
  padding: 40px 40px 20px;
  position: relative;
}

.foot-top {
  display: flex;
  justify-content: space-between;
}

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

.foot-left a {
  color: var(--white);
  width: max-content;
  transition: opacity 0.2s ease-in-out;
}

.foot-left a:hover {
  opacity: 0.6;
}

.foot-left a.active {
  font-weight: 500;
}

.foot-right {
  align-items: flex-end;
  text-align: right;
}

.foot-right a {
  color: var(--white);
  width: max-content;
  transition: opacity 0.2s ease-in-out;
}

.foot-right a:hover {
  opacity: 0.6;
}

.foot-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.foot-center > img {
  height: 7rem;
}

.foot-center > p {
  font-family: var(--perpetua);
  font-size: 1.8rem;
}

.foot-center > a {
  color: var(--white);
  transition: opacity 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.foot-center > a svg {
  height: 1.2rem;
}

.foot-center > a path {
  fill: var(--white);
}

.foot-center > a:hover {
  opacity: 0.6;
}

.foot-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.foot-bottom a {
  color: var(--orange);
  transition: color 0.2s ease-in-out;
}

.foot-bottom a:hover {
  color: var(--orange-300);
}

.foot-bottom > p:last-child {
  text-align: right;
}

@media screen and (max-width: 992px) {
  .foot-center {
    gap: 5px;
    top: calc(50% - 20px);
  }
  .foot-center > img {
    height: 5rem;
  }
  .foot-center > p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 700px) {
  #foot {
    padding: 40px 20px 10px;
  }
  .foot-top {
    flex-wrap: wrap;
    justify-content: center;
  }
  .foot-left,
  .foot-right {
    width: 50%;
  }
  .foot-center {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    order: 3;
    margin-top: 10px;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .foot-bottom > p {
    text-align: center;
  }
}

@media screen and (max-width: 400px) {
  #foot {
    padding: 20px;
  }
  .foot-top {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .foot-center {
    margin-top: 0;
  }
  .foot-left {
    align-items: center;
  }
  .foot-right {
    align-items: center;
    text-align: center;
  }
}

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

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

.p404 > div > .btn {
  margin: 0 auto;
}

/********************
 LEGALS
*********************/
.legals {
  max-width: 1200px;
  padding: var(--large-vmargin) var(--large-hmargin);
}

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

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

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

.legals h2 {
  margin: 40px 0 20px;
}

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

.legals p {
  margin: 10px 0;
}

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

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

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

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

.cookies > h4 {
  text-align: center;
  margin: 0 auto;
}

.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(--orange);
  transition: color 0.2s ease-in-out;
}

.cookies p > a:hover {
  color: var(--orange-300);
}

@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;
  }
}

/********************
 CONTACT
*********************/

.contact {
  display: flex;
  align-items: stretch;
  gap: var(--large-hmargin);
  padding: 0 var(--large-hmargin);
  margin: var(--large-vmargin) 0;
}

.contact-left {
  flex-grow: 1;
}

.contact-right {
  border-radius: 80px;
  overflow: hidden;
  position: relative;
  min-width: 35vw;
}

.contact-right > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact form {
  transition: opacity 0.2s ease-in-out;
}

.contact form.locked {
  opacity: 0.7;
  pointer-events: none;
}

.contact form > span {
  text-align: right;
  font-style: italic;
  opacity: 0.7;
  display: block;
  margin-left: auto;
  margin-top: 5px;
}

.contact form > .btn {
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  .contact-right {
    display: none;
  }
}

.contact-bottom {
  padding: 0 var(--large-hmargin);
  margin: var(--large-vmargin) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: space-between;
}

.contact-bottom > a {
  color: var(--black);
  transition: opacity 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.contact-bottom > a:hover {
  opacity: 0.7;
}

.contact-bottom > a svg {
  height: 1.2rem;
}

.contact-bottom > a path {
  fill: var(--black);
}

@media screen and (max-width: 570px) {
  .contact-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* success and error */
.success {
  color: var(--green);
}

.error {
  color: var(--red);
}

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

/* captcha badge */

.grecaptcha-badge {
  display: none;
}

/* fields grid */

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

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

/* inputs */

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;
}

/* checkboxes */

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

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

.checkbox p {
  margin: 0;
}

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

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

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

/********************
 BLOCKS
*********************/

/* hero */
.hero {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: var(--black);
  font-size: 1.1rem;
  letter-spacing: 0.05rem;
  text-shadow: 1px 1px 28px rgba(0, 0, 0, 0.6);
}

.hero > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  z-index: 1;
  opacity: 0.5;
}

.hero > div {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 120px var(--large-hmargin);
}

.hero > div > h1 {
  margin-bottom: 20px;
}

.hero > div > p {
  margin: 10px 0;
}

.hero > div > div {
  transform: translateY(40px);
  font-style: italic;
}

.hero > div > div > span {
  text-align: right;
  margin-left: auto;
  width: max-content;
  display: block;
  transform: translateX(70%);
}

.hero > svg {
  cursor: pointer;
  position: absolute;
  z-index: 3;
  left: calc(50% - 20px);
  height: auto;
  width: 40px;
  bottom: 20px;
}

@media screen and (max-width: 650px) {
  .hero > div > div > span {
    transform: translateX(0);
  }
}

/* section */
.section {
  padding: 0 var(--large-hmargin);
  margin: var(--large-vmargin) 0;
}

.section > h2,
.section > p {
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}

.section > .btn {
  margin: 0 auto;
}

.section.grey {
  background-color: var(--grey);
  padding: var(--large-vmargin) var(--large-hmargin);
}

/* grid */

.grid {
  margin: var(--medium-vmargin) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.grid > a {
  color: var(--black);
  transition: color 0.2s ease-in-out;
}

.grid > a:hover {
  color: var(--orange-600);
}

.grid > a > div {
  border: 1px solid transparent;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  padding-bottom: 60%;
  transition: border 0.2s ease-in-out;
}

.grid > a:hover > div {
  border: 1px solid var(--orange);
}

.grid > a > div > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
  transform: scale3D(1, 1, 1);
}

.grid > a:hover > div > img {
  transform: scale3D(1.05, 1.05, 1);
  transition: transform 0.8s ease-in-out;
}

.grid > a > h5 {
  text-align: center;
  margin: 15px 0 20px;
}

.grid > a > p {
  max-width: 400px;
  min-width: 80%;
  margin: 0 auto;
}

/* grid-3 */

.grid-3 > a {
  width: calc(33% - 40px * 2 / 3);
}

@media screen and (max-width: 1200px) {
  .grid-3 > a {
    width: calc(50% - 40px / 2);
  }
}

@media screen and (max-width: 700px) {
  .grid-3 {
    gap: 40px 20px;
  }
  .grid-3 > a {
    width: calc(50% - 20px / 2);
  }
}

@media screen and (max-width: 500px) {
  .grid-3 {
    gap: 60px 20px;
  }
  .grid-3 > a {
    width: 100%;
    max-width: 300px;
  }
}

/* grid-2 */

.grid-2 {
  gap: var(--small-vmargin) var(--large-hmargin);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.grid-2 > a {
  width: calc(50% - var(--large-hmargin) / 2);
}

.grid-2 > a > p {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  margin-top: 20px;
}

@media screen and (max-width: 1200px) {
  .grid-2 {
    gap: var(--medium-vmargin) var(--medium-hmargin);
  }
  .grid-2 > a > p {
    margin-top: 15px;
  }
}

@media screen and (max-width: 500px) {
  .grid-2 {
    gap: 40px;
    margin-top: 40px;
  }
  .grid-2 > a {
    width: 100%;
    max-width: 300px;
  }
}

/* anchor */

.anchor {
  transform: translateY(calc(-2.5rem - 20px));
}

/* two-cols */
.two-cols {
  display: flex;
  align-items: center;
  max-width: 1500px;
  margin: var(--medium-vmargin) auto 0;
  gap: var(--large-hmargin);
}

.two-cols-content {
  flex: 1;
}

.two-cols-content h6 {
  margin: 20px 0;
}

.two-cols-content p {
  margin: 15px 0;
}

.two-cols-content .btn {
  margin: 30px auto 0;
}

.two-cols-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.two-cols-image > div {
  min-width: 30vw;
  max-width: 100%;
  padding-bottom: 40vw;
  position: relative;
  overflow: hidden;
  border-radius: 90000000000000000px;
}

.two-cols-image > div > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 992px) {
  .two-cols {
    flex-direction: column;
    align-items: stretch;
  }
  .two-cols.mobile-reverse {
    flex-direction: column-reverse;
  }

  .two-cols-image > div {
    width: 100%;
    padding: 30%;
  }
  .two-cols-image.mobile-image-top > div > img {
    object-position: top center;
  }
}

/* two-cols-grid */
.two-cols-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.two-cols-grid > .two-cols-content {
  padding: var(--medium-vmargin) var(--large-hmargin);
}

.two-cols-grid-image {
  min-height: 30vw;
  overflow: hidden;
  position: relative;
}

.two-cols-grid-image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* question */
.question {
  margin: var(--medium-vmargin) var(--large-hmargin)
    max(var(--medium-vmargin), 60px);
  text-align: center;
}

.question > .btn {
  margin: 40px auto 0;
}

@media screen and (max-width: 992px) {
  .two-cols-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .two-cols-grid-image {
    min-height: 40vw;
  }
  .two-cols-grid.mobile-reverse {
    flex-direction: column-reverse;
  }
}

/* date */

.date {
  display: flex;
  align-items: stretch;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.date > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.date > div:first-child > div {
  border: 1px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  margin-top: 0.3rem;
}

.date > div:first-child > div > span {
  display: block;
  border-radius: 50%;
  background-color: var(--orange);
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}

.date > div:first-child > span {
  display: block;
  flex-grow: 1;
  width: 2px;
  background: repeating-linear-gradient(
    0,
    var(--orange) 0px,
    var(--orange) 8px,
    transparent 8px,
    transparent 16px
  );
}

.date > div:last-child {
  padding-bottom: var(--medium-vmargin);
}

.date > div:last-child > h4 {
  margin-bottom: 10px;
}

.date:last-child > div:first-child > span {
  display: none;
}
