/*
*
* @Copyright 2023 VOID SOFTWARE, S.A.
*
*/

html,
body {
    display: block;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: Jakarta, sans-serif;
    overflow-x: clip;
}

@font-face {
    font-family: Jakarta;
    src: url(./assets/fonts/PlusJakartaSans-VariableFont_wght.ttf);
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

.title-1 {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.title-2 {
    color: #FFF;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

.title-3 {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.title-4 {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.card-title {
    color: #FFF;
    text-align: start;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.license-title-container {
    gap: 24px;
}

.navbar {
    height: 60px;
    width: 100vw;
    background-color: #00000005;
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    box-sizing: border-box;
    padding: 0 21px;

    position: fixed;
    top: 0;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    height: 28px;
}

.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.screen-container.welcome-container {
    height: 100vh;
    padding-bottom: 50px;
    padding-top: 130px;
}

.welcome-container > :not(#background-video) {
    z-index: 1;
}

.welcome-container::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 91.48%);
}

#background-video {
    height: 100%;
    width: 100vw;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}

.main-container > .screen-container:first-of-type {
    margin-top: 0;
}

.main-container > .screen-container:last-of-type {
    margin-bottom: 128px;
}

.presentation-video {
    max-width: 100%;
    max-height: 360px;
    border-radius: 8px;
    margin-top: 15px;
}

.gradient-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 180px;
    height: 56px;
    text-decoration: none;
}

.gradient-btn {
    width: 126px;
    height: 38px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 99px;
    border: none;
    background: linear-gradient(105deg, #E5D6FF -12.16%, #7C3AE7 107.75%);
}

.gradient-btn:hover {
    text-decoration: none;
    color: #fff;
}

.screen-container {
    width: 100vw;
    margin-top: 120px;
    padding: 30px 20px;
    box-sizing: border-box;
    position: relative;
}

.screen-contact-us {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.screen-contact-us > .title-container {
    margin-top: 150px;
    gap: 32px;
}

.screen-contact-us h1 {
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.screen-contact-us .ellipse-gradient {
    display: unset;
}

.screen-contact-us #gradient-2 {
    align-self: flex-end;
}

.screen-contact-us > .ellipse-group {
    width: 100%;
    height: 100%;
    align-items: flex-start;
    padding: 0;
}

.prevent-select {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.contact-us-form {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 32px;
}

.contact-us-form > .gradient-btn-container {
    align-self: center;
}

.form-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-input label {
    color: #C4C4C4;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.form-input input {
    padding: 18px 14px;
    color: #FFF;
    background: transparent;
    border-radius: 8px;
    border: 0.5px solid rgba(255, 255, 255, 0.21);

    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.form-input input:focus {
    outline: none;
}

.text-p3 {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.2px;
}

.text-p2 {
    color: #C4C4C4;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.text-p1 {
    color: #C4C4C4;
    text-align: start;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.content-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 52px;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.text-container > h2 {
    text-align: start;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

.text-container > .text-p2 {
    font-size: 16px;
    line-height: 24px;
    text-align: start;
    margin: 24px 0 0 0;
}

.document-card {
    display: flex;
    width: 75%;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 8px;
    background: rgba(19, 6, 38, 0.60);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    position: absolute;
    bottom: -35%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.document-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(to right bottom, #fff, rgba(0, 0, 0, 0));
    mask: linear-gradient(to right, #fff, #fff) content-box, linear-gradient(to right, #fff, #fff);
    -webkit-mask: linear-gradient(to right, #fff, #fff) content-box, linear-gradient(to right, #fff, #fff);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.document-card p {
    margin: 0;
}

.document-card > p {
    color: rgba(255, 255, 255, 0.60);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.document-card > div {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;

    display: flex;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
}

.card-group {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 64px;
}

.card-lg {
    width: 100%;
    min-height: 512px;
    border-radius: 16px;
    position: relative;
    background: transparent;

    box-shadow: 0px -16px 66px 0px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
}

.card-lg::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(to right bottom, #fff, rgba(0, 0, 0, 0));
    mask: linear-gradient(to right, #fff, #fff) content-box, linear-gradient(to right, #fff, #fff);
    -webkit-mask: linear-gradient(to right, #fff, #fff) content-box, linear-gradient(to right, #fff, #fff);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.card-m {
    width: 100%;
    height: 384px;
    box-sizing: border-box;
    padding: 44px 16px;
    position: relative;

    border-radius: 15px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) -30.29%, rgba(255, 255, 255, 0.00) 144.92%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(32px);
}

.card-m::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 1px;
    background: linear-gradient(-50deg, rgba(245, 251, 242, 0.4), rgba(255, 255, 255, 0));
    mask: linear-gradient(to right, #fff, #fff) content-box, linear-gradient(to right, #fff, #fff);
    -webkit-mask: linear-gradient(to right, #fff, #fff) content-box, linear-gradient(to right, #fff, #fff);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.ellipse-gradient {
    display: none;
    width: 446px;
    height: 446px;
    flex-shrink: 0;
    border-radius: 446px;
    opacity: .2;
    background: #000;
    filter: blur(100px);
}

.pink {
    background: #FC4FF6;
}

.blue {
    background: #8593E8;
}

.card-m-title {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    margin-top: 48px;
}

.card-m-description {
    color: #C4C4C4;
    text-align: center;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.card-m > .card-content > img {
    height: 96px;
}

.card-m > .card-content > p {
    margin: 24px 0 0 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-content > .text-p2 {
    text-align: start;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 25.6px;
}

.card-content p {
    margin: 0;
}

.blockbuster-card {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.90) 100%), center no-repeat url(./assets/images/city-background.jpeg), lightgray 50% / cover no-repeat;
    overflow: visible;
    padding-bottom: 20px;
    margin-bottom: 130px;
}

.blockbuster-card > .card-content {
    padding: 35px 40px 0 40px;
}

.blockbuster-card > .card-content > :nth-child(1) {
    margin-bottom: 17px;
}

.blockbuster-card > .card-content > :nth-child(2) {
    margin-bottom: 5px;
}

.blockbuster-card > .card-content > :nth-child(3) {
    margin-bottom: 12px;
}

.blockbuster-card > .card-content > :nth-child(4) {
    margin-bottom: 32px;
}

.blockbuster-card > .card-content > :nth-child(5) {
    font-size: 13px;
    letter-spacing: 1.2px;
    line-height: 19.5px;
    padding-bottom: 20px;
}

.contract-card, .fee-card {
    background-color: rgba(255, 255, 255, 0.10);
}

.contract-card > .card-content {
    padding: 24px 27px 0 27px;
}

.contract-card > .card-content > :nth-child(1) {
    margin-bottom: 24px;
}

.contract-card > .card-content > :nth-child(2) {
    margin-bottom: 24px;
}

.contract-card > .card-content > :not(.skeleton-content:first-of-type) {
    padding-top: 8px;
}

.fee-card > .card-content {
    height: 100%;
    padding: 35px 25px 25px 25px;
}

.fee-card > .card-content > :nth-child(1) {
    margin-bottom: 7px;
}

.fee-card > .card-content > :nth-child(2) {
    margin-bottom: 40px;
    font-weight: 600;
}

.fee-card > .card-content > :nth-child(3) {
    margin-bottom: 40px;
}

.fee-card > .card-content > :nth-child(4) {
    margin-bottom: 42px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.fee-card .list-item {
    gap: 16px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.treasury-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.treasury-item {
    padding: 16px 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.44);
    border-radius: 8px;

    text-align: center;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.skeleton-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.skeleton-content > p {
    font-size: 13px;
    color: #FFF;
    font-style: normal;
    font-weight: 600;
    line-height: 19.5px;
}

.skeleton-content > .rectangle:last-of-type {
    width: 90%;
}

.rectangle {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.20);
    display: block;
}

.list {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.list-item {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.list-item > .rectangle {
    width: 40%;
}

.list-item-bullet {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D9D9D9;
}

.signature-container {
    width: 100%;
    height: 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 80px;
}

.white-line {
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #fff;
}

#signature-el {
    height: 200px;
    display: block;
    position: absolute;
    bottom: -90px;
}

.group-chip {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.chip {
    padding: 6px 12px;
    border: 1px solid #fff;
    border-radius: 1em;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.user-group {
    display: flex;
    flex-direction: column;
    gap: 31px;
    margin-top: 40px;
}

.user-group .ellipse-gradient {
    display: unset;
}

.ellipse-group {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    pointer-events: none;
}

.ellipse-group > .ellipse-gradient {
    width: 353px;
    height: 351px;
    border-radius: 353px;
}

.team-person {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.user-photo {
    border-radius: 50%;
    height: 72px;
    width: 72px;
    object-fit: cover;
}

.user-name {
    margin-top: 24px;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.user-description {
    margin: 8px 0 16px 0;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.sponsor-group {
    display: flex;
    flex-direction: column;
    margin-top: 90px;
    gap: 64px;
}

.sponsor-group > * {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-img {
    height: 44px;
}

footer {
    padding: 50px 36px;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.00) 156.85%), linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, rgba(79, 165, 219, 0.76) 45.31%, rgba(86, 117, 198, 0.71) 50%, rgba(89, 116, 255, 0.42) 54.69%, rgba(0, 0, 0, 0.00) 100%);
    box-shadow: 0px 2px 0px 0px rgba(255, 255, 255, 0.16) inset;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer > p {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

footer > img {
    height: 32px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;

    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.contact-container > a {
    opacity: .5;
    display: flex;
    align-items: center;
}

.contact-container > a > img {
    width: 20px;
    height: 20px;
}

#btn-back-to-top {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 12px;
    border-radius: 15px;
    background: linear-gradient(105deg, #E5D6FF -12.16%, #7C3AE7 107.75%);
    border: none;
    cursor: pointer;
}

#btn-back-to-top img {
    width: 15px;
    height: 15px;
}

/* For Desktop */
@media only screen and (min-width: 760px) {
    .screen-contact-us {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .screen-contact-us > .title-container {
        align-items: flex-start;
        margin: 0;
        width: 50%;
    }

    .contact-us-form {
        margin: 0;
        width: 50vw;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
    }

    .contact-us-form > .gradient-btn-container {
        width: 100%;
        transform: translateX(calc(50% + 5px));
    }

    .gradient-btn-container {
        justify-content: center;
    }

    .title-1 {
        font-size: 44px;
    }

    .title-3 {
        font-size: 32px;
        line-height: 76px;
    }

    .navbar {
        height: 98px;
        padding: 0 64px;
    }

    .navbar > .logo {
        height: 28px;
    }

    .gradient-btn {
        width: 156px;
        height: 48px;
        font-size: 16px;
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .gradient-btn:hover {
        width: 180px;
        height: 56px;
        font-size: 18px;
    }

    .screen-container {
        position: relative;
        padding: 20px 64px;
    }

    .text-p2 {
        font-size: 18px;
        line-height: 27px;
        max-width: 550px;
    }

    .content-wrapper {
        position: relative;
        width: 100vw;
        overflow-x: clip;
    }

    .content-container {
        flex-direction: row;
        gap: 95px;
        height: 100vh;

        transform: translateZ(0);
        position: sticky;
        top: 0;
    }

    .text-container {
        height: 100%;
        width: 40%;
        background: #000;
    }

    .text-container > h2 {
        font-size: 36px;
    }

    .text-container > .text-p2 {
        margin: 40px 0 0 0;
    }

    .card-lg {
        width: 50%;
        height: 500px;
        min-height: unset;
        max-height: 70%;
    }

    .card-m {
        height: unset;
        max-width: 286px;
    }

    .document-card {
        width: 284px;
        bottom: unset;
        left: unset;
        right: -64px;
        top: 20%;
        transform: unset;
        z-index: 2;
    }

    .blockbuster-card {
        margin-bottom: unset;
        padding: unset;
        width: calc(50% - 64px);
    }

    .blockbuster-card > .card-content {
        overflow: clip;
        box-sizing: border-box;
        height: 100%;
    }

    .blockbuster-card > .card-content > p {
        max-width: 50%;
        height: fit-content;
        text-overflow: ellipsis;
    }

    .card-group {
        margin-top: 78px;
        flex-direction: row;

        justify-content: space-between;
    }

    .license-title-container > p {
        padding: 0 25%;
    }

    .signature-container {
        width: 40%;
        margin: unset;
        align-self: flex-end;
        position: absolute;
        bottom: 3px;
    }

    .white-line {
        width: 100%;
        float: right;
    }

    .treasury-container {
        margin-top: auto;
        margin-bottom: 50px;
        flex-direction: row;
    }

    .user-group {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        row-gap: 48px;
        margin-top: 97px;
    }

    .user-group .team-person {
        grid-column: span 2;
    }

    .user-group .team-person:nth-child(5) {
        grid-column: 2 / 4;
    }

    .user-group .team-person:nth-child(6) {
        grid-column: 4 / 6;
    }

    .sponsor-group {
        flex-direction: row;
        margin-top: 94px;
        gap: 128px;
    }

    .sponsor-img {
        height: 44px;
    }

    footer {
        padding: 60px 64px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .ellipse-gradient {
        display: unset;
    }

    .content-container > .ellipse-gradient {
        position: absolute;
        width: 449px;
        right: -10px;
        bottom: -10px;
    }

    #gradient-1 {
        width: 468px;
        height: 462px;
        border-radius: 468px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    #gradient-2 {
        width: 471px;
        height: 467px;
        border-radius: 471px;
        position: absolute;
        top: -10%;
        left: 50%;

        transform: translateX(-50%);
    }

    #gradient-3 {
        width: 450px;
        height: 446px;
        border-radius: 450px;
        position: absolute;
        top: 70%;
        right: 0;

        transform: translateY(-50%);
    }

    #btn-back-to-top {
        padding: 15px;
    }

    .user-group .ellipse-gradient {
        display: none;
    }
}

@media only screen and (min-width: 1450px) {
    .presentation-video {
        max-height: 450px;
    }
}
