:root {
	/* COLORS */
	--primary: #2A1F8B;
	--white: #FFFFFF;
	--black: #000000;
	--gray: #B0B0B0;
	--yellow: #E1A61A;
	--blue: #00A0DC;
	--blue-light: #DCF5FF;
	--blue-dark: #007CBA;
	--purple: #833589;
	--purple-dark: #1D1753;
	--pink: #EFD3F1;
	
	/* TRANSITIONS */
	--transition: all 0.5s ease-in-out;
	
	/* SPACERS */
	--size-xxs: 10px;
	--size-xs: 20px;
	--size-s: 40px;
	--size-m: 60px;
	--size-l: 80px;
	--size-xl: 120px;
	--size-xxl: 180px;
	
	/* DEFAULTS */
	--default--font-family: 'GeneralSans-Regular';
	--default--nav-height: 120px;
}

* {
	position: relative;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

html.overflow {
	overflow: hidden;
}

body {
	margin: 0;
	background: var(--white);
	font-family: var(--default--font-family);
	font-style: normal;
	font-size: 16px;
	font-weight: 300;
	overflow-x: hidden;
}

/* PICTURES */
picture {
	display: block;
	overflow: hidden;
}
picture[background] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
picture[overlay]:before {
	position: absolute;
	top: 0;
	left: 0;
    display: block;
    width: 100%;
    height: 100%;
	background: var(--black);
	content: '';
	opacity: 0.2;
	z-index: 1;
}
picture[border] {
	border: 1px solid var(--gray-light);
}
picture[avatar] {
	width: 80px;
	min-width: 80px;
	height: 80px;
	border-radius: 100%;
	overflow: hidden;
}

/* VIDEO */
video {
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PROPORTIONS */
[video] {
	aspect-ratio: 16/9;
}
[landscape] {
	aspect-ratio: 16/9;
}
[portrait] {
	aspect-ratio: 6/7.5;
}
[square] {
	aspect-ratio: 1/1;
}
[circle] {
	border-radius: 100%;
}
[icon] {
	width: 40px;
	min-width: 40px;
	height: 40px;
}
[logo] {
	width: auto;
	height: 50px;
}

/* IMAGES */
img {
	display: block;
	width: 100%;
    height: 100%;
    object-fit: cover;
    user-drag: none;
    -webkit-user-drag: none;
}
img.fit {
	object-fit: contain;
}
img.default {
	width: auto;
	height: auto;
}
img[data-src] {
	opacity: 0;
	transition: var(--transition);
}
img[data-src][src] {
	opacity: 1;
}

/* DISPLAY & ALIGNMENT */
.block {
	display: block;
}
.flex {
	display: flex;
}
.grid {
	display: grid;
}
.none {
	display: none;
}
.hidden {
	visibility: hidden;
}

.sticky {
	position: sticky;
    top: calc(var(--default--nav-height) + 100px);
    height: fit-content;
    z-index: 1;
}
.fd-c {
	flex-direction: column;
}
.fd-r {
	flex-direction: row;
}
.fd-rr {
	flex-direction: row-reverse;
}
.fw-w {
	flex-wrap: wrap;
}

.jc-fs {
	justify-content: flex-start;
}
.jc-fe {
	justify-content: flex-end;
}
.jc-c {
	justify-content: center;
}
.jc-sb {
	justify-content: space-between;
}
.jc-sa {
	justify-content: space-around;
}

.ai-fs {
	align-items: flex-start !important;
}
.ai-fe {
	align-items: flex-end;
}
.ai-c {
	align-items: center;
}

.as-fs {
	align-self: flex-start;
}
.as-fe {
	align-self: flex-end;
}
.as-c {
	align-self: center;
}

/* COLORS AND BACKGROUNDS */
.primary {
	color: var(--primary);	
}
.white {
	color: var(--white);
}
.black {
	color: var(--black) !important;
}
.gray {
	color: var(--gray);
}
.yellow {
	color: var(--yellow);
}
.blue {
	color: var(--blue);
}
.blue-light {
	color: var(--blue-light);
}
.purple {
	color: var(--purple);
}
.purple-dark {
	color: var(--purple-dark);
}
.pink {
	color: var(--pink);
}

.bg--primary {
	background-color: var(--primary);
}
.bg--white {
	background-color: var(--white);
}
.bg--black {
	background-color: var(--black);
}

/* WIDTHS */
.w-100 {
	width: 100%;
}
.w-90 {
	width: 90%;
}
.w-83 {
	width: 83.33333%;
}
.w-80 {
	width: 80%;
}
.w-75 {
	width: 75%;
}
.w-70 {
	width: 70%;
}
.w-66 {
	width: 66.66666%;
}
.w-60 {
	width: 60%;
}
.w-50 {
	width: 50%;
}
.w-40 {
	width: 40%;
}
.w-33 {
	width: 33.33333%;
}
.w-30 {
	width: 30%;
}
.w-25 {
	width: 25%;
}
.w-20 {
	width: 20%;
}
.w-16 {
	width: 16.66666%;
}
.w-10 {
	width: 10%;
}
.w-8 {
	width: 8.33333%;
}
.w-auto {
	width: auto;
}
.w-min {
	width: min-content;
}

/* HEIGHTS */
.h-100 {
	height: 100%;
}

/* PADDINGS */
.p-0 {
	padding: 0 !important;
}
.pl-0 {
	padding-left: 0 !important;
}
.pr-0 {
	padding-right: 0 !important;
}
.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
[padding="xs"] {
	padding: var(--size-xs);
}
[padding="s"] {
	padding: var(--size-s);
}
[padding="m"] {
	padding: var(--size-m);
}
[padding="l"] {
	padding: var(--size-l);
}
[padding="xl"] {
	padding: var(--size-xl);
}
[padding="xxl"] {
	padding: var(--size-xl);
}

/* MARGINS */
.m-0 {
	margin: 0 !important;
}
.ml-0 {
	margin-left: 0 !important;
}
.mr-0 {
	margin-right: 0 !important;
}
.ml-a {
	margin-left: auto !important;
}
.mr-a {
	margin-right: auto !important;
}
.mt-a {
	margin-top: auto !important;
}
.mb-a {
	margin-bottom: auto !important;
}

/* CONTAINER */
.container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

/* ANCHORS */
a {
	color: var(--black);
	text-decoration: none;
	transition: var(--transition);
}
a:hover {
	color: var(--primary);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin: 0;
	line-height: 100%;
}
h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
	line-height: 102%;
}
h1, .h1 {
	font-family: 'ClashGrotesk-Medium';
	font-size: 96px;
	font-weight: 400;
	line-height: 103%;
}
h1 strong, .h1 strong {
	font-family: 'ClashGrotesk-Semibold';
	font-weight: 700;
}
h2, .h2 {
	font-family: 'ClashGrotesk-Medium';
	font-size: 54px;
	font-weight: 500;
}
h2 strong, .h2 strong {
	font-family: 'ClashGrotesk-Semibold';
	font-weight: 600;
}
h3, .h3 {
	font-size: 32px;
	font-weight: 500;
	line-height: 120%;
	text-transform: none;
}
h4, .h4 {
	font-family: 'ClashGrotesk-Medium';
	font-size: 24px;
	font-weight: 500;
}
h5, .h5 {
	font-family: 'ClashGrotesk-Medium';
	font-size: 20px;
	font-weight: 500;
}
h6, .h6 {
	font-family: 'GeneralSans-Medium';
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
}
.label {
	font-family: var(--default--font-family);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

p {
	margin: 0;
	margin-bottom: 20px;
	font-weight: 400;
	font-size: 16px;
	line-height: 135%;
}
p:last-of-type {
	margin-bottom: 0;
}
p:last-of-type + ul {
	margin-top: 20px;
}

strong, .strong,
b, .b {
	font-weight: 700;
}

small, .small {
	font-weight: 400;
	font-size: 12px;
	line-height: 120%;
}

.ws-nw {
	white-space: nowrap;
}

.ta-c {
	text-align: center;
}
.ta-r {
	text-align: right;
}

blockquote {
	font-family: 'ClashGrotesk-Medium';
	font-size: 44px;
	font-weight: 500;
}
blockquote:before {
	width: 41px;
	height: 35px;
	margin-bottom: 40px;
	background: url('../img/quote-icon.svg') no-repeat center;
	content: '';
}
blockquote:after {
	width: 120px;
	height: 1px;
	margin-top: 60px;
	background: var(--yellow);
	content: '';
}

/* SPACERS */
hr {
	border: 0;
	margin: 0;
}
hr.xxl {
	height: var(--size-xxl);
}
hr.xl {
	height: var(--size-xl);
}
hr.l {
	height: var(--size-l);
}
hr.m {
	height: var(--size-m);
}
hr.s {
	height: var(--size-s);
}
hr.xs {
	height: var(--size-xs);
}
hr.xxs {
	height: var(--size-xxs);
}

hr.vertical {
	height: 0;
}
hr.vertical.xxl {
	min-width: var(--size-xxl);
}
hr.vertical.xl {
	min-width: var(--size-xl);
}
hr.vertical.l {
	min-width: var(--size-l);
}
hr.vertical.m {
	min-width: var(--size-m);
}
hr.vertical.s {
	min-width: var(--size-s);
}
hr.vertical.xs {
	min-width: var(--size-xs);
}
hr.vertical.xxs {
	min-width: var(--size-xxs);
}

/* LISTS */
ul, ol {
	margin: 0;
}
ul {
	padding-left: 0;
	list-style-type: none;
}

/* COLUMNS */
.grid {
	display: grid;
}
.grid[column-count="8"] {
    grid-template-columns: repeat(8, 1fr);
}
.grid[column-count="7"] {
    grid-template-columns: repeat(7, 1fr);
}
.grid[column-count="6"] {
    grid-template-columns: repeat(6, 1fr);
}
.grid[column-count="5"] {
    grid-template-columns: repeat(5, 1fr);
}
.grid[column-count="4"] {
    grid-template-columns: repeat(4, 1fr);
}
.grid[column-count="3"] {
    grid-template-columns: repeat(3, 1fr);
}
.grid[column-count="2"] {
    grid-template-columns: repeat(2, 1fr);
}

.grid[column-gap="xl"] {
    column-gap: var(--size-xl);
    row-gap: var(--size-xl);
}
.grid[column-gap="l"] {
    column-gap: var(--size-l);
    row-gap: var(--size-l);
}
.grid[column-gap="m"] {
    column-gap: var(--size-m);
    row-gap: var(--size-m);
}
.grid[column-gap="s"] {
    column-gap: var(--size-s);
    row-gap: var(--size-s);
}
.grid[column-gap="xs"] {
    column-gap: var(--size-xs);
    row-gap: var(--size-xs);
}

.grid[row-gap="xl"] {
    row-gap: var(--size-xl) !important;
}
.grid[row-gap="l"] {
    row-gap: var(--size-l) !important;
}
.grid[row-gap="m"] {
    row-gap: var(--size-m) !important;
}
.grid[row-gap="s"] {
    row-gap: var(--size-s) !important;
}
.grid[row-gap="xs"] {
    row-gap: var(--size-xs) !important;
}

/* OPACITY */
[opacity="0.8"] {
	opacity: 0.8;
}
[opacity="0.7"] {
	opacity: 0.7;
}
[opacity="0.5"] {
	opacity: 0.5;
}

/* ZINDEX */
.zi-1 {
	z-index: 1;
}
.zi-2 {
	z-index: 2;
}
.zi-3 {
	z-index: 3;
}
