* {
    padding: 0;
    margin: 0;
    border: 0;
    font-family: Geologica;
}
*,
:after,
:before {
    box-sizing: border-box;
}
body {
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
    background-color: #f8f9fc;
    min-height: 100vh;
    position: relative;
}
.message{
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    padding-top: 5%;
    padding-bottom: 5%;

}

.service-header{
    padding-top: 4%;
    padding-left: 10%;
    padding-bottom: 20px;
}

.header_link-logo{
    display: flex;
    gap: 25px;
    align-items: center;
}

.header_link-caption{
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: 300;
    color: #242a34;
    padding-left: 5px;
    line-height: 1.2;
}

.header_link-caption::before {
    content: "";
    position: absolute;
    left: calc(0% - 15px);
    height: 46px;
    width: 1px;
    background-color: #525861;
    display: block;
}

a {
    color: inherit;
    -webkit-text-decoration: none;
    text-decoration: none !important;
}
a::hover {
    text-decoration: none !important;
}

.text{
    padding-top: 50px;
}

.not-found{
    font-family: Geologica;
    font-weight: 600;
    font-size: 38px;
    line-height: 110%;
}

.explanat{
    font-family: Geologica;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
 }

.btn-orange-primary {
    font-weight: 550;
    font-size: 16px;
    line-height: 1.6;
    color: #f66b34;
    border: 2px solid #f66b34;
    background-color: transparent;
    border-radius: 8px;
    white-space: nowrap;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-orange-primary:hover {
    background-color: #f66b34;
    color: #fff;
}

.btn-orange-primary:hover svg path {
    stroke: #fff;
}

.social_media{

}

.alert{
    padding-top: 16px;
    padding-bottom: 16px;
}

@media (min-width: 576px) {
    .service{
        height: 100vh;
    }
}

@media (max-width: 575px) {
    .return-button{
        display: block;
    }
    .return-button, .social_media{
        padding-top: 10px;
        text-align: center;
    }
}