* {
	box-sizing: border-box;
}

html,
body {
	padding: 0;
	margin: 0;
	font-family: helvetica, sans-serif;
	color: #141c3a;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
	/* overflow-x: hidden; */
}

.no-scroll {
	overflow: hidden;
}

.unselectable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

body {
	margin-top: 65px;
	background: #f7f7f7;
}

nav {
	width: 100vw;
	height: 65px;
	background: #fff;
	position: fixed;
	display: block;
	border-bottom: 1px solid #e5ebf2;
	top: 0;
	z-index: 100;
}

nav a {
	color: #141c3a;
}

nav a h4 {
	margin: 0 0 0 30px;
	height: 100%;
	line-height: 68px;
	font-size: 14px;
	font-weight: bold;
	display: block;
	width: fit-content;
	float: left;
	position: relative;
	z-index: 101;
	color: #141c3a !important;
}

nav div.burger {
	background: url(/assets/images/burger.svg);
	width: 25px;
	height: 25px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	display: block;
	float: right;
	margin: 20px 30px 0 0;
	cursor: pointer;
	position: relative;
	z-index: 101;
	transition: ease-in-out 0.4s;
}

nav div.burger-opened {
	transform: rotate(90deg);
	background: url(/assets/images/exit.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: ease-in-out 0.4s;
}

ul li a {
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
	display: block;
	transition: ease-in 0.3s;
}

.active {
	color: #D02121 !important;
	/* font-weight: bold; */
}
.exit {
	background: url(/assets/images/exit.svg);
	width: 25px;
	height: 25px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
}
.contact-content .text-block h2.caps {
	text-align: center;
	margin-bottom: 30px;
	margin-top: 0;
}
form input {
	background: #ffffff;
	width: 100%;
	height: 50px;
	color: #535e88;
	font-size: 16px;
	font-weight: 300;
	border: 1px solid #d8dceb;
	box-sizing: border-box;
	box-shadow: inset 0px 0px 13px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	margin-bottom: 10px;
	padding-left: 20px;
}

label {
	margin-bottom: 5px;
	margin-top: 10px;
	display: block;
}

form textarea {
	background: #ffffff;
	width: 100%;
	min-height: 250px;
	color: #535e88;
	font-size: 16px;
	font-weight: 300;
	border: 1px solid #d8dceb;
	box-sizing: border-box;
	box-shadow: inset 0px 0px 13px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	margin-bottom: 30px;
	padding-left: 20px;
	padding-top: 18px;
	resize: vertical;
	font-family: inherit;
}

form input:placeholder-shown {
	color: #8e98bf;
}
form textarea:placeholder-shown {
	color: #8e98bf;
	font-family: inherit;
	font-weight: 300;
}
form .button {
	border: none;
	margin-bottom: 60px;
}
.contact-card {
	background: #ffffff;
	border: 1px solid #d8dceb;
	width: 100%;
	height: fit-content;
	text-align: center;
	padding: 30px;
	box-sizing: border-box;
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
}
.contact-content .text-block .contact-card p {
	margin: 5px 0;
}
.exit-contact {
	background: url(/assets/images/exit.svg);
	width: 25px;
	height: 25px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
}
.top-bar {
	background: #f7f7f7;
	width: 100%;
	height: 55px;
	position: absolute;
}
.overlay {
	width: 100%;
	height: 100%;
	background: rgba(46, 46, 46, 0.783);
	position: fixed;
	z-index: 50;
	transition: ease-in, 0.5s;
}
.overlay.hidden {
	background: rgba(255, 255, 255, 0);
}
.pop-up-container {
	position: fixed;
	top: 65px;
	width: 100%;
	left: 0;
	z-index: 55;
	transition: ease-in, 0.5s;
}
.pop-up {
	max-width: 750px;
	position: relative;
	width: calc(100vw - 30px);
	height: calc(100vh - 95px);
	min-height: 300px;
	background: #f7f7f7;
	border-radius: 20px;
	margin: 15px auto 0;
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	z-index: 55;
}
.pop-up .content {
	height: 100%;
	width: 100%;
	overflow-y: scroll;
	padding: 55px 15px;
	text-align: left;
}
.pop-up .content h2 {
	max-width: 580px;
	margin: 0 auto;
}
.pop-up .content h3.description {
	max-width: 580px;
	padding-right: 10%;
	font-weight: 100;
	color: #535e88;
	font-size: 18px;
	margin: 25px auto;
}

.contact-content {
	height: 100%;
	width: 100%;
	overflow-y: scroll;
	padding: 55px 15px;
	text-align: left;
}
.text-block {
	max-width: 580px;
	margin: 0 auto;
}
.text-block img {
	width: 100%;
}
.text-block p {
	margin-bottom: 50px;
}
.model-center {
	height: 100%;
	margin: 0 auto;
	display: block;
	object-fit: contain;
	width: 100%;
}
.contact-container {
	position: fixed;
	top: 65px;
	width: 100%;
	left: 0;
	z-index: 55;
	transition: ease-in, 0.5s;
}
.content h2 {
	text-align: left;
	margin: 55px 0 40px;
}
.tags {
	max-width: 580px;
	margin: 0 auto 5px;
	font-size: 12px;
	color: #386fb6;
	font-weight: 100;
}
.content .banner1 {
	background: url(/assets/images/case_studies/banner1.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	max-width: 580px;
	height: 300px;
	border-radius: 10px;
	margin: 0 auto 50px;
	padding: 15px;
}
.content .banner2 {
	background: url(/assets/images/case_studies/banner2.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 15px;
	width: 100%;
	height: 250px;
	max-width: 580px;
	margin: 0 auto 50px;

	border-radius: 10px;
	margin-bottom: 50px;
}
.pop-grid {
	display: grid;
	grid-template-columns: repeat(1, 100% [col-start]);
	margin: 0 auto 60px;
	width: 100%;
	row-gap: 60px;
}
.pop-grid img {
	margin: auto;
}
.content h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 23px;
	text-align: left;
	color: #141c3a;
	margin-top: 0;
}
.contact-content h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 23px;
	text-align: left;
	color: #141c3a;
	margin-top: 0;
}
header {
	width: 100vw;
	height: auto;
	padding: 20px 30px 60px;
	overflow-x: hidden;
}

header h3 {
	max-width: 900px;
	margin: 0 auto 40px;
}

header .button {
	margin-bottom: 60px;
}

header div.avatar {
	background: url(/assets/images/avatar.png);
	height: 200px;
	width: 100%;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.link {
	font-weight: 300;
	font-size: 20px;
	line-height: 25px;
	color: #535e88;
	display: block;
}
.link:hover {
	color: #3b4157;
}
.centered {
	text-align: center;
	margin: 0 auto;
}
.wide {
	width: 100%;
}
.caps {
	text-transform: uppercase;
}
.centered-caption {
	text-align: center;
	height: 60px;
	border-bottom: solid #e5ebf2 1px;
	margin-bottom: 40px;
}
h1 {
	font-weight: bold;
	font-size: 49px;
	line-height: 56px;
	text-align: center;
	width: 100%;
}
h2 {
	font-weight: bold;
	font-size: 26px;
	line-height: 30px;
}
h3 {
	font-weight: 300;
	font-size: 17px;
	line-height: 30px;
	text-align: center;
	color: #535e88;
}
h5 {
	font-weight: 300;
	font-size: 18px;
	line-height: 30px;
	margin: 0;
}
h6 {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.6;
}
p {
	font-weight: 100;
	font-size: 16px;
	line-height: 1.6;
	color: #535e88;
}
.line {
	width: 2px;
	height: 28px;
	background: #e5ebf2;
	display: block;
	float: left;
	margin-top: 16px;
}
.phone {
	width: calc(50vw - 34px - 1px);
	display: block;
	float: left;
	text-align: right;
	padding-right: 30px;
}
.mail {
	width: calc(50vw - 34px - 1px);
	display: block;
	float: left;
	padding-left: 30px;
}
.phone p {
	font-weight: 300;
	font-size: 14px;
	line-height: 30px;
	margin: 0;
	color: #535e88;
}
.mail a {
	font-weight: 300;
	font-size: 14px;
	line-height: 30px;
	margin: 0;
	color: #535e88;
	text-decoration: none;
}
.mail a:hover {
	text-decoration: underline;
}
.contact {
	width: 100%;
	height: 60px;
	margin-top: 60px;
	margin-bottom: 40px;
}
.button {
	cursor: pointer;
	max-width: 100%;
	width: 250px;
	color: #fff;
	background: #D02121;
	display: block;
	height: 50px;
	border-radius: 100px;
	font-weight: 400;
	font-size: 18px;
	line-height: 25px;
	display: flex;
	align-items: center;
	text-decoration: none;
	justify-content: center;
	padding-top: 0;
	margin: 0 auto;
	transition: ease-in-out 0.1s;
}
.btn-content {
	display: flex;
	width: 50%;
	justify-content: space-between;
}
.leave-page {
	background: url(/assets/images/icons/exit-page.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}
.button:hover {
	background: rgb(89, 21, 35);
}
body section {
	margin: 0 30px;
	padding: 0 0 60px;
}

body section#about {
	margin: 80px 0 0;
}

body section#projects {
	margin: 0 15px;
}
body section#awards {
	margin: 0 15px;
}

.bullet {
	width: 9px;
	height: 9px;
	background: #D02121;
	border-radius: 10px;
	margin: 0 auto;
}
.line-container {
	width: 15px;
	height: 100%;
}
.bullet-container {
	width: 15px;
	display: block;
	float: left;
	padding-top: 15px;
	padding-bottom: 15px;
}
.bullet-line {
	width: 1px;
	height: 100%;
	background: #ced4da;
	margin: 15px auto;
}
.year {
	width: 90px;
	font-size: 20px;
	font-weight: 300;
	display: block;
	float: left;
	margin-left: 15px;
}
article.description {
	width: calc(100% - 120px);
	display: block;
	float: left;
}
.flex-row {
	display: flex;
	flex-direction: row;
	max-width: 540px;
	margin: 0 auto 60px;
}
.flex-column {
	display: flex;
	flex-direction: column;
	margin-bottom: 60px;
}
.width {
	max-width: 1000px;
	height: 100%;
	margin: 0 auto;
}
.icon {
	width: 130px;
	height: 130px;
	/* border-radius: 200px; */
	background: #4537e7;
	margin: 0 auto;
	background-position: center !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
}
.icon1 {
	background: url(/assets/images/icons2/icon1.svg);
}
.icon2 {
	background: url(/assets/images/icons2/icon2.svg);
}
.icon3 {
	background: url(/assets/images/icons2/icon3.svg);
}
.icon4 {
	background: url(/assets/images/icons2/icon4.svg);
}
.icon5 {
	background: url(/assets/images/icons2/icon5.svg);
}
.icon6 {
	background: url(/assets/images/icons2/icon6.svg);
}
article.skill {
	margin-bottom: 60px;
	max-width: 250px;
}
.skill h2 {
	margin-top: 0;
	font-size: 22px;
}
.award h2 {
	font-size: 22px;
}
.badge {
	height: 200px;
	margin: 0 auto 30px;
	display: block;
	border-radius: 10px;
	border: 2px solid #dbdbdb87;
}
.card {
	border: 1px solid #e6e8f0;
	background: #fff;
	border-radius: 20px;
	padding: 15px 15px 30px;
	text-align: center;
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
	position: relative;
	margin: 0 auto 30px;
	max-width: 400px;
}
.rating {
	/* width: 50px;
    height: 80px;
    background: #F6A52A;
    position: absolute;
    top: 0;
    left: 30px; */
	filter: drop-shadow(0px 4px 2px rgba(60, 60, 60, 0.4));
	width: 40px;
	height: 70px;
	border-right: 20px solid #f6a52a;
	border-left: 20px solid #f6a52a;
	border-bottom: 15px solid transparent;
	float: right;
	margin-bottom: 20px;
	font-size: 17px;
	font-weight: 700;
	position: absolute;
	top: 0px;
	left: 30px;
	text-align: center;
}
.rating-container {
	width: 40px;
	height: 100%;
	text-align: center;
	position: absolute;
	left: -20px;
	padding-top: 11px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.rating-container div:nth-child(1) {
	font-size: 20px;
}
.rating-container div:nth-child(2) {
	font-size: 11px;
}
.case-img {
	height: auto;
	margin: 0 auto 30px;
	display: block;
	width: 100%;
	border-radius: 10px;
}
footer {
	background: #0a0d15;
	height: 350px;
	color: #fff;
	text-align: center;
	padding: 30px 0 0;
	position: relative;
}
footer h2 {
	font-weight: 400;
	font-size: 20px;
}
footer p {
	color: #e6e8f0;
	font-size: 16px;
	font-weight: 100;
}

footer h6:nth-of-type(1) {
	position: absolute;
	bottom: 80px;
	width: 100%;
	color: #aab2d0;
}

footer h6:nth-of-type(2) {
	width: 100%;
	background: #000;
	position: absolute;
	bottom: 0;
	font-size: 12px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #757575;
	margin: 0;
}

.bottom {
	margin-bottom: 60px;
}

.bottom h2 {
	margin-bottom: 40px;
}

.bottom img {
	margin-bottom: 40px;
}

.bottom .button {
	margin-bottom: 30px;
}

.intro {
	max-width: 540px;
	margin: 0 auto;
}
.drop-down {
	width: 100vw;
	height: 95vh;
	background: #fff;
	filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.5));
	z-index: 99;
	display: block;
	position: absolute;
	top: 0;
	padding-top: 65px;
	text-align: center;
	border-radius: 0 0 30px 30px;
	transition: ease-in-out 0.4s;
	overflow: hidden;
}
.drop-down ul {
	list-style: none;
	padding: 0;
	margin: calc(((95vh - 100px) / 7) / 2) 0 0;
}
.drop-down ul li {
	height: calc((95vh - 100px) / 9);
	font-size: 22px;
	font-weight: 300;
	line-height: 30px;
}

.tab {
	height: 3px;
	width: 50px;
	margin: 0 auto;
	border-radius: 3px;
	position: absolute;
	bottom: 20px;
	left: calc(50% - 25px);
	background: #aaafc3;
	cursor: pointer;
}
.hidden-menu {
	height: 95px;
	visibility: hidden;
}
.hidden {
	visibility: hidden !important;
	top: -100vh !important;
}
.hidden-mobile {
	display: none !important;
}
.hidden-desktop {
	display: block;
}
body section#getToKnowMe {
	margin: 0;
}
@media (max-width: 380px) {
	.mail {
		padding-left: 15px;
	}
	.phone {
		padding-right: 15px;
		font-size: 12px;
	}
	.phone p,
	.mail a {
		font-size: 12px;
	}
	.phone h5,
	.mail h5 {
		font-size: 16px;
	}
}
@media (min-width: 750px) {
	.hidden-mobile {
		display: block !important;
	}
	.hidden-desktop {
		display: none !important;
	}
	.bullet-container {
		margin-right: 60px;
	}
	.year {
		width: 250px;
	}
	.flex-column {
		display: grid;
		grid-template-columns: repeat(3, 33.33% [col-start]);
		margin: 0 auto;
		max-width: 900px;
	}
	.skill p {
		font-size: 16px;
		line-height: 1.6;
		margin: 0;
	}
	.skill h2 {
		font-size: 20px;
		margin: 20px 0 10px;
		line-height: 1.2;
	}
	.link {
		font-size: 16px;
	}
	.skill .link {
		margin-top: 10px;
	}
	.grid {
		max-width: 1000px;
		margin: 0 auto;
		display: flex;
	}
	.pop-grid {
		display: grid;
		grid-template-columns: repeat(2, 48% [col-start]);
		margin: 0 auto 60px;
		width: 100%;
		row-gap: 60px;
		column-gap: 4%;
	}
	.pop-up {
		max-width: 900px;
		position: relative;
		width: 85vw;
		height: calc(100vh - 125px);
		min-height: 300px;
		background: #f7f7f7;
		border-radius: 20px;
		margin: 30px auto 0;
		box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
		overflow: hidden;
		z-index: 55;
		transition: ease-in, 0.5s;
	}
	.exit {
		background: url(/assets/images/exit.svg);
		width: 25px;
		height: 25px;
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		display: block;
		position: absolute;
		right: 30px;
		top: 30px;
		cursor: pointer;
	}
	.exit-contact {
		background: url(/assets/images/exit.svg);
		background-position-x: 0%;
		background-position-y: 0%;
		background-repeat: repeat;
		background-size: auto;
		width: 25px;
		height: 25px;
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		display: block;
		position: absolute;
		right: 30px;
		top: 30px;
		cursor: pointer;
	}
	.content h2 {
		margin: 60px 0 40px;
	}
	ul.hidden-mobile {
		margin: 0;
		list-style: none;
		padding: 0;
		width: 60%;
		display: flex !important;
		position: relative;
		float: right;
		margin-right: 30px;
		height: 100%;
		justify-content: space-between;
		flex-direction: row;
	}

	ul.hidden-mobile li {
		float: left;
		font-size: 14px;
		line-height: 68px;
		color: #535e88;
		height: 100%;
		cursor: pointer;
	}

	ul.hidden-mobile li:hover {
		color: #142979;
		text-decoration: underline;
	}
	body section#projects {
		margin: 0 30px;
	}
	.card {
		background: #fff;
		border-radius: 20px;
		width: calc(100vw - 60px);
		padding: 30px;
		text-align: center;
		box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
		position: relative;
		margin: 0 auto 30px;
		max-width: 400px;
	}
}
