/*

    INTO Global 25
    Author: SABN (CFRONT og 4/25)

    Colors:
    RED: #E2001A;

*/
/*  CSS file from the webfont kit */

/*
    Variables
*/

:root {
    --into-red: #E2001A;
    --midnight-blue: #0d1036;
    --into-yellow: #FFCD1C;

    --postit: #fef6ab;
    
    --black: #000000;
    --neutral-dark-grey: #333333;
    --neutral-medium-grey-1: #7f7f7f;
    --neutral-medium-grey-2: #a6a6a6;
    --neutral-light-grey-3: #cccccc;
    --neutral-light-grey: #f0f0f0;
    --white: #ffffff;
}

@font-face {
    font-family: 'AcherusFeral-Black';
    src: url('/fonts/AcherusFeral-Black.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-BlackItalic';
    src: url('/fonts/AcherusFeral-BlackItalic.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-Bold';
    src: url('/fonts/AcherusFeral-Bold.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-BoldItalic';
    src: url('/fonts/AcherusFeral-BoldItalic.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-Book';
    src: url('/fonts/AcherusFeral-Book.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-BookItalic';
    src: url('/fonts/AcherusFeral-BookItalic.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-ExtraBold';
    src: url('/fonts/AcherusFeral-ExtraBold.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-ExtraBoldItalic';
    src: url('/fonts/AcherusFeral-ExtraBoldItalic.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-ExtraLight';
    src: url('/fonts/AcherusFeral-ExtraLight.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-ExtraLightItalic';
    src: url('/fonts/AcherusFeral-ExtraLightItalic.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-Light';
    src: url('/fonts/AcherusFeral-Light.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-LightItalic';
    src: url('/fonts/AcherusFeral-LightItalic.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-Medium';
    src: url('/fonts/AcherusFeral-Medium.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-MediumItalic';
    src: url('/fonts/AcherusFeral-MediumItalic.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-Regular';
    src: url('/fonts/AcherusFeral-Regular.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-RegularItalic';
    src: url('/fonts/AcherusFeral-RegularItalic.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-Semibold';
    src: url('/fonts/AcherusFeral-Semibold.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-SemiboldItalic';
    src: url('/fonts/AcherusFeral-SemiboldItalic.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-Thin';
    src: url('/fonts/AcherusFeral-Thin.otf') format('opentype')
}

@font-face {
    font-family: 'AcherusFeral-ThinItalic';
    src: url('/fonts/AcherusFeral-ThinItalic.otf') format('opentype')
}


* {
    box-sizing:border-box;
    font-family:'AcherusFeral-Regular';
}

html {
	overflow-y:scroll;
    overflow-x: hidden;
}

html, body {
	padding:0;
	margin:0;
    font-size:16px;
}

h1, h2, h3, h4, h5 {
    font-family: 'AcherusFeral-ExtraBold';
}

.wrapper {
    
}

main {
    width:calc(100% - 260px);
    margin-left:260px;
    padding:2rem;
    max-width: 1200px;
}

.inner {
	width:100%;
    margin: 0 auto;
    position:relative;
}

.nav-col {
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: fixed;
    top:0;
    left:0;
    height:100vh;
    overflow-y:scroll;
    padding:1rem;
}

nav ul {
    list-style-type:none;
    margin:1rem 0;
    padding:0;
    font-size:1rem;
}

nav ul li > ul {
    margin:0 0 0 1rem;
}

nav a {
    text-decoration: none;
    color: var(--black);
    transition: .5s;
}

nav .has-sub a {
    margin: 0.25rem 0;
    padding: 0.3rem 0.5rem;
    text-decoration: none;
    color:var(--neutral-medium-grey-1);
    display:block;
    transition:.5s;
    border-radius:2px;
    font-size:0.9rem;
}

nav .has-sub > a,
nav > ul > li > a {
    font-family: 'AcherusFeral-Regular';
    color: var(--black);
    font-size: 1rem;
    text-transform: uppercase;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0.5rem;
}

nav > ul > li.current:not(.has-sub) > a {
    background:var(--neutral-light-grey);
}

.sub-nav {
    display:none;
}

li.current .sub-nav {
    display:block;
}

nav > ul > :not(.has-sub) > a {
    pointer-events: auto;
}

nav li > a svg {
    display:none;
}

nav .has-sub > a svg {
    display:block;
    width:24px;
    fill:var(--neutral-medium-grey-1);
}

nav .has-sub.active > a svg {
    transform: rotate(180deg);
}

nav .has-sub > a .expand {

}

nav .has-sub a:hover,
nav .has-sub a.selected {
    background:var(--neutral-light-grey);
    
}

nav .has-sub li.current a {
    background: var(--neutral-light-grey);
    color: var(--black);
}

nav > ul > li,
.has-sub {
    margin-top:1rem;
}

.text-page img {
    display: block;
    width: 100%;
    max-width:960px;
    margin: 2rem 0;
}

.hero img {
    display:block;
    width:100%;
}

.hero {
    position:relative;
}

.hero-content {
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:36px 0;
    height: 100%;
    padding:2rem;
    display: flex;
    align-items: center;
    color:#FFFFFF;
    max-width:600px;
}

strong {
    font-family: 'AcherusFeral-Bold';
}

.home-features {
    margin:4rem 0;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin: 0 0 2rem 0;
}

.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.features-grid:hover > * {
    opacity:0.8;
}

.feature-item {
    border:1px solid var(--neutral-light-grey-3);
    display: flex;
    text-decoration: none;
    flex-direction: column;
    padding:0.5rem;
    color:var(--neutral-medium-grey-1);
    gap:1rem;
    transition:.5s;
}

.features-grid:hover > .feature-item:hover {
    opacity:1;
}

.highlight h3 {
    font-size:2rem;
}

.highlight p {
    margin:2rem;
    padding:0.75rem  1rem;
    border-left: 5px solid var(--neutral-light-grey);
    font-family: 'AcherusFeral-MediumItalic';
    line-height:1.75rem;
    max-width:720px;
    color:var(--neutral-medium-grey-1);
}

.important {
    margin:2rem 0;
    padding:2rem;
    background:#f5e4b1;
    font-family: 'AcherusFeral-Medium';
    line-height:1.6rem;
    max-width:960px;
}

.important a {
    color: var(--into-red);
    text-decoration: underline;
}

ul {
    margin:1rem 0;
}

ul li {
    margin:1rem 0;
}

ul li ul li {
    margin:0 0;
}

figure {
    display: flex;
    flex-direction: column-reverse;
    margin:0;
}

.text-page figure img {
    margin-top:0;
}

figcaption {
    padding:0.5rem 0;
    font-family: 'AcherusFeral-Medium';
    color:var(--neutral-dark-grey);
}

.feature-item img {
    display: block;
    width: 100%;
    margin: 0;
}

.text-page table {
    border-collapse: collapse;
    margin: 2rem 0;
    width:100%;
    max-width:960px;
}

.text-page table td {
    border: 1px solid var(--neutral-light-grey);
    padding: 0.5rem;
    vertical-align: top;
}

.text-page table th {
    border: 1px solid var(--neutral-light-grey);
    padding: 0.5rem;
    vertical-align: top;
    text-align: left;
    color: var(--black);
    font-family: 'AcherusFeral-Bold';
    background: var(--neutral-light-grey);
}

.text-page table td img {
    margin:0;
}

hr {
    border: none;
    border-top: 1px solid var(--neutral-medium-grey-1);
    margin: 2rem 0;
}

.child-tabs {
    display:flex;
    gap:2rem;
    border-bottom:1px solid var(--neutral-light-grey);
}

.logo {
    text-decoration: none;
    display: block;
    width:180px;
    margin:1rem auto;
}

.logo svg {
    display: block;
    width:100%;
}

.media-downloads {
    display:flex;
    flex-wrap:wrap;
    gap:2rem;
    margin: 4rem 0;
}

.media-item a {
    display: flex;
    width: 100%;
    padding: 0.5rem;
    background: var(--neutral-light-grey);
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
}

.media-item.dark-bg a {
    background: var(--neutral-dark-grey);
}

.media-item.media-type-svg {
    width: calc(33.333% - 2rem);
}

.chevron-page .media-item.media-type-svg {
    width:auto;
}

.md-neutrals .media-item.media-type-svg {
    width: calc(25% - 2rem);
}

.chevron-page .media-downloads {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
}

.media-item.media-type-svg img {
    display:block;
    width:100%;
    margin:0 auto;
}

.chevron-page .media-item.media-type-svg img {
    width:220.25px;
    height:200px;
}

.chevron-page .media-item.media-type-svg img {
    max-height: 200px;
}

.tab-title {
    position:relative;
    padding:0.75rem 0;
    cursor:pointer;
}

.tab-title::after {
    display: none;
    height: 3px;
    width: 100%;
    content: "";
    position: absolute;
    bottom: -2.5px;
    left: 0;
    background: var(--into-red);
}

.tab-title.active {
    color:var(--black);
    font-family: 'AcherusFeral-Bold';
}

.tab-title.active::after {
    display: block;
}

.tab-content {
    display:none;
}

.tab-content.active {
    display:block;
}

.media-item.media-type-zip img {
    display:none;
}

.media-item.media-type-svg svg {
    display:none;
}

.media-item.media-type-zip svg {
    display:block;
    width:24px;
    fill:var(--neutral-medium-grey-1);
}

.media-type-zip a:hover {
    background:var(--into-red);
}

.media-type-zip a:hover svg {
    fill:var(--white);
}

.media-data {
    padding:1rem 0;
    font-size:0.9rem;
}

.media-data > * {
    margin:0.5rem 0;
}

.media-name {
    font-weight:600;
}

.media-notes {
    color:var(--neutral-medium-grey-1);
}

.zip-data {
    display:none;
}

.media-item.media-type-zip .zip-data {
    display:flex;
    gap:1rem;
}

.media-type-zip .media-data {
    padding:0;
}

.zip-type {
    text-transform: uppercase;
}

.media-item.media-type-zip {
    width: calc(50% - 2rem);
    padding: 1rem;
    display: flex;
    gap: 2rem;
    border: 1px solid var(--neutral-light-grey-3);
    border-radius:3px;
    color:var(--neutral-medium-grey-1);
}

.media-item.media-type-zip a {
    width:60px;
    
}

.page-iq .media-downloads,
.page-colours .media-downloads {
    margin: 1rem 0;
}

.page-iq .media-downloads {
    margin: 1rem 0 3rem 0;
}


@media screen and (max-height:900px) {
    
}

/* Tablet */
@media screen and (max-width:1024px) {

}
/* Mobile */
@media screen and (max-width:600px) {

}

