@font-face {
	font-family: Fixel Display;
	font-style: normal;
	font-weight: 400;
	src: url("/fonts/FixelDisplay-Regular.otf") format("opentype");
}

@font-face {
	font-family: Fixel Display;
	font-style: normal;
	font-weight: 500;
	src: url("/fonts/FixelDisplay-Medium.otf") format("opentype");
}

@font-face {
	font-family: Fixel Display;
	font-style: normal;
	font-weight: 700;
	src: url("/fonts/FixelDisplay-Bold.otf") format("opentype");
}

:root {
	--blue: #1c3582;
	--lightBlue: #b8d7de;
	--commonBlue: #7fb3e3;
	--beige: #f8edd3;
	--white: #ffffff;
	--darkWhite: #e7e7e7;
	--seasalt: #f9f9f9;
	--black: #1c1919;
	--instagramColor: #cc39a4;
	--facebookColor: #485a96;
	--red: #ff0000;
	--transition: 500ms;
	--headerSize: 64px;
	--gapExtraLarge: 120px;
	--gapLarge: 80px;
	--gapMedium: 60px;
	--gapSmall: 40px;
	--gapExtraSmall: 20px;
	--contactsWidth: 600px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none;
}

html,
body {
	height: 100%;
	scroll-behavior: smooth;
}

body {
	position: relative;
	display: flex;
	flex-direction: column;
	font-family:
		Fixel Display,
		Arial,
		Helvetica,
		sans-serif;
	color: var(--black);
	line-height: 1.3;
	letter-spacing: -0.5%;
}

main {
	display: flex;
	flex-direction: column;
	flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;

	font-family: "Nunito Sans", serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	line-height: 1.1;
	letter-spacing: -2%;
	font-variation-settings:
		"wdth" 100,
		"YTLC" 500;
}

button {
	border: none;
	background: transparent;
	cursor: pointer;
}

a {
	text-decoration: none;
	color: inherit;
}

ul,
ol {
	list-style: none;
}

main {
	position: relative;
	z-index: 2;
}

.bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0.4;
	width: 100%;
	height: 100%;
	--s: 100px; /* control the size */
	--c1: var(--seasalt);
	--c2: #d0d0d0;
	--c3: #ececec;

	background:
		repeating-conic-gradient(from 30deg, #0000 0 120deg, var(--c3) 0 180deg)
		calc(0.5 * var(--s)) calc(0.5 * var(--s) * 0.577),
		repeating-conic-gradient(
			from 30deg,
			var(--c1) 0 60deg,
			var(--c2) 0 120deg,
			var(--c3) 0 180deg
		);
	background-size: var(--s) calc(var(--s) * 0.577);
}

.scroll-disable {
	overflow: hidden;
}
