html {
    position: relative;
    min-height: 100%;
}

.break-word {
    word-wrap: break-word;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

input[readonly].readonly-text {
    background-color: #fff;
    cursor: text;
}

@font-face {
    font-family: "LavaPro Regular";
    src: url("../../fonts/LavaPro-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Akzidenz-Grotesk";
    src: url("../../fonts/AkzidGrtskProReg.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: rgba(221, 227, 225, 1);
    color: black;
    font-family: "Akzidenz-Grotesk", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    background-size: cover;
    background-attachment: fixed;
}

h1 {
    font-family: "LavaPro Regular", Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: 1.5em;
}

.navbar {
    background-color: #FFFFFF;
    position: relative;
    height: 80px;
    padding: 0;
}

.navbar-logo {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    max-height: 100%;
}

.navbar-logo img {
    max-height: 60px;
    width: auto;
    height: auto;
}

.navbar .navbar-brand {
    color: black !important;
}

.navbar-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    overflow: hidden;
    margin-top: 10px;
}

.navbar-middle img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.navbar-header img {
    max-height: 30px;
    width: auto;
    margin-top:-80px;
}

.custom-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 0.25em;
    padding: 1.2em;
    background-color: rgb(4, 150, 213);
    color: #ffffff !important;
    box-shadow: 0 0 0 4em rgb(4, 150, 213) inset;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.custom-button:hover {
    background-color: rgb(2, 120, 180);
    box-shadow: 0 0 0 4em rgb(2, 120, 180) inset;
}
