@import 'menu.css';
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 8px;
    /* min-height: 100vh; */
}

@media(min-width: 200px) {
    html {
        font-size: 10px;
    }
}

@media(min-width: 300px) {
    html {
        font-size: 12px;
    }
}

@media(min-width: 550px) {
    html {
        font-size: 15px;
    }
}

@media(min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    overflow-x: hidden !important;
    background-color: black;
    display: flex;
    flex-direction: column;
    color: white;
    /* min-height: 100%; */
    font-family: Verdana, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    /* background: bg-color bg-image position/bg-size bg-repeat bg-origin bg-clip bg-attachment initial|inherit; */
    /* background: black url('img/background.png') 0 0/cover repeat initial fixed;  */
    background-image: url('img/background.jpg');
    background-size: cover;
    background-repeat: repeat;
    background-attachment: fixed;
    filter: blur(3px);
    opacity: 0.75;
}

.back-btn {
    position: absolute;
    margin: 20px;
    color: white;
    text-decoration: none;
}

.content {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.title {
    font-size: 3rem;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
}

.text {
    text-align: justify;
    font-size: 1.2rem;
}

@media(min-width: 768px) {
    .content {
        padding: 10px 40px;
    }
}

@media(min-width: 1200px) {
    .content {
        padding: 10px 60px;
        max-width: 60%;
        margin: 0 auto;
    }
}

.footer-logos img {
    max-height: 30px;
    margin: 0 20px;
}

/*------------------------------------------MENU--------------------------------------*/

/*-----------------------------------------FOOTER-------------------------------------------*/

.footer {
    background-color: #2F2B2Bdd;
    display: flex;
    margin: auto 0px 0px;
    font-size: 0.9rem;
    z-index: 1;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: flex-start;
}

.footer hr {
    width: 100%;
    border: none;
    border-top: 2px solid gray;
    margin: 0;
}

.footer hr.dark {
    border-color: rgb(77, 77, 77);
}

.footer h3 {
    user-select: none;
}

.footer-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .info-box {
    margin: 0 10px 10px;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 10px;
}

.footer-logos img {
    margin: 5px;
    user-select: none;
}

.footer-end {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    user-select: none;
    padding: 10px;
}

.footer .copyright {
    font-size: 0.9rem;
    text-align: center;
}

.footer .left {
    display: flex;
    font-size: 0.6rem;
    align-items: center;
}

.footer .left-image {
    height: 30px;
}

.footer .dead {
    color: gray;
}

.footer td {
    padding-bottom: 5px;
}

.footer td.dead {
    padding-left: 5px;
}

@media(min-width: 768px) {
    .footer .info-box {
        margin: 0 50px 30px;
    }
    .footer-logos {
        margin: 20px 30px 30px auto;
    }
    .footer .left {
        max-width: 30%;
    }
}

.hpe {
    display: none;
}

/*------------------------------------------MAIN-MENU--------------------------------------
 Display menu only on desktops
*/

.main-menu {
    display: none;
    user-select: none;
}

@media(min-width: 1200px) {
    .main-menu {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        top: 50%;
        text-align: start;
        left: 0;
        transform: translateY(-50%);
        font-size: 1.2rem;
    }
    .main-menu-item {
        padding: 15px 15px;
        list-style-type: none;
        transition: transform ease-out 0.3s;
        transform: translate(-30px);
    }
    .main-menu-item:hover {
        transform: translate(-20px);
    }
    .main-menu-dropdown {
        transition: transform ease-in-out 1s 0.6s;
        transform: translate(-270px);
    }
    .main-menu-dropdown:hover {
        transition: transform ease-in-out 1s;
        transform: translate(-150px);
    }
    .main-menu-dropdown:hover .main-hidden-submenu {
        /* display: flex; */
        visibility: visible;
        transition: visibility 1s 1s;
    }
    .main-menu-link {
        text-decoration: none;
        color: white;
    }
    .main-hidden-submenu {
        /* position: absolute; */
        /* transform: translate(0, 60%); */
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: flex-start;
        width: max-content;
        position: absolute;
        overflow-x: hidden;
        overflow-y: visible;
        /* border-left: 2px solid white; */
        top: 50%;
        padding-top: 15px;
        margin-top: 1px;
        left: 75%;
        transition-property: visibility;
        /* transition-delay: 0.3s; */
        transition-duration: 0.6s;
    }
    .main-menu-line {
        position: absolute;
        top: -25px;
        /*-15px*/
        left: 0;
        margin: 0;
        /* margin-top: 1px; */
        padding: 0;
        border-left: 2px solid white;
        height: 100%;
        z-index: 2;
        overflow-y: visible;
        /* transform: translateY(20px); */
    }
}

/* .content {
	animation: animatetext 1s ease;
} */

@keyframes animatetext {
    0% {
        transform: translate(-100%);
    }
    100% {
        transform: initial;
    }
}

@keyframes left {
    from {
        transform: translate(-100vw);
    }
}

@keyframes right {
    from {
        transform: translate(100vw);
    }
}

@keyframes top {
    from {
        transform: translateY(-100vh);
    }
}

@keyframes bottom {
    from {
        transform: translateY(100vh);
    }
}