@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    font-family: "Poppins", sans-serif;
}

.span_color{
    color: #871910;
}

body{
    background: url('../img/bg-all.png');
    background-position: center;
    background-size: cover;
    height: 100vh;
}

/* HEADER */

.header {
    z-index: 3;
    display: flex;
    padding: 50px 0 20px 0;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header_nav {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}

.header_nav_list {
    display: flex;
    gap: 74px;
    width: 100%;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.header_nav_list_item {
    color: white;
    font-size: var(--font-txt);
}

.header_nav_list_item_link {
    color: white;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
}

.header_nav_logo {
    width: 150px;
    margin: 0 0 30px 0;
}

/* NAV MOBILE */

.header_nav_mobile_list_item_link {
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
}

.header_nav_mobile_button {
    width: 30px;
    height: 25px;
    border-radius: 10px;
    gap: 8px;
    flex-direction: column;
    padding: 10px 5px 10px 5px;
}

.header_nav_mobile_button_row {
    width: 100%;
    height: 3px;
    border-radius: 12px;
    background: white;
}

.header_nav_mobile {
    position: fixed;
    width: 75vw;
    height: 100vh;
    background-color: #a90c0c;
    transform: translateX(-100vw);
    display: flex;
    color: white;
}

.header_nav_mobile-active {
    position: fixed;
    display: flex;
    justify-content: flex-start;
    width: 75vw;
    height: 100vh;
    background-color: #a90c0c;
    transform: translateX(0);
    transition: 0.3s;
    left: 0;
    color: white;
    z-index: 4;
    top: 0px;
}

.header_nav_mobile_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 7vh 0 0 20px;
}

.header_nav_mobile_list_item {
    font-size: calc(var(--font-txt) + 5px);
    color: black;
}

@media (max-width: 980.98px) { 

    .header_nav_list {
        display: none;
    }

    .header_nav_mobile_button{
        display: flex;
    }

    .header_nav {
        display: flex;
        flex-direction: row;
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }

    .header {
        padding: 27px;
    }
}

.footer {
    margin: 8vh 0 0 0;
    background-color: #b71c1c;
    color: #fff;
    padding: 20px;
    text-align: center;
}


.footer_nav_list {
    list-style-type: none;
    padding: 0;
}

.footer_nav_list_item {
    display: inline-block;
    margin-right: 15px;
}

.footer_nav_list_item_link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer_info {
    margin-top: 20px;
    font-size: 14px;
}
