@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500;700&display=swap');
:root {
    --primary-font: 'Raleway', sans-serif;
    --secondary-font: 'Raleway', sans-serif;
    --primary-text-color: black;
    --secondary-text-color: grey;
}

/*#region header*/
.masthead {
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-text-block {
    color: white;
    text-align: center;
    max-width: 1170px;
}

.header-title {
    background-color: rgb(18, 86, 120, 0.40);
    display: inline;
    padding-right: 15px;
    padding-left: 15px;
}

.header-text {
    line-height: 0.8;
    background-color: rgb(18, 86, 120, 0.40);
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 10px;
}


@media (max-width: 768px) {
    .masthead {
        height: 425px;
    }
    .header-text-block {
        padding: 0px;
        line-height: 1;
        font-size: 40px;
        max-width: 400px;
    }
    .header-picture {
        padding: 0;
        font-size: 30px;
    }

    .header-text {
        background-color: transparent;
    }
    .header-title {
        background-color: transparent;
    }

    .mobile-text-background {
        background-color: rgb(18, 86, 120, 0.40);
        padding-bottom: 10px;
    }
}
/*#endregion header*/


body {
    padding-top: 84px;
    overflow-x: hidden;
}

/*#region hr*/
.custom-hr-small {
    background-color: #6d6c6c;
    height: 1px;
    width: 15%;
    margin: 10px auto;
}

.custom-hr-medium {
    background-color: #04476f;
    height: 4px;
    width: 50%;
    padding-block: 0;
    margin-bottom: 1px;
}

.custom-hr-large {
    background-color: #04476f;
    height: 4px;
    width: 100%;
    margin-bottom: 1px;
}
/*#endregion hr*/

/*#region footer-and-footer-panel*/
#back-to-top {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 99;
    font-size: 18px;
    line-height: 18px;
    border: none;
    outline: none;
    background-color: #f06601;
    color: white;
    cursor: pointer;
    padding: 15px;
}

    #back-to-top:hover {
        background-color: #555;
    }

.custom-footer {
    padding-top: 20px;
    padding-bottom: 30px;

}

.custom-footer-panel {
    background-size: cover;
    background-position: center;
    height: 610px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-panel-picture {
    color: white;
    text-align: center;
    padding: 60px;
}

@media (max-width: 768px) {
    .custom-footer {
        text-align: center;
        padding-left: 40px;
        padding-right: 40px;
    }

    .custom-footer-panel {
        height: 700px;
    }

    .footer-panel-picture {
        padding-right: 20px;
        padding-left: 20px;
    }
}
/*#endregion footer-and-footer-panel*/


/*#region buttons*/
.desktop-button {
    padding: 15px 35px 15px 35px !important;
}

@media (max-width: 768px) {
    .mobile-button {
        display: block !important;
        width: 100% !important;
        padding: 15px !important;
    }
}

.404-error-page-btn {
    text-align: center;
    margin-bottom: 70px;
}
    .404-error-page-btn a {
        background-color: #222222;
        border: medium none;
        color: #fff;
        font-size: 11px;
        font-weight: bold;
        line-height: 16px;
        padding: 8px 15px;
        margin-left: 6px;
    }
/*#endregion buttons*/


/*#region text*/
.grey-text p {
    color: var(--secondary-text-color) !important;
}

.grey-text a {
    color: var(--primary-text-color) !important;
    text-decoration: none;
}

.primary-font-small {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 12px;
    line-height: 2;
}

.primary-font-small-bold {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}

.primary-font {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 2;
}

.primary-font-bold {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 14px;
    line-height: 2;
}

.primary-font-medium-bold {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
}

.primary-font-large-bold {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.5;
}

.primary-font-extra-large-bold {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 50px;
    line-height: 1.5;
}
/*#endregion text*/