html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

::selection {
    background: #6D3255;
    color: #fff;
}

html {
    cursor: none;
}

html, body {
    font-family: 'Euclid Circular A', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
}

body {
    background: transparent url(white.jpg) no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    transition: all 1s ease-in-out;
}

.no-scroll {
    overflow: hidden;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 30px 0;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
    text-align: center;
}

h3 {
    font-size: 40px;
}

p {
    margin-bottom: 1em;
}

.video {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.medialogo {
    height: 80px;
    width: 100%;
    max-width: 1320px;
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: black url(logobg.jpg) no-repeat left top;
    background-attachment: fixed;
    background-size: 500px;
    -webkit-mask-image: url(logo-without.png);
    mask-image: url(logo-without.png);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: 30px;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.darkmode .medialogo {
    backdrop-filter: blur(10px);
}

/*.darkmode div {*/
/*    visibility: hidden;*/
/*}*/

/*.darkmode .medialogo,*/
/*.darkmode .dark {*/
/*    visibility: visible;*/
/*}*/

.background {
    width: 100%;
    height: 100%;
    background: url('noche.jpg') no-repeat center center; /* Path to your background image */
    background-attachment: scroll;
}

.preloader {
    background: #fff;
    position: fixed;
    top: -20px;
    left: 0;
    right: 0;
    bottom: -10px;
    transition: all 1s ease-in-out;
    transition-delay: .5s;
    z-index: 100;
    pointer-events: none;
    border-bottom: 10px solid #000;
}

.preloader.active {
    bottom: 110%;
}

.darkmode {
    background: #000 url(noche.jpg) no-repeat center center;
    color: #fff !important;
    background-attachment: fixed;
    background-size: cover;
    transition: all 1s ease-in-out;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 30px;
}

.cta-top {
    padding: 15px 30px;
    letter-spacing: 1px;
    font-size: 12px;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 1px dotted #999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1111;
}

.cta-top a, .cta-top a:link, .cta-top a:visited {
    color: #843939;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0; /* Space between flex items */
    padding: 30px 0;
    justify-content: space-between;
    align-items: center;
}

.centered {
    padding: 100px 0 80px 0;
    position: relative;
}

.contact-unit {
    position: relative;
    width: 100%;
    height: 100vh;
}

@media only screen and (min-width: 600px) {

    .columns {
        gap: 60px 0;
    }

    .medialogo {
        top: 100px;
        mask-position: 60px;
        height: 120px;
    }

    .container {
        padding: 60px;
    }

    .grid-item {
        flex: 0 0 calc(100% / 12 - 60px); /* Default to one column width */
        box-sizing: border-box;
    }

    /* Define the column spans */
    .span-1-6 {
        flex: 0 0 calc(16.67% - 60px); /* 1/6 of 100% - gap */
    }

    .span-1-4 {
        flex: 0 0 calc(25% - 60px); /* 1/4 of 100% - gap */
    }

    .span-1-3 {
        flex: 0 0 calc(33.33% - 60px); /* 1/3 of 100% - gap */
    }

    .span-1-2 {
        flex: 0 0 calc(50% - 60px); /* 1/2 of 100% - gap */
    }

    .span-2-3 {
        flex: 0 0 calc(66.67% - 60px); /* 2/3 of 100% - gap */
    }

    .span-3-4 {
        flex: 0 0 calc(75% - 60px); /* 3/4 of 100% - gap */
    }

    .span-full {
        flex: 0 0 calc(100%); /* 3/4 of 100% - gap */
    }

    .centered {
        margin: 0 auto;
        padding: 180px 0 140px 0;
    }

}




.grid-item img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
}

.hero {
    position: relative;
    font-size: 0;
    border-radius: 25px;
    overflow: hidden;
}

.hero:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    content: "";
    display: block;
}

.hero img {
    border-radius: 0;
}

.amsterdam {
    width: 30px;
    height: 40px;
    z-index: 100;
    overflow: hidden;
    transition: all 1s ease-in-out;
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    mix-blend-mode: multiply;
}

.amsterdam.active {
    width: 90px;
    transition: all 1s ease-in-out;
}

.amsterdam img {
    width: 0px;
    height: auto;
    transition: all 1s ease-in-out;
    position: absolute;
    top: 0;
    mix-blend-mode: multiply;
    border-radius: 0;
    background-blend-mode: multiply;
    transform-origin: center center;
}

.amsterdam.active img {
    width: 30px;
    transform: rotate(180deg);
}

.amsterdam-left {
    left: 0px;
}

.amsterdam-center {
    left: 50%;
    transform: translateX(-50%);
}

.amsterdam.active .amsterdam-center {
    transform: translateX(-50%) rotate(-180deg);
}

.amsterdam-right {
    right: 0;
}

.barcelona {
    width: 30px;
    height: 40px;
    z-index: 100;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center center;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.barcelona.active {
    opacity: 1;
}

.barcelona img {
    width: 100%;
    max-width: 100%;
    height: auto;
    transition: all 1s ease-in-out;
    transform-origin: center center;
    border-radius: 0;
}

.barcelona.active img {
    transform: rotate(-360deg);
}

.darkmode .barcelona {
    opacity: 0;
}

.full-width {
    position: relative;
    min-height: 100vh;
}

.full-width:before {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background: transparent url(footer.svg) no-repeat center center;
    background-size: cover;
    content: "";
    display: block;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    mix-blend-mode: multiply;
}


.full-width.active:before {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.contact-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    color: #fff;
    opacity: 0;
    transition: all .5s ease-in-out;
    pointer-events: none;
    backdrop-filter: blur(50px);
    background: rgba(0,0,0,.8);
}

.contact-form:before {
    background: transparent url(noche.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .7;
}

.contact-form.active {
    opacity: 1;
    transition: all .5s ease-in-out;
    pointer-events: all;
}

.contact-form a, .contact-form a:link, .contact-form a:visited {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.marq-container {
    position: relative;
    overflow: hidden;
    margin: 180px 0 180px 0;
    transform: rotate(-3deg);
    width: 106vw;
    left: -3vw;
}

.marquee {
    overflow: hidden;
    display: flex;
  }
  
  .marquee img {
    max-width: 700px;
    height: auto;
  }

  .video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 103vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Disable user interaction */
    z-index: -1; /* Send iframe to the back */
  }

.content-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4000;
    display: none;
    pointer-events: none;
}
/* 
.content-wrap.active:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:#6D3255;
    opacity: .8;
    z-index: 1112;
    mix-blend-mode: multiply;
} */

.content-wrap.active {
    display: block;
    pointer-events: all;
}

.content-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #fff;
    border: none;
    cursor: pointer;
    z-index: 20000;
}
