body {
    margin: 0;
    padding: 0;
    background-color: #020504;
    color: white;
    font-family: Roboto, sans-serif;
}

header {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    background-color: #020504;
}

a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

a:hover {
    color: #44a805;
}

.header_logo {
    margin-left: 20px;
    display: block;
    background-image: url("images/logo_full.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 10rem;
    height: 5rem;
}

.nav_link {
    padding-right: 20px;
}

nav {
    display: flex;
    justify-content: end;
    margin-right: 25px;
}

ul {
    display: flex;
    justify-content: end;
}

.nav_button {
    background-image: url("images/menu.svg");
    background-color: transparent;
    border: none;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    display: none;
}

.mobil_menu_cntr {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #020504;
    padding-bottom: 20px;
    display: none;
}

.mobil_menu_cntr_visible {
    display: block;
}

.mobil_nav_button_cntr {
    display: flex;
    padding-top: 20px;
    padding-right: 25px;
    justify-content: right;
}

h2 {
    color: #44a805;
    text-align: center;
}

.mobil_menu_link {
    display: block;
    padding-bottom: 15px;
    text-align: center;
}

.nav_close_button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    background-image: url("images/close.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
}

main {
    padding: 75px 20px 150px 20px;
    max-width: 1280px;
    margin: auto;
}

h1 {
    text-align: center;
    font-size: 35px;
    margin: 0;
}

.subtitle {
    font-size: 25px;
    text-align: center;
    padding-bottom: 15px;
}

.subtitle_2 {
    font-size: 20px;
    text-align: center;

}

.description {
    font-size: 20px;
    padding-bottom: 10px;
}

.desc_title {
    padding-bottom: 2px;
    border-bottom: 1px solid #44a805;
    font-size: 22px;
}

.menu_link {
    padding: 5px 10px;
    background-color: #44a805;
    border-radius: 5px;
    font-size: 18px;
    margin-right: 10px;
}


.menu_link:hover {
    opacity: 0.8;
    color: white;
}

section {
    padding-bottom: 20px;
}

footer {
    background-color: #3E3D3D;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding: 0px 20px;

}

.footer_content {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: auto;
    align-items: center;
}

.footer_link {
    background-image: url("images/logo_footer1.png");

}


@media (max-width: 700px) {
    footer {
        padding-top: 10px;
    }
    .footer_content {
       flex-direction: column;
    }

    .address {
        display: none;
    }

    .footer_info {
        text-align: center;
    }
}


@media (max-width: 500px) {
    main {
        padding: 80px 10px 100px 10px;
    }
    footer {
        position: relative;
    }
    .nav_button {
        display: block;
    }

    .nav_link_group {
        display: none;
    }

    h1 {
        font-size: 25px;
    }

    .subtitle {
        font-size: 20px;
        text-align: center;
        padding-bottom: 20px;
    }

    .subtitle_2 {
        font-size: 20px;
        text-align: center;
        padding-bottom: 20px;
    }

    .desc_title {
        font-weight: bold;
    }

    .description {
        font-size: 18px;
        padding-bottom: 15px;
    }

    section {
        padding-bottom: 20px;
    }
}

@media (max-width: 360px) {
    .menu_link {
        display: block;
        margin-bottom: 5px;
        text-align: center;
    }

}