/* ------------------------------------------------------------------------------------------------- */
/* METAVERSE WELCOME*/
#contactWelcome {
    background: url('../assets/page-metaverse/background.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 65vh;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

#contactWelcome .linearGradient {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.7);
}

#contactWelcome .linearGradient h1 {
    color: var(--white);
    font-size: 3rem;
    margin: 0;
}

#contactWelcome .linearGradient p {
    color: #bbb;
    margin: 1rem 0 0;
    text-align: center;
}


/* ------------------------------------------------------------------------------------------------- */
/* METAVERSE CONTENT SECTION*/
#metaContent .wrapper{
    margin-bottom: 2rem;
}
#metaContent .wrapper .metaContentRow {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#metaContent .wrapper .metaContentRow:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

#metaContent .wrapper .metaContentRow .metaContentRowImg {
    width: 48%;
}

#metaContent .wrapper .metaContentRow .metaContentRowImg img {
    width: 100%;
    border: 3px solid transparent;
    border-image: linear-gradient(144deg, rgba(88, 55, 93, 1) 0%, rgba(16, 163, 218, 1) 100%) 10;
}

#metaContent .wrapper .metaContentRow .metaContentRowText {
    width: 48%;
    color: white;
    margin-top: 1rem;
}

#metaContent .wrapper .metaContentRow .metaContentRowText .metaContentRowTextHeader {
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue1);
    margin-bottom: 1rem;
    line-height: 1.24;
}

#metaContent .wrapper .metaContentRow .metaContentRowText p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -0.06px;
    color: #e8e8e8;
}

#metaContent .wrapper .metaContentRow .metaContentRowText .metaContentRowTextLink {
    display: inline-block;
    border: 3px solid transparent;
    border-image: linear-gradient(144deg, rgba(88, 55, 93, 1) 0%, rgba(16, 163, 218, 1) 100%) 10;
    color: var(--white);
    padding: .5rem 1rem;
    margin-top: 1rem;
    transition: .3s;
}

#metaContent .wrapper .metaContentRow .metaContentRowText .metaContentRowTextLink:hover {
    border: 3px solid transparent;
    background-color: var(--blue1);
}