html {
    height: 100%
}

body {
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
    margin: 0;
    font-size: 100%;
    vertical-align: baseline;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
}

h1,
p {
    font-family: "noto-sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-block-start: 0;
    margin-block-end: 0;
    font-size: 80px;
    font-weight: 100;
    color: #001965;
}

.paragraph-s {
    font-size: 20px;
    line-height: 36px;
}

.text-center {
    text-align: center;
}

.root {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 97%;
}

.header {
    display: flex;
    width: 97%;
}

.footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 97%;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 97%;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 41.66666667%;
    gap: 20px;
}

.copyright {
    font-size: 15px;
    line-height: 24px;
}

.image-container img {
    width: 100%;
    height: auto;
}

.desktop {
    display: flex;
}

.mobile {
    display: none;
    width: 100%;
}

@font-face {
    font-family: 'icomoon';
    src: url('icomoon.woff?flv01o') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo {
    font-size: 70px;
}

.icon-logo-blue:before {
    content: "\e909";
    color: #001965;
}

@keyframes underlineMultiline {
    0% {
        border-bottom-color: #001965;
    }

    50% {
        border-bottom-color: transparent;
    }

    51% {
        background-size: 0% 1px;
        border-bottom-color: transparent;
    }

    100% {
        background-size: 100% 1px;
        border-bottom-color: transparent;
    }
}

a {
    position: relative;
    background-image: linear-gradient(#001965, #001965);
    background-position: 0% 102%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    border-bottom: 1px solid #001965;
    color: #001965;
}

a:-webkit-any-link {
    text-decoration: none;
}

a:hover,
a:focus {
    animation: underlineMultiline 0.6s cubic-bezier(0.250, 0.1, 0.250, 1) forwards;
}

@media only screen and (max-width: 2000px) {

    .paragraph-s {
        font-size: 22px;
        line-height: 36px;
    }
}

@media only screen and (max-width: 1024px) {

    .paragraph-s {
        font-size: 16px;
        line-height: 26px;
    }

    .container {
        width: 58.3333%;
    }
}

@media only screen and (max-width: 768px) {

    .logo {
        font-size: 50px;
    }

    .paragraph-s {
        font-size: 15px;
        line-height: 24px;
    }

    .container {
        width: 83.3333%;
    }
}

@media only screen and (max-width: 525px) {

    .desktop {
        display: none;
    }

    .mobile {
        display: flex;
    }
}