@keyframes slide-down {
    0% {
        top: -5rem;
    }
    25% {
        top: 2rem;
    }
    75% {
        top: 2rem;
    }
    100% {
        top: -5rem;
    }
}
@keyframes slide-left {
    from {
        right: -25rem;
    }
    to {
        right: 0;
    }
}
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
html {
    font-size: 10px;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: "Roboto", serif;
    font-size: 1.5rem;
}
*.hidden {
    display: none !important;
}
.material-icons {
    -webkit-user-select: none;
    user-select: none;
}
.heading {
    color: #003366;
    font-size: 2.5rem;
    font-weight: 600;
}
.sub-heading {
    color: #003366;
    font-size: 2rem;
    font-weight: normal;
}
.label {
    display: block;
    margin: 1.5rem 0;
    color: #003366;
    font-weight: 600;
    cursor: pointer;
}
.input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 1rem;
    border: none;
    border: 0.2rem solid #a5a5a5;
    border-radius: 0;
    outline: none;
    color: #003366;
    background-color: white;
    font-family: inherit;
    font-size: 1.5rem;
    resize: none;
    transition-property: border-color;
    transition-duration: 0.25s;
    appearance: none;
}
.input:focus {
    border: 0.2rem solid #003366;
}
.input:not(textarea, input[type="file"]) {
    height: 5rem;
}
.input::file-selector-button {
    padding: 1rem;
    margin-right: 1rem;
    border: none;
    color: white;
    background-color: #003366;
}
.input-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.anchor {
    color: #003366;
}
.error {
    color: red;
    font-weight: 600;
}
.success {
    color: green;
    font-weight: 600;
}
.button {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin: 1rem 1rem 1rem 0;
    width: max-content;
    height: max-content;
    border: none;
    border-radius: 0;
    color: white;
    background: linear-gradient(135deg, #003366 30%, #00bbb9 100%);
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition-property: background-color;
    transition-duration: 0.25s;
}
.button:hover {
    background: linear-gradient(135deg, #00bbb9 30%, #003366 100%);
}
.button .material-icons {
    margin-right: 0.5rem;
}
.row {
    display: flex;
    align-items: center;
    height: max-content;
}
.row-top {
    display: flex;
    align-items: flex-start;
    height: max-content;
}
.column {
    flex: 1;
}
.column:not(.column:last-child) {
    padding-right: 1rem;
}
.container {
    box-sizing: border-box;
    width: 1280px;
    max-width: 100%;
    padding: 1rem;
    margin: 0 auto auto auto;
}
.navbar {
    background-color: white;
    border-bottom: 0.1rem solid #ededed;
}
.navbar .row {
    justify-content: right;
}
.navbar-item {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: 5rem;
    padding: 1rem;
    color: #333539;
    font-weight: 600;
    text-decoration: none;
    transition-property: background-color;
    transition-duration: 0.25s;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}
.navbar-item:hover>.navbar-item-dropdown {
    display: block;
}
.navbar-item-heading {
    display: flex;
    flex-direction: column;
}
.navbar-item-heading .material-icons {
    transform: rotate(0);
    transition-property: transform;
    transition-duration: 0.5s;
}
.navbar-underline {
    width: 0;
    height: 0.2rem;
    background-color: #00bbb9;
    transition-property: width;
    transition-duration: 0.25s;
}
.navbar-item:hover .navbar-underline {
    width: 100%;
}
.navbar-item-dropdown {
    position: absolute;
    top: 5rem;
    left: 0;
    z-index: 1;
    box-sizing: border-box;
    display: none;
    width: 25rem;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 0 0.5rem #c9c9c9;
    font-size: 1.3rem;
}
.navbar-item-dropdown .dropdown-item {
    position: relative;
    display: block;
    padding: 1rem;
    color: #333539;
    font-weight: 600;
    text-decoration: none;
    transition-property: background-color;
    transition-duration: 0.25s;
    -webkit-user-select: none;
    user-select: none;
}
.navbar-item-dropdown .dropdown-item:hover {
    color: #00bbb9;
    background-color: #EDFAFA;
}
.navbar-item-dropdown .navbar-item {
    height: unset;
    transition-property: background-color;
    transition-duration: 0.25s;
}
.navbar-item-dropdown .navbar-item:hover {
    color: #00bbb9;
    background-color: #EDFAFA;
}
.navbar-item-dropdown .navbar-item>.navbar-item-dropdown {
    top: 0;
    left: unset;
    right: -25rem !important;
}
.navbar-item-dropdown .navbar-item-heading {
    flex: 1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.navbar-item-dropdown .navbar-item-heading .material-icons {
    font-size: 1.5rem;
}
.navbar-social {
    display: flex;
    padding: 0.5rem;
    border-radius: 50%;
    background-color: white;
    transition-property: background-color;
    transition-duration: 0.25s;
}
.navbar-social:hover {
    background-color: #00bbb9;
}
.navbar-social img {
    width: 1.6rem;
}
.checkbox-container:not(.checkbox-container:last-child) {
    margin-right: 2.5rem;
}
.checkbox {
    position: relative;
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
    border: 0.2rem solid #a5a5a5;
    background-color: white;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition-property: border-color;
    transition-duration: 0.25s;
}
.checkbox.active {
    border-color: #003366;
}
.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkbox .material-icons {
    margin: auto;
    color: white;
    transition-property: color;
    transition-duration: 0.25s;
}
.checkbox.active .material-icons {
    color: #003366;
}
.break {
    width: 75rem;
    max-width: 100%;
    margin: 2.5rem auto;
    border: none;
    border-bottom: 0.2rem solid #003366;
    color: #003366;
}
.tab {
    display: flex;
    justify-content: center;
    padding: 1rem;
    color: #003366;
    text-decoration: none;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition-property: background-color;
    transition-duration: 0.25s;
}
.tab:not(.tab-active):hover {
    background-color: #ededed;
}
.tab-active {
    background-color: #dbdbdb;
    font-weight: 600;
}
.table-container {
    overflow: auto;
}
.table {
    table-layout: fixed;
    width: 1260px;
    margin: 2.5rem 0;
    border-collapse: collapse;
    text-align: center;
}
.table caption {
    margin-bottom: 1rem;
    text-align: left;
}
.table th, .table td {
    padding: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.table thead tr {
    background-color: #dbdbdb;
}
.table tbody tr:nth-child(even) {
    background-color: #ededed;
}
.table tbody tr:nth-child(odd) {
    background-color: white;
}
.table a {
    display: flex;
    justify-content: center;
    color: #003366;
    text-decoration: none;
}
.menu-item {
    box-sizing: border-box;
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 1rem 0;
    border-bottom: 0.1rem solid #ededed;
    margin-left: auto;
    color: #333539;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
}
.menu-item .material-icons {
    color: #ededed;
    transform: rotate(0);
    transition-property: transform;
    transition-duration: 0.5s;
}
.menu-item-active {
    text-decoration: underline;
}
.menu-item-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition-property: color;
    transition-duration: 0.25s;
}
.menu-item-dropdown {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 0;
    padding: 0 1rem;
    overflow: hidden;
    transition-property: max-height, padding;
    transition-duration: 0.5s;
}
.menu-item.active>.menu-item-dropdown {
    max-height: 55rem;
    padding: 1rem;
}
.menu-item.active>.menu-item-heading {
    color: #00bbb9;
}
.menu-item.active>.menu-item-heading .material-icons {
    transform: rotate(45deg);
}
.menu-item-dropdown .dropdown-item {
    display: block;
    color: #333539;
    text-decoration: none;
}
.menu-item-dropdown .menu-item {
    border: none;
    padding: 0;
}
.menu-social {
    display: flex;
    padding: 0.5rem;
    border-radius: 50%;
    background-color: white;
    transition-property: background-color;
    transition-duration: 0.25s;
}
.menu-social:hover {
    background-color: #00bbb9;
}
.menu-social img {
    width: 1.6rem;
}
.choice-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: 0.2rem solid #003366;
    margin: 1rem;
    color: #003366;
    text-decoration: none;
}
.choice-item {
    cursor: pointer;
    transition-property: box-shadow;
    transition-duration: 0.25s;
}
.choice-item:hover {
    box-shadow: 0.5rem 0.5rem 0 #003366;
}
.choice-item-body {
    margin: auto;
    text-align: center;
}
.copyright-contact {
    display: flex;
    align-items: center;
}
.copyright-contact:first-of-type {
    margin-right: 2.5rem;
}
.copyright-contact .material-icons {
    margin-right: 0.5rem;
    font-size: 18px;
}
.reference {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.reference .button {
    margin: 0;
}
.reference-receipt {
    margin: 0;
}
.reference-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.home-contents {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2.5rem;
    padding: 2.5rem;
}
.home-content {
    flex: 1;
    border-image: linear-gradient(to right, #003366 30%, #00bbb9 100%) 1;
    border-style: solid;
    border-width: 0.1rem;
    padding: 2.5rem;
    color: #003366;
}
.home-content .heading {
    margin-top: 0;
    text-align: center;
}
.home-content hr {
    width: 10rem;
    height: 0.5rem;
    margin: 2.5rem auto;
    border: none;
    background: linear-gradient(to right, #003366 30%, #00bbb9 100%);
}
.group {
    display: flex;
    padding: 2.5rem;
    color: white;
    background-color: #003366;
    border: 0.2rem solid #003366;
    -webkit-user-select: none;
    user-select: none;
    transition-property: color, background-color;
    transition-duration: 0.25s;
}
.group :is(h2, p, strong, a) {
    color: white;
    margin: 0;
    transition-property: color;
    transition-duration: 0.25s;
}
.group h2 {
    color: white;
}
.group p {
    padding: 0;
}
.group:hover, .group.active {
    background-color: white;
}
.group:hover :is(h2, p, strong, a), .group.active :is(h2, p, strong, a) {
    color: #003366;
}
.group-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.group-checkbox {
    display: flex;
    margin: auto 0 auto auto;
}
.group-checkbox span {
    font-size: 5rem;
    opacity: 0;
    color: #003366;
    transition-property: opacity;
    transition-duration: 0.25s;
}
.group-input {
    position: absolute;
    appearance: none;
    margin: 0;
}
.group.active .group-checkbox span {
    opacity: 1;
}
.verbal {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    text-decoration: none;
}
.verbal:hover .verbal-text {
    text-decoration: underline;
}
.partner {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.partner-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    width: 5rem;
    border-radius: 50%;
    background-color: #003366;
    color: white;
}
.partner-icon .material-icons {
    color: white;
}
.description {
    text-align: justify;
}
.viewed {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: green;
    font-weight: 700;
}
.verbals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}
.password-container {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: 5rem;
    border: 0.2rem solid #a5a5a5;
    padding: 1rem;
    transition-property: border-color;
    transition-duration: 0.25s;
}
.password-container:has(input:focus) {
    border: 0.2rem solid #003366;
}
.password-container input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    padding: 0;
    font-family: inherit;
    font-size: 1.5rem;
    color: #003366;
}
.password-container .button {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    color: #003366;
}
.password-container .button .hide {
    display: none;
}
.password-container .button.active .view {
    display: none;
}
.password-container .button.active .hide {
    display: flex;
}
.password-container .button .material-icons {
    margin: 0;
}
.content video {
    width: 100%;
}
.assurance-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25rem;
    gap: 1rem;
    text-decoration: none;
    color: #003366;
}
.assurance-link:hover {
    text-decoration: underline;
}
.assurance-link p {
    text-align: center;
}
.content-dropdown-heading {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    border: none;
    border-bottom: 0.1rem solid black;
    background: transparent;
}
.content-dropdown-heading .material-icons {
    font-size: 36px;
    color: #003366;
    transition-property: transform;
    transition-duration: 0.5s;
}
.content-dropdown.active .content-dropdown-heading .material-icons {
    transform: rotate(180deg);
}
.content-dropdown-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    margin: 1rem;
    visibility: hidden;
    transition-property: max-height, visibility;
    transition-duration: 0.5s;
}
.content-dropdown.active .content-dropdown-body {
    max-height: 25rem;
    visibility: visible;
}
#login {
    box-sizing: border-box;
    width: 50rem;
    max-width: 100%;
    padding: 1rem;
    margin: auto;
}
#toolbar {
    color: white;
    background-color: #003366;
}
#user {
    margin-left: 0.5rem;
}
#logout {
    display: flex;
    align-items: center;
    height: max-content;
    margin-left: auto;
    color: white;
    text-decoration: none;
}
#logout span {
    margin-left: 0.5rem;
}
#navbar-items {
    display: flex;
    width: 100%;
    gap: 2.5rem;
}
#navbar-socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
#menu-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.5rem 0;
}
#mobile-navbar {
    display: none;
}
#mobile-navbar img {
    margin-right: auto;
}
#open-menu {
    display: block;
}
#menu-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    animation-name: fade-in;
    animation-fill-mode: forwards;
    animation-duration: 0.25s;
}
#menu-container.active {
    display: block;
}
#menu {
    position: fixed;
    top: 0;
    right: -25rem;
    z-index: 1;
    box-sizing: border-box;
    width: 25rem;
    height: 100%;
    padding: 2rem;
    overflow: auto;
    background-color: white;
    animation-name: slide-left;
    animation-fill-mode: forwards;
    animation-duration: 0.25s;
    animation-delay: 0.25s;
}
#close-menu {
    appearance: none;
    display: flex;
    padding: 0;
    margin-left: auto;
    border: none;
    color: white;
    background: #00bbb9;
}
#close-menu .material-icons {
    font-size: 24px;
}
#snackbar-container {
    position: relative;
    width: 30rem;
    margin: 0 auto;
}
#snackbar {
    position: fixed;
    top: -5rem;
    z-index: 2;
    box-sizing: border-box;
    width: inherit;
    padding: 1rem;
    box-shadow: 0 0 1rem #003366;
    color: white;
    background-color: green;
    text-align: center;
    animation-name: slide-down;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}
#consent-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation-name: fade-in;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}
#consent {
    box-sizing: border-box;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 1280px;
    max-width: 100%;
    padding: 2.5rem;
    margin: auto;
    box-shadow: 0 0 1rem #003366;
    background-color: white;
}
#choice-container {
    width: 768px;
    max-width: 100%;
    margin: auto;
}
#choice-container .heading, #choice-container p, #choice-container h2 {
    text-align: center;
}
#choice-container h2 {
    width: 100%;
    margin-top: 0;
    font-weight: normal;
}
#choice {
    display: flex;
    margin: auto;
}
#logo {
    margin-right: 2.5rem;
}
#footer {
    background-color: #003366;
}
#contacts-container {
    display: flex;
    padding: 5rem 0;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
}
#logos-container, #contacts {
    flex: 1;
}
#logos-container img {
    margin-bottom: 2.5rem;
}
#contacts p {
    margin: 0;
}
#footer p {
    font-size: 1.3rem;
    line-height: 1.7rem;
    color: white;
}
#footer a {
    color: white;
}
#copyright-container {
    display: flex;
    justify-content: space-between;
}
#copyright-contacts {
    display: flex;
}
#header {
    background-image: url(../img/header.png);
    background-size: cover;
    background-position: center;
}
#header h1 {
    margin-bottom: 0;
    color: white;
    font-size: 8rem;
    font-weight: 400;
}
#header h2 {
    margin-top: 0;
    color: #00bbb9;
    font-size: 2.5rem;
    font-weight: 400;
}
#home-container {
    flex: 1;
    display: flex;
    padding: 0;
}
#sidebar {
    position: relative;
    box-sizing: border-box;
    width: 25rem;
    padding: 0 2.5rem;
    background-color: #e5e5e5;
}
#sidebar-content {
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem 0;
}
#sidebar .button {
    margin: 2.5rem 0 0 0;
}
#sidebar .anchor {
    color: #003366;
    text-decoration: none;
}
#sidebar .anchor:hover, #sidebar .anchor.active {
    text-decoration: underline;
}
#groups {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
#passed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(90deg, #ebc9c0, transparent);
}
#passed h2, #passed p, #passed a {
    margin: 0;
}
#references {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#assurance {
    padding: 2rem;
    font-size: 2rem;
}
#assurance-contacts {
    display: block;
    max-width: 100%;
    margin: 5rem 0;
}
#assurance-media {
    margin: 5rem 0;
}
#assurance-links {
    display: flex;
    flex-wrap: wrap;
    width: 50rem;
    max-width: 100%;
    margin: 2.5rem 0;
}