.landing-page{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.admin-bar.landing-page {
    min-height: calc(100vh - 32px);
}
@media screen and (max-width: 782px) {
    .admin-bar.landing-page {
        min-height: calc(100vh - 46px);
    }
}
.landing-page header{
    padding: 20px 0 30px 0;
}
.landing-page header a.brand{
    display: inline-block;
}

.landing-page .top_page{
    margin: 0;
    height: 200px;
    min-height: auto;
    background-color: #1d487b;
}
.landing-page .top_page h1{
    top:50%;
    left:50%;
    transform:translateX(-50%) translateY(-50%);
    width: 90%;
    text-align: center;
}

.landing-page .content {
    flex: 1;
    padding: 50px 0;
}
.landing-page .content .post_content h2{
    margin: 40px 0 15px 0;
}

.landing-page .footer{
    background-color: #1aa6a6;
    color: #ffffff;
}
.landing-page .footer a{
    color: #ffffff;
}

#modal-legals{
    z-index: 100000;
}
#modal-legals .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
#modal-legals .modal-content {
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
#modal-legals .modal-header,
#modal-legals .modal-footer {
    flex-shrink: 0;
}
#modal-legals .modal-body {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}