/* new code 

/* Variables  */
:root {
  /* Size  */
  --viewport-height: 100vh;
  /* End Size  */
}

@supports (height: 100dvh) {
  :root {
    --viewport-height: 100dvh;
  }
}

/* End Variables */

/* Reset and base styles  */

html,
body {
  overscroll-behavior: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
/* aside,
nav,
footer,
header,
.server {
  display: block;
} */

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  color: #fff;
}

ul,
ul li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: top;
  user-select: none;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
}
select {
  background-image: url(/assets/img/icons/arrow-select.svg);
  background-repeat: no-repeat;
  background-position: right 5px top 50%;
  background-size: 20px;
  transition: transform 0.3s ease;
}

input::-ms-clear {
  display: none;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: default;
}

legend {
  display: block;
}
main {
  display: flex;
  flex-flow: column;
  position: relative;
  width: 100%;
  min-height: var(--viewport-height);
  z-index: 1;
}
main > h1 {
  font-weight: 900;
  font-size: 70px;
  line-height: 1;
  position: absolute;
  bottom: 10%;
  left: 5%;
  text-align: right;
  margin: 0;
  z-index: 1;
  text-align: left;
  letter-spacing: -2px;
  text-transform: uppercase;
}
main > h1::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 10px;
  bottom: 10px;
  width: 8px;
  background-color: #efaebc;
}
main > .info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 700px;
  position: absolute;
  top: 30%;
  right: 3%;
  z-index: 1;
  text-align: left;
}
main > .info > h2 {
  color: #fff;
  font-weight: 900;
  font-size: 70px;
  width: 700px;
  line-height: 1.05;
  background: linear-gradient(275deg, rgba(255, 224, 203, 0.8) -4.27%, #fff 89.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
}
main > .info > h3 {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  width: 600px;
  background: linear-gradient(275deg, rgba(255, 224, 203, 0.8) -4.27%, #fff 89.74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.5;
}
main::before {
  content: "";
  position: absolute;
  width: 100dvw;
  height: 100dvh;
  background: url("") no-repeat left/cover;
  z-index: 0;
  bottom: 0;
  left: 0;
}
video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.btn {
  display: flex;
  margin-left: auto;
  margin-right: 100px;
  background: linear-gradient(323deg, rgba(255, 255, 255, 0.03) -2.55%, rgba(255, 255, 255, 0.2) 101.18%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  width: 100px;
  height: 100px;
  z-index: 20;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  background: linear-gradient(323deg, rgba(255, 255, 255, 0.03) -2.55%, rgba(255, 255, 255, 0.5) 101.18%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn > svg {
  display: flex;
  margin: auto;
}
.btn:hover > svg {
  fill: #efaebc;
}
