/*

	Main Stylesheet: BFA Qualifications
	Author: CFRONT (SABN)
	CDate: 05/09/2025

*/

:root {
    --beige: #f2f0e4;
    --charcoal: #231f20;
    --lippy: #f2294e;
    --shrimp: #f2695c;
}

* {
	box-sizing: border-box;
}

html {
	overflow-y:scroll;
}

html, body {
	padding:0;
	margin:0;
    font-size:16px;
    color:var(--charcoal);
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
}


h1, h2, h3, h4, h5 {
	font-weight:600;
}

body {
    background:var(--beige);
}


header a.logo {
    display:block;
    width:120px;
    height:120px;
    text-decoration:none;
}

header a.logo svg {
    display:block;
    width:100%;
}

nav {
    display:flex;
    gap:32px;
    align-items:center;
}

nav a {
    display:block;
    text-decoration:none;
    color:var(--charcoal);
}

.inner {
    max-width:1396px;
    margin:0 auto;
}

header > .inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:2rem 0;
}

.hero {
    min-height:400px;
    display:grid;
    grid-template-columns:1fr 1fr;
}

.hero-content {
    background:var(--lippy);
    color:#FFFFFF;
    display:flex;
    align-items:center;
    padding-left:32px;
}

.hero-icon svg {
    display:block;
    width:88px;
    height:100px;
}

.hero-image img {
    display:block;
    width:100%;
}

.hero-title {
    padding:4rem;
    font-size:3rem;
}

.fg {
    display:grid;
}

/*
	FOOTER
*/

footer {
    font-size:0.8rem;
}

footer .fg {
    grid-template-columns:1fr 1fr 1fr 1fr 1fr;
    gap:32px;
}

footer .links {
    padding:2rem 0;
    line-height:1.2rem;
}

footer .links a {
    text-decoration:none;
    display:block;
    color:var(--charcoal);
}

footer .links a:hover {
    text-decoration:underline;
}

@media all and (max-width: 1260px) { 

}


@media all and (max-width: 640px) {
}