@import url('https://fonts.googleapis.com/css2?family=Lexend+Peta:wght@100..900&display=swap');

* {
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 8.1rem;
}

body {
    width: 100%;
    height: 100%;
    font-family: 'Droid Sans', sans-serif;
    margin: 0;
    height: 100%;
    background: #212121;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.backdrop {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    background: #00000080;
}

.main-mobile_nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    width: 100%;
    margin-top: 1rem;
    padding: 0 1.5rem;
}

.main-nav {
    display: none;
}

.ausma_logo {
    width: 12rem;
    height: 5rem;
}

.toggle-button {
    width: 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding-top: 0;
    padding-bottom: 0;
}

.toggle-button:focus {
    outline: none;
}

.toggle-button__bar {
    width: 100%;
    height: 0.2rem;
    background: #41B8AA;
    display: block;
    margin: 0.6rem 0;
}

.mobile-nav {
    display: none;
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    background: #282828;
    width: 80%;
    height: 100vh;
}

.mobile-navigation_logo {
    width: 10rem;
    height: 8rem;
    margin: 7rem 0 1rem 0;
}

#company_name-mobile {
    font-family: "Lexend Peta", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
}

.mobile-navigation_options {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-navigation_option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #41B8AA;
    font-size: 20px;
    font-weight: bold;
    margin: 1rem 0 1rem 0;
}

.dropdown_mobile_button {
    background-color: #282828;
    color: #41B8AA;
    padding: 16px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.dropdown_nav {
    display: none;
}

.mobile_dropdown_languages {
    position: relative;
    display: inline-block;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: #3d3d3d;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown a {
    color: #41B8AA;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {
    background-color: #9d9d9d;
}

.mobile_dropdown_languages:hover .dropdown {
    display: block;
}

.mobile_dropdown_languages:hover .dropbtn {
    background-color: #282828;
}

.arrow {
    border: solid #41B8AA;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin: 0 0 3px 6px;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 1rem;
    background-color: #1c1c1cff;
}

#copyright {
    font-size: 14px;
    color: #afafaf;
    font-weight: 200;
}

#contact {
    font-size: 14px;
    color: rgb(175, 175, 175);
    text-decoration: none;
}

.open {
    display: block !important;
}

@media (min-width: 1080px) {
    .toggle-button {
        display: none;
    }

    .main-mobile_nav {
        display: none;
    }

    .main-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 90px;
        width: 100%;
        margin-top: 1rem;
        padding: 0 1.5rem;
    }

    #nav-items {
        display: flex;
        flex-direction: row;
        align-items: center;
        color: #41B8AA;
        text-decoration: none;
        font-weight: 100;
    }

    .navigation_option {
        font-weight: 100;
        cursor: pointer;
        color: #41B8AA;
        text-decoration: none;
        font-size: 20px;
        padding: 12px 2rem;
    }

    .special {
        font-weight: 100;
        cursor: pointer;
        color: #212121;
        background: #41B8AA;
        border-radius: 30px;
        text-decoration: none;
        font-size: 20px;
        padding: 10px 1rem;
    }

    .special:hover,
    .special:active {
        background: #48d2c2;
    }

    .navigation_option:hover {
        background-color: #282828;
        transition: all 0.3s ease 0s;
    }

    .nav-dropdown-button {
        background-color: #212121;
        color: #41B8AA;
        padding: 12px 2rem;
        font-size: 20px;
        border: none;
        cursor: pointer;
    }

    .dropdown_nav {
        position: relative;
        display: inline-block;
    }

    .nav-dropdown {
        display: none;
        position: absolute;
        background-color: #282828;
        font-size: 20px;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }


    .nav-dropdown a {
        color: #41B8AA;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .nav-dropdown a:hover {
        background-color: #3d3d3d;
    }

    .dropdown_nav:hover .nav-dropdown {
        display: block;
    }

    .dropdown_nav:hover .nav-dropdown-button {
        background-color: #282828;
        transition: all 0.3s ease 0s;
    }

}

@media (min-width: 2400px) {
    .main-nav {
        max-width: 1750px;
        margin-left: auto;
        margin-right: auto;
    }

    #ausma_ai_logo-main {
        height: 38rem;
        max-width: 1750px;
        margin-left: auto;
        margin-right: auto;
    }

    footer {
        width: 1750px;
        max-width: 1750px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (orientation: landscape) {
    .mobile-navigation_logo {
        width: 2rem;
        height: 2rem;
        margin: 1rem 0 1rem 0;
    }

    .mobile-navigation_option {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #41B8AA;
        font-size: 14px;
        font-weight: bold;
        margin: 0rem 0 1.5rem 0;
    }

    .dropdown_mobile_button {
        padding: 0 14px 0 14px;
        font-size: 14px;
        border: none;
        cursor: pointer;
    }

    #company_name-mobile {
        font-size: 20px;

    }
}