@media screen and (max-width: 1024px)
{
    .text
    {
        font-size: 15px;
    }
    .dark
    {
        color: #000000;
    }
    .heading
    {
        --font-size: 40px;
    }
    .point-heading
    {
        font-size: 20px;
    }
    .highlighted
    {
        padding: 7.5px 15px;
    }
    .sub-container
    {
        padding: 20vh 5vw;
    }
    .button
    {
        font-size: 20px;
        height: 40px;
        padding: 0 20px;
    }
    .flex-buttons
    {
        gap: 5px;
    }
    .collapsable-button > img
    {
        height: 30px;
        margin: 5px;
    }
    .collapsable-text
    {
        width: 0px;
        font-size: 20px;
    }
    .collapsable-button:hover > .collapsable-text
    {
        width: 90px;
    }
    .section-1, .section-2, .section-3, .section-4, .section-5, .section-6
    {
        flex-direction: column;
        gap: 5vw;
    }
    .intro-image
    {
        width: 100%;
    }
    .section-2 > img[alt="1"]
    {
        display: none;
    }
    .section-2 > img[alt="2"]
    {
        display: block;
        width: 100%;
    }
    .points-wrapper
    {
        width: 100%;
    }
    .point
    {
        margin: 20px 0;
    }
    .point > img
    {
        width: 30px;
    }
    .section-3 > img
    {
        display: none;
    }
    .section-2-content, .section-5-content, .section-6-content
    {
        width: 100%;
    }
    .section-2-content
    {
        align-items: flex-start;
    }
    
    form
    {
        gap: 7.5px;
        margin: 0 0 50px 0;
    }
    .input
    {
        padding: 15px 20px;
        font-size: 15px;
    }
    .message
    {
        height: 100px;
    }
    .submit
    {
        box-shadow: 0 0 0px 1.5vw #e2deff;
        padding: 0 5vw;
    }
}