/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Alliance';
    src: url('./fonts/Alliance-PlattLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alliance';
    src: url('./fonts/Alliance-PlattRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alliance';
    src: url('./fonts/Alliance-PlattMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alliance';
    src: url('./fonts/Alliance-PlattSemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alliance';
    src: url('./fonts/Alliance-PlattBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alliance';
    src: url('./fonts/Alliance-PlattExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AllianceText';
    src: url('./fonts/Alliance-TextLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AllianceText';
    src: url('./fonts/Alliance-TextRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AllianceText';
    src: url('./fonts/Alliance-TextMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AllianceText';
    src: url('./fonts/Alliance-TextSemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AllianceText';
    src: url('./fonts/Alliance-TextBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AllianceText';
    src: url('./fonts/Alliance-TextExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Variables */
:root{
    --blue: #092346;
    --green: #E4FF04;
    --white: #FFFFFF;
    --blue-background: #DEF2F8;
    --lime-hover: #D7EF08;
    --medium-blue: #4793DF;
}   

/* HTML */
html{
    scroll-behavior: smooth;
}

/* Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-size: 16px;
    font-family: 'Alliance', sans-serif;
    font-weight: 400;
    color: var(--blue);
    background-color: var(--blue-background);
}

a{
    text-decoration: none;
    color: inherit;
}

main {
    width: 100%;
    /* overflow: hidden; */
}

button {
    outline: none;
    border: none;
    cursor: pointer;
}

input {
    outline: none;
    border: none;
}

.container {
    width: 100%;
    max-width: 1460px;
    padding-inline: 1.25rem;
    margin: 0 auto;
}

.primary-button{
    border-radius: 200px;
    background-color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 4.652rem;
    padding-inline: 2rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.064px;
    font-family: 'Figtree', sans-serif;
    transition: background-color 0.3s ease-in-out;
    color: #1D1F1E;
}

.primary-button:hover{
    background-color: var(--lime-hover);
}

.primary-button:focus {
    box-shadow: 0 0 0 2px inset #AEB5B4, 0 0 0 4px inset var(--white);
}

.primary-button.disabled{
    background-color: #AEB5B4;
    color: var(--white);
    cursor: default;
}

.primary-button.disabled img{
    filter: invert(1) brightness(2)
}

.primary-button img{
    margin-left: 10px;
}

.secondary-button{
    border-radius: 200px;
    box-shadow: 0px 0px 0px 1px inset var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    transition: box-shadow 0.3s ease-in-out;
}

.secondary-button:hover{
    box-shadow: 0px 0px 0px 1px inset #09234680;
}

.secondary-button:focus{
    box-shadow: 0px 0px 0px 2px inset var(--blue);
}

.secondary-button.disabled{
    box-shadow: 0px 0px 0px 1px inset #AEB5B4;
    color: #AEB5B4;
    cursor: default;
}

.secondary-button.small{
    height: 3rem;
    padding-inline: 1.875rem;
    font-weight: 500;
    letter-spacing: -0.064px;
    font-size: 22px;
    line-height: 1.5rem;
    font-family: 'Alliance', sans-serif;
    background-color: transparent;
    color: var(--blue);
}

.secondary-button.big{
    height: 4.625rem;
    padding-inline: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.064px;
    font-family: 'Figtree', sans-serif;
    line-height: 1.5rem;
}

/* Header */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    background-color: var(--white);
    z-index: 100;
    font-size: 22px;
}

header .header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

header .header-content .logo{
    display: flex;
    max-width: 220px;
}

header .header-content .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .header-content nav{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

header .header-content nav ul{
    list-style: none;
    display: flex;
    gap: 2rem;
}

header .header-content nav ul li a{
    letter-spacing: -0.064px;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

header .header-content nav ul li a:hover{
    color: var(--medium-blue);
}

header .header-content nav ul li a.active{
    color: var(--blue);
    position: relative;
}

header .header-content nav ul li a.active::after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--blue);
}

header .header-content nav ul li a.disabled{
    color: #AEB5B4;
}

header .hamburger-menu {
    cursor: pointer;
    display: none;
    flex-flow: column wrap;
    height: 52px;
    justify-content: space-between;
    z-index: 1000;
    padding: 1rem;
}

header .hamburger-menu .bar-bottom,
header .hamburger-menu .bar-top {
    background: var(--blue);
    height: 2px;
    margin: 0px 0;
    transform-origin: left;
    transition: all .5s;
    width: 24px;
}

header .hamburger-menu .bar-middle {
    background: var(--blue);
    height: 2px;
    margin: 0px 0;
    transform-origin: left;
    transition: all .5s;
    width: 24px;
    align-self: flex-end;
}

header .hamburger-menu.open .bar-top {
    transform: rotate(45deg);
    width: 25px;
}

header .hamburger-menu.open .bar-middle {
    opacity: 0;
    transform: translateX(1rem)
}

header .hamburger-menu.open .bar-bottom {
    transform: rotate(-45deg);
    width: 25px;
}

/* HOME PAGE */

/* Hero */
.hero{
    display: flex;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero .background{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.hero .peptid{
    position: absolute;
    right: 0;
    top: 0;
}

.hero .container{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6.875rem;
}

.hero .hero-content{
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    gap: 2rem;
}

.hero .hero-content h1{
    font-size: 6.875rem;
    line-height: 7.5rem;
    letter-spacing: -0.01em;
    font-weight: 500;
    max-width: 1160px;
}

.hero .hero-content h3{
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 2rem;
    letter-spacing: -0.03em;
    color: var(--blue);
    opacity: 0.7;
    max-width: 796px;
    font-family: 'AllianceText', sans-serif;
}

.hero .hero-content .buttons{
    display: flex;
    gap: 1.3125rem;
}

.hero .background-mobile{
    display: none;
}

/* Scroll animation */
.scroll-container {
    position: absolute;
    bottom: -25px;
    right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.875rem;
    color: var(--blue);
    margin-bottom: 1.5rem;
    font-family: 'AllianceText', sans-serif;
}

.mouse {
    width: 2rem;
    height: 3.125rem;
    border: 1px solid #09234666;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.scroll-line {
    width: 1px;
    height: 12px;
    background: #09234666;
    border-radius: 2px;
    animation: scroll-animation 2s infinite ease-in-out;
}

@keyframes scroll-animation {
    0% {
        transform: translateY(-12px);
        opacity: 0.5;
    }
    25% {
        opacity: 1;
    }
    100% {
        transform: translateY(45px);
        opacity: 0;
    }
}


/* Key insights */
.key-insights{
    margin-top: 9.375rem;
}

.key-insights .key-insights-content{
    display: grid;
    grid-template-columns: repeat(3, 350px);
    justify-content: space-between;
    padding-bottom: 6.75rem;
    border-bottom: 1px solid #09234633;
}

.key-insights .key-insights-content h4{
    font-size: 4.25rem;
    line-height: 5.375rem;
    font-weight: 500;
}

.key-insights .key-insights-content p{
    margin-top: 1.3125rem;
    font-size: 1.5rem;
    line-height: 2.375rem;
    font-weight: 400;
    opacity: 0.7;
    max-width: 350px;
    font-family: 'AllianceText', sans-serif;
}

/* Market size */
.market-size{
    margin-top: 9.375rem;
}

.market-size .market-size-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.market-size .market-size-content h2{
    font-size: 5rem;
    line-height: 5.375rem;
    font-weight: 500;
    max-width: 542px;
}

.market-size .market-size-content span{
    opacity: 0.7;
    font-weight: 600;
    font-size: 1.625rem;
    line-height: 1.375rem;
    margin-top: 0.75rem;
    display: block;
}

.market-size .chart{
    display: flex;
}

.market-size .chart svg{
    width: 100%;
    /* height: fit-content; */
}

.market-size .chart svg .line{
    cursor: pointer;
}

.market-size .chart svg g.line{
    width: 30px;
}

.market-size .chart svg .shadow,
.market-size .chart svg .box,
.market-size .chart svg .number-value{
    display: none;
}

.market-size .chart svg .line:hover{
    position: relative;
    z-index: 1000;
}

.market-size .chart svg .line:hover .shadow,
.market-size .chart svg .line:hover .box,
.market-size .chart svg .line:hover .number-value{
    display: block;
}

@media (max-width: 600px){
    .market-size .chart svg .line:hover .number-value,
    .market-size .chart svg .line:hover .shadow,
    .market-size .chart svg .line:hover .box{
        display: none;
    }

    .market-size .chart svg .line.hover-active .box,
    .market-size .chart svg .line.hover-active .number-value {
        animation: fadeIn 0.5s ease-in-out forwards;
        display: block;
    }

    .market-size .chart svg .line:active .shadow,
    .market-size .chart svg .line:active .box,
    .market-size .chart svg .line:active .number-value{
        display: block;
    }

    @keyframes fadeIn {
        0% { opacity: 0; }
        100% { opacity: 1; }
    }
}

.market-size .chart img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-size .mobile{
    display: none;
}

/* Peptide future */
.peptide-future{
    margin-top: 9.375rem;
    padding: 18.125rem 0;
    background-color: var(--blue);
    position: relative;
}

.peptide-future .peptide-content{
    display: flex;
}

.peptide-future .peptide-anim{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.peptide-future .peptide-anim img{
    position: sticky;
    top: 20px;
    right: 20px;
}

.peptide-future .peptide-content .future{
    display: flex;
    flex-direction: column;
    gap: 18.75rem;
    max-width: 560px;
    z-index: 10;
}

.peptide-future .peptide-content h3{
    color: var(--white);
    font-size: 3.375rem;
    line-height: 5rem;
    font-weight: 500;
}

.peptide-future .peptide-content p{
    color: var(--white);
    opacity: 0.7;
    font-size: 1.5rem;
    line-height: 2.375rem;
    letter-spacing: -0.03em;
    font-weight: 300;
    margin-top: 2rem;
    font-family: 'AllianceText', sans-serif;
}

/* Mission */
.mission{
    padding: 12.5rem 0 9.625rem 0;
    background-color: var(--green);
}

.mission p{
    font-size: 3.375rem;
    line-height: 5.3125rem;
    font-weight: 400;
    font-family: 'AllianceText', sans-serif;
}

.mission p strong{
    font-weight: 700;
    font-family: 'AllianceText', sans-serif;
}

/* Mission goals */
.mission-goals{
    margin-top: 12.5rem;
    margin-bottom: 12.5rem;
    position: relative;
}

.mission-goals img.desktop{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.mission-goals .mission-goals-content{
    position: relative;
    z-index: 2;
}

.mission-goals .mission-grid{
    max-width: 670px;
    position: relative;
}

.mission-goals .mission-goals-content h2{
    font-size: 5.625rem;
    font-weight: 400;
    line-height: 6.1875rem;
    letter-spacing: -0.01em;
}

.mission-goals .mission-grid{
    margin-top: 5.375rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.875rem;
}

.mission-goals .mission-item{
    padding-top: 1.5rem;
}

.mission-goals .mission-item .icon{
    margin-bottom: 2.625rem;
}

.mission-goals .mission-item h3{
    font-size: 2.5rem;
    line-height: 3.75rem;
    font-weight: 500;
    max-width: 430px;
    letter-spacing: -0.01em;
}

.mission-goals .mission-item p{
    opacity: 0.7;
    font-size: 1.5rem;
    line-height: 2.5rem;
    margin: 1.375rem 0 2rem 0;
    font-weight: 400;
    letter-spacing: -0.03em;
    font-family: 'AllianceText', sans-serif;
}

.mission-goals .mobile{
    display: none;
}

/* How it works */
.how-it-works{
    background: #027BC2;
    padding: 12.5rem 0;
    position: relative;
    overflow: hidden;
}

.how-it-works .how-it-works-content{
    position: relative;
    z-index: 2;
}

.how-it-works .how-it-works-content h2{
    font-size: 5.625rem;
    line-height: 6.1875rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--white);
}

.how-it-works .how-it-works-content .steps{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.625rem;
    margin-top: 5.625rem;
}

.how-it-works .how-it-works-content h5{
    font-size: 2.5rem;
    line-height: 3.75rem;
    color: var(--white);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-top: 2rem;
}

.how-it-works .how-it-works-content p{
    color: var(--white);
    opacity: 0.7;
    font-size: 1.5rem;
    line-height: 2.25rem;
    font-weight: 300;
    max-width: 290px;
    font-family: 'AllianceText', sans-serif;
}

.how-it-works .how-it-works-content span{
    color: #4ED8FF;
    font-size: 1.875rem;
    line-height: 2.5rem;
    font-weight: 500;
}

.how-it-works .how-it-works-content .step-number{
    display: flex;
    align-items: center;
    gap: 16px;
}

.how-it-works .how-it-works-content .line svg{
    width: 100%;
}

.how-it-works .peptid{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    mix-blend-mode: multiply;
}

/* Community and footer */
.community-and-footer{
    background: linear-gradient(0deg, #092346, #092346);
    padding: 12.5rem 0 9.375rem 0;
    position: relative;
    overflow: hidden;
}

.community-and-footer::before{
    content: '';
    background: radial-gradient(148.78% 93.33% at -5.81% 141%, #027BC2 0%, rgba(2, 123, 194, 0) 100%);   
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.community-and-footer::after{
    content: '';
    background: linear-gradient(0deg, #092346, #092346);  
    bottom: 0;
    right: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}

.community-and-footer .background{
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
}

.community-and-footer .background .mobile{
    display: none;
}

.community-and-footer .background img{
    mix-blend-mode: overlay;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community-and-footer .community-content{
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-bottom: 12.5rem;
    z-index: 2;
    border-bottom: 1px solid #FFFFFF33;
}

.community-and-footer .community-content .title-with-cta{
    display: flex;
    flex-direction: column;
}

.community-and-footer .community-content h6{
    color: var(--white);
    font-size: 1.125rem;
    line-height: 2.125rem;
    font-weight: 500;
}

.community-and-footer .community-content h2{
    color: var(--white);
    font-size: 5rem;
    line-height: 5.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-top: 3.25rem;
    max-width: 728px;
    font-family: 'AllianceText', sans-serif;
}

.community-and-footer .community-content .cta-buttons{
    display: flex;
    gap: 1.3125rem;
    margin-top: auto;
}

.community-and-footer .cta-buttons .secondary-button{
    color: var(--white);
    box-shadow: 0px 0px 0px 1px inset var(--white);
}

.community-and-footer .cta-buttons .secondary-button:hover{
    box-shadow: 0px 0px 0px 1px inset #AEB5B4;
}

.community-and-footer .roles{
    display: flex;
    flex-direction: column;
    gap: 5.125rem;
    list-style-type: none;
}

.community-and-footer .roles li{
    padding-left: 4rem;
}

.community-and-footer .roles h5{
    color: var(--white);
    font-size: 2.5rem;
    line-height: 3.75rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    position: relative;
}

.community-and-footer .roles h5::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #4ED8FF;
    top: 50%;
    left: -4rem;
    border-radius: 50%;
    transform: translate(0, -50%);
}

.community-and-footer .roles p{
    color: var(--white);
    opacity: 0.7;
    max-width: 548px;
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 1.3125rem;
    font-family: 'AllianceText', sans-serif;
}

footer{
    position: relative;
    z-index: 10;
}

footer .logo-and-nav{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 8.125rem 0rem 7rem 0rem;
    border-bottom: 1px solid #FFFFFF33;
}

footer .logo-and-nav h6{
    color: var(--white);
    opacity: 0.5;
    font-size: 1.125rem;
    line-height: 2.125rem;
    font-weight: 500;
    letter-spacing: -0.04em;
}

footer .logo-and-nav .contact,
footer .logo-and-nav .nav{
    display: flex;
    flex-direction: column;
}

footer .logo-and-nav .contact a{
    margin-top: auto;
    color: var(--white);
    text-decoration: underline;
    font-size: 1.3125rem;
    line-height: 2rem;
    letter-spacing: -0.04em;
    font-weight: 400;
    font-family: 'AllianceText', sans-serif;
    transition: color 0.3s ease-in-out;
}

footer .logo-and-nav .nav ul{
    list-style: none;
    display: flex;
    gap: 2.625rem;
    margin-top: auto;
}

footer .logo-and-nav .nav ul li a{
    color: var(--white);
    font-size: 1.3125rem;
    line-height: 2rem;
    letter-spacing: -0.04em;
    font-weight: 400;
    font-family: 'AllianceText', sans-serif;
    transition: color 0.3s ease-in-out;
}

footer .logo-and-nav .nav ul li a:hover,
footer .logo-and-nav .contact a:hover{
    color: var(--medium-blue);
}

footer .logo-and-nav .nav ul li a.active{
    color: var(--white);
    position: relative;
}

footer .logo-and-nav .nav ul li a.disabled{
    color: #AEB5B4;
}

footer .logo-and-nav .nav ul li a.active::after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--white);
}

footer .logo-text h5{
    margin-top: 1.25rem;
    color: var(--white);
    opacity: 0.7;
    font-size: 1.5rem;
    line-height: 2.125rem;
    font-weight: 300;
    max-width: 430px;
    font-family: 'AllianceText', sans-serif;
}

footer .social-and-copyright{
    display: flex;
    justify-content: space-between;
    padding-top: 4.5rem;
}

footer .social-icons{
    display: flex;
    gap: 3.625rem;
}

footer .social-icons a{
    display: flex;
}

footer .social-icons a svg path{
    transition: fill 0.3s ease-in-out;
}

footer .social-icons a:hover svg path{
    fill: var(--medium-blue);
}

footer p.copyright{
    color: var(--white);
    opacity: 0.5;
    font-size: 1.3125rem;
    line-height: 2rem;
    letter-spacing: -0.01em;
    font-weight: 300;
    font-family: 'AllianceText';
}

footer .logo-text .logo{
    max-width: 240px;
}

footer .logo-text .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1600px){
    .container{
        max-width: 1310px;
    }

    .primary-button{
        height: 3.5rem;
        font-size: 1.125rem;
        line-height: 1.5rem;
        padding-inline: 1.5rem;
    }

    .secondary-button.big{
        height: 3.5rem;
        font-size: 1.125rem;
        line-height: 1.5rem;
        padding-inline: 1.5rem;
    }

    .primary-button img{
        margin-left: 8px;
        max-width: 20px;
        max-height: 20px;
        margin-top: -2px;
    }

    .secondary-button.small{
        height: 2.75rem;
    }

    .hero .peptid,
    .hero .background{
        height: 100vh;
    }

    .hero .hero-content{
        gap: 1.5rem;
    }
    
    .hero .hero-content h1{
        font-size: 5.125rem;
        line-height: 5.625rem;
        max-width: 870px;
    }
    
    .hero .hero-content h3{
        font-size: 1.25rem;
        line-height: 2rem;
        max-width: 796px;
    }

    .hero .hero-content .buttons{
        gap: 1rem;
    }

    .key-insights{
        margin-top: 7rem;
    }

    .key-insights .key-insights-content{
        padding-bottom: 5.125rem;
        grid-template-columns: repeat(3, 300px);
        justify-content: space-between;
    }

    .key-insights .key-insights-content h4{
        font-size: 3.125rem;
        line-height: 4.0625rem;
    }

    .key-insights .key-insights-content p{
        margin-top: 1rem;
        font-size: 1.125rem;
        line-height: 1.75rem;
        max-width: 300px;
    }

    .key-insights .key-insights-content .key-item{
        max-width: 300px;
    }

    .market-size{
        margin-top: 7rem;
    }

    .market-size .market-size-content h2{
        font-size: 3.75rem;
        line-height: 4.0625rem;
    }

    .market-size .market-size-content span{
        margin-top: 0.625rem;
        font-size: 1.25rem;
        line-height: 2rem;
    }

    .peptide-future{
        margin-top: 7rem;
        padding: 13.125rem 0;
    }

    .peptide-future .peptide-content h3{
        font-size: 2.5rem;
        line-height: 3.75rem;
    }

    .peptide-future .peptide-content p{
        margin-top: 1.5rem;
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .peptide-future .peptide-content .future{
        max-width: 420px;
        gap: 13.75rem;
    }

    .peptide-future .peptide-anim{
        max-width: 792px;
    }

    .peptide-future .peptide-anim img{
        width: 100%;
        object-fit: cover;
    }

    .mission{
        padding: 9.375rem 0 7.125rem 0;
    }

    .mission p{
        font-size: 2.5rem;
        line-height: 4rem;
    }

    .mission-goals{
        margin: 9.375rem 0;
    }

    .mission-goals .mission-grid{
        max-width: 320px;
    }

    .mission-goals .mission-goals-content h2{
        font-size: 4.25rem;
        line-height: 4.625rem;
    }

    .mission-goals .mission-grid{
        margin-top: 4.0625rem;
        gap: 1.5rem;
    }

    .mission-goals .mission-item .icon{
        margin-bottom: 2rem;
    }

    .mission-goals .mission-item h3{
        font-size: 1.875rem;
        line-height: 2.875rem;
        max-width: 350px;
    }

    .mission-goals .mission-item p{
        margin-top: 1rem;
        font-size: 1.125rem;
        line-height: 1.875rem;
        max-width: 320px;
    }

    .how-it-works{
        padding: 9.375rem 0;
    }

    .how-it-works .how-it-works-content h2{
        font-size: 4.25rem;
        line-height: 4.625rem;
    }

    .how-it-works .how-it-works-content .steps{
        margin-top: 4.25rem;
        gap: 1rem;
    }

    .how-it-works .how-it-works-content span{
        font-size: 1.375rem;
        line-height: 1.875rem;
    }

    .how-it-works .how-it-works-content h5{
        margin-top: 1.5rem;
        font-size: 1.875rem;
        line-height: 2.875rem;
    }

    .how-it-works .how-it-works-content p{
        margin-top: 0.75rem;
        font-size: 1.125rem;
        line-height: 1.75rem;
        max-width: 230px;
    }

    .community-and-footer{
        padding: 9.375rem 0 7rem 0;
    }

    .community-and-footer .community-content h6{
        font-size: 0.875rem;
        line-height: 1.625rem;
    }

    .community-and-footer .community-content h2{
        font-size: 3.75rem;
        line-height: 4.125rem;
        max-width: 540px;
    }

    .community-and-footer .roles li{
        padding-left: 3.125rem;
    }

    .community-and-footer .roles h5{
        font-size: 1.875rem; 
        line-height: 2.875rem;
    }

    .community-and-footer .roles h5::before{
        left: -3.125rem;
    }

    .community-and-footer .roles p{
        margin-top: 1rem;
        font-size: 1.125rem;
        line-height: 1.625rem;
        max-width: 410px;
    }

    .community-and-footer .community-content{
        padding-bottom: 9.375rem;
    }

    footer .logo-and-nav{
        padding: 6rem 0 5.25rem 0;
    }

    footer .social-and-copyright{
        padding-top: 3.375rem;
    }

    footer .social-icons{
        gap: 2.75rem;
    }

    footer .social-icons a{
        max-height: 1.25rem;
    }

    footer .social-icons a svg{
        height: 100%;
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 1440px){
    .container{
        max-width: 1110px;
    }

    .key-insights .key-insights-content{
        grid-template-columns: repeat(3, 260px);
    }
}

@media (max-width: 1200px){
    .container{
        max-width: 90%;
        padding-inline: 0;
    }

    footer .logo-and-nav{
        flex-wrap: wrap;
        gap: 2rem;
    }

    footer .logo-and-nav .logo-text{
        flex: 1 1 100%;
    }

    footer .logo-and-nav .contact a,
    footer .logo-and-nav .nav ul{
        margin-top: 1rem;
    }
    
    .key-insights .key-insights-content {
        gap: 2rem;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .mission-goals .mission-grid{
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 900px){
    .how-it-works .how-it-works-content .steps{
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2rem;
    }

    .market-size .market-size-content{
        flex-direction: column;
    }

    .market-size .market-size-content .title{
        align-self: flex-start;
    }

    .community-and-footer .community-content{
        flex-direction: column;
        gap: 3rem;
    }

    .community-and-footer .community-content h2{
        max-width: initial;
    }

    .community-and-footer .community-content .cta-buttons{
        margin-top: 1.5rem;
    }

    .community-and-footer .roles{
        gap: 1.5rem;
    }

    .mission{
        padding: 8.375rem 0 6.125rem 0;
    }

    .mission-goals{
        margin: 8.375rem 0;
    }

    .how-it-works{
        padding: 8.375rem 0;
    }

    .community-and-footer{
        padding: 8.375rem 0 6rem 0;
    }

    .community-and-footer .community-content{
        padding-bottom: 6.375rem;
    }

    .hero .peptid, .hero .background{
        max-height: 100vh;
    }

    .hero .container{
        bottom: 1.5rem;
    }

    .scroll-container {
        display: none;
    }
    
    header .header-content nav ul{
        gap: 1.2rem;
    }
    
    header .secondary-button.small {
        font-size: 18px;
    }
    
    header .header-content .logo {
        max-width: 180px;
    }
}

@media (max-width: 767px){
    
    header .header-content .secondary-button{
        display: none;
    }

    header .header-content .logo{
        position: relative;
        z-index: 3;
    }

    header .header-content::after{
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--white);
        top: 0;
        left: 0;
        z-index: 2;
    }

    header .header-content nav{
        display: none;
        flex-direction: column;
        position: fixed;
        width: calc(100vw - 1rem);
        background: var(--white);
        top: 100px;
        left: 50%;
        align-items: center;
        padding: 0 1.5rem;
        transform: translate(-50%, -100%);
        transition: transform 0.3s ease-in-out;
        z-index: -10;
        overflow: scroll;
        padding: 2rem 0 2rem 0;
    }

    header .header-content nav.show{
        display: flex;
    }

    header .header-content nav.active{
        transform: translate(-50%, 0);
    }

    header .hamburger-menu {
        display: flex;
    }
}

@media (max-width: 600px){
    .container{
        max-width: 100%;
        padding-inline: 1.5rem;
    }

    .hero{
        height: 100dvh;
    }

    .hero .hero-content h1{
        font-size: 3.125rem;
        line-height: 3.4375rem;
    }

    .hero .hero-content{
        gap: 1.25rem;
    }

    .hero .hero-content h3{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .hero .hero-content .buttons{
        gap: 0.5rem;
        flex-direction: column;
    }

    .hero .hero-content .buttons a,
    .hero .hero-content .buttons button{
        width: 100%;
    }

    .hero .background-mobile{
        display: block;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: top;
    }

    /* .hero .background, */
    .hero .peptid{
        display: none;
    }

    .key-insights{
        margin-top: 4.375rem;
    }

    .key-insights .key-insights-content{
        grid-template-columns: 1fr;
        gap: 2rem;
        border-bottom: none;
        padding-bottom: 0;
    }

    .key-insights .key-insights-content .key-item{
        border-bottom: 2px solid #4ED8FF;
        padding-bottom: 1.875rem;
    }

    .key-insights .key-insights-content h4{
        font-size: 2.5rem;
        line-height: 3rem;
        font-weight: 600;
    }

    .key-insights .key-insights-content p{
        margin-top: 1.875rem;
        max-width: 275px
    }

    .key-insights .key-insights-content .key-item{
        max-width: initial;
    }

    .market-size{
        margin-top: 4.375rem;
    }

    .market-size .market-size-content{
        flex-direction: column;
        gap: 2.5rem;
    }

    .market-size .value-text {
        opacity: 0;
    }
    

    .market-size .market-size-content h2{
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .market-size .market-size-content span{
        margin-top: 1.25rem;
        font-size: 1.125rem;
        line-height: 1.75rem;
        font-weight: 500;
    }

    .market-size .mobile{
        display: block;
    }

    .market-size .desktop{
        display: none;
    }

    .market-size .chart svg{
        height: fit-content;
    }

    .market-size .chart{
        width: calc(100% + 1rem);
        margin-left: 1rem;
    }

    .peptide-future{
        margin-top: 4rem;
        padding: 3.25rem 0;
    }

    .peptide-future .peptide-anim{
        display: none;
    }

    .peptide-future .peptide-content .future{
        gap: 4.5rem;
    }

    .peptide-future .peptide-content h3{
        font-size: 1.75rem;
        line-height: 2.8125rem;
        max-width: 308px;
    }

    .peptide-future .peptide-content p{
        margin-top: 1rem;
    }

    .mission{
        padding: 5.375rem 0;
    }

    .mission p{
        font-size: 1.75rem;
        line-height: 2.75rem;
    }

    .mission-goals{
        margin: 1.3125rem 0 5rem 0;
        overflow: hidden;
    }

    .mission-goals img.desktop{
        display: none;
    }

    .mission-goals .mobile{
        display: flex;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .mission-goals .mission-goals-content h2{
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .mission-goals .mission-grid{
        margin-top: 2rem;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: initial;
    }

    .mission-goals .mission-item{
        padding-top: 0;
    }

    .mission-goals .mission-item .icon{
        margin-bottom: 1rem;
    }

    .mission-goals .mission-item h3{
        font-size: 1.875rem;
        line-height: 2.5rem;
    }

    .mission-goals .mission-item p{
        max-width: 330px;
    }

    .how-it-works{
        padding: 5.375rem 0 5.125rem 0;
    }

    .how-it-works .peptid{
        display: none;
    }

    .how-it-works .how-it-works-content .steps{
        grid-template-columns: 1fr;
        gap: 0rem;
        margin-top: 2.5rem;
    }

    .how-it-works .how-it-works-content .step{
        padding-left: 1.3125rem;
        padding-bottom: 2.5rem;
        position: relative;
    }

    .how-it-works .how-it-works-content .step:last-child{
        padding-bottom: 0px;
    }

    .how-it-works .how-it-works-content h2{
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .how-it-works .how-it-works-content span{
        font-size: 1.875rem;
        line-height: 2.5rem;
        position: relative;
    }

    .how-it-works .how-it-works-content h5{
        font-size: 1.875rem;
        line-height: 2.5rem;
        margin-top: 1rem;
    }
    
    .how-it-works .how-it-works-content span::before{
        content: '';
        position: absolute;
        top: 12.5px;
        left: -26px;
        width: 10px;
        height: 10px;
        background-color: #4ED8FF;
        border-radius: 50%;
    }

    .how-it-works .how-it-works-content .step:not(:last-child)::before {
        content: "";
        position: absolute;
        top: 11px;
        left: -1px;
        width: 2px;
        height: 100%;
        background: radial-gradient(circle, #4ED8FF 30%, transparent 31%);
        background-size: 2px 7px;
    }

    .how-it-works .how-it-works-content p{
        margin-top: 1rem;
        max-width: initial;
    }

    .how-it-works .how-it-works-content .step-number .line{
        display: none;
    }

    .community-and-footer{
       padding: 3.25rem 0;
    }

    .community-and-footer .background .mobile{
        display: flex;
        opacity: 0.9;
    }

    .community-and-footer .background .desktop{
        display: none;
    }

    .community-and-footer .background{
        left: initial;
        right: 0;
        width: 100%;
    }

    .community-and-footer::before,
    .community-and-footer::after{
        display: none;
    }

    .community-and-footer .community-content{
        flex-direction: column;
        gap: 3rem;
        border-bottom: none;
        padding-bottom: 3rem;
    }

    footer .logo-and-nav{
        padding: 0 0 2.375rem 0;
        flex-direction: column;
        gap: 2rem;
    }

    .community-and-footer .community-content h2{
        font-size: 2.5rem;
        line-height: 3rem;
        margin-top: 2.5rem;
    }

    .community-and-footer .community-content .cta-buttons{
        flex-direction: column;
        margin-top: 2.25rem;
    }

    .community-and-footer .community-content .cta-buttons a,
    .community-and-footer .community-content .cta-buttons button{
        width: 100%;
    }

    .community-and-footer .roles{
        gap: 2.5rem;
    }

    .community-and-footer .roles li{
        padding-left: 0;
        padding-top: 2.875rem;
        position: relative;
    }

    .community-and-footer .roles h5::before{
        left: 0.4375rem;
        top: 0.75rem;
    }

    .community-and-footer .roles h5{
        position: initial;
        font-size: 1.875rem;
        line-height: 2.375rem;
    }

    footer .logo-and-nav .logo{
        max-width: 206px;
        display: flex;
    }

    footer .logo-and-nav .logo img{
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    footer .logo-text h5{
        margin-top: 1.625rem;
        font-size: 1.125rem;
        line-height: 1.875rem;
    }

    footer .logo-and-nav h6{
        font-size: 0.875rem;
        line-height: 1.625rem;
    }

    footer .logo-and-nav .contact a{
        font-size: 1rem;
        line-height: 1.5rem;
    }

    footer .logo-and-nav .nav ul{
        flex-direction: column;
        gap: 1rem;
    }

    footer .logo-and-nav .nav ul li a{
        font-size: 1rem;
        line-height: 1.5rem;
    }

    footer .social-and-copyright{
        padding-top: 3.25rem;
    }

    footer .social-icons{
        gap: 1.625rem;
    }

    footer p.copyright{
        font-size: 0.875rem;
        line-height: 1.5rem;
    }
}

@media (max-width: 320px){
    header .header-content nav ul{
        flex-direction: column;
        align-items: center;
        gap: 0rem;
    }

    header .header-content nav ul li{
        padding: 0.5rem;
    }
}

/* Hero with title */
.hero-with-title{
    margin-top: 72px;
    height: 444px;
    position: relative;
}

.hero-with-title .background{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-with-title .mobile{
    display: none;
}

.hero-with-title .hero-title{
    position: absolute;
    bottom: 5.375rem;
    width: 100%;
}

.hero-with-title h1{
    color: var(--white);
    font-size: 3.75rem;
    line-height: 4.125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hero-with-title.contact .hero-title h1{
    max-width: 467px;
}

@media (max-width: 600px){
    .hero-with-title.contact{
        height: 466px;
    }

    .hero-with-title.contact .hero-title{
        bottom: 2.8125rem;
    }

    .hero-with-title h1{
        font-size: 3.125rem;
        line-height: 3.4375rem;
    }

    .hero-with-title .mobile{
        display: flex;
    }

    .hero-with-title .desktop{
        display: none;
    }
}

@media (max-width: 320px){
    .hero-with-title h1{
        font-size: 2.75rem;
    }
}

/* CONTACT US */

/* Contact us form */
.contact-us{
    padding: 9.75rem 0 12.125rem 0;
}

.contact-us .contact-us-content{
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.contact-us .contact-us-content h6{
    color: var(--blue);
    font-size: 0.875rem;
    line-height: 1.625rem;
    font-weight: 500;
}

.contact-us .contact-us-content h3{
    margin-top: 2.125rem;
    font-size: 1.875rem;
    line-height: 3rem;
    max-width: 405px;
    font-weight: 600;
}

.contact-us .contact-us-content form{
    max-width: 526px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-us .contact-us-content form button{
    width: 100%;
    color: var(--blue);
}

.contact-us .contact-us-content form input{
    border: none;
    color: var(--blue);
    font-family: 'AllianceText', sans-serif;
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
    line-height: 1.625rem;
    border-radius: 0.5rem;
    height: 61px;
}

.contact-us .contact-us-content form textarea{
    resize: none;
    border: none;
    color: var(--blue);
    font-family: 'AllianceText', sans-serif;
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
    line-height: 1.625rem;
    border-radius: 0.5rem;
    height: 234px;
}

.contact-us .contact-us-content form input.error,
.contact-us .contact-us-content form textarea.error{
    box-shadow: 0 0 0 1px #8e000092;
}

.contact-us .error-msg{
    font-size: 0.875rem;
    line-height: 0.875rem;
    color: #8e000092;
}

.contact-us .contact-us-content form input::placeholder,
.contact-us .contact-us-content form textarea::placeholder{
    color: var(--blue);
    opacity: 0.5;
}

.contact-us .contact-us-content form input:focus,
.contact-us .contact-us-content form textarea:focus{
    outline: none;
}

/* Community and footer */

.community-and-footer.without-roles .community-content h2{
    max-width: initial;
}

.community-and-footer.without-roles .community-content .cta-buttons{
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 600px){
    .contact-us{
        padding: 2.875rem 0 3.625rem 0;
    }

    .contact-us .contact-us-content{
        gap: 1.875rem;
    }

    .contact-us .contact-us-content h3{
        line-height: 2.75rem;
    }
}

/* WHITEPAPER */

/* Hero with title */
.hero-with-title.whitepaper .hero-title-content{
    display: flex;
    justify-content: space-between;
    gap: 1.875rem;
    color: var(--white);
}

.hero-with-title.whitepaper .titles{
    display: flex;
    flex-direction: column;
}

.hero-with-title.whitepaper h1{
    margin-top: auto;
    font-weight: 700;
}

.hero-with-title.whitepaper h2{
    margin-top: 1rem;
    font-size: 2.5rem;
    line-height: 2.75rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hero-with-title.whitepaper .titles h6{
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 600;
}

.hero-with-title.whitepaper .names{
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    align-self: flex-end;
    padding-right: 4rem;
}

.hero-with-title.whitepaper .names h6{
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-family: 'Alliance', sans-serif;
    font-weight: 600;
}

.hero-with-title.whitepaper .names p{
    margin-top: 0.4375rem;
    font-size: 0.875rem;
    line-height: 1.375rem;
    font-family: 'AllianceText', sans-serif;
}

.hero-with-title.whitepaper .names a{
    font-size: 0.875rem;
    line-height: 1.375rem;
    font-family: 'AllianceText', sans-serif;
    text-decoration: underline;
}

/* Abstract */
.abstract{
    padding-top: 5.375rem;
    padding-bottom: 6.1875rem;
    background-color: var(--white);
}

.abstract .abstract-content{
    display: flex;
    justify-content: space-between;
}

.abstract .abstract-title{
    width: 22.5%;
}

.abstract .abstract-title h3{
    font-family: 'AllianceText', sans-serif;
    font-size: 1.875rem;
    line-height: 3rem;
    font-weight: 600;
}

.abstract .abstract-text{
    width: 75%;
}

.abstract .abstract-text p{
    opacity: 0.7;
    font-family: 'AllianceText', sans-serif;
    font-size: 1.125rem;
    line-height: 1.875rem;
    font-weight: 400;
}

.abstract .abstract-text p:not(:first-child){
    margin-top: 2rem;
}

/* Whitepaper layout */
.whitepaper-layout{
    padding-top: 4rem;
    padding-bottom: 8.375rem;
}

.whitepaper-layout .whitepaper-layout-container{
    display: flex;
    justify-content: space-between;
    position: relative;
}

.whitepaper-layout .table-of-contents .sticky-content > ul{
    padding-left: 1rem;
    position: relative;
}

.whitepaper-layout .table-of-contents .sticky-content > ul .page-indicator{
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 17px;
    background-color: var(--blue);
    transition: top 0.3s ease-in-out;
}

.whitepaper-layout .table-of-contents .sticky-content > ul::before{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 1px;
    height: 100%;
    background-color: #C0D9E0;
}

.whitepaper-layout .table-of-contents{
    width: 22.5%;
}

.whitepaper-layout .table-of-contents h6{
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1rem;
}

.whitepaper-layout .table-of-contents .sticky-content{
    position: absolute;
    top: 0;
}

.whitepaper-layout .table-of-contents .sticky-content.sticky-active{
    position: fixed;
    top: calc(50vh + 36px);
    transform: translateY(-50%);
    width: calc(1420px * 0.225);
}

.whitepaper-layout .table-of-contents .sticky-content.sticky-top{
    position: absolute;
    top: 0;
    width: 22.5%;
}

.whitepaper-layout .table-of-contents .sticky-content.sticky-bottom{
    position: absolute;
    bottom: 0;
    top: initial;
    width: 22.5%;
}

.whitepaper-layout .table-of-contents .sticky-content > ul{
    margin-top: 2rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whitepaper-layout .table-of-contents .sticky-content > ul li.highlight > a{
    font-size: 0.875rem;
    line-height: 1rem;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.whitepaper-layout .table-of-contents .sticky-content > ul li.highlight > a:hover{
    color: var(--medium-blue);
}

.whitepaper-layout .table-of-contents .sticky-content > ul ul{
    list-style-type: none;
}

.whitepaper-layout .table-of-contents .sticky-content > ul ul li{
    position: relative;
    padding-left: 1.25rem;
}

.whitepaper-layout .table-of-contents .sticky-content > ul ul li::before{
    content: '';
    position: absolute;
    left: 0.625rem;
    top: 8px;
    transform: translate(-50%, 0);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--blue);
}

.whitepaper-layout .table-of-contents .sticky-content > ul ul li a{
    font-size: 0.875rem;
    transition: color 0.3s ease-in-out;
}

.whitepaper-layout .table-of-contents .sticky-content > ul ul li a:hover{
    color: var(--medium-blue);
}

.whitepaper-layout .whitepaper-content{
    width: 75%;
}

.whitepaper-layout .whitepaper-content h3{
    font-size: 1.875rem;
    line-height: 3rem;
    font-weight: 600;
    margin-top: 2.625rem;
}

.whitepaper-layout .whitepaper-content h4{
    margin-top: 1.5rem;
    margin-bottom: -0.875rem;
    font-size: 1.125rem;
    line-height: 1.3125rem;
    font-weight: 600;
}

.whitepaper-layout .whitepaper-content p{
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-top: 1.5rem;
    font-family: 'AllianceText', sans-serif;
}

.whitepaper-layout .whitepaper-content p.big-space{
    margin-top: 3rem;
}

.whitepaper-layout .whitepaper-content p strong{
    font-weight: 700;
}

.whitepaper-layout .whitepaper-content ul{
    margin-top: 1.5rem;
    list-style-type: none;
}

.whitepaper-layout .whitepaper-content ul li{
    position: relative;
    padding-left: 1.25rem;
}

.whitepaper-layout .whitepaper-content ol{
    margin-top: 1.5rem;
    padding-left: 1.25rem;
}

.whitepaper-layout .whitepaper-content ul li::before{
    content: '';
    position: absolute;
    left: 0.625rem;
    top: 11px;
    transform: translate(-50%, 0);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--blue);
}

.whitepaper-layout .whitepaper-content ul p,
.whitepaper-layout .whitepaper-content ol p{
    margin: 0;
}

.whitepaper-layout .whitepaper-content .image{
    width: 100%;
    height: fit-content;
    margin-top: 2rem;
}

.whitepaper-layout .whitepaper-content .image img{
    width: 100%;
    object-fit: cover;
}

.whitepaper-layout .whitepaper-content p a{
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    transition: color 0.3s ease-in-out;
}

.whitepaper-layout .whitepaper-content p a:hover{
    color: var(--medium-blue);
}

@media (max-width: 1600px){
    .whitepaper-layout .table-of-contents .sticky-content.sticky-active{
        width: calc(1260px * 0.225);
    }
}

@media (max-width: 1440px){
    .whitepaper-layout .table-of-contents .sticky-content.sticky-active{
        width: calc(1070px * 0.225);
    }
}

@media (max-width: 1200px){
    .whitepaper-layout .table-of-contents .sticky-content.sticky-active{
        width: calc(90% * 0.225);
    }
}

/* Responsive */
@media (max-width: 1200px){
    .whitepaper-layout .table-of-contents .sticky-content{
        max-width: 25vw;
    }
}

@media (max-width: 1000px){
    .hero-with-title.whitepaper .names{
        max-width: 520px;
    }

    .abstract .abstract-content{
        flex-direction: column;
        gap: 1.5rem;
    }

    .whitepaper-layout .table-of-contents{
        display: none;
    }  

    .whitepaper-layout .whitepaper-content,
    .abstract .abstract-text{
        width: 100%;
    }
}

@media (max-width: 768px){
    .hero-with-title.whitepaper .hero-title-content{
        flex-direction: column;
    }

    .hero-with-title.whitepaper .names{
        flex-direction: row;
        align-self: start;
    }

    .hero-with-title.whitepaper .container{
        height: 100%;
    }

    .hero-with-title.whitepaper .hero-title-content{
        height: 100%;
    }

    .hero-with-title.whitepaper .hero-title{
        height: 100%;
        bottom: 0;
        padding: 3.5rem 0 2.8125rem 0;
    }
    
    .hero-with-title.whitepaper .titles h6{
        margin-bottom: 2.5rem;
    }

}

@media (max-width: 600px){
    .hero-with-title.whitepaper{
        height: 466px;
    }

    .hero-with-title.whitepaper .desktop{
        display: none;
    }

    .hero-with-title.whitepaper .mobile{
        display: block;
    }
    
    .hero-with-title.whitepaper .names{
        gap: 2.25rem;
        padding-right: 0;
        justify-content: space-between;
        margin-top: auto;
    } 

    .hero-with-title.whitepaper .titles h1{
        font-weight: 500;
    }

    .hero-with-title.whitepaper .names h6{
        font-size: 1.125rem;
        line-height: 1.25rem;
    }

    .hero-with-title.whitepaper h2{
        margin-top: 1.625rem;;
        font-size: 1.875rem;
        line-height: 2rem;
        max-width: 320px;
    }

    .abstract .abstract-text p{
        opacity: 1;
        font-size: 1.125rem;
        line-height: 1.875rem;
    }

    .whitepaper-layout{
        padding-top: 3rem;
    }

    .whitepaper-layout .whitepaper-content h3:not(:first-child){
        margin-top: 4.8125rem;
        line-height: 2.75rem;
    }

    .abstract{
        padding-top: 3.5rem;
        padding-bottom: 0;
        background-color: #DEF2F8;
    }

    .whitepaper-layout{
        padding-top: 2rem;
    }
}

/* ABOUT US */

/* Hero with title */
.hero-with-title.about-us .hero-title h1{
    max-width: 765px;
}

.hero-with-title.about-us .hero-title h6{
    display: none;
}

/* Our mission */
.our-mission{
    padding: 7.5rem 0 9.0625rem 0;
    background-color: var(--white);
}

.our-mission .our-mission-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4.375rem;
}

.our-mission .our-mission-content .texts{
    display: flex;
    gap: 7.75rem;
}

.our-mission .our-mission-content h3{
    font-size: 2.5rem;
    line-height: 3.5rem;
    font-weight: 600;
}

.our-mission .our-mission-content p{
    font-size: 1.125rem;
    font-family: 'AllianceText', sans-serif;
    line-height: 1.75rem;
}

/* Key features */
.key-features{
    margin-top: 12.875rem;
    padding-bottom: 6.875rem;
    position: relative;
    overflow: hidden;
}

.lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.lines line{
    stroke: #027BC2;
    stroke-width: 2.5px;
}

.key-features .ellipse-right{
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.key-features .ellipse-left{
    position: absolute;
    left: 0;
    bottom: -20%;
    z-index: -1;
}

.key-features h2{
    font-size: 3.75rem;
    line-height: 4.125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.key-features .key-features-content{
    margin-top: 2.375rem;
    display: flex;
    flex-direction: column;
    gap: 9.375rem;
}

.key-features .key-feature{
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

.key-features .key-feature .image{
    position: relative;
    display: flex;
}

.key-features .key-feature:nth-child(even){
    flex-direction: row-reverse;
}

.key-features .key-feature .text{
    max-width: 500px;
}

.key-features .key-feature h3{
    font-size: 2.5rem;
    line-height: 3.75rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.key-features .key-feature p{
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: -0.03em;
    font-family: 'AllianceText', sans-serif;
    opacity: 0.7;
    font-weight: 300;
}

/* How to participate */
.how-to-participate{
    padding: 10.5rem 0 12.5rem 0;
    background-color: #027BC2;
    color: var(--white);
}

.how-to-participate h2{
    font-size: 4.375rem;
    line-height: 4.8125rem;
    max-width: 690px;
    font-weight: 400;
    font-family: 'AllianceText', sans-serif;
    letter-spacing: -0.01em;
}

.how-to-participate .how-to-participate-content{
    margin-top: 3.375rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
}

.how-to-participate .how-to-participate-item{
    padding-left: 3.875rem;
}

.how-to-participate .how-to-participate-item h3{
    font-size: 1.875rem;
    line-height: 2.5rem;
    font-weight: 500;
    font-family: 'AllianceText', sans-serif;
    position: relative;
}

.how-to-participate .how-to-participate-item p{
    opacity: 0.7;
    font-family: 'AllianceText', sans-serif;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-top: 1rem;
    letter-spacing: -0.03em;
    font-weight: 300;
    max-width: 500px;
}

.how-to-participate .how-to-participate-item h3::before{
    content: '';
    position: absolute;
    left: -3.25rem;
    top: 50%;
    transform: translate(50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #4ED8FF;
}

/* Our vision */
.our-vision{
    padding: 9.875rem 0 9.375rem 0;
    background-color: var(--green);
}

.our-vision .our-vision-content{
    display: flex;
    gap: 7rem;
}

.our-vision .our-vision-content h3{
    font-size: 2.5rem;
    line-height: 4rem;
    font-weight: 600;
}

.our-vision .our-vision-content p{
    font-size: 1.375rem;
    font-family: 'AllianceText', sans-serif;
    line-height: 2.25rem;
}

.our-mission .our-mission-content p,
.our-vision .our-vision-content p{
    max-width: 600px;
}

/* Responsive */
@media (max-width: 1600px){
    .our-vision .our-vision-content p{
        max-width: 360px;
    }
}

@media (max-width: 1440px){
    .key-features .key-feature .text {
        max-width: 450px;
    }

    .our-vision .our-vision-content p{
        max-width: 370px;
    }

    .how-to-participate .how-to-participate-item p{
        max-width: 425px;
    }

    .our-vision .our-vision-content h3{
        max-width: 620px;
    }

    .our-vision .our-vision-content{
        gap: initial;
        justify-content: space-between;
    }
}

@media (max-width: 1200px){
    .key-features .key-feature {
        gap: 4rem;
    }

    .key-features .key-feature .text{
        min-width: 450px;
    }

    .key-features .key-feature .image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .our-mission .our-mission-content,
    .our-vision .our-vision-content{
        gap: 3rem;
    }
}

@media (max-width: 1000px){
    .our-mission .our-mission-content,
    .our-vision .our-vision-content{
        flex-direction: column;
    }

    .our-mission .our-mission-content{
        gap: 4.5rem;
    }

    .our-vision .our-vision-content{
        gap: 1.5rem;
    }

    .our-mission .our-mission-content p,
    .our-vision .our-vision-content p{
        max-width: initial;
    }

    .key-features{
        margin-top: 8.75rem;
    }

    .our-vision .our-vision-content h3{
        max-width: initial;
    }
}

@media (max-width: 860px){
    .our-mission .our-mission-content .texts{
        gap: 3rem;
    }

    .key-features .lines{
        display: none;
    }

    .key-features .key-feature .text{
        min-width: initial;
    }

    .key-features .key-feature .image{
        min-width: 243px;
        max-width: 243px;
    }

    .how-to-participate .how-to-participate-item{
        padding-left: 2rem;
    }

    .how-to-participate .how-to-participate-item h3::before{
        left: -2rem;
    }
}

@media (max-width: 768px){
    .hero-with-title h1{
        font-size: 3.125rem;
        line-height: 3.5rem;
    }
}

@media (max-width: 600px){
    .hero-with-title.about-us{
        height: 466px;
    }
    
    .hero-with-title.about-us .hero-title{
        bottom: 0;
        height: 100%;
        padding: 3.5rem 0 2.8125rem 0;
    }

    .hero-with-title.about-us .hero-title .container{
        height: 100%;
    }
    
    .hero-with-title.about-us .hero-title-content{
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .hero-with-title.about-us h1{
        font-size: 2.375rem;
        line-height: 2.625rem;
        margin-top: auto;
    }

    .hero-with-title.about-us .hero-title h6{
        display: block;
        font-size: 1.25rem;
        line-height: 1.5rem;
        font-weight: 600;
        color: var(--white);
    }

    .our-mission{
        padding: 2.5rem 0 6.25rem 0;
        background-color: #DEF2F8;
    }

    .our-mission .our-mission-content{
        gap: 3rem;
    }

    .our-mission .our-mission-content .texts{
        flex-direction: column;
        gap: 2rem;
    }

    .our-mission .our-mission-content h3{
        font-size: 1.75rem;
        line-height: 2.625rem;
    }

    .our-mission .our-mission-content p{
        font-family: 1.25rem;
        line-height: 2rem;
    }

    .key-features{
        padding-bottom: 5.25rem;
        margin-top: 0;
    }

    .key-features h2{
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .key-features .key-feature,
    .key-features .key-feature:nth-child(even){
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .key-features .ellipse-left,
    .key-features .ellipse-right{
        display: none;
    }

    .key-features .key-features-content{
        margin-top: 3.5rem;
        gap: 3.75rem;
    }

    .key-features .key-feature h3{
        font-size: 1.875rem;
        line-height: 2.8125rem;
        max-width: 290px;
    }

    .how-to-participate{
        padding: 3.5rem 0 4rem 0;
    }

    .how-to-participate h2{
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .how-to-participate .how-to-participate-content{
        margin-top: 2.625rem;
        grid-template-columns: 1fr;
        row-gap: 2.625rem;
    }

    .how-to-participate .how-to-participate-item{
        padding-left: 1.3125rem;
    }

    .how-to-participate .how-to-participate-item h3::before{
        left: -1.3125rem;
        transform: translate(0, -50%);
    }
    
    .our-vision{
        padding: 4.875rem 0;
    }

    .our-vision .our-vision-content h3{
        font-size: 1.75rem;
        line-height: 2.625rem;
    }
}

/* Privacy policy */
.hero-with-title.privacy-policy .hero-title h1{
    max-width: 467px;
}

.privacy-policy-text{
    padding: 3rem 0;
}

.privacy-policy-content h2{
    font-size: 1.875rem;
    line-height: 3rem;
    font-weight: 600;
    margin-top: 2.625rem;
    margin-bottom: -1rem;
}

.privacy-policy-content h3{
    font-size: 1.625rem;
    line-height: 2rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

.privacy-policy-content h4{
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.3125rem;
    font-weight: 600;
    margin-bottom: -1.25rem;
}

.privacy-policy-content p{
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-top: 1.5rem;
    font-family: 'AllianceText', sans-serif;
}

.privacy-policy-content p strong{
    font-weight: 700;
}

.privacy-policy-content ul{
    margin-top: 1.5rem;
    list-style-type: none;
}

.privacy-policy-content ul li{
    position: relative;
    padding-left: 1.25rem;
}

.privacy-policy-content ul li::before{
    content: '';
    position: absolute;
    left: 0.625rem;
    top: 11px;
    transform: translate(-50%, 0);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--blue);
}

.privacy-policy-content ul li p{
    margin: 0.25rem;
}

.privacy-policy-content p a{
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    transition: color 0.3s ease-in-out;
} 

.privacy-policy-content p a:hover{
    color: var(--medium-blue);
}

@media (max-width: 600px){
    .hero-with-title.privacy-policy{
        height: 466px;
    }

    .hero-with-title.privacy-policy .hero-title{
        bottom: 2.8125rem;
    }
}
