html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

blockquote, q {
    quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
}

::-webkit-scrollbar {
  width: 0;
}

ol,
ul,
li {
	list-style: none;
}

a {
    text-decoration: none;
    color: #fff;
}

html,
body {
	max-width: 1600px;
	margin: 0 auto;
	font-size: 18px;
	font-family: "Roboto Mono";
	background: #0a0a0a;
	color: #fff;
}

@font-face {
	font-family: 'Roboto Mono';
	src: url('/fonts/RobotoMono-Thin.woff2') format('woff2');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto Mono';
	src: url('/fonts/RobotoMono-ExtraLight.woff2') format('woff2');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto Mono';
	src: url('/fonts/RobotoMono-Light.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto Mono';
	src: url('/fonts/RobotoMono-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto Mono';
	src: url('/fonts/RobotoMono-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

.bg {
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200vh;
  background: transparent url('/img/noise-transparent.png') repeat 0 0;
  background-repeat: repeat;
  animation: bg-animation .2s infinite;
  opacity: 1;
  visibility: visible;
}

@keyframes bg-animation {
    0% { transform: translate(0,0) }
    10% { transform: translate(-5%,-5%) }
    20% { transform: translate(-10%,5%) }
    30% { transform: translate(5%,-10%) }
    40% { transform: translate(-5%,15%) }
    50% { transform: translate(-10%,5%) }
    60% { transform: translate(15%,0) }
    70% { transform: translate(0,10%) }
    80% { transform: translate(-15%,0) }
    90% { transform: translate(10%,5%) }
    100% { transform: translate(5%,0) }
}

nav {
	width: 100%;
	max-width: 1600px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0, #0a0a0a 92%);
	height: 80px;
	position: fixed;
	z-index: 1001;
	left: 50%;
	transform: translateX(-50%);
}

nav #brand {
	float: left;
	display: block;
	margin-left: 80px;
	line-height: 80px;
	font-weight: bold;
	opacity: 0;
}

nav #brand a {
	color: #fff;
	transition: all 0.3s ease-out;
}

nav #brand a:hover {
	text-decoration: underline;
}

nav #menu {
	float: right;
	margin-right: 80px;
}

nav #menu li {
	padding-left: 20px;
	display: inline-block;
	font-weight: 300;
	line-height: 80px;
	position: relative;
	transition: all 0.3s ease-out;
}

nav #menu li a:hover {
    text-decoration: underline;
}

#toggle {
	position: absolute;
	right: 15px;
	top: 30px;
	font-weight: 300;
	z-index: 2;
	cursor: pointer;
	transition: all 0.3s ease-out;
	visibility: hidden;
	opacity: 0;
}

.close-btn {
	position: absolute;
	right: 30px;
	top: 30px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	z-index: 2;
	background-color: transparent;
}

.close-btn::before,
.close-btn::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 30px;
	height: 1px;
	background-color: #fff;
	transform-origin: center;
}

.close-btn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

#resize {
	z-index: 10000;
	top: 0px;
	position: fixed;
	background: #0a0a0a;
	width: 100%;
	height: 100%;
	transform: translateX(100%);
    opacity: 1;
    visibility: visible;
    transition: transform 0.15s ease-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

#resize #mobil-menu {
	position: relative;
	left: auto;
	transform: none;
	text-align: center;
	width: auto;
}

#resize #mobil-menu li {
	display: block;
	text-align: center;
	padding: 10px 0;
	font-size: 25px;
	min-height: 50px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease-out;
}

#resize li:nth-child(1) {
	margin-top: 0;
}

#resize #mobil-menu li a:hover {
	text-decoration: underline;
}

#resize.active {
	visibility: visible;
	transform: translateX(0%);
	opacity: 1;
}

.no-scroll {
	overflow: hidden;
	height: 100vh;
}

.star {
	width: 100%;
	text-align: center;
	padding-bottom: 50px;
}

.star .star-img {
	width: 70px;
}

.hero {
	height: 100vh;
	display: flex;
	padding: 0 15px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

.hero h1 {
	font-weight: lighter;
	text-align: center;
	font-size: 36px;
	line-height: 58px;
}

.hero p {
	padding-top: 50px;
	text-align: center;
	width: 75%;
	font-size: 26px;
}

.masonry-grid {
	position: relative;
	margin-bottom: 50px;
	width: 100%;
}

.masonry-item {
	position: absolute;
	width: 32%;
	margin-bottom: 1rem;
	box-sizing: border-box;
	overflow: hidden;
	transition: transform 0.3s;
}

.masonry-item img {
	width: 100%;
	display: block;
	height: auto;
	object-fit: cover;
}

.photo-grid {
	display: flex;
	flex-direction: column;
	gap: 7rem;
	position: relative;
	align-items: center;
	padding-bottom: 50px;
}

.photo {
	width: 100%;
	max-width: 400px;
	object-fit: cover;
}

.photo1 {
	width: 90%;
	margin-left: -10%;
}

.photo2 {
	width: 80%;
	margin-left: 10%;
}

.photo3 {
	width: 85%;
	margin-left: -10%;
}

.photo4 {
	width: 95%;
	margin-left: 10%;
}

.photo5 {
	width: 95%;
	margin-left: -10%;
}

.scroll-down {
	position: absolute;
	left: 50%;
	bottom: 100px;
	display: block;
	text-align: center;
	font-size: 20px;
	z-index: 0;
	text-decoration: none;
	width: 13px;
	height: 13px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	animation: fade_move_down 3s cubic-bezier(0.19, 1, 0.22, 1) infinite;
	transform: translateX(-50%) rotate(45deg);
}

@keyframes fade_move_down {
	0% {
		transform: translateX(-50%) translateY(-20px) rotate(45deg);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translateX(-50%) translateY(20px) rotate(45deg);
		opacity: 0;
	}
}

.contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-top: 50px;
	width: 100%;
	gap: 2rem;
}

.contact p {
	font-size: 36px;
	padding-top: 0;
}

.contact ul li {
	font-size: 24px;
	line-height: 2;
}

.contact ul li a {
	color: inherit;
}

.contact ul li a:hover {
	text-decoration: underline;
}

.collab {
	text-align: right;
}

.collab p {
	font-weight: lighter !important;
	margin-bottom: 20px;
}

.hr {
	background: rgba(255, 255, 255, 0.2);
	height: 1px;
}

.info a {
	font-size: 18px;
	font-weight: lighter;
}

.info a:hover {
    text-decoration: underline;
}

.info p {
	color: grey;
	font-weight: lighter;
}

#fb::before {
	display: inline-block;
	content: "";
	border-radius: 100%;
	height: 4px;
	width: 4px;
	margin-right: -6px;
	background: #fff;
	vertical-align: middle;
}

#ig::before {
	display: inline-block;
	content: "";
	border-radius: 100%;
	height: 4px;
	width: 4px;
	margin-right: -6px;
	background: #fff;
	vertical-align: middle;
}

#x::before {
	display: inline-block;
	content: "";
	border-radius: 100%;
	height: 4px;
	width: 4px;
	margin-right: -6px;
	background: #fff;
	vertical-align: middle;
}

#yt::before {
	display: inline-block;
	content: "";
	border-radius: 100%;
	height: 4px;
	width: 4px;
	margin-right: -6px;
	background: #fff;
	vertical-align: middle;
}

#media,
#address {
	text-align: right;
}

#media ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 1rem;
}

#media ul li {
	display: inline-block;
}

.custom-container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 50px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
}

.custom-row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
	box-sizing: border-box;
}

.custom-col-lg-4,
.custom-col-lg-12 {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	box-sizing: border-box;
}

#brand.animate-intro {
	animation: navBrandAnim 1s 0.4s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

nav>ul#menu li a.animate-intro {
	animation: navLinkAnim 1s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes navBrandAnim {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes navLinkAnim {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.animate-on-scroll {
	opacity: 0;
	will-change: opacity, transform;
}

.animate-on-scroll.is-visible.fadeInUp {
	animation-name: customFadeInUp;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

@keyframes customFadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 30px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.contact-form {
	max-width: 650px;
	padding-bottom: 50px;
	margin: 0 auto;
}

.contact-form p {
	padding-bottom: 30px;
}

.row {
	display: flex;
	flex-wrap: wrap;
}

.two-col {
	display: flex;
	flex-wrap: wrap;
}

.two-col>.styled-input {
	flex: 1 1 calc(50% - 1rem);
}

.two-col>.styled-input:first-child {
	margin-right: 1rem;
}

.styled-input {
	position: relative;
	flex: 1 1 100%;
	margin-bottom: 1rem;
}

.styled-input input,
.styled-input textarea {
	width: 100%;
	padding: 30px;
	background: #2d2d2d;
	color: #fff;
	border: none;
	font-size: 1rem;
	box-sizing: border-box;
	border-bottom: 2px solid transparent;
	transition: border-color 0.3s ease;
}

.styled-input textarea {
	height: 200px;
}

.styled-input input:focus,
.styled-input textarea:focus {
	border-bottom: 2px solid #999;
	outline: none;
}

.styled-input label {
	position: absolute;
	top: 15px;
	left: 30px;
	color: #999;
	font-size: 1rem;
	pointer-events: none;
	transition: 0.25s ease;
}

.styled-input input:focus~label,
.styled-input input:valid~label,
.styled-input textarea:focus~label,
.styled-input textarea:valid~label {
	top: 5px;
	font-size: 0.75em;
	color: #999;
}

.styled-input.wide {
	flex: 1 1 100%;
}

.submit-btn {
	margin-left: auto;
	font-size: 22px;
	border: none;
	background: none;
	color: #fff;
	cursor: pointer;
	z-index: 1;
	transition: 0.3s ease;
}

.submit-btn:hover {
	text-decoration: underline;
}

.styled-checkbox {
	display: flex;
	align-items: center;
	margin: 1rem 0;
	gap: 1rem;
}

.styled-checkbox input[type="checkbox"] {
	appearance: none;
	width: 25px;
	height: 25px;
	border: 2px solid #fff;
	background-color: transparent;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
	transition: all 0.2s ease-in-out;
}

.styled-checkbox input[type="checkbox"]:checked {
	background-color: #fff;
}

.styled-checkbox input[type="checkbox"]::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 16px;
	border: solid #000;
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -60%) rotate(45deg);
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.styled-checkbox input[type="checkbox"]:checked::after {
	opacity: 1;
}

.styled-checkbox a {
	color: #fff;
	margin-left: 4px;
	font-style: normal;
}

.styled-checkbox a:hover {
	text-decoration: underline;
}

@media (max-width: 991px) {
	#toggle {
		visibility: visible;
		opacity: 1;
	}

	nav #brand {
		margin-left: 15px;
	}

	nav>ul#menu {
		display: none;
	}
}

@media (min-width: 991px) {
    
    #resize {
		visibility: hidden !important;
		opacity: 0 !important;
	}
	
	.custom-container {
		max-width: 1600px;
		padding-right: 80px;
		padding-left: 80px;
	}
}

@media (min-width: 769px) {
	.custom-col-lg-4 {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.custom-col-lg-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (max-width: 768px) {
    
    .hero h1 {
		font-size: 24px;
		line-height: 1.4;
	}

	.hero p {
		width: 100%;
		font-size: inherit;
	}

	.photo-grid {
		gap: 4rem;
	}

	.photo {
		max-width: 270px;
	}

	.collab,
	#personal,
	#media,
	#address {
		text-align: center;
	}

	.info ul {
		margin: 0;
		padding: 0;
	}

	.contact p {
		font-size: 24px;
	}

	.contact ul li {
		font-size: 20px;
	}

	#media ul {
		justify-content: center;
	}
	
	.two-col {
		flex-direction: column;
	}

	.two-col>.styled-input {
		flex: 1 1 100%;
		margin-right: 0;
	}

	.submit-btn {
		margin: 0 auto;
	}

	.two-col>.styled-input:first-child {
		margin-right: 0;
	}
}