/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    margin-top: 0;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}



/* FONT */



@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

html {
    font-family: 'Montserrat', sans-serif;
    color: #273433;
}



/* NavBar */



header.header_navigation_bar {
    background-color: #273433;
    width: 100%;
    display: flex;
    height: 7em;
}

.tabarja {
    text-align: start;
    font-size: 0.75em;
    color: #b9cfb9;
    display: block;
}

nav.nav_navigation_bar {
    width: 100%;
    padding: .5em 1em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: space-evenly;
    flex-wrap: wrap;
}

div.nb_logo {
    flex-grow: 1;
    max-width: max-content;
}

a.logo_link {
    color: #f2f1f1;
    text-decoration: none;
    font-size: 2.8em;
}

ul.nb_menu {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: space-evenly;
    flex-wrap: wrap;
    flex-grow: 5;
}

li.nb_entry {
    margin: 0 2em;
    text-align: center;
}

a.entry_link {
    color: #f2f1f1;
    text-decoration: none;
    font-size: 1.75em;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0.1em 0.3em;
    transition: all 0.1s ease-in-out;
    text-align: center;
}

a.entry_link:hover {
    background-color: #b9cfb9;
    color: #273433;
    border: 1px solid #b9cfb9;
}

div.nb_signin {
    min-width: 8em;
    flex-grow: 1;
    text-align: end;
}

a.signin_link {
    color: #f2f1f1;
    text-decoration: none;
    font-size: 1.75em;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0.1em 0.3em;
    transition: all 0.2s ease-in-out;
}

a.signin_link:hover {
    color: #b9cfb9;
    border: 1px solid #b9cfb9;
}



#classa {
    width: 100%;
    height: 4em;
    border: 2px solid #273433;
}

.mobile-signin {
    display: none;
}


/* BACKGROUND IMAGE */
body {
    background-color: #f2f1f1;
    background-image: url(/images/rocks_pics/rocksbg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    backdrop-filter: blur(0.5em);
}

/* FOOTER */



footer.footer_footer {
    width: 100%;
    height: 17.5em;
    display: block;
    background-color: #273433;
}

div.footer_1 {
    display: flex;
    justify-content: space-evenly;
    align-items: baseline;
}

/* nav.footer_nav {
} */

h2.footer_h2 {
    color: #f2f1f1;
    margin-top: 0.75em;
    margin-bottom: 0.2em;
    font-size: 1.75em;
}

ul.footer_ul {
    list-style-type: none;
    margin-left: 0.5em;
    border-left: 1px solid #b9cfb9;
}

li.footer_li {
    margin: 0.1em 0 0.1em 0.5em;
}

a.footer_a {
    color: #f2f1f1;
    text-decoration: none;
    font-size: 1.2em;
}

a.footer_a:hover {
    color: #b9cfb9;
    text-decoration: underline;
}

div.footer_2 {
    text-align: center;
    border-top: 1px solid #b9cfb9;
    width: 100%;
    margin: 1em 0;

}

ul.ul_trademarks {
    display: flex;
    justify-content: space-evenly;
    align-items: baseline;
    padding: 2em;
}

p.desc {
    font-size: 1em;
    color: #b9cfb9;
}

a.a_trademarks {
    color: #b9cfb9;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: 500;
}

a.a_trademarks:hover {
    text-decoration: underline;
}



/* MEDIA */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger div {
    width: 2rem;
    height: 0.25rem;
    background: #f2f1f1;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    transform-origin: 1px;
}

@media (max-width: 1294.98px) {
    header.header_navigation_bar {
        height: 6em;
    }

    a.logo_link {
        font-size: 2em;
    }

    a.entry_link {
        font-size: 1.2em;
    }

    a.signin_link {
        font-size: 1.2em;
    }
}

/* Media query for responsive design */
@media (max-width: 1194.98px) {
    header.header_navigation_bar {
        height: 6em;
    }

    a.logo_link {
        font-size: 2.4em;
    }

    a.entry_link {
        font-size: 1.4em;
    }

    a.signin_link {
        font-size: 1.4em;
    }
}

@media (max-width: 1117.98px) {
    header.header_navigation_bar {
        height: 6em;
    }

    a.logo_link {
        font-size: 2em;
    }

    a.entry_link {
        font-size: 1.3em;
    }

    a.signin_link {
        font-size: 1.3em;
    }

    p.tabarja {
        font-size: 0.7em;
    }
}

@media (max-width: 1040.98px) {
    header.header_navigation_bar {
        height: 6em;
    }

    a.logo_link {
        font-size: 2em;
    }

    a.entry_link {
        font-size: 1.2em;
    }

    a.signin_link {
        font-size: 1.2em;
    }

    p.tabarja {
        font-size: 0.6em;
    }
}

@media (max-width: 1010.98px) {
    header.header_navigation_bar {
        height: 6em;
    }

    a.logo_link {
        font-size: 2em;
    }

    a.entry_link {
        font-size: 1.2em;
    }

    a.signin_link {
        font-size: 1.2em;
    }

    p.tabarja {
        font-size: 0.8em;
    }


}

@media (max-width: 899.98px) {
    header.header_navigation_bar {
        height: 4.2em;
    }

    a.logo_link {
        font-size: 1.45em;
    }

    a.entry_link {
        font-size: 0.85em;
    }

    a.signin_link {
        font-size: 0.85em;
    }

    p.tabarja {
        font-size: 0.8em;
    }
}

@media (max-width: 843.98px) {
    header.header_navigation_bar {
        height: 8em;
    }

    p.tabarja {
        text-align: center;
        font-size: 0.6em;
        display: inline;
    }

    a.logo_link {
        font-size: 2.2em;
    }

    a.entry_link {
        font-size: 1.2em;
    }

    a.signin_link {
        font-size: 1.2em;
    }
}

@media (max-width: 767.98px) {

    footer.footer_footer {
        height: max-content;
    }

    h2.footer_h2 {
        font-size: 1.5em;
    }

    a.footer_a {
        font-size: 1.1em;
    }

    div.footer_2 {
        margin-bottom: 0;
    }

    p.desc {
        font-size: 0.9em;
        margin-top: 0.25em;
    }

    a.a_trademarks {
        font-size: 1.25em;
    }

}


@media (max-width: 729.98px) {
    header.header_navigation_bar {
        height: 7em;
    }

    a.logo_link {
        font-size: 2.1em;
    }

    a.entry_link {
        font-size: 1em;
    }

    a.signin_link {
        font-size: 1em;
    }
}

@media (max-width: 680.98px) {
    header.header_navigation_bar {
        height: 7em;
    }

    a.logo_link {
        font-size: 2.1em;
    }

    a.entry_link {
        font-size: 1em;
    }

    a.signin_link {
        font-size: 1em;
    }

    div.nb_signin {
        flex-grow: 0;
        text-align: center;
    }

    ul.nb_menu {
        flex-grow: 0;
    }
}

@media (max-width: 620.98px) {
    header.header_navigation_bar {
        height: 6em;
    }

    a.logo_link {
        font-size: 2em;
    }

    a.entry_link {
        font-size: 1em;
    }

    a.signin_link {
        font-size: 1em;
    }
}

@media (max-width: 583.98px) {

    nav.nav_navigation_bar {
        padding: .5em 1em .5em 1em;
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 2rem;
        right: 2rem;
    }

    .tabarja {
        text-align: start;
        font-size: 0.75em;
        display: block;
    }

    ul.nb_menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: -400px;
        /* Start off-screen */
        left: 0;
        width: 100%;
        background-color: #273433;
        padding: 0;
        z-index: 9;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: top 0.4s ease-in-out;
        overflow: hidden;
    }

    ul.nb_menu.active {
        top: 5em;
        /* Slide down to this position */
    }

    li.nb_entry {
        margin: 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    }

    ul.nb_menu.active li.nb_entry {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger the animation for each menu item */
    ul.nb_menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    ul.nb_menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    ul.nb_menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    ul.nb_menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    a.entry_link {
        display: block;
        padding: 1em;
        font-size: 1.5em;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #3a4a48;
    }

    a.entry_link:hover {
        background-color: #b9cfb9;
    }

    div.nb_signin {
        display: none;
    }

    .mobile-signin {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0;
        margin-top: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    }

    ul.nb_menu.active .mobile-signin {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.5s;
    }

    /* .mobile-signin a {
        color: #f2f1f1;
        text-decoration: none;
        font-size: 1.5em;
        border: 1px solid transparent;
        border-radius: 10px;
        padding: 0.1em 0.3em;
        transition: all 0.2s ease-in-out;
        display: inline-block;
    } */
    /* 
    .mobile-signin a:hover {
        color: #b9cfb9;
        border: 1px solid #b9cfb9;
    } */

    nav.nav_navigation_bar {
        justify-content: flex-start;
    }

    a.logo_link {
        font-size: 1.75em;
    }

    /* Hamburger animation */
    .hamburger.active div:nth-child(1) {
        transform: rotate(45deg);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
        transform: rotate(-45deg);
    }

    p.tabarja {
        text-align: start;
        font-size: 0.75em;
        color: #b9cfb9;
        display: block;
    }
}

@media (max-width: 575.98px) {

    footer.footer_footer {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        /* padding: 0 2em; */
    }

    div.footer_1 {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        align-self: center;
        width: 30%;
        /* border-right: 1px solid #b9cfb9; */
        margin-bottom: 1em;
    }


    div.footer_2 {
        text-align: start;
        border-top: none;
        width: 40%;
    }

    h2.footer_h2 {
        align-self: baseline;
        font-size: 1.3em;
    }

    a.footer_a {
        font-size: 1em;
    }

    ul.ul_trademarks {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: baseline;
        padding: 0;
    }

    p.desc {
        font-size: 0.8em;
        color: #b9cfb9;
    }

    li.li_trademarks {
        margin: 1em 0;
    }

    a.a_trademarks {
        font-size: 1.3em;
    }

}

@media (max-width: 380.98px) {
    a.logo_link {
        font-size: 1.5em;
    }
}