* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
    outline: none;
}
body {
    width: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    
    font-family: var(--font-body);
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 20px;
    font-style: normal;
    letter-spacing: 0.5px;
    background-color: var(--primary-container-background);;
}
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.logo {
    padding: 25px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    animation: full-rotate 10s infinite linear;
    cursor: pointer;
}

.scroll-y-nobar {
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
.scroll-y-nobar::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.body-wrapper {
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
.body-wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
}
 /* PAGE STYLING */
::selection {
    background: var(--primary-container-border);
    color: var(--primary-container-white);
}
::placeholder {
    color: var(--primary-container-border50);
}
a[href^="tel"] {
    color: inherit; /* Inherit text color of parent element. */
    text-decoration: none; /* Remove underline. */
}
.ni {
    user-select: none;
    pointer-events: none;
}
.ih:hover {
    text-decoration: underline;
    color: var(--primary-container-white);
    /* transition: 0.5s; */
}
.ih:hover .ihc {
    text-decoration: underline;
    color: var(--primary-container-white);
    /* transition: 0.5s; */
}
.sep {
    font-weight: 600;
    padding: 0 4px;
}
.hide-link {
    text-decoration: none;
    color: inherit;
}
.center {
    text-align: center;
}
.site-title {
    font-size: 50px;
}
h1 {
    font-size: 35px;
}
h2 {
    font-size: 25px;
}
p {
    font-size: 20px;
}

 /* FLEX ELEMENTS */
.flex-page {
    height: 100dvh;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.flex-container {
    width: 100%;
    display: flex;
    align-items: center;
}
.flex-center {
    justify-content: center;
}
.flex-inline {
    display: inline-flex;
}
.flex-column {
    flex-flow: column;
}
.flex-fill {
    flex: 1;
}
.flex-start {
    align-items: flex-start;
}
.flex-end {
    align-items: flex-end;
    justify-content: flex-end;
}
.flex-wrap {
    flex-wrap: wrap;
}
.ruby {
    display: ruby-text;
    white-space: nowrap;
}

.width-100 {
    width: 100%;
}

.width-90 {
    width: 90%;
}

.width-80 {
    width: 80%;
}

.width-50 {
    width: 50%;
}

.width-0 {
    width: 0;
}

.grid-1 {
    display: grid;
    grid-template-columns: 1fr;
}
.grid-1-10 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.grid-1-5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}
.grid-1-20 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-centre {
    text-align: centre;
}

/* NAVBAR */
.site-header {
    font-family: var(--font-heading);
    height: 100px;
    min-height: 100px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    /* border-bottom: 1px solid var(--primary-container-border); */
}
.nav-content {
    max-width: 1000px;
    margin: 0 20px;
}
.navbar-list, .footer-list {
    list-style: none;
}
.navbar-listitem-link {
    padding: 10px;
}
.navbar-active {
    font-weight: 900;
}
.burger {
    display: none;
    cursor: pointer;
}
.filling {
    display: block;
    width: 35px;
    height: 2px;
    margin: 6px 0;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.fade {
    -webkit-mask-image: linear-gradient(
        180deg,
        transparent 0%,
        #000 15%,
        #000 85%,
        transparent 100%
    );
    mask-image: linear-gradient(
        180deg,
        transparent 0%,
        #000 15%,
        #000 85%,
        transparent 100%
    );
}
/* PAGE ELEMENTS */
.interest-element-outline {
    padding: 10px;
    border: var(--primary-container-border) solid 1px;
    border-radius: 10px;
    color: inherit;
    background: inherit;
}
.fill {
    background: var(--primary-container-border);
    color: var(--primary-container-background);
}
.cookie-fill {
    color: var(--primary-container-background);
    background: var(--primary-container-border);
}
.social-image {
    margin: 0px 5;
    width: 20px;
    height: 20px;
}

/* FOOTER */
footer {
    font-family: var(--font-heading);
    height: 100px;
    min-height: 100px;
    /* border-top: 1px solid var(--primary-container-border); */
    font-size: small;
}
.footer-content {
    max-width: 1200px;
    margin: 0px 20;
}
.footer-list {
    text-align: right;
}
.footer-listitem {
    margin: 5 0px;
}
.footer-social {
    margin: 15px 0 30px;
}

 /* COOKIE BANNER */
.cookie-banner {
    font-family: var(--font-title);
    color: var(--white);
    /* font-size: 15px; */
    position: fixed;
    display: flex;
    width: 100%;
    bottom: -100%;
    left: 0;
    padding: 15px 0px;
    z-index: 10;
    transition: all 0.5s;
    text-align: left;
    border-top: 1px solid var(--primary-container-border);
}
.cookie-banner {
    height: 125px;
}
.cookie-content {
    max-width: 1200px;
    padding: 0 20px;
}
.cookie-banner span {
    display: inline-block;
    margin: 0 auto 0 0;
    padding: 0 20px 0 0;
    font-size: 35px;
}
.cookie-banner-button {
    float: right;
    /* margin-right: 15px; */
}
.cookie-banner.active {
    bottom: 0;
}

@media screen and (max-width: 800px) {
    /* BURGER CHANGES */
    .burger {
        display: block;
    }
    /* .burger.active .filling:nth-child(2) {
        opacity: 0;
    } */
    .burger.active .filling:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }
    .burger.active .filling:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }
    /* .navbar-social, .nav {
        display: none;
    } */
    .navbar-list {
        z-index: -1;
        width: 100%;
        /* flex-flow: column; */
        justify-content: end;
        align-items: center;
        position: absolute;
        height: 50px;
        right: -100%;
        top: 100px;
        transition: 0.5s;
        border-bottom: 1px solid var(--primary-container-border);
    }
    .navbar-list.active {
        right: 0;
        padding: 0 20px;
    }

    /* COOKIE CHANGES */
    .cookie-banner {
        height: auto;
    }
    .cookie-content {
        display: block;
    }
    .cookie-content span {
        text-align: center;
        margin: auto 15px;
    }
    .cookie-banner-button {
        display: grid;
        width: 100%;
        margin: 20px auto 0;
        float: none;
    }
}
.text-404 {
    font-size: 20vw;
    line-height: 1;
    margin: 0 0 40px;
}
.text-not-found {
    font-size: 35px;
}
@media screen and (max-width: 600px) {
    .cookie-banner-button {
        grid-template-columns: 1fr;
    }
}
@keyframes full-rotate {
	0% {
		transform: rotate(0deg);
    }
    50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}