@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/********** GENERAL STYLE **********/
body {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #000;
    overflow: hidden;
    position: relative;
    overscroll-behavior: none;
}

.paragraph {
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: left;
}
.w-100 {
  width: 100%;
}
.text-center {
  text-align: center !important;
}
.title-thank {
  font-style: normal;
  font-weight: bold;
  font-size: 48px;
  line-height: 100%;
  margin-bottom: 20px;
}
.btn-black {
  background-color: #000;
  color: white;
  display: block;
  width: 184px;
  font-size: 20px;
  margin: 20px auto;
  height: 70px;
  line-height: 70px;
  text-decoration: none;
}
.d-flex-custom {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.small-paragraph {
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: left;
}

h1 {
    font-family: Inter;
    font-size: 110px;
    font-style: normal;
    font-weight: 600;
    line-height: 110px;
    letter-spacing: -0.03em;
    text-align: left;
}

h2 {
    font-family: Inter;
    font-size: 83px;
    font-style: normal;
    font-weight: 600;
    line-height: 83px;
    letter-spacing: -0.02em;
}

h3 {
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: 0em;
    text-align: left;
}

h4 {
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
}

h5 {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
}

.button-font {
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0em;
}

.content {
    max-width: 1280px;
    margin: 0 auto;
}

.primary-cta {
    width: 384px;
    height: 84px;
    text-align: center;
    line-height: 84px;
    font-weight: 700;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    display: inline-block;
    transition: all .4s ease;
}

.primary-cta:hover {
    background-color: #252525;
    color: #fff;
}

/********** INTRO ANIMATION **********/
.intro {
    width: 100vw;
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: intro 4.5s 0s forwards;
    position: absolute;
    z-index: 10;
}

.intro img {
    opacity: 0;
    animation: logo 2.5s .5s forwards;
}

@keyframes logo {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes intro {
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/********** HEADER **********/
header {
    width: 100%;
    position: fixed;
    z-index: 11;
    top: -100px;
    animation: headerIntro 1s ease 4.7s forwards;
}

header ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    height: 80px;
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li {
    margin-right: 64px;
    text-align: center;
}

header ul li:last-of-type {
    margin-right: 0;
}

@keyframes headerIntro {
    from {
        top: -100px;
    }
    to {
        top: 0;
    }
}

/* Page policy */
.contain-width {
  max-width: 1140px;
  margin: 0 auto;
}

.about-page img {
  filter: invert(1);
}

.d-flex {
  display: flex;
}

.col-title {
  width: 35%;
  padding-left: 15px;
  padding-right: 15px;
}

.text-page {
  width: 65%;
  padding-left: 15px;
  padding-right: 15px;
}

.text-page p {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 180%;
  /* or 25px */
  color: #6C6C6C;
}

.margin-custom-page {
  margin: 150px auto;
}

/********** SCROLL BAR **********/
.scrollbar {
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 9;
    color: #fff;
    transform: rotateZ(90deg) translateY(-50%);
    right: -50px;
    top: 50%;
    opacity: 0;
    animation: opacityIn 1s ease-in 4.7s forwards;
}

.scrollbar span {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, .5);
    position: relative;
    margin-right: 10px;
    overflow: hidden;
}

.scrollbar span::before {
    content: "";
    width: 100px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    animation: scrollingBar 1.8s cubic-bezier(.62,.77,.45,.90) 6s infinite;
}

@keyframes opacityIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollingBar {
    0% {
        left: 0;
    }
    30% {
        left: 200px;
    }
    30.1% {
        left: -100px;
    }
    50%, 100% {
        left: 0;
    }
}

/********** COOKIE BAR **********/
.cookie-bar {
    padding: 20px 40px;
    background: rgba(0, 0, 0, .9);
    border-radius: 100px;
    position: fixed;
    z-index: 30;
    display: flex;
    align-items: center;
    bottom: -100px;
    left: 32px;
    animation: cookieIntro 1s ease 4.7s forwards;
    transition: opacity .6s ease;
    width: 630px;
    border: 1px solid rgba(255, 255, 255, .3);
}

.cookie-bar div {
    flex: 1px;
}

.cookie-bar span {
    color: #fff;
    margin-right: 20px;
}

.cookie-bar ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cookie-bar ul li {
    margin-left: 20px;
}

.cookie-bar a {
    color: #fff;
}

.cookie-bar a.cookie-accepted {
    font-weight: 700;
    text-decoration: none;
}

@keyframes cookieIntro {
    from {
        bottom: -100px;
    }
    to {
        bottom: 24px;
    }
}

/********** CALL TO ACTION INTRO **********/
.cta-intro {
    position: fixed;
    right: 0;
    bottom: -100px;
    z-index: 9;
    animation: ctaIntro 1s ease 4.7s forwards;

}

@keyframes ctaIntro {
    from {
        bottom: -100px;
    }
    to {
        bottom: 0;
    }
}

/********** HERO **********/
.slide {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    background-color: #000;
    background-repeat: no-repeat;
    transition: transform .2s ease-out;
    position: relative;
    transform: scale(.95);
}

.slide-bg {
    position: absolute;
    width: 105vw;
    height: 105vh;
    z-index: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .1s ease;
}

.hero .slide {
    position: fixed;
}

.slide h1, .slide h2 {
    margin: 24px 0;
    text-align: center;
}

.slide-1 .content,
.slide-2 .content,
.slide-3 .content,
.slide-4 .content {
    opacity: 0.5;
    transition: opacity .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.two-columns {
    display: flex;
    margin: 0 180px;
    justify-content: center;
}

.two-columns p {
    width: 45%;
    margin: 0;
}

.slide-1 {
    z-index: 3;
    transform: none;
}

.slide-1 h2 {
    text-align: left;
}

.slide-1 .content {
    opacity: 0;
    animation: titleEnter 1s ease-in 4.6s forwards;
}

@keyframes titleEnter {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-2 {
    z-index: 2;
}

.slide-3 {
    z-index: 1;
}

.slide-2, .slide-3 {
    pointer-events: none;
}

.slide-1 .slide-bg { background-image: url("assets/hero_background.jpg"); }

.slide-2 .slide-bg { background-image: url("assets/art_background.jpg"); }

.slide-3 .slide-bg { background-image: url("assets/nature_background.jpg"); }

.slide-4 .slide-bg { background-image: url("assets/entertainment_background.jpg"); }

.home-page-bottom {
    height: auto;
    position: relative;
    top: 130vh;
    z-index: 9;
    box-shadow: 0 -10px 60px rgba(0, 0, 0, .9);
    display: none;
}

.slide-black {
    text-align: center;
    color: #fff;
    transform: none;
}

.slide-black .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-black p {
    font-size: 24px;
    text-align: center;
    width: 50%;
    margin: 12px 0 36px 0;
    line-height: 38px;
}

/********** FOOTER **********/
footer {
    background-color: #EDEDED;
    padding: 50px 0;
}

footer .footer-row {
    display: flex;
    margin: 40px 0 0 0;
}

.invert-color {
  filter:invert(1);
}

.loghi-partner {
  margin-top: 0;
}
.loghi-partner li {
  width: auto;
  margin-right: 15px;
}

.social-icon img {
  height: 24px;
  margin-left: 20px;
  transition: .2s ease-in-out;
}

.social-icon img:hover {
  opacity: .5
}

.legal-info p, .legal-info a {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 100%;
  color: inherit;
}

.legal-info p {
  padding-top: 6px;
}

.legal-info a {
  text-decoration: none;
}

.legal-info a:hover {
  text-decoration: underline;
}

.min-width-title {
  width: 160px;
  margin: 0 60px 0 0;
}

footer .footer-row .column {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

footer .footer-row h4 {
    width: 160px;
    margin: 0 60px 0 0;
}

footer .footer-row .column p {
    margin: 0;
}

footer .footer-row .column p a {
    color: #000;
    text-decoration: none;
}

footer .footer-row .column p a:hover {
    text-decoration: underline;
}

footer .footer-row .column p strong {
    font-size: 16px;
    display: inline-block;
    margin-bottom: 10px;
}

footer .footer-row .column p span {
    margin-top: 30px;
    display: inline-block;
}

footer .footer-row .column div p:last-of-type {
    margin-top: 40px;
}

footer .footer-row ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex: 1;
}

footer .footer-row ul li {
    width: 200px;
}

.mobileFix {
    display: none;
}

/********** MODAL FORM **********/
.modal-form {
    position: fixed;
    z-index: 20;
    width: 100vw;
    height: 100vh;
    top: 0;
    background: #fff;
    visibility: hidden;
    transform: translateY(100vh);
    transition: all .7s cubic-bezier(.62,.77,.45,.90);
}

.modal-form.visible {
    visibility: visible;
    transform: translateY(0);
}

.modal-form .content {
    position: relative;
    padding: 0 32px;
}

.close-modal {
    position: absolute;
    right: 0;
}

.close-modal:hover,
input[type="submit"]:hover {
    cursor: pointer;
}

.modal-form h3 {
    margin-bottom: 20px;
}

.modal-form .row {
    display: flex;
    margin: 80px 0;
}

.modal-form .row div {
    flex: 1;
}

/* Form field */
.form-field {
    position: relative;
    margin-right: 60px;
}

.form-field:last-of-type {
    margin: 0;
}

.form-field input, .form-field select {
    height: 44px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #666;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-field select {
    background-image: url("assets/arrow-down.svg");
    background-position: right center;
    background-size: 12px auto;
    background-repeat: no-repeat;
}

.form-field.error input {
    border-color: red;
}

.form-field.error input, .form-field.error label {
    color: red !important;
}

.form-field select option {
    padding-left: 0;
}

.form-field input::-webkit-input-placeholder, .form-field select::-webkit-input-placeholder { color: #fff; }
.form-field input:-moz-placeholder, .form-field select:-moz-placeholder { color: #fff; opacity: 1; }
.form-field input::-moz-placeholder, .form-field select::-moz-placeholder { color: #fff; opacity: 1; }
.form-field input:-ms-input-placeholder, .form-field select:-ms-input-placeholder { color: #fff; }

.form-field label {
    position: absolute;
    left: 0;
    bottom: 14px;
    transition: all .3s ease;
    pointer-events: none;
}

.form-field input:focus, .form-field select:focus {
    outline: none;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field select:focus + label {
    color: #666;
    font-size: 12px;
    transform: translateX(0px) translateY(-22px);
}

.form-field select:focus + label {
    transform: translateX(0px) translateY(-24px);
}

.marketing-consent div {
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}

.marketing-consent input[type="checkbox"] {
    border-radius: 0;
    margin: 0 8px 0 0;
    width: 16px;
    height: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #000;
    flex-shrink: 0;
}

.marketing-consent input:hover, .marketing-consent label:hover {
    cursor: pointer;
}

.marketing-consent input[type="checkbox"]:checked {
    background: transparent url("assets/check-icon.svg") center -1px no-repeat;
    background-size: 88%;
}

.form-footer {
    display: flex;
    justify-content: space-between;
}

.form-footer .marketing-consent {
    flex: 1;
}

input[type="submit"] {
    font-size: 20px;
    color: #fff;
    background: #000;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 300px;
    height: 90px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

input[type="submit"].disabled {
    opacity: .5;
}
/* END Form field */


.form-description {
    display: flex;
}

.form-description p {
    flex: 1;
    margin: 0;
}

.form-description p:last-of-type {
    color: #666;
}

.form-description p strong {
    display: block;
    color: #000;
}

.mandatory-label {
    color: #666;
    display: inline-block;
    margin-top: 24px;
    font-size: 12px;
}

.request-experience {
    margin-top: 30px;
}
.no-animation header .invert {
  filter: invert(1);
}
/********** MOBILE STYLE **********/
@media screen and (max-width:576px) {
    body {
        overflow: visible;
    }
    .no-animation header {
      position: static;
    }
    .no-animation header ul {
      display: flex;
      justify-content: space-between;
    }
    .no-animation header .invert {
      filter: invert(1);
    }
    .margin-custom-page {
      margin: 25px auto;
    }
    .col-title, .text-page {
      width: fit-content;
      padding-left: 15px;
      padding-right: 15px;
    }
    .d-flex {
      display: block;
    }
    .primary-cta {
        width: 320px;
        height: 70px;
        line-height: 70px;
    }

    .social-icon {
        display:flex;
        flex-direction: initial;
        flex-wrap: nowrap;
        justify-content: space-around;
    }

    .social-icon img {
        height: 24px;
        margin-left: 20px;
        transition: .2s ease-in-out;
    }

    .min-width-title {
        margin-bottom: 30px;
    }

    .social-icon img:hover {
        opacity: .5
    }

    .content {
        margin: 0 32px;
    }

    h1 {
        font-size: 50px;
        line-height: 1.2;
    }

    h2 {
        font-size: 38px;
        line-height: 1.2;
    }

    h3 {
        font-size: 30px;
        line-height: 1.2;
    }

    header {
        animation: none;
        top: 0;
        position: absolute;
    }

    header ul {
        width: 100%;
    }

    header ul li {
        margin-right: 48px;
    }

    .scrollbar {
        right: -80px;
        animation: none;
        opacity: 1;
    }

    .scrollbar span::before {
        animation-delay: 1s;
    }

    .cookie-bar {
        animation: none;
        bottom: 98px;
        left: 32px;
        width: 80%;
        box-sizing: border-box;
        z-index: 20;
        flex-direction: row;
        align-items: center;
        border-radius: 25px;
        padding: 20px 30px;
    }

    .cookie-bar ul {
        flex-direction: column;
        width: 100%;
    }

    .cookie-bar ul li {
        margin-left: 0;
        margin-top: 10px;
    }

    .cta-intro {
        animation: none;
        bottom: 0;
    }

    .intro {
        display: none;
        animation: none;
    }

    .hero .slide, .slide {
        position: static;
        transform: scale(1);
        justify-content: flex-start;
    }

    .slide {
        background-size: cover;
    }

    .slide .content {
        animation: none;
        opacity: 1;
        height: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .slide-1 .content {
        justify-content: center;
    }

    .slide-1 {
        background-image: url("assets/mobile_hero_background.jpg");
    }

    .slide-1 svg {
        display: none;
    }

    .slide-2 {
        background-image: url("assets/mobile_art_background.jpg");
    }

    .slide-3 {
        background-image: url("assets/mobile_nature_background.jpg");
    }

    .slide-4 {
        background-image: url("assets/mobile_entertainment_background.jpg");
    }

    .slide h1, .slide h2 {
        text-align: left;
    }

    .slide h1 {
        margin-top: 80px;
    }

    .two-columns {
        margin: 0 0 100px 0;
        flex-direction: column;
    }

    .two-columns p {
        width: 100%;
        margin-top: 20px;
    }

    .home-page-bottom {
        position: absolute;
        transform: translateY(400vh);
        top: 0;
        display: block;
    }

    .mobileFix {
        display: block;
        position: fixed;
        bottom: -400px;
        height: 400px;
        width: 100%;
        background-color: #EDEDED;
    }

    .slide-back h1 {
      font-family: Inter;
      font-style: normal;
      font-weight: 600;
      font-size: 48px;
      line-height: 100%;
    }

    .slide-black p {
        width: 100%;
        text-align: left;
        margin: 180px 0 0 0;
        font-family: Inter;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 160%;
        margin-bottom: 40px;
    }

    .slide-black .content {
        height: 90%;
    }

    .slide-black a {
        width: 100%;
        box-sizing: border-box;
    }

    footer .footer-row, footer .footer-row .column {
        flex-direction: column;
    }

    footer .footer-row h4 {
        width: 100%;
        margin: 0 0 10px 0;
    }

    footer .footer-row ul {
        flex-wrap: wrap;
    }

    footer .footer-row ul li {
        margin-bottom: 30px;
    }

    footer .footer-row .column {
        margin-bottom: 30px;
    }

    .form-description,
    .modal-form .row,
    .form-footer {
        flex-direction: column;
    }

    .modal-form {
        overflow: scroll;
    }

    .modal-form .content {
        padding: 0;
    }

    .form-field {
        margin: 0 0 80px 0;
    }

    .form-description p:first-of-type {
        order: 2;
    }

    .form-description p:last-of-type {
        order: 1;
        margin-bottom: 20px;
    }

    input[type="submit"] {
        margin: 80px 0 32px 0;
        height: 60px;
        line-height: 60px;
        font-size: 16px;
        width: 100%;
    }

    .slide-bg {
        display: none;
    }
}

/* Small smartphone */
@media screen and (max-width: 375px) {
  .slide-black p {
      width: 100%;
      text-align: left;
      margin: 30px 0 0 0;
      font-family: Inter;
      font-style: normal;
      font-weight: 500;
      font-size: 18px;
      line-height: 160%;
      margin-bottom: 40px;
  }
}

/********** BIGGER SCREEN STYLE **********/
@media screen and (min-width: 1560px) {
  .modal-form {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width:2000px) {
    h1 {
        font-family: Inter;
        font-size: 110px;
        font-style: normal;
        font-weight: 600;
        line-height: 110px;
        letter-spacing: -0.03em;
        text-align: left;
    }

    h2 {
        font-family: Inter;
        font-size: 83px;
        font-style: normal;
        font-weight: 600;
        line-height: 83px;
        letter-spacing: -0.02em;
        text-align: left;
    }

    h3 {
        font-family: Inter;
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 58px;
        letter-spacing: 0em;
        text-align: left;
    }

    h4 {
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 38px;
        letter-spacing: 0em;
        text-align: left;
    }

    h5 {
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 16px;
        letter-spacing: 0em;
        text-align: left;
    }

    .paragraph {
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 29px;
        letter-spacing: 0em;
        text-align: left;
    }

    .small-paragraph {
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 25px;
        letter-spacing: 0em;
        text-align: left;
    }
}

/********** TABLET ROTATE **********/
.rotate-device {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    display: none;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.rotate-device h3 {
    text-align: center;
    margin: 80px 0 0 0;
}

@media (min-width:576px) and (max-width:1024px) and (orientation: portrait) {
    html, body{
        overflow: hidden;
    }

    .rotate-device {
        display: flex;
    }
}

/********** BIGGER SCREEN STYLE **********/
.no-animation{
    overflow: visible;
}

.no-animation * {
    animation: none;
}

.no-animation header {
    top: 0;
}

.no-animation .cookie-bar {
    bottom: 24px;
}
