/**************************
    TOP PAGE
***************************/
.dk_flex{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
}
.dk_menu {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
}
.page_content{
    width: 80%;
}
.page_hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.page_hero_title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.title_connection{
    padding: 0;
    margin: 3rem 0 3rem 0;
    width: fit-content
}
/**************************
    PAGE CONTENT
***************************/
.support_box{
    border: 3px solid var(--logo);
    border-radius: 3px;
    box-shadow: var(--color_sdw);
    width: 80%;
    margin-top: -19rem;
    margin-bottom: 5rem;
    padding: 5rem 2rem;
}
.support_box h2{
    margin-bottom: 5rem;
    text-align: center;
    font-size: 38px;
    font-weight: 600;
    color: var(--logo);
    line-height: 3.5rem;
}
.support_box div{
    max-width: 900px;
    width: 100%;
    margin:0 auto;
    font-size: 1rem;
    line-height: 1.8rem;
    font-weight: 300;
    text-align: justify;
}
.space{
    height: 1.5rem;
    width: 100%;
}
.btn{
    margin-top: 5rem;
}
/**************************
    MEDIA QUERY
***************************/
/* MOBILE */
@media (max-width: 1130px){
    .dk_flex{
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }
    .page_hero{
        width: 100%;
        margin-top: 2rem;
        align-items: center;
    }
    .dk_menu{
        width: 100%;
    }
    .dk_menu .logo_dk{
        display: none;
    }
    .support_box{
        width: 100%;
        margin-top: 0;
        margin-bottom: 5rem;
        padding: 5rem 2rem;
    }
}
@media (max-width: 580px){
    .support_box{
        padding: 3rem 1.5rem;
    }
    .support_box h2{
        margin-bottom: 3rem;
        font-size: 26px;
        line-height: 2.3rem;
    }
    .support_box div{
        font-size: .85rem;
        line-height: 1.5rem;
    }
    .btn{
        margin-top: 3rem;
    }
}
@media (max-width: 410px){
    .support_box{
        padding: 2rem 1rem;
    }
    .support_box h2{
        margin-bottom: 2rem;
        font-size: 21px;
        line-height: 2rem;
    }
    .support_box div{
        font-size: .85rem;
        line-height: 1.5rem;
    }
}
@media (max-width: 320px){
    .support_box{
        padding: 1.5rem 1rem;
    }
    .support_box h2{
        font-size: 19px;
        line-height: 1.8rem;
    }
    .btn{
        font-size: 15px;
    }
}