@font-face {
    font-family: 'Diamart';
    src: url('../fonts/Ma-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Diamart';
    src: url('../fonts/Ma-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Diamart';
    src: url('../fonts/Ma-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html{
    --default_text_color: #FFFFFF;
    --invert_text_color: #181B38;
    --desctop_content: 124rem;


}

@media (min-width: 1801px){
    html{
        font-size: calc(100vw / 1920 * 10);
    }
}

@media (max-width: 1800px){
    html{
        font-size: calc(100vw / 1440 * 9.8);
    }
}

@media (max-width: 1440px){
    html{
        font-size: calc(100vw / 1200 * 8);
    }
}

@media (max-width: 1280px){
    html{
        font-size: calc(100vw / 744 * 7);
    }
}

a{
    cursor: pointer;
    text-decoration: none !important;
    color: var(--default_text_color);
}

button{
    outline: none;
    stroke: none;
    border: none;
    cursor: pointer;
}

body{
    font-family: 'Diamart';
    background: #38456F;
    overflow-x: hidden;
}

h1{
    font-weight: 300;
    font-size: 10rem;
    color: var(--default_text_color);
    text-align: center;
}

.hero_animation_wrapper{
    width: 100vw;
    height: 220vh;
    position: relative;
    margin-bottom: -100vh;
}

.hero_scrolling{
    position: sticky;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100vh;
    width: 100vw;
}

.header_wrapper{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 4rem;
    left: 0;
    width: 100vw;
    z-index: 100;
    transition: 500ms;
}

.header{
    display:  flex;
    justify-content: space-between;
    width: var(--desctop_content);
    align-items: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: 600ms;
}

.header.visible{
    opacity: 1;
    transform: translateY(0%);
}

.header_links{
    display: flex;
    gap: 4.6rem;
}

.header_links a{
    font-size: 1.8rem;
}

.header_contact{
    display: flex;
    padding: 1.2rem 4.6rem;
    border-radius: 2.3rem;
    font-size: 2rem;
    background: var(--default_text_color);
    transition: 400ms;
    color: #000000;
    font-weight: 500;
    transition: 500ms;
    
}

.header_contact.hide{
    opacity: 0;
}

.header_contact:hover{
    transform: scale(1.1);
}

.header_logo{
    position: absolute;
    left: 50%;
    top: 10rem;
    transform: translate(-50%, 0%);
    height: 9rem;
    width: auto;
    transition: 600ms
}

.header_logo.small{
    height: 4.6rem;
    top: 0;
}

.hero_text{
    position: fixed;
    z-index: 1;
    left: 50%;
    font-style: italic;
    top: 26rem;
    transform: translate(-50%, 0%);
    text-align: center;
    color: var(--default_text_color);
    font-size: 4.6rem;
    opacity: 1;
    transition: 500ms;
}

.hero_text.hide{
    opacity: 0;
    top: 4rem;
}

.about_wrapper{
    display: flex;
    position: relative;
    z-index: 10;
    align-items: flex-start;
    justify-content: center;
    height: 200vh;
    width: 100vw;
    margin-bottom: -100vh;
    border-radius: 50rem;
}

.about{
    position: sticky;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(#23285B 0%, #181B38 100%);
}


.investors_wrapper{
    display: flex;
    position: relative;
    z-index: 11;
    align-items: flex-start;
    justify-content: center;
    height: 200vh;
    width: 100vw;
    margin-bottom: -100vh;
    border-radius: 50rem;
}

.investors{
    position: sticky;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: #172647;
}

.creators_wrapper{
    display: flex;
    position: relative;
    z-index: 12;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    border-radius: 50rem;
}

.creators{
    position: sticky;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: #748DB5;
}

.container{
    display: flex;
    width: var(--desctop_content);
    max-width: var(--desctop_content);
    justify-content: space-between;
    align-items: flex-end;
}

.section_description{
    display: flex;
    flex-direction: column;
    gap: 4.6rem;
    max-width: 57rem;
}

.description_block{
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.description_title{
    opacity: 0.6;
    font-style: italic;
    font-weight: 300;
    font-size: 3.2rem;
}

.investors .description_title{
    color: #FFFFFF;
}

.creators .description_title{
    color: #050823;
}

.description{
    font-weight: 300;
    font-size: 3.2rem;
    text-wrap: balance;
}

.investors .description{
    color: #FFFFFF;
}

.creators .description{
    color: #050823;
}

.contact_button{
    display: flex;
    padding: 1.6rem 6.4rem;
    font-size: 2.6rem;
    font-weight: 300;
    width: fit-content;
    border-radius: 3.2rem;
    transition: 400ms;
}

.investors .contact_button{
    color: #FFFFFF;
    border: 1px solid #FFFFFF;    
}

.creators .contact_button{
    color: #050823;
    border: 1px solid #050823;
}

.investors .contact_button:hover{
    color: #050823;
    background: #FFFFFF;    
}

.creators .contact_button:hover{
    color: #FFFFFF;
    background: #050823;
}


.section_image{
    margin-top: 30rem;
    width: 53rem;
    overflow: hidden;
    border-radius: 27rem 27rem 0px 0px;
}

.section_image img{
    width: 100%;
    height: auto;
}

.contact{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #38456F;
    padding: 10rem 0rem;
}

.form_container{
    width: 58rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

input{
    width: 100%;
    padding: 2.2rem 3.2rem;
    border: 0.1rem solid rgba(255,255,255,0.6);
    background: none;
    border-radius: 2.6rem;
    stroke: none;
    outline: none;
    color: #FFFFFF;
    font-size: 2rem;
}

textarea{
    width: 100%;
    padding: 2.8rem 3.2rem;
    border: 0.1rem solid rgba(255,255,255,0.6);
    background: none;
    border-radius: 2.6rem;
    stroke: none;
    outline: none;
    color: #FFFFFF;
    font-size: 2rem;
    height: 12rem;
}

.send_button{
    padding: 2.7rem;
    width: 100%;
    background: #FFFFFF;
    color: #000000;
    font-size: 2.2rem;
    border-radius: 4rem;
}

.footer{
    display: flex;
    width: 100%;
    padding: 7rem 10rem;
    background-image: url('../assets/animation_seq/0080.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.footer_content{
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(40px);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4.6rem;
    border-radius: 4.6rem;
    align-items: center;
    justify-content: center;
    padding: 5rem;
}

.footer_content a{
    font-size: 1.6rem;
    color: #FFFFFF;
    font-weight: 500;
}

.footer_content .mail{
    padding: 1.6rem 6.4rem;
    border-radius: 3rem;
    font-size: 1.8rem;
    background: #181B38;
    color: #FFFFFF;
    transition: 400ms;
}

.mail:hover{
    transform: scale(1.1);
}

.thank_you{
    font-size: 10rem;
    color: #FFFFFF;
    font-weight: 300;
}

.footer_links{
    display: flex;
    gap: 3.2rem;
}

.contact_content{
    display: flex;
    gap: 8rem;
    align-items: center;
}

.left_block{
    display: flex;
    width: 58rem;
    height: 56.5rem;
    position: relative;
    align-items: flex-end;
    border-radius: 2.6rem;
    background-image: url(../assets/form_image.png);
    background-size: cover;
    padding: 3rem;
    overflow: hidden;
}

.form_mail_wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    z-index: 6;
    height: fit-content;
    gap: 1.6rem;
    display: flex;
    width: 52rem;
    border-radius: 2.2rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(35px);
}

.icom_wrapper{
    display: flex;
    width: 6rem;
    height: 6rem;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(35px);
    border-radius: 1.6rem;
}

.icom_wrapper img{
    width: 32px;
    height: auto;
}

.form_mail{
    font-size: 38px;
    color: var(--invert_text_color);
    font-weight: 300;
}

.lets_talk{
    font-size: 46px;
    color: var(--default_text_color);
}

@media (max-width: 500px){
    html{
        font-size: calc(100vw / 320 * 9.8);
    }

    h1{
        font-weight: 300;
        font-size: 3rem;
        color: var(--default_text_color);
        text-align: center;
        text-wrap: balance;
    }
    
    .hero_animation_wrapper{
        width: 100vw;
        height: 220vh;
        position: relative;
        margin-bottom: -100vh;
    }
    
    .hero_scrolling{
        position: sticky;
        left: 0;
        top: 0;
        z-index: -1;
        height: 100vh;
        width: 100vw;
    }
    
    .header_wrapper{
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0px;
        padding-top: 22px;
        height: 72px;
        backdrop-filter: blur(12px);
        left: 0;
        width: 100vw;
        z-index: 100;
    }
    
    .header{
        display:  flex;
        justify-content: space-between;
        width: var(--desctop_content);
        align-items: center;
        opacity: 0;
        transform: translateY(-100%);
        transition: 600ms;
    }
    
    .header.visible{
        opacity: 1;
        transform: translateY(0%);
    }
    
    .header_links{
        display: none;
    }
    
    .header_contact{
        display: none;
    }
    
    .header_logo{
        position: absolute;
        left: 50%;
        top: 56px;
        transform: translate(-50%, 0%);
        height: 55px;
        width: auto;
        transition: 600ms
    }
    
    .header_logo.small{
        height: 2.6rem;
        top: 22px;
    }
    
    .hero_text{
        position: fixed;
        z-index: 1;
        left: 50%;
        font-style: italic;
        top: 132px;
        transform: translate(-50%, 0%);
        color: var(--default_text_color);
        font-size: 2rem;
        text-align: center;
        opacity: 1;
        transition: 500ms;
    }
    
    .hero_text.hide{
        opacity: 0;
        top: 4rem;
    }
    
    .about_wrapper{
        display: flex;
        position: relative;
        z-index: 10;
        align-items: flex-start;
        justify-content: center;
        height: 200vh;
        width: 100vw;
        margin-bottom: -100vh;
    }
    
    .about{
        position: sticky;
        left: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        height: 100vh;
        box-shadow: 0px -160px 45px 0px rgba(0, 0, 0, 0.00), 0px -102px 41px 0px rgba(0, 0, 0, 0.01), 0px -58px 35px 0px rgba(0, 0, 0, 0.03), 0px -26px 26px 0px rgba(0, 0, 0, 0.04), 0px -6px 14px 0px rgba(0, 0, 0, 0.05);
        border-radius: 3rem 3rem 0 0;
        background: radial-gradient(#23285B 0%, #181B38 100%);
    }
    
    
    .investors_wrapper{
        display: flex;
        position: relative;
        z-index: 11;
        align-items: flex-start;
        justify-content: center;
        height: fit-content;
        width: 100vw;
        margin-bottom: 0;
        border-radius: 50rem;
    }
    
    .investors{
        position: sticky;
        left: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        padding: 46px 0px;
        min-height: 100vh;
        height: fit-content;
        box-shadow: 0px -160px 45px 0px rgba(0, 0, 0, 0.00), 0px -102px 41px 0px rgba(0, 0, 0, 0.01), 0px -58px 35px 0px rgba(0, 0, 0, 0.03), 0px -26px 26px 0px rgba(0, 0, 0, 0.04), 0px -6px 14px 0px rgba(0, 0, 0, 0.05);
        background: #172647;
    }
    
    .creators_wrapper{
        display: flex;
        position: relative;
        z-index: 12;
        align-items: flex-start;
        justify-content: center;
        height: fit-content;
        width: 100vw;
        border-radius: 50rem;
    }
    
    .creators{
        position: sticky;
        left: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        padding: 46px 0px;
        box-shadow: 0px -160px 45px 0px rgba(0, 0, 0, 0.00), 0px -102px 41px 0px rgba(0, 0, 0, 0.01), 0px -58px 35px 0px rgba(0, 0, 0, 0.03), 0px -26px 26px 0px rgba(0, 0, 0, 0.04), 0px -6px 14px 0px rgba(0, 0, 0, 0.05);
        min-height: 100vh;
        height: fit-content;
        background: #748DB5;
    }

    .creators .container{
        flex-direction: column;
    }
    
    .container{
        display: flex;
        gap: 32px;
        flex-direction: column-reverse;
        width: var(--desctop_content);
        max-width: var(--desctop_content);
        justify-content: center;
        align-items: center;
    }
    
    .section_description{
        display: flex;
        flex-direction: column;
        gap: 3.2rem;
        max-width: 90%;
    }
    
    .description_block{
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .description_title{
        opacity: 0.6;
        font-style: italic;
        font-weight: 300;
        font-size: 20px;
    }
    
    .investors .description_title{
        color: #FFFFFF;
    }
    
    .creators .description_title{
        color: #050823;
    }
    
    .description{
        font-weight: 300;
        font-size: 20px;
        text-wrap: balance;
    }
    
    .investors .description{
        color: #FFFFFF;
    }
    
    .creators .description{
        color: #050823;
    }
    
    .contact_button{
        display: block;
        padding: 1.6rem 6.4rem;
        font-size: 18px;
        font-weight: 300;
        width: 100%;
        text-align: center;
        border-radius: 32px;
        transition: 400ms;
    }
    
    .investors .contact_button{
        color: #FFFFFF;
        border: 1px solid #FFFFFF;    
    }
    
    .creators .contact_button{
        color: #050823;
        border: 1px solid #050823;
    }
    
    .investors .contact_button:hover{
        color: #050823;
        background: #FFFFFF;    
    }
    
    .creators .contact_button:hover{
        color: #FFFFFF;
        background: #050823;
    }
    
    
    .section_image{
        margin-top: 0;
        width: 90%;
        height: 360px;
        overflow: hidden;
        border-radius: 27rem 27rem 0px 0px;
    }
    
    .section_image img{
        width: 100%;
        height: auto;
    }
    
    .contact{
        width: 100vw;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #38456F;
        padding: 0;
    }
    
    .form_container{
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    input{
        width: 100%;
        padding: 22px 22px;
        border: 0.1rem solid rgba(255,255,255,0.6);
        background: none;
        border-radius: 22px;
        stroke: none;
        outline: none;
        color: #FFFFFF;
        font-size: 16px;
    }
    
    textarea{
        width: 100%;
        padding: 22px 22px;
        border: 0.1rem solid rgba(255,255,255,0.6);
        background: none;
        border-radius: 22px;
        stroke: none;
        outline: none;
        color: #FFFFFF;
        font-size: 16px;
        height: 120px;
    }
    
    .send_button{
        margin-top: 22px;
        padding: 22px;
        width: 100%;
        background: #FFFFFF;
        color: #000000;
        font-size: 18px;
        border-radius: 4rem;
    }
    
    .footer{
        display: flex;
        width: 100%;
        padding: 7rem 10rem;
        background-image: url('../assets/animation_seq/0080.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    
    .footer_content{
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(40px);
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4.6rem;
        border-radius: 4.6rem;
        align-items: center;
        justify-content: center;
        padding: 5rem;
    }
    
    .footer_content a{
        font-size: 1.6rem;
        color: #FFFFFF;
        font-weight: 500;
    }
    
    .footer_content .mail{
        padding: 1.6rem 6.4rem;
        border-radius: 3rem;
        font-size: 1.8rem;
        background: #181B38;
        color: #FFFFFF;
        transition: 400ms;
    }
    
    .mail:hover{
        transform: scale(1.1);
    }
    
    .thank_you{
        font-size: 10rem;
        color: #FFFFFF;
        font-weight: 300;
    }
    
    .footer_links{
        display: flex;
        gap: 3.2rem;
    }
    
    .contact_content{
        display: flex;
        padding: 46px 0px;
        flex-direction: column;
        width: 100%;
        gap: 32px;
        align-items: center;
    }
    
    .left_block{
        display: flex;
        width: 90%;
        height: 200px;
        position: relative;
        align-items: flex-end;
        border-radius: 22px;
        background-image: url(../assets/form_image.png);
        background-size: cover;
        padding: 22px;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .form_mail_wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 22px;
        z-index: 6;
        height: fit-content;
        gap: 8px;
        display: flex;
        width: fit-content;
        border-radius: 2.2rem;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(35px);
    }
    
    .icom_wrapper{
        display: none;
    }
    
    .icom_wrapper img{
        width: 32px;
        height: auto;
    }
    
    .form_mail{
        font-size: 32px;
        color: var(--invert_text_color);
        font-weight: 300;
    }
    
    .lets_talk{
        margin-bottom: 22px;
        font-size: 36px;
        color: var(--default_text_color);
    }
}
