.hero {
    position: relative;

    width: 100%;
    aspect-ratio: 3/1;

    padding: 100px;
    box-sizing: border-box;

    background-color: #000;
    border-radius: 20px;

    background-image: url("/assets/images/heroImage.webp");
    background-position: top center;
    background-size: 80%;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: start;
}

.heroText {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.headText {
    position: relative;

    margin-bottom: 10px;

    font-family: var(--text-font);
    font-weight: 400;
    font-size: 15px;
    color: var(--theme);
}

.heroHeadline {
    position: relative;

    font-family: var(--theme-font);
    font-weight: 700;
    font-size: 100px;
    color: var(--text);
    line-height: 0.75;
}

.subText {
    position: relative;

    margin-top: 20px;

    font-family: var(--text-font);
    font-weight: 400;
    font-size: 15px;
    color: var(--theme-light);
}

.introText {
    position: relative;
    margin: 10% auto 0 auto;
    width: 75%;

    margin-top: 10%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.iT_textArea {
    position: relative;

    width: 70%;

    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    justify-content: start;
}

.iT_text {
    position: relative;

    width: 100%;

    font-family: var(--text-font);
    font-weight: 400;
    font-size: 18px;
    color: var(--text);
    line-height: 1.5;

    display: flex;
    align-items: center;
    justify-content: start;
}

.iT_candy {
    position: relative;

    width: 20%;
    margin-top: -30px;

    font-family: var(--theme-font);
    font-weight: 700;
    font-size: 200px;
    color: var(--theme);
    line-height: 0.5;
    white-space: nowrap;
    user-select: none;

    display: flex;
    align-items: center;
    justify-content: end;
}






.lastPosts {
    position: relative;

    margin-top: 10%;

    width: 100%;

    padding: 50px;
    box-sizing: border-box;

    background-color: var(--c-bg);
    backdrop-filter: blur(var(--c-blur));
    border-radius: 20px;
}

.lP_head {
    position: relative;

    width: 100%;

    padding: 0px 15px;
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.lPh_content {
    position: relative;

    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: start;
}

.lP_icon {
    position: relative;

    width: 50px;
    height: auto;

    fill: var(--theme);

    display: flex;
    align-items: center;
    justify-content: center;
}

.lP_texts {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.lP_headline {
    position: relative;

    font-family: var(--text-font);
    font-weight: 700;
    font-size: 30px;
    color: var(--text);
}

.lP_subtitle {
    position: relative;

    font-family: var(--text-font);
    font-weight: 400;
    font-size: 14px;
    color: var(--theme-light);
}

.lPh_actions {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: end;
}

.lP_posts {
    position: relative;

    margin-top: 40px;

    width: 100%;

    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: start;
    justify-content: start;
}

.lP_post {
    position: relative;

    width: 50%;

    padding: 40px;
    box-sizing: border-box;

    box-shadow: #000000a9 0px 0px 40px;

    background-color: var(--tc-bg);
    border-radius: 10px;

    text-decoration: none;
}

.lP_post:hover {
    background-color: var(--tc-hover);
    cursor: pointer;
}

.lP_post.first {
    margin-left: 15px;
}

.lP_post.second {
    margin-top: 50px;
    margin-left: -30px;
    z-index: 2;
}

.lPp_image {
    position: relative;

    width: 100%;
    aspect-ratio: 1.9/1;

    background-image: url("/assets/postAssets/fallback.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 10px;
    overflow: hidden;
}

.lPp_imageContainer {
    position: absolute;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    background-image: url("/assets/postAssets/fallback.webp");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

    background-color: #0000008c;
    backdrop-filter: blur(20px);
}

.lPp_photoCredit {
    position: absolute;
    bottom: 10px;
    right: 10px;

    padding: 5px 10px;
    box-sizing: border-box;

    background-color: #000000a5;
    backdrop-filter: blur(10px);
    border-radius: 5px;

    font-family: var(--text-font);
    font-weight: 400;
    font-size: 12px;
    color: #fff;
}

.lPp_contentHead {
    position: relative;

    width: 100%;

    margin-top: 20px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.lPp_title {
    position: relative;

    font-family: var(--text-font);
    font-weight: 700;
    font-size: 25px;
    color: var(--text);
}

.lPp_date {
    position: relative;

    font-family: var(--text-font);
    font-weight: 400;
    font-size: 15px;
    color: var(--text);
    opacity: 0.6;
}








.partners {
    position: relative;

    margin-top: 5%;

    width: 100%;

    padding: 50px;
    box-sizing: border-box;

    background-color: var(--c-bg);
    backdrop-filter: blur(var(--c-blur));
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.p_head {
    position: relative;

    width: 100%;

    margin-bottom: 40px;

    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: start;
}

.p_icon {
    position: relative;

    width: 50px;
    height: auto;

    fill: var(--theme);

    display: flex;
    align-items: center;
    justify-content: center;
}

.p_texts {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.p_headline {
    position: relative;

    font-family: var(--text-font);
    font-weight: 700;
    font-size: 30px;
    color: var(--text);
}

.p_subtitle {
    position: relative;

    font-family: var(--text-font);
    font-weight: 400;
    font-size: 14px;
    color: var(--theme-light);
}

.partnerList {
    position: relative;

    width: 100%;
    
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: start;
}

.partner {
    position: relative;

    width: 25%;
    aspect-ratio: 2/1;

    padding: 40px;
    box-sizing: border-box;

    background-color: #202020;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.partner:hover {
    cursor: pointer;
    background-color: #343d3b;
}

.partnerLogo {
    position: relative;

    width: 200px;
    height: auto;

    fill: #dee3e3;
}

.partnerLogo.lp {
    width: 90px;
}

.oEx {
    position: absolute;

    bottom: 5px;
    right: 10px;

    width: 20px;
    height: auto;

    fill: var(--text);

    opacity: 0;

    transition: opacity 0.1s linear;
}

.partner:hover .oEx {
    opacity: 1;
}







@media (max-width: 1400px) {

    .hero {
        background-position: center center;
    }

    .introText {
        width: 100%;
        margin-top: 10%;
        flex-direction: column;
        align-items: center;
        justify-content: start;
    }

    .iT_textArea {
        width: 100%;

        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: start;
    }

    .iT_text {
        width: 90%;
        font-size: 16px;
        text-align: justify;
        hyphens: auto;
    }

    .iT_candy {
       display: none;
    }

}

@media (max-width: 910px) {

    .hero {
        background-position: bottom center;
    }
}







@media (max-width: 768px) {

    .hero {
        aspect-ratio: 1.5/1;
        padding: 30px;
        background-position: center;
        background-size: 130%;
    }

    .headText {
        font-size: 14px;
    }

    .heroHeadline {
        width: 60%;
        font-size: 50px;
    }

    .subText {
        display: none;
    }





    .introText {
        margin-top: 25%;
    }






    .lastPosts {
        margin-top: 25%;
        width: 100%;
        padding: 30px;
    }

    .lP_head {
        width: 100%;
        padding: 0px;
        align-items: center;
        justify-content: center;
    }

    .lP_icon {
        width: 35px;
    }

    .lP_headline {
        font-size: 25px;
    }

    .lP_subtitle {
        font-size: 13px;
    }

    .lPh_actions {
        display: none;
    }

    .lP_posts {
        position: relative;

        margin-top: 40px;

        width: 100%;

        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: start;
    }

    .lP_post {
        position: relative;
        width: 100%;
        padding: 20px;
        box-shadow: #00000000 0px 0px 0px;
    }

    .lP_post.first {
        margin-left: 0px;
    }

    .lP_post.second {
        margin-top: 0px;
        margin-left: 0px;
    }

    .lPp_image {
        border-radius: 8px;
    }

    .lPp_photoCredit {
        bottom: 5px;
        right: 5px;
        padding: 3px 7px;
        font-size: 10px;
    }

    .lPp_contentHead {
        margin-top: 10px;
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

    .lPp_title {
        font-size: 17px;
    }

    .lPp_date {
        font-size: 13px;
    }







    .partners {
        margin-top: 10%;
        padding: 30px;
        align-items: center;
    }

    .p_head {
        width: 100%;
        padding: 0px;
        align-items: center;
        justify-content: center;
    }

    .p_icon {
        width: 35px;
    }
    .p_headline {
        font-size: 25px;
    }

    .p_subtitle {
        font-size: 13px;
    }

    .partnerList {
        position: relative;

        width: 100%;
        
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: start;
    }

    .partner {
        width: 100%;
    }

    .partnerLogo {
        width: 100%;
    }
    
    .oEx {
        display: none;
    }
}