@charset "UTF-8";

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

/* ==== FONT PRIMARY ==== */

@font-face {
    font-family: 'CircularStd';
    src: url('../fonts/CircularStd-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nickainley';
    src: url('../fonts/Nickainley-Normal.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ==== FONT SECONDARY ==== */

@font-face {
    font-family: 'CircularStd';
    src: url('../fonts/CircularStd-Bold.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary: #111111;
    --dark-grey: #373737;
    --light-grey: #E3E0DD;
    --beige: #f1ece6;
    --white: #FFFFFF;
    --elemental: 'Elemental Sans Pro', sans-serif;
    --opensans: 'Open Sans', sans-serif;
    --edu: 'CircularStd', sans-serif;
    --edu: "Edu AU VIC WA NT Hand", cursive;
}

body {
    font-family: var(--edu);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    background-color: var(--beige);
}
body.no-scroll {
    overflow: hidden;
    height: 100%;
}

.main-title {
    text-align: center;
    font-family: 'Nickainley';
    color: var(--primary);
    font-weight: 400;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 10px;
}

h1,
h2 {
    text-align: center;
    font-family: 'Nickainley';
    color: var(--primary);
    font-weight: 400;
}

.main-logo {
    width: 250px;
}


/* HEADER */
.nav {
    display: flex;
    flex-direction: row;
    background-image: url('../images/header-bg.png');
    background-size: cover;
    background-position: center center;
    border-bottom: 3px solid black;
}
.nav-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 50px 5% 40px;
    gap: 30px;
}

.main-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-menu a {
    text-decoration: none;
    color: black;
}

/* HEADER END */

/* FOOTER */

footer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 45px 5% 30px;
    background-color: var(--primary);
    color: white;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 2px;
}

.footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer-menu a,
.footer-socials a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 400ms ease-in-out;  
}
.footer-menu a:hover,
.footer-socials a:hover {
   opacity: 0.7;
}

.footer-socials {
    margin-top: 25px;
}

.footer-socials .social-networks-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-socials .social-networks-list svg {
    fill: white;
}

.footer-socials .social-networks-list .social-name {
    margin-left: 5px;
}

.footer-logo {
    margin-top: 35px;
}

footer .go-top {
    position: absolute;
    right: 4.392vw;
    top: 1.977vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    footer {
        padding: 110px 5%;
    }
    .footer-links {
        max-width: 60%;
    }
    .footer-menu,
    .footer-socials .social-networks-list {
       text-align: center;
       flex-direction: column;
       gap: 20px;
    }
    .footer-socials .social-networks-list {
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .footer-socials .social-networks-list svg {
        margin-right: 12px;
    }
    
    .footer-socials .social-networks-list .social-name {
        display: inline-block;
    }
    footer .go-top {
        right: 5%;
        top: 40px;
    }
}
    
/* FOOTER END */

/* PAGES */

.page-content {
    
}

.page-content__wrapper {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 5vw 0
}