@font-face {
    font-display: swap;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../font/plus-jakarta-sans-v3-latin-regular.woff') format('woff');
}

@font-face {
    font-display: swap;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../font/plus-jakarta-sans-v3-latin-500.woff') format('woff');
}

@font-face {
    font-display: swap;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../font/plus-jakarta-sans-v3-latin-700.woff') format('woff');
}

@font-face {
    font-display: swap;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 800;
    src: url('../font/plus-jakarta-sans-v3-latin-800.woff') format('woff');
}


/* ______________________________________________________________________________________________ */

:root {
    --yellow: #E6FF83;
    --blue: ##B1C7FF;
    --red: #FF5372;
    --hover: #E0435F;
    --grey: #F3F3F3;
}

html {
    font-family: "Plus Jakarta Sans";
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* background-color: burlywood; */
}

.overflow_wrapper {
    overflow-x: hidden;
}

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

p {
    margin: 0;
    padding: 0;
}

button {
    cursor: pointer;
    color: black;
}

button:active {
    color: black;
}


/* ______________________________________________________________________________________________ */

.text_small {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

.text_medium {
    font-size: 28px;
    font-weight: 700;
    line-height: 35px;
}

.text_big {
    font-size: 34px;
    font-weight: 700;
    line-height: 43px;
}


/* ______________________________________________________________________________________________ */

.segment_container {
    border-top: 1px solid black;
    padding: 120px 0 120px 0;
}

.segment_inner {
    width: 1212px;
    margin-left: calc((100vw - 1212px) * 0.5);
}

.segment_title_container {
    margin-bottom: 60px;
}

.segment_title_zehetner {
    margin-bottom: 26px;
}

.segment_title_el_container {
    display: flex;
    /* align-items: center; */
    margin-top: 4px;
}

.segment_title_dot {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background-color: black;
    margin-right: 20px;
    margin-top: 6px;
    /* margin-top: auto; */
}

.segment_title_text {
    margin-top: auto;
    line-height: unset;
}


/* ______________________________________________________________________________________________ */

.img_full {
    aspect-ratio: calc(1512/750);
    width: 100vw;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    margin-bottom: -3px;
}

.footer_container {
    display: flex;
    padding: 40px 0 40px 0;
}

.footer_el {
    margin-left: 30px;
    margin-right: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.hidden_desktop {
    display: none;
}

.hidden_mobile {
    display: unset;
}


/* ______________________________________________________________________________________________ */


/* ______________________________________________________________________________________________ */

@media only screen and (max-width: 1280px) {
    .segment_container {
        padding: 50px 0 50px 0;
    }
    .segment_inner {
        width: 90vw;
        margin-left: 5vw;
    }
    .text_medium {
        font-size: 22px;
        font-weight: 700;
        line-height: 28px;
    }
    .text_big {
        font-size: 26px;
        font-weight: 700;
        line-height: 33px;
    }
    .segment_title_container {
        margin-bottom: 40px;
    }
    .segment_title_dot {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: black;
        margin-right: 16px;
        margin-top: 6px;
        /* margin-top: auto; */
    }
    .hidden_desktop {
        display: unset;
    }
    .hidden_mobile {
        display: none;
    }
    .footer_el {
        margin-left: 30px;
        margin-right: 0;
    }
}
