@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-regular.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-700.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-regular.woff2') format('woff2');
}

:root {
    /* CONTENT */
    --width-content: calc(100vw - 5vh);
    --max-width-content: calc(100vw - 5vh);
    --max-width: 100%;
    --header-height: 80px;
    --gap: 2rem;
    --logo-width: 150px;
    --padding-content: 2rem;
    --button-size: 4.5rem;
    --transition: all 350ms ease-in-out;
    --font-body: "FS Me", sans-serif;
    --wave-height: 40px;
    --slider-gap: 5px;

    /* COLORS */
    --white: #ffffff;
    --black: #000000;
    --gray-light: #E5E5E9;
    --darkgray: #2D3C4B;
    --green: #719751;
    --orange: #FFA600;
    --blue: #52B7C1;
    --green-light: #a3c95c;
    --green-yellow: #80933a;

    --primary-clr: var(--orange);
    --secondary-clr: var(--green);
    --tertiary-clr: var(--yellow);

    --text-clr: var(--darkgray);
    --link-clr: var(--black);
    --hl-clr: var(--black);
    --bg-clr: var(--white);
    --footer-clr: var(--green-light);

    --select-bg-clr: var(--black);
    --select-clr: var(--white);

    --scrollbar-foreground: var(--orange);
    --scrollbar-background: var(--white);
}


/* STYLED SCROLLBARS */
html {
    overflow-x: hidden;
}
html,
body,
.styled-scrollbars {
    scrollbar-color: var(--scrollbar-foreground) var(--scrollbar-background);
}

body::-webkit-scrollbar,
.styled-scrollbars::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

body::-webkit-scrollbar-thumb,
.styled-scrollbars::-webkit-scrollbar-thumb {
    background: var(--scrollbar-foreground);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

body::-webkit-scrollbar-track,
.styled-scrollbars::-webkit-scrollbar-track {
    background: var(--scrollbar-background);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

/* DEFAULT */
*,
*:after,
*:before {
    box-sizing: border-box;
    outline: none;
}

/* SELECTION */
::selection {
    background: var(--select-bg-clr);
    color: var(--select-clr);
}

/* TYPO */
html {
    --font-size: 62.5%;
    font-size: var(--font-size);
    font-family: var(--font-body);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-clr);
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--wave-height));
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    font-variant: lining-nums;
}
body {
    font-size: 2rem;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    background-color: var(--bg-clr);
}
img {
    display: block;
    max-width: var(--max-width);
}
h1, h3, h4{
    color: var(--white);
    font-family: 'Lato';
    line-height: 2.5rem;
    color: var(--darkgray);
}
h1 {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
}
h3 {
    color: var(--blue);
    font-weight: 900;
    font-style: bold;
    font-size: 2.2rem;
}
h4 {
    font-size: 2.2rem;
}
a {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    color: var(--darkgray);
    white-space: nowrap;
}
a:hover {
    color: var(--orange);
    transition: 0.3s;
}

#wrapper {
    margin: 0 auto;
    position: relative;
    max-width: 1440px;
}
#header {
    margin-bottom: 10px;
    overflow: hidden;
}
#header .inside {
    padding: 0px 0px 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo > img {
    height: 22px;
}
.header_text {
    white-space: nowrap;
    padding: 10px 10px 10px; 
    padding-left: 2vw;   
    position: relative;
    height: 100%;
    background-color: var(--darkgray);
}
.header_text::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -28px;
    width: 50px; 
    height: 85px; 
    background-color: var(--darkgray); 
    clip-path: polygon(22.25% 25%, 58.61% 25%, 58.61% 100%, 52.83% 100%, 47.1% 98.9%, 40.77% 95.9%, 35.79% 91.79%, 32.1% 85.67%, 30.46% 78.72%);
}
.header_text::before {
    content: "";
    position: absolute;
    top: 0px;
    width: 50vw;
    height: 72px;
    right: -49.5vw;
    background-color: var(--darkgray); 
}

/* * MAIN */ 


#container {
    position: relative;
    max-width: 1440px;
}
.container {
    max-width: var(--width-content);
    margin: 0 auto;
}
.social_network a{
    display: flex;
    align-items: center;
}
.social_network p {
    margin-left: 20px;
}
.social_network i {
    font-size: 38px;
}
.social_network a i,
.social_network a p {
    transition: color 0.3s ease;
}
.social_network a:hover i,
.social_network a:hover p {
    color: var(--orange);
}
.social_network a p {
    border-bottom: 1px solid var(--orange);
}

.qr_block {
    margin: 40px 0 90px 0;
}
.qr_block img {
    max-width: 150px;
    margin: auto;
}
.download_block h3 {
    color: var(--orange);
}
.download_block {
    margin: 0 0 90px 0;
}
#footer {
}
#footer .inside {
    position: relative;
    padding: 40px 0 60px;
    background-color: var(--gray-light);
}
.header_text {
}



@media (min-width: 370px) {
    :root {
        /* CONTENT */
        --width-content: 100vw;
        --width-content: calc(100vw - 10vh);
        --header-height: 80px;
    }
    h1, h3, h4{
        line-height: 2.5rem;
    }
    h1 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 2.2rem;
        max-width: 495px;
    }
    h4 {
        font-size: 2.2rem;
    }
    a:not(.social_network a) {
        margin-bottom: 10px;
        font-size: 1.8rem ;
    }
    .header_text {
        padding: 10px 10px 10px; 
        padding-left: 5vw;   
    }
    .header_text::after {
        left: -28px;
        width: 50px; 
        height: 90px; 
   }
   .qr_block img {
    max-width: 150px;
    }
}
@media screen and (min-width: 480px) {
    .social_network a br {
        display: none; 
    }
}
@media (min-width: 568px) {
    .logo > img {
        height: 30px;
    }
    .header_text {
        padding: 10px 20px 10px; 
        padding-left: 20vw;   
    }
    .header_text::after {
        height: 100px; 
   }
    #header .inside {
        padding: 0 0 0 20px;
    }
    .qr_block {
        margin: 50px 0 120px 0;
    }
}
@media (min-width: 768px) {
    .logo > img {
        height: 40px;
    }
    #footer .inside {
        padding: 100px 0 0 20px;
    }
    #article-1 {
        display: flex;
        gap: 10vw;
    }
    #article-1 .banner > img {
        width: 35vw;;
    }
    .qr_block img {
        margin: 0;
    }
    
}
@media (min-width: 1024px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        margin-top: 50px;
        font-size: 3rem;
    }
    h3 {
        margin-top: 0;;
    }
    .header_text {
        padding: 10px 20px 10px; 
        padding-left: 20vw;   
    }
    #article-1 .banner > img {
        max-height: 670px;
        width: 100%;
    }
    .whatsapp_block_wrapper {
        margin: 60px 0 100px 0;
    }
    .whatsapp_block {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .qr_block {
        margin: 0px
    }
    .qr_block img {
        margin: 0;
        width: 180px;
    }
    #footer .inside {
        position: relative;
        background-color: #ffffff00;
        display: flex;
        justify-content: flex-end;
    }
    #footer .footer-wrapper {
        position: relative;
        max-height: 240px;
        background-color: var(--gray-light);
    }
    #footer .footer-wrapper::before {
        content: "";
        position: absolute;
        top: 0px;
        width: 200px;
        height: 239px;
        left: -110px;
        background-color: var(--gray-light); 
        clip-path: polygon(22.25% 0%, 58.61% 0%, 58.61% 100%, 52.83% 100%, 47.1% 98.9%, 40.77% 95.9%, 35.79% 91.79%, 32.1% 85.67%, 30.46% 78.72%);
        transform: scaleY(-1);
    }
    
    #footer .footer-wrapper {
        padding: 30px 20px 60px;
        display: flex;
        align-items: flex-start;
        gap: 6vw;
    }
    #footer .contact_block {
        display: flex;
        align-items: baseline;
        gap: 5rem;
        padding-left: 50px;
    }
    #footer .imprint_block {
        display: flex;
        padding: 0 50px 0 0;
        align-items: baseline;
        gap: 5rem;
    }
}
@media (min-width: 1200px) {
    h2 {
        font-size: 4rem;
    }
    .info_block.container {
        margin: 0;
    }
    .whatsapp_block_wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .info_block {
        padding: 0 50px 0 0;
    }
}
@media (min-width: 1440px) {
    a:not(#footer a, .whatsapp_block a){
        margin-bottom: 20px;
    }
    #header {
        overflow: unset;
    }
    .header_text {
        padding-left: 35vw;
    }
    #wrapper {
        max-width: 1700px;
    }
    #container {
        max-width: 1700px;
    }
    .info_block {
        padding: 0 50px 0 0;
    }
    #footer .footer-wrapper {
        gap: 10vw;
    }
    #footer .footer-wrapper::after {
        content: "";
        position: absolute;
        top: 0px;
        width: 50vw;
        height: 239px;
        right: -50vw;
        background-color: var(--gray-light); 
    }
}
@media (min-width: 1900px) {
    .header_text {
        padding-left: 25vw;
    }
    #article-1 .banner > img {
        max-height: 35vw;
    }
}