* {
    margin: 0;
    padding: 0;
}
*,
*::after,
*::before {
    box-sizing: border-box;
}


@font-face {
    font-family: Tiempos;
    src: url(font/TiemposHeadline-Light.otf);
  }

  @font-face {
    font-family: Almarena;
    src: url(font/almarena-display-bold-webfont.woff2);
    font-weight: bold;
  }



html {
    /*background: #0c0c0c;
    color: #fff;*/
    font-size: calc(100vw / 1920 * 10);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    user-select: none;
    width: 100%;
}
body {
    font-family: "halyard-display", sans-serif;
    font-size: 15px;
    margin: 0;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    overscroll-behavior-y: none;
}
body:after {
    animation: grain 6s steps(10) infinite;
    background-image: url(62f64d5233f6333080c87c81a9a35f9d.png);
    background-repeat: repeat;
    content: "";
    height: 300%;
    left: -100%;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: -100%;
    transition: opacity 0.4s ease;
    width: 300%;
    will-change: transform;
    z-index: 3;
}
.loaded body:after {
    opacity: 0.06;
}
body #cdawrap {
    --cda-bottom: 3rem;
    --cda-left: 3rem;
    --cda-width: 400px;
    --cda-footer-fontsize: initial;
    --cda-footer-color: rgba(255, 255, 255, 0.5);
}
body #cdawrap a:hover {
    text-decoration: none;
    opacity: 0.7;
}
img {
    display: block;
}
canvas {
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity 1s ease;
    width: 100%;
}
.loaded canvas {
    opacity: 1;
}
a {
    color: #ffffff;
    outline: none;
    text-decoration: none;
    font-family: Tiempos, 'Times New Roman', Times, serif;
    font-size: 18px;
    font-weight: bold;
}
a:hover,
a:focus {
    outline: none;
}
@keyframes grain {
    0% {
        transform: translate(20%, -15%);
    }
    10% {
        transform: translate(-20%, -15%);
    }
    20% {
        transform: translate(20%, -5%);
    }
    30% {
        transform: translate(-20%, -5%);
    }
    40% {
        transform: translate(20%, 5%);
    }
    50% {
        transform: translate(-20%, 5%);
    }
    60% {
        transform: translate(20%, 15%);
    }
    70% {
        transform: translate(-20%, 15%);
    }
    80% {
        transform: translate(20%, 5%);
    }
    90% {
        transform: translate(-20%, 5%);
    }
    100% {
        transform: translate(20%, -5%);
    }
}
.frame {
    font-size: 15px;
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 1000;
}
.frame__title {
    font-size: 15px;
    margin: 0 0 15px;
    font-weight: normal;
}
.frame__links {
    margin-top: 15px;
}
.frame__links a:not(:last-child),
.frame__demos a:not(:last-child) {
    margin-right: 15px;
}
.frame__demos {
    margin: 15px 0;
}
@media screen and (min-width: 53em) {
    .frame {
        position: fixed;
        text-align: left;
        z-index: 100;
        top: 0;
        left: 0;
        display: grid;
        align-content: space-between;
        width: 100%;
        max-width: none;
        height: 100vh;
        padding: 3rem;
        pointer-events: none;
        grid-template-columns: 75% 25%;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "title links"
            "... ..."
            "credits demos";
    }
    .frame__title-wrap {
        grid-area: title;
        display: flex;
    }
    .frame__title {
        margin: 0;
    }
    .frame__tagline {
        position: relative;
        margin: 0 0 0 1rem;
        padding: 0 0 0 1rem;
        opacity: 0.5;
    }
    .frame__demos {
        margin: 0;
        grid-area: demos;
        justify-self: end;
    }
    .frame__links {
        grid-area: links;
        padding: 0;
        margin: 0;
        justify-self: end;
        white-space: nowrap;
    }
    .frame a {
        pointer-events: auto;
    }
    .frame__credits {
        grid-area: credits;
    }
}
html::after {
    content: "";
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-radius: 50%;
    opacity: 0.4;
    background: #fff;
    animation: loaderAnim 0.7s linear infinite alternate forwards;
    transition: opacity 0.4s ease;
}
html.loaded::after {
    animation-play-state: paused;
    opacity: 0 !important;
}
@keyframes loaderAnim {
    to {
        opacity: 1;
        transform: scale3d(0.5, 0.5, 1);
    }
}
.frame__demo--current,
.frame__demo--current:hover,
a {
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: top;
}
.frame__demo--current:after,
.frame__demo--current:hover:after,
a:after {
    background: currentColor;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transition: transform 0.4s ease;
    width: 100%;
}
.frame__demo--current:after,
.frame__demo--current:hover:after,
a:hover:after {
    transform: scaleX(1);
    transform-origin: left center;
}
.frame__demo--current:hover:after,
a:after {
    transform: scaleX(0);
    transform-origin: right center;
}
.frame__demo--current,
.frame__demo--current:hover {
    display: inline-block;
}
a {
    display: inline-block;
}
.demo-1 {
    height: 100%;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    mix-blend-mode: difference;
}
.demo-1__header {
    align-items: center;
    display: flex-start;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
}
.loaded .demo-1__header {
    opacity: 1;
    transition: opacity 0.4s ease;
    mix-blend-mode: difference;
}
.demo-1__title {
    /*margin-top:3rem;*/
    font: 800 21rem/1 "Almarena", serif;
    text-align: center;
    margin-top: 0px;
}
.demo-1__description {
    font-size: 2rem;
    margin-top: -1rem;
    opacity: 0.75;
}
.demo-1__gallery {
    height: 1950rem;
    position: relative;
    visibility: hidden;
}
@media (max-width: 1200px) {
    .demo-1__gallery {
        height: 4800rem;
    }
}
.demo-1__gallery__figure {
    position: absolute;
}
.demo-1__gallery__figure:nth-child(1) {
    height: 75rem;
    width: 115rem;
}
.demo-1__gallery__figure:nth-child(2) {
    height: 32.5rem;
    right: 10rem;
    top: 70rem;
    width: 55rem;
}
.demo-1__gallery__figure:nth-child(3) {
    height: 75rem;
    left: 35rem;
    top: 120rem;
    width: 115rem;
}
.demo-1__gallery__figure:nth-child(4) {
    height: 32.5rem;
    left: 10rem;
    top: 220rem;
    width: 50rem;
}
.demo-1__gallery__figure:nth-child(5) {
    height: 75rem;
    right: 0;
    top: 250rem;
    width: 115rem;
}
.demo-1__gallery__figure:nth-child(6) {
    height: 75rem;
    left: 0rem;
    top: 280rem;
    width: 50rem;
}
.demo-1__gallery__figure:nth-child(7) {
    height: 75rem;
    right: 35rem;
    top: 370rem;
    width: 115rem;
}
.demo-1__gallery__figure:nth-child(8) {
    height: 32.5rem;
    right: 0rem;
    top: 470rem;
    width: 50rem;
}
.demo-1__gallery__figure:nth-child(9) {
    height: 75rem;
    width: 115rem;
    top: 500rem;
    left: 0rem;
}
.demo-1__gallery__figure:nth-child(10) {
    height: 32.5rem;
    right: 10rem;
    top: 570rem;
    width: 50rem;
}
.demo-1__gallery__figure:nth-child(11) {
    height: 75rem;
    left: 35rem;
    top: 620rem;
    width: 115rem;
}
.demo-1__gallery__figure:nth-child(12) {
    left: 10;
    top: 710rem;
    height: 32.5rem;
    width: 50rem;
}
.demo-1__gallery__figure:nth-child(13) {
    right: 0;
    top: 740rem;
    height: 75rem;
    width: 115rem;
}
.demo-1__gallery__figure:nth-child(14) {
    left: 10rem;
    top: 800rem;
    height: 32.5rem;
    width: 50rem;
}
.demo-1__gallery__figure:nth-child(15) {
    height: 75rem;
    right: 35rem;
    top: 860rem;
    width: 115rem;
}
.demo-1__gallery__figure:nth-child(16) {
    right: 0rem;
    top: 960rem;
    height: 32.5rem;
    width: 50rem;
}
.demo-1__gallery__figure:nth-child(17) {
    height: 75rem;
    left: 0rem;
    top: 980rem;
    width: 115rem;
}
.demo-1__gallery__figure:nth-child(18) {
    right: 10rem;
    top: 1050rem;
    height: 32.5rem;
    width: 50rem;
}
.demo-1__gallery__figure:nth-child(19) {
    height: 75rem;
    left: 35rem;
    top: 1100rem;
    width: 115rem;
}
.demo-1__gallery__figure:nth-child(20) {
    left: 0rem;
    top: 1190rem;
    height: 32.5rem;
    width: 50rem;
}
.demo-1__gallery__figure:nth-child(21) {
    height: 75rem;
    right: 0rem;
    top: 1220rem;
    width: 115rem;
}
.demo-1__gallery__figure:nth-child(22) {
    left: 10rem;
    top: 1280rem;
    height: 32.5rem;
    width: 50rem;
}
.demo-1__gallery__figure:nth-child(23) {
    height: 75rem;
    right: 35rem;
    top: 1340rem;
    width: 115rem;
}
.demo-1__gallery__figure:nth-child(24) {
    height: 32.5rem;
    right: 0;
    top: 1430rem;
    width: 50rem;
}
.demo-1__gallery__figure:nth-child(25) {
    height: 75rem;
    width: 115rem;
    top: 1460rem;
}
.demo-1__gallery__figure:nth-child(26) {
    height: 32.5rem;
    right: 10rem;
    top: 1530rem;
    width: 55rem;
}
.demo-1__gallery__figure:nth-child(27) {
    height: 75rem;
    left: 35rem;
    top: 1590rem;
    width: 115rem;
}
.demo-1__gallery__figure:nth-child(28) {
    height: 32.5rem;
    left: 10rem;
    top: 1690rem;
    width: 50rem;
}
.demo-1__gallery__figure:nth-child(29) {
    height: 75rem;
    right: 0;
    top: 1720rem;
    width: 115rem;
}
.demo-1__gallery__figure:nth-child(30) {
    height: 32.5rem;
    left: 0rem;
    top: 1780rem;
    width: 50rem;
}
.demo-1__gallery__figure:nth-child(31) {
    height: 75rem;
    right: 35rem;
    top: 1830rem;
    width: 115rem;
}
.demo-1__gallery__figure:nth-child(32) {
    height: 32.5rem;
    right: 0rem;
    top: 1930rem;
    width: 50rem;
}















@media (max-width: 1200px) {
    .demo-1__gallery__figure:nth-child(1) {
        height: 120rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(2) {
        height: 120rem;
        left: auto;
        right: 0;
        top: 150rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(3) {
        height: 120rem;
        left: 0rem;
        top: 300rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(4) {
        height: 120rem;
        left: 0rem;
        top: 450rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(5) {
        height: 120rem;
        left: 0;
        right: auto;
        top: 600rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(6) {
        height: 120rem;
        left: 0rem;
        top: 750rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(7) {
        height: 120rem;;
        left: 0;
        right: auto;
        top: 900rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(8) {
        height: 120rem;
        left: auto;
        right: 0;
        top: 1050rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(9) {
        height: 100rem;
        left: 0rem;
        top: 1200rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(10) {
        height: 120rem;
        left: 0rem;
        right: auto;
        top: 1350rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(11) {
        height: 120rem;
        left: auto;
        right: 0;
        top: 1500rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(12) {
        left: 0;
        top: 1650rem;
        height: 120rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(13) {
        height: 120rem;
        left: auto;
        right: 0;
        top: 1800rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(14) {
        height: 120rem;
        left: 0rem;
        top: 1950rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(15) {
        height: 120rem;
        right: 0;
        top: 2100rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(16) {
        height: 120rem;
        left: 0;
        right: auto;
        top: 2250rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(17) {
        height: 120rem;
        left: 0rem;
        top: 2400rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(18) {
        height: 120rem;
        left: 0;
        right: auto;
        top: 2550rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(19) {
        height: 120rem;
        left: auto;
        right: 0;
        top: 2700rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(20) {
        height: 120rem;
        left: 0rem;
        top: 2850rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(21) {
        height: 120rem;
        left: 0rem;
        right: auto;
        top: 3000rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(22) {
        height: 120rem;
        left: auto;
        right: 0;
        top: 3150rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(23) {
        left: 0;
        top: 3300rem;
        height: 120rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(24) {
        left: 0;
        top: 3450rem;
        height: 120rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(25) {
        left: 0;
        top: 3600rem;
        height: 120rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(26) {
        left: 0;
        top: 3750rem;
        height: 120rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(27) {
        left: 0;
        top: 3900rem;
        height: 120rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(28) {
        left: 0;
        top: 4050rem;
        height: 120rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(29) {
        left: 0;
        top: 4200rem;
        height: 120rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(30) {
        left: 0;
        top: 4350rem;
        height: 120rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(31) {
        left: 0;
        top: 4500rem;
        height: 120rem;
        width: 200rem;
    }
    .demo-1__gallery__figure:nth-child(32) {
        left: 0;
        top: 4650rem;
        height: 120rem;
        width: 200rem;
    }

}
.demo-1__gallery__image {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}

.nav-icon {
    width: 8rem;
}

.nav-bottom {
    position: fixed;
    z-index: 9999;
    height: 70px;
    width: 100%;
    bottom: 0;
    padding: 25px 25px 25px 25px;
    mix-blend-mode: difference;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 25px;
}
@media (max-width: 1200px) {
    .nav-bottom {
        height: 140px;
        padding: 0;
    }

    .nav-container {
        display: flex;
        padding-right: 25px;
        /* margin-bottom: 40px; */
        flex-direction: column-reverse;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: flex-start;
    }
}
.nav-line {
    height: 3px;
    width: 100%;
    margin-bottom: 25px;

}

.special-nav-bottom {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: -0.05em;

}

.dark-mode {
    background-color: rgb(242, 242, 242);
}





/* Btn switch mode design */

.toggle-btn {
    position: relative;
    width: 60px;
    height: 25px;
    border-radius: 40px;

}
  
  input[type="checkbox"] {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: 0px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
  }
  
  /* First toggle btn */
  
  #_1st-toggle-btn span {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    overflow: hidden;
    opacity: 1;
    background-color: #fff;
    box-shadow: 0px 2px 25px #d9d9d98f;
    border-radius: 40px;
    transition: 0.2s ease background-color, 0.2s ease opacity;
  }
  
  #_1st-toggle-btn span:before,
  #_1st-toggle-btn span:after {
    content: "";
    position: absolute;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    transition: 0.5s ease transform, 0.2s ease background-color;
  }
  
  #_1st-toggle-btn span:before {
    background-color: #fff;
    transform: translate(-38px, 0px);
    z-index: 1;
  }
  
  #_1st-toggle-btn span:after {
    background-color: #000;
    transform: translate(3px, 0px);
    z-index: 0;
  }
  
  #_1st-toggle-btn input[type="checkbox"]:checked + span {
    background-color: #000;
  }
  
  #_1st-toggle-btn input[type="checkbox"]:active + span {
    opacity: 0.5;
  }
  
  #_1st-toggle-btn input[type="checkbox"]:checked + span:before {
    background-color: #000;
    transform: translate(23px, 0px);
  }
  
  #_1st-toggle-btn input[type="checkbox"]:checked + span:after {
    background-color: #fff;
    transform: translate(35px, 0px);
  }
  
  /* First toggle btn completed */
  
  


 /* Adjust cookie element that was not in the middle of the screen */

  .termsfeed-com---is-visible {
    display: flex !important;
    align-items: center !important;
}

  /* Modal info design */

  .modal {
    background-color: #0c0c0ce6;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal.open {
    opacity: 1;
    z-index: 9999999;
  }

  .modal-inner {
    background-color: #16161600;
    padding: 20rem 10rem;

    width: 115rem;
  }

  .modal-inner h1 {
    color: #ffffff;
    outline: none;
    text-decoration: none;
    font-family: Tiempos, 'Times New Roman', Times, serif;
    letter-spacing: -0.05em;
    margin-bottom: 3rem;
  }

  .modal-inner p {
    color: #ffffff;
    outline: none;
    text-decoration: none;
    font-family: Tiempos, 'Times New Roman', Times, serif;
    font-size: 2vw;
    line-height: 2.5vw;
    margin-bottom: 3rem;
    text-indent: 10vw;
  }

  @media (max-width: 1200px) {
    .modal-inner p {
        color: #ffffff;
        outline: none;
        text-decoration: none;
        font-family: Tiempos, 'Times New Roman', Times, serif;
        font-size: 4.5vw;
        line-height: 5.5vw;
        margin-bottom: 3rem;
        text-indent: 10vw;
      }

      .modal-inner {
        background-color: #16161600;
        padding: 4rem 2rem;
    
        width: 140rem;
      }
    
  }

  .modal-logo {
    width: 8rem;
  }

  .close-text {
    color: #ffffff;
    outline: none;
    text-decoration: none;
    font-family: Tiempos, 'Times New Roman', Times, serif;
    font-size: 1.8vw;
    font-weight: bold;
    background: none;
    border: none;
  }

  .close-text:hover,
  .close-text:focus {
    outline: none;
  }
   

 .crimson-text {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    letter-spacing: -0.05em;
 }


 .cc-cp-foot-byline {
    opacity: 0;
 }

 .cc-pc-head-title-headline {
    font-family: Tiempos, 'Times New Roman', Times, serif !important;
 }

 .open_preferences_center {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    letter-spacing: -0.05em;
    font-size: 14px;
 }