body {
    /*
    background:
    radial-gradient(ellipse at top, #fa69096c, transparent),
    radial-gradient(ellipse at bottom, #899f0c52, transparent);*/
    background: #fff;
    width: 100%;
    overflow: hidden;
    overflow-y: hidden;
    padding-top: 100vh;
    transition: 1s ease-in-out;
}

.textfloat1 {
    position: absolute;
    top: 30px;
    right: 30px;
    text-align: right;
    max-width: 370px;
    font-size: .8em;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--brand-color);
    opacity: .4;
    i {
        position: absolute;
        top: 0;
        left: 0;
        transform: rotate(180deg);
        font-size: 2.2em;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    opacity: .2;
    animation: bounce 2s infinite;
    img {
        width: 40px;
        transform: rotate(180deg);
        animation: 2s infinite upDown;
    }
}

@keyframes upDown {
    0%, 100% {
        transform: translateY(0) rotate(180deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.name-brand {
    font-size: 25em;
    font-weight: 800;
    color: var(--brand-color);
    z-index: 9999;
    opacity: .1;
    user-select: none;
    text-align: center;
    overflow: hidden;
    text-wrap: nowrap;
    height: 330px;
    transition: all 1s ease-out;
    &:hover {
        margin-top: -20px;
        height: 350px;
    }
}

header {
  position: sticky;
  top: -1px;
  left: 10%;
  display: flex;
  /* border-top: 1px solid #8888888c; */
  box-shadow: 0px -17px 20px -25px #000;
  border-bottom: 1px solid #8888888c;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  width: 80%;
  height: 60px;
  z-index: 9999;
  transition: 1s ease !important;
  ul {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 50px;
    background-color: transparent;
    box-sizing: border-box;
    white-space: nowrap;
    margin-right: -240px;
    z-index: 1;
    li {
        &:hover {
            &::before {
                height: 3.5px;
            }
        }
        &::before {
            content: '';
            position: absolute;
            width: 60%;
            height: 0;
            bottom: -15px;
            left: 20%;
            background: var(--brand-color);
            border-radius: 0;
            z-index: -1;
            transition: .3s ease;

        }
      position: relative;
      list-style: none;
      transition: .3s ease;
      padding: 5px;
      border-radius: 8em;
      
      &:hover a {
        color: var(--color);
      } /* HOVER */
      a {
        text-decoration: none;
        color: var(--color);
        font-weight: 500;
        transition: all 0.3s, color 0s;
        margin: 0 10px;
        transition: 1s ease;
        font-size: 1em;
      } /* A */
    } /* LI */
    
    li.active {
        &::before {
            height: 3.5px;
        }
    }
  } /* UL */
  .logo-brand {
    position: absolute;
    left: 35px;
    display: flex;
    align-items: center;
    justify-content: left;
    img {
      width: 80px;
      margin: 0 15px;
      filter: invert(1);
    } /*IMG */
  } /* LOGI BRAND */
  .button-containment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 3;
    button {
      padding: 5px 10px;
      border-radius: .8em;
      background: var(--brand-color);
      color: #fff;
      border: none;
      box-sizing: border-box;
      &:nth-child(2) {
        background: linear-gradient(25deg, #ffffff7c, #ffffff80);
        backdrop-filter: blur(3px);
        border: 1px solid #ffffff;
        color: var(--color);
        &:hover {
            border-color: transparent;
            background: var(--brand-color);
            color: var(--page-color);
            opacity: 1;
        }
      } /* NTH CHILD */
    } /* BUTTON */
  } /* BUTTON CONTAINMENT */
} /* HEADER */

header.sticky-black {
  ul {
    li {
      a {
        color: var(--color);
        filter: invert(1);   
      } /* A */
      &::before {
        background: #fff;
      }
    } /* LI */
  } 
  .logo-brand {
    img {
      filter: invert(0);
    } /*IMG */
  } /* LOGI BRAND */
  .button-containment {
    filter: invert(1);
    button {
      padding: 5px 10px;
      background: var(--brand-color);
      color: #fff;
      border: none;
      box-sizing: border-box;
      &:nth-child(2) {
        background: transparent;
        backdrop-filter: blur(3px);
        border: 1px solid #8888888c;
        color: var(--color);
      } /* NTH CHILD */
    } /* BUTTON */
  } /* BUTTON CONTAINMENT */
} /* HEADER */

header.sticky::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ffffff00, #ffffff00, #ffffff00);
    /* background: linear-gradient(90deg, #ffffff36, #ffffff7e, #ffffff36); */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;

    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-repeat: no-repeat;
    mask-size: cover;
}

main {
    position: relative;
    z-index: 100;
    padding-top: 150px;
    margin-top: -60px;
    .float-info {
        position: absolute;
        top: 150px;
        background: #ffffff7e;
        padding: 15px 25px;
        border-radius: 30px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        text-align: center;
        z-index: 9999;
        h1 {
            font-size: 2.5em;
            font-weight: 700;
            color: var(--color);
        }
        p {
            font-size: .8em;
            font-weight: 500;
            color: var(--color);
            opacity: .6;
        }
        &.info-1 {
            top: 346px;
            right: 50px;
        }
        &.info-2 {
            top: 170px;
            left: 50px;
        }
    }
    .content-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        .hero-info-title {
            position: relative;
            color: var(--color);
            padding: 7px 7px 7px 7px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin: auto;
            font-size: 1em;
            font-weight: 500;
            z-index: 9;
            &:after {
                position: absolute;
                top: 1.3px;
                left: 1.3px;
                content: "";
                width: calc(100% - 2.2px);
                height: calc(100% - 2.4px);
                background: transparent;
                border-radius: 8em;
                z-index: -1;
            }
            img {
                width: 25px;
                height: 25px;
                object-fit: cover;
                border-radius: 8em;
                box-sizing: border-box;
                filter: invert(1);
            } /* IMG */
            img:nth-child(2) {
                margin-left: -25px;
            } /* IMG */
        } /* HERO INFO TITLE */
        
        h1 {
            margin-top: 10px;
            text-align: center;
            font-size: 4.5em;
            font-weight: 500;
            color: var(--color);
        }
        p {
            margin: 20px 0 0 0;
            max-width: 650px;
            font-weight: 700;
            text-align: center;
            opacity: 0.6;
            color: var(--color);
        }

        .buttons {
            margin: 30px 0 0 0;
            display: flex;
            gap: 20px;
            button {
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 6px 22px 6px 6px;
                border-radius: .8em;
                background: var(--brand-color);
                color: var(--page-color);
                border: none;
                box-sizing: border-box;
                font-size: 1em;
                font-weight: 300;
                &:nth-child(2) {
                    background: transparent;
                    border: 1px solid rgba(0, 0, 0, 0.527);
                    font-size: 1em;
                    padding-left: 20px;
                    color: var(--color);
                } /* NTH CHILD */
                i {
                    font-size: 1.2em;
                    padding: 6px;
                    border-radius: .5em;
                    color: var(--color);
                    background-color: var(--page-color);
                }
                &:hover {
                    background: var(--brand-color);
                    border-color: transparent;
                    color: var(--page-color);
                    opacity: 1;
                }
            } /* BUTTON */
        } /* BUTTONS */
    }
    .content-cards {
        margin: 0 30px 0 30px;
        margin-top: 50px;
        display: none;
        align-items: center;
        justify-content: center;
        gap: 20px;
        .card {
            overflow: hidden;
            width: 39%;
            height: 250px;
            background: var(--color);
            position: relative;
            transition: .5s ease;
            border-radius: 30px;
            
            .img-bg {
                position: absolute;
                left: 0;
                right: 0;
                z-index: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all .3s ease-out;
                filter: grayscale(100%) brightness(80%);
            }
            .top-line {
                display: flex;
                align-items: center;
                justify-content: left;
                gap: 10px;
                padding: 15px;
                div {
                    padding: 5px 10px;
                    font-size: .8em;
                    border: #ffffff25 solid 1px;
                    border-radius: 8em;
                    background: linear-gradient(150deg, #00000031, #00000083, #0000002c);
                    backdrop-filter: blur(10px) brightness(100%);
                    color: var(--white-color);
                }
                
            }
            .bottom-line {
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: left;
                width: 100%;
                height: 30px;
                text-wrap: nowrap;
                position: absolute;
                bottom: 10px;
                left: 10px;
                gap: 20px;
                div {
                    img {
                        width: 60px;
                        filter: invert(0);
                    }
                    &:nth-child(2) {
                        p {
                            font-weight: 700;
                            color: var(--page-color);
                            text-shadow: 1px 1px 7px #000;
                        }
                    }
                }
            }
            &:nth-child(2) {
                overflow: hidden;
                width: 6.3%;
                background: var(--color);
                &:after {
                    content: '';
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                }
                p {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%) rotate(-90deg);
                    color: var(--page-color);
                    font-size: 1.2em;
                    font-weight: 400;
                    text-align: center;
                    z-index: 1;
                }
            }
            &:nth-child(3) {
                padding: 0;
                width: 6.3%;
                overflow: hidden;
                transition: all .5s ease;
                cursor: pointer;
                &::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    background-image: url('../media/img/mg-2.heic');
                    background-size: cover;
                    background-position: center;
                    width: 100%;
                    height: 100%;
                    filter: grayscale(100%);
                }
                &:after {
                    content: '';
                    position: absolute;
                    width: 100%;
                    height: 100%;  
                    top: 0;
                    left: 0;
                    backdrop-filter: blur(15px);
                    transition: all .6s ease;
                    transition-delay: .2s;
                }
                
                &:hover::after {
                    opacity: 0;
                }
                &:hover {
                    width: 24%;
                }
            }       
            &:nth-child(4) {
                background: rgba(0, 0, 0, 0.100);
                width: 30%;
                padding: 10px;
                box-sizing: border-box;
                .content {
                    height: calc(100% - 65px);
                    padding: 8px;
                    margin-top: 15px;
                    
                    h1 {
                        margin: 20px 0 5px 0;
                        font-size: 2em;
                        font-weight: 700;
                    }
                    p {
                        font-weight: 400;
                        opacity: .5;
                        margin-right: 2%;
                    }
                    button {
                        position: absolute;
                        bottom: 25px;
                        left: 20px;
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        padding: 4px 20px 4px 4px;
                        border-radius: 50px;
                        background: var(--color);
                        color: var(--page-color);
                        border: none;
                        box-sizing: border-box;
                        font-size: 1em;
                        font-weight: 300;
                        i {
                            font-size: 1.2em;
                            padding: 4px;
                            border-radius: 50px;
                            color: var(--color);
                            background-color: var(--page-color);
                        }
                    }
                }
            }       
            &:nth-child(5) {
                display: none;
                width: 6.3%;
                background: #000;
                overflow: hidden;
                &:after {
                    content: '';
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                }
                &::before {
                    content: '5';
                    top: 15px;
                    left: 15px;
                }
                p {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%) rotate(-90deg);
                    color: var(--page-color);
                    font-size: 1.2em;
                    font-weight: 400;
                    text-align: center;
                    z-index: 1;
                }
            }       
              
        }
    }
    
    .carrousel-skills {
        width: 40%;
        overflow: hidden;
        margin: auto;
        margin-top: 78px;
        margin-bottom: 188px;
        opacity: .3;
        .content {
            display: flex;
            width: max-content;
            animation: scroll-left 20s linear infinite;
          .item {
                flex: 0 0 auto;
                margin-right: 40px;
            img {
                width: 40px;
                height: auto;
                display: block;
                filter: invert(0);
            } /* IMG */
          } /* ITEM */

          &:hover {
            animation-play-state: paused;
          }
        } /* CONTENT */  

    } /* CARROUSEL SKILLS*/
}

.section-3d {
    height: 120vh;
    position: relative;
    overflow: hidden;
    iframe {
        
    }
    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: hsl(0, 0%, 100%);
        z-index: 1000;
    }
}

.skills {
    position: relative;
    padding: 100px 25px 20px 25px;
    background: var(--white-color);
    height: 100%;
    box-sizing: border-box;
    z-index: 110;
    p.section-title {
        color: #9ca3af;
        margin: auto;
        text-align: center;
    }
    h1.title {
        margin: 20px auto 100px;
        text-align: center;
        font-size: 3em;
        font-weight: 400;
    }
    p.subtitle {
        margin: 10px auto 50px auto;
        text-align: center;
        max-width: 800px;
        font-size: 1.3em;
        font-weight: 400;
        color: #6b7280;
    }
    .content-skills {
        margin-top: 150px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        position: relative;
        &::before {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 0;
            width: 100%;
            height: 25%;
            background: linear-gradient(to top, rgb(255, 255, 255),#00000000);
            backdrop-filter: blur(30px);
            z-index: 20;
            mask-image: linear-gradient(
                to top,
                black 0%,
                black 40%,
                transparent 100%
            );

            -webkit-mask-image: linear-gradient(
                to top,
                black 0%,
                black 40%,
                transparent 100%
            );
        }
        

        .content-top {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            .sub-content {
                position: relative;
                display: flex;
                flex-direction: column;
                width: 330px;
                height: 400px;
                border: 0.01px solid #6b728021;
                box-shadow: 0px 5px 20px #00000010;
                padding: 25px;
                border-radius: 2em;
                gap: 20px;
                overflow: hidden;
                .bg {
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
                &:nth-child(2) {
                    transform: translateY(-120px);
                }
                .header {
                    display: flex;
                    align-items: center;
                    justify-content: left;
                    width: 150px;
                    overflow: hidden;
                    object-fit: cover;
                    margin-left: -5px;
                    img {
                        width: 100%;
                    }
                    p {
                        font-size: .9em;
                        font-weight: 600;
                        opacity: .8;
                        display: none;
                    }
                }
                .text {
                    p {
                        font-size: 1em;
                        color: #6b7280;
                        font-weight: 500;
                        text-align: left;
                        b {
                            font-size: 1.2em;
                        }
                    }
                    .name {
                        position: absolute;
                        bottom: 25px;
                        left: 25px;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        p {
                            font-weight: 500;
                            font-size: 1.3em;
                            opacity: 1;
                            color: #000;
                            &:nth-child(2) {
                                font-size: .9em;
                                font-weight: 200;
                            }
                        }
                    }
                }
            }
        }

        .content-bottom {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            .sub-content {
                display: flex;
                flex-direction: column;
                width: 330px;
                height: 400px;
                border: 0.01px solid #6b72803f;
                box-shadow: 0px 5px 20px #00000010;
                padding: 30px;
                border-radius: 2em;
                gap: 20px;
                position: relative;
                overflow: hidden;
                .bg {
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
                &:nth-child(2) {
                    margin-top: -120px;
                }
                .header {
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    img {
                        width: 100px;
                    }
                    p {
                        font-size: .9em;
                        font-weight: 600;
                        opacity: .8;
                        display: none;
                    }
                }
                .text {
                    p {
                        font-size: 1em;
                        color: #6b7280;
                        font-weight: 500;
                        text-align: left;
                    }
                }
            }
        }
    }
}   

@supports not (backdrop-filter: blur(10px)) {
  #film-page .seasons .episode .blur {
    background: linear-gradient(
      to top,
      rgba(255,255,255,0.237) 0%,
      rgba(255,255,255,0.119) 30%,
      rgba(255,255,255,0.098) 60%,
      rgba(255,255,255,0) 100%
    );
  }
}

.who-we-are {
    position: relative;
    padding: 170px 25px 20px 25px;
    background: var(--white-color);
    height: 10%;
    box-sizing: border-box;
    z-index: 120;
    p.section-title {
        color: #9ca3af;
        margin: auto;
        text-align: center;
    }
    h1.title {
        margin: 20px auto;
        text-align: center;
        font-size: 3em;
        font-weight: 400;
    }
    p.subtitle {
        margin: 10px auto 50px auto;
        text-align: center;
        max-width: 800px;
        font-size: 1.3em;
        font-weight: 300;
        color: #000000;
    }
    
    .divider {
        margin: 20px auto 0;
    }
}  

.usability-design {
    position: relative;
}

.services {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--white-color);
    height: 100%;
    box-sizing: border-box;
    z-index: 130;

    p.section-title {
        color: #9ca3af;
        margin: auto;
        text-align: center;
    }
    h1.title {
        margin: 20px auto;
        text-align: center;
        font-size: 3em;
        font-weight: 400;
    }

    .content-cards-services {
        display: flex;
        flex-direction: row !important;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: nowrap !important;
        gap: 20px;
        overflow: hidden;
        overflow-x: auto;
        padding: 20px 40px 50px 40px;
        height: auto;
        width: calc(100% - 40px);
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        position: relative;
        margin-left: 40px;
        box-sizing: border-box;

        &::-webkit-scrollbar {
            display: none;
        }

        .card {
            scroll-snap-align: start;
            min-width: 500px;
            background: var(--page-color);
            padding: 30px;
            border-radius: 20px;
            box-sizing: border-box;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: left;
            gap: 20px;
            transition: all .3s ease-out;
            border: 1px solid #6b728021;
            &:hover {
                transform: translateY(-10px);
                box-shadow: 0px 45px 45px #00000033;
                .button-card {
                    gap: 20px;
                }
            }     
            .icon-card {
                border-radius: 20px;
                background: #ffffff;
                color: #000000;
                width: 70px;
                height: 70px;
                display: flex;
                align-items: center;
                justify-content: center;
                i {
                    font-size: 2em;
                }
            }
            .title-card {
                font-size: 2em;
                font-weight: 700;
                color: var(--color);
            }
            .subtitle-card {
                margin-top: -10px;
                font-size: .9em;
                font-weight: 400;
                color: var(--color);
                opacity: .6;
            }
            .text-card {
                color: #9ca3af;
            }
            ul {
                li {
                    color: #6b7280;
                    list-style-type: none;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    i {
                        background: #9ca3af77;
                        color: #000;
                        border-radius: 8em;
                        padding: 5px;
                        transform: scale(0.8);
                    }
                }
            }
            .button-card {
                display: flex;
                align-items: center;
                gap: 5px;
                font-weight: 700;
                transition: .2s ease;
                i {
                    transform: rotate(45deg) scale(1.2);
                }
                
            }
        }
    }

    .content-cards-pressets {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        background-color: #eeeeee71;
        width: calc(100% - 60px);
        height: 80px;
        margin: auto;
        border-radius: 2em;
        .card {
            padding: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            .icon-card {
                color: #0059ff;
                display: flex;
                align-items: center;
                justify-content: center;
                i {
                    font-size: 1.5em;
                }
            }
            p {
                color: #000;
                font-weight: 400;
            }
        }
    }
}

.philosophy {
    position: relative;
    padding: 150px 25px 20px 25px;
    background: #ffffff;
    height: 100%;
    box-sizing: border-box;
    color: #000000;
    z-index: 140;
    .divider {
        margin: 0 auto 150px;
        border-width: 1.5px;
    }
    p.section-title {
        color: #9ca3af;
        margin: auto;
        text-align: center;
    }
    h1.title {
        margin: 20px auto;
        text-align: center;
        font-size: 3em;
        font-weight: 400;
        color: #000000;
    }
    p.subtitle {
        margin: 80px auto 50px auto;
        text-align: center;
        max-width: 800px;
        font-size: 1em;
        font-weight: 300;
        color: #000000;
    }
    .content {
        display: flex;
        flex-direction: column;
        justify-items: center;
        overflow: hidden;
        .left {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            gap: 20px;
            .content-left {
                /* overflow: scroll; */
                display: flex;
                width: max-content;
                /* scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch; */
                animation: scroll-left-2 60s linear infinite;
                
                &:hover {
                    animation-play-state: paused;
                    img {
                        filter: grayscale(100%);
                    }
                }
                img {
                    /* scroll-snap-align: start;  */
                    flex: 0 0 auto;
                    margin-right: 40px;
                    position: relative;
                    height: 450px;
                    border-radius: 1em;
                    &:hover {
                        filter: grayscale(0%);
                    }
                }
            }
            
        }
        .right {
            width: 100%;
            padding: 100px 0 100px 100px;
            .text {
                margin: 0 auto;
                text-align: justify;
                max-width: 700px;
                font-size: 1em;
                font-weight: 300;
                color: #000000;
            }
            ul {
                margin: 20px auto;
                max-width: 700px;
                font-size: 1em;
                font-weight: 300;
                color: #000000;
                text-align: justify;
                li {
                    margin-bottom: 10px;
                    span {
                        font-weight: 500;
                        color: #000000;
                    }
                }
            }
        }
        
    }
}

.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eee;
    z-index: 999999;
    overflow: hidden;
    transition: 1s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40%;
        background: linear-gradient(to top, #858585, #88888800);
        z-index: -1;
        opacity: .7;
    }
    .load {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 5px;
        background: var(--page-color);
        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: rgba(0, 0, 0);
            animation: load 5s linear;
        }
    }
    &.hidden {
        height: 0;
    }
    .txt {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0;
        
        .icon-load {
            display: none;
            position: absolute;
            bottom: 50px;
            width: 50px;
            height: 50px;
            border: 5px solid #000;
            border-radius: 50%;
            opacity: 1;
            animation: rotate 2s linear infinite;
            &::after {
                content: '';
                position: absolute;
                top: 8px;
                left: 8px;
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #000;
            }
        }
        
        .textIntro {
            font-size: 4.5em;
            font-weight: 500;
            color: #000;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            .title {
                text-shadow: 2px 250px 10px #00000027;
            }
            .logo {
                object-fit: cover;
                margin-top: -100px;
                width: 100px;
                height: 100px;
                background-image: url('../media/logos/png/logo.png');
                background-size: cover;
                background-position: center;
                filter: invert(1);
            }
        }
    }
    .button {
        margin-top: -120px;
        color: #090909;
        padding: 0.7em 1.7em;
        font-size: 18px;
        border-radius: 8em;
        background: #e8e8e8;
        cursor: pointer;
        border: 1px solid #e8e8e8;
        transition: all 0.3s;
        box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #99999967;
        z-index: 100
        ;
        &:hover {
            border: 1px solid white;
        }
        &:active {
            box-shadow: 4px 4px 12px #c5c5c5, -4px -4px 12px #ffffff;
        }
    }
}

@keyframes load {
    0% {
        left: 0;
        width: 0%;
    } 25% {
        width: 30%;
        left: 20%;
    } 60% {
        width: 15%;
        left: 45%;
        animation-duration: 20s;
    } 85% {
        width: 50%;
        left: 50%;
    } 100% {
        left: 100%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) scale(0.5);
    } 100% {
        transform: rotate(360deg) scale(0.5);;
    }
}