﻿@charset "UTF-8";

body
{
	margin: 0 auto;
	font-weight: 400;
	padding-bottom: 100px;
	letter-spacing: 1px;
	font-family: 'Raleway', sans-serif;
	font-feature-settings: 'lnum' 1;
}


::-moz-selection { background: RGB(208, 137, 35)}
::selection
{
	background: RGB(208, 137, 35);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
      display: none;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
 
/* Handle */
::-webkit-scrollbar-thumb
{
    background: RGB(208, 137, 35);
    border-radius: 0;
    width: 10px;
}


.container {
    width:80vw;
	margin:0 auto;
}


.img-hero-1
{
	margin-left: -20px;
	margin-right: 10px;
	margin-top:20px;
	max-width: 26vw;
	max-height: 44vh;

}


.img-project-1
{
	max-height: 85vh;
	max-width: 45vw;
}







.vp-1
{
	width: 100%;
	height: 100vh;
	background: linear-gradient(-45deg, yellow);
	background-size: 400% 400%;
	animation: gradient 7s ease infinite;
	display: flex;
	justify-content: center;
	align-items: center;
}

.vp-1 ul, li{
    display: inline-block;
}

.vp-1 h1 {
    
    font-weight: 600;
    font-size: 4em;
    color: black;   
}
.vp-1 h2{
    font-weight: 600;
    color: transparent;
    font-size: 4em;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}
header
{
	overflow: hidden;
	margin-top: 80px;
}


header nav ul {
	margin-left:-40px;
    display: inline;
	float: left;
	list-style: none;
}
nav li {

	display: inline;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    align-content: center;
	font-size: 14px;
	margin-right: 14pt;
	letter-spacing: 1px;
	transition: all 0.3s linear;
	font-weight: 700;
 	line-height: 4em;
}
a
{

	color: black;
	text-decoration: none;
	font-weight: 700;
}

a.btn {
    position: relative;
}

a.btn:before {
	
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -7px;
  left: 0;
  background-color: RGB(208, 137, 35);
  visibility: hidden;
  transition: all 0.2s ease-in-out;
		
}


a.btn:hover:before {
	color: black;
  visibility: visible;
  width: 100%;


}

a.btn:active {
	font-weight: 700;

}






@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}








@media screen and (max-width: 660px) {
		nav {
			display: none !important;
			visibility: hidden}

    article {
	color: black;
	font-size: 16px;
	margin-top: 100px;
	width: 80vw;
	line-height: 24px;
	margin-bottom: 20px;

}
}

.mob_logo {
	width: 20px;
	float: right;
	padding: 20px 20px 20px 50px;
}

	
		
@media screen and (min-width: 660px) {
	
	.m-menu {
	display: none !important;
    visibility: hidden}
	.mob_logo {
		display: none !important;}
		
		
	}

article
{
	margin: 0 auto;
	color: black;
	font-size: 26px;
	margin-top: 120px;
	width: 80vw;
	line-height: 32px;
	margin-bottom: 80px;
	overflow: hidden;
}



	

	
	






@media screen and (min-width: 1250px) {

 .logo-desktop {
	float: right;
	width: 280px;
	margin-top: -85px;
    position: -webkit-sticky;
    position: sticky;
	margin-right: 0;
    }

	header nav ul {
	width: 100%;}
    
	.logo-mobile {display: none !important;}}


@media screen and (max-width: 1250px)
{

	.logo-desktop
	{
		display: none !important;
	}

	.logo-mobile
	{
		float: right;
		width: 40pt;
		margin-bottom: 0px
	}
}

	@media screen and (max-width: 1250px)
	{

		header nav ul
		{
			width: 80vw
		}
	}






@media screen and (max-width: 660px)
{


	article
	{
		width: 85%;
		margin: 0 auto;
	}

	.m-menu
	{
		z-index: 8888888;
		width: 120%;
		background: linear-gradient(-45deg, grey, black);
		background-size: 200% 200%;
		animation: gradient 10s ease infinite;
		opacity: 90%;
		height: 50px;
		bottom: 0;
		position: fixed;
		margin-left: -10px;
	}

	#m_toggle
	{
		opacity: 0;
	}

		#m_toggle:checked ~ .m_btn > span
		{
			transform: rotate(45deg);
		}

			#m_toggle:checked ~ .m_btn > span::before
			{
				top: 0;
				transform: rotate(0);
			}

			#m_toggle:checked ~ .m_btn > span::after
			{
				top: 0;
				transform: rotate(90deg);
			}

		#m_toggle:checked ~ .m_box
		{
			visibility: visible;
			left: 0;
		}

	.m_btn
	{
		display: flex;
		align-items: center;
		position: fixed;
		bottom: 10px;
		right: 10%;
		width: 40px;
		height: 26px;
		cursor: pointer;
		z-index: 1;
	}

		.m_btn > span,
		.m_btn > span::before,
		.m_btn > span::after
		{
			display: block;
			position: absolute;
			width: 100%;
			height: 2.2px;
			background-color: white;
			transition-duration: .25s;
		}

			.m_btn > span::before
			{
				content: '';
				top: -8px;
			}

			.m_btn > span::after
			{
				content: '';
				top: 8px;
			}

	.m_box
	{
		display: block;
		position: fixed;
		visibility: hidden;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 80px 0;
		list-style: none;
		background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
		background-size: 400% 400%;
		animation: gradient 10s ease infinite;
	}
}

		@keyframes gradient
		{
			0%
			{
				background-position: 0% 50%
			}

			50%
			{
				background-position: 100% 50%
			}

			100%
			{
				background-position: 0% 50%
			}

			/* WHY IS THERE AN ERROR???		box-shadow: 1px 0px 6px rgba(0, 0, 0, .2); transition-duration: .25s; */
		}

		.m_item
		{
			display: block;
			padding: 28px 100px;
			color: white;
			font-size: 25px;
			letter-spacing: 3px;
			font-weight: 700;
			text-decoration: none;
			transition-duration: .25s;
		}

			.m_item:hover
			{
				background-color: white;
				color: black
			}






		.footer
		{
			margin: 0 auto;
			width: 80vw;
			color: lightslategray;
			text-align: right;
			font-weight: 700;
			letter-spacing: 2px;
			margin-top: 100px;
			padding-top: 100px;
			padding-bottom: 70px;
		}
	