body{
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.top_add > p{
    text-align: center;
    margin: 0;
    background-color: #ff8700;
    padding: 4px;
    color: white;
    font-weight: 600;
}
.main_wrapper{
    padding: 16px;
}
.hero_banner_wrapper{
    max-width: calc(100% - 32px);
    padding: 16px;
}
.hero_banner{
    background-image: url("../pictures/hero_pic4.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 13.5px;
    height: 60vh;
    max-width: 1400px;
}
.hero_banner > div{
    width: 80%;
    color: white;
    padding-top: 15%;
}
.hero_banner h1{
    font-size: 40px;
    font-weight: 700;
}
.hero_banner h2{
    font-size: 32px;
    font-weight: 600;
}
.company_quote{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 32px 0;
    padding: 0 16px;
}
.company_quote img{
    width: 192px;
    margin: 0 auto;
}
.benefits_wrapper{
    padding: 24px;
    padding-top: 42px;
    background-color: rgb(31, 35, 62);
    color: rgb(187, 204, 224);
    margin-bottom: 64px;
    overflow: hidden;
}
.benefits_wrapper > div{
    display: grid;
    max-width: 800px;
    margin: 0 auto;
}
.benefits_wrapper img{
    max-width: 100%;
    border-radius: 13.5px;
    opacity: 0.2;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.benefits_wrapper h3{
    font-size: 32px;
    margin: 16px 0;
}
.benefits_wrapper p{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 42px;
}
.benefits_text_links{
    transform: translateX(-50%);
    opacity: 0.2;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.benefits_text_rechts{
    transform: translateX(+50%);
    opacity: 0.2;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.img_von_links{
    transform: translateX(-50%);
    opacity: 0.2;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.img_von_rechts{
    transform: translateX(+50%);
}
.benefits_wrapper img.grow{
    transform: translateX(0);
    opacity: 1;
}
.benefits_wrapper div.grow{
    transform: translateX(0);
    opacity: 1;
}
.benefits_wrapper button{
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    background-color: #ff8700;
    border-radius: 13.5px;
    margin-top: 24px;
    color: white;
}
.learn_wrapper{
    padding: 16px;
    display: grid;
    column-gap: 24px;
    row-gap: 30px;
    max-width: 430px;
    margin: 0 auto;
}
.learn_wrapper *{
    margin: 0;
}
.learn_wrapper_title p{
    font-size: 13px;
    color: #ff8700;
    font-weight: bold;
    margin-bottom: 16px;
}
.learn_wrapper h2{
    color: #313131;
    font-size: 36px;
}
.course h3{
    font-size: 24px;
    color: #ff8700;
    margin: 12px 0;
}
.course p{
    color: #505050;
}
.course > div{
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 13.5px;
    background-size: cover;
}
.course > div:hover{
    transform: scale(1.01);
    transition: transform 0.2s ease;
    cursor: pointer;
}
.play_button{
    position: absolute;
    bottom: 24px;
    right: 24px;
    height: 52px;
    width: 52px;
}
.faq{
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 1200px;
    margin: 16px auto;
}
.faq > h1{
    font-size: 28px;
    color: #505050;
    text-align: center;
}
.question_section{
    width: 100%;
    border-top: 1px solid #bbbbbb;
}
.question{
    border-bottom: 1px solid #bbbbbb;
    padding: 16px 24px;
    cursor: pointer;
}
.question > div{
    display: flex;
    align-items: center;
    gap: 12px;
}
.question img{
    transform: rotate(-90deg);
    width: 12px;
    height: 12px;
}
.question > p{
    display: none;
    max-width: 100%;
}
.question b{
    font-weight: 500;
}
footer{
    background-color: rgba(255, 135, 0, .5);
    color: black;
    display: grid;
    row-gap: 16px;
    column-gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
    padding: 16px;
}
footer *{
    margin: 0;
}
.usefull_links{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.usefull_links > a{
    text-decoration: none;
    color: black;
}
.newsletter > form{
    display: flex;
    gap: 8px;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.subscribe_button{
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 17px;
    background-color: #ff8700;
    border: 2px solid #ff8700;
    border-radius: 13.5px;
    text-align: center;
    padding: 8px 0;
    width: 100%;
}
.newsletter > form > input{
    padding: 8px 0;
    border-radius: 13.5px;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
}
.contact{
    grid-column: 1/3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.socialmedia_links{
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
}
.socialmedia_links img{
    cursor: pointer;
}
.company_name{
    grid-column: 1/3;
    background-color: #ff8700;
    text-align: center;
    padding: 8px;
}
.company_name > p{
    margin: 0;
    color: white;
}

@media(min-width: 700px){
    footer{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .contact{
        grid-column: 3/4;
    }
    .question_section{
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
    }
}
@media(min-width: 800px){
    .hero_banner h1{
        font-size: 75px;
    }
    .benefits_wrapper > div{
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
        row-gap: 24px;
    }
    .benefits_text_rechts:nth-child(4){
        transform: translateX(-50%);
        opacity: 0.2;
        transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    }
    #benefits_pic_2{
        grid-column: 2/3;
        grid-row: 2/3;
    }
    .benefits_wrapper button{
        grid-column: 1/3;
        width: 500px;
        margin: 0 auto;
    }
    .img_von_links:nth-child(3){
        transform: translateX(+50%);
        opacity: 0.2;
        transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    }
    .benefits_text_rechts h3{
        font-size: 50px;
    }
    .benefits_text_rechts p{
        font-size: 24px;
    }
    .benefits_wrapper img{
        max-width: 100%;
        border-radius: 13.5px;
        opacity: 0.2;
        transition: transform 1s ease-in-out, opacity 1s ease-in-out;
        max-height: auto;
    }
    .benefits_wrapper > div{
        max-width: 1200px;
        row-gap: 64px;
        column-gap: 64px;
    }
    .company_quote{
        margin: 64px 0;
    }
    .company_quote h2{
        font-size: 40px;
        max-width: 700px;
        margin: 0 auto;
    }
    .learn_wrapper{
        max-width: none;
        padding: 64px;
        grid-template-columns: 1fr 1fr;
    }
    .course:first-child{
        grid-column: 1/3;
    }
    .learn_wrapper_title{
        grid-column: 1/3;
    }
    .course > div{
        aspect-ratio: 1/1;
    }
    .course h3{
        font-size: 30px;
    }
    #course_one{
        grid-column: 1/3;
    }
    #course_one > div{
        aspect-ratio: 16 / 9;
    }
    .learn_wrapper p{
        font-size: 18px;
    }
    .learn_wrapper h2{
        font-size: 60px;
    }
    .play_button{
        width: 64px;
        height: 64px;
    }
}
@media(min-width: 1050px){
    .learn_wrapper{
        max-width: 1300px;
        padding: 64px;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 64px;
    }
    .learn_wrapper_title{
        grid-column: 1/4;
        max-width: 800px;
    }
    .course h3{
        font-size: 30px;
    }
    #course_one{
        grid-column: auto;
    }
    #course_one > div{
        aspect-ratio: 4/5;
    }
    .learn_wrapper p{
        font-size: 18px;
    }
    .learn_wrapper h2{
        font-size: 60px;
    }
    .play_button{
        width: 64px;
        height: 64px;
    }
    .course > div{
        aspect-ratio: 4 / 5;
    }
}