
/***********************************************************************************
Forms
************************************************************************************/

@media (max-width: 480px) {
	input[type='text'],
	input[type='email'],
	textarea {
	    width: calc(100% + 40px);
	}
}

/***********************************************************************************
Content
************************************************************************************/

@media (max-width: 1200px) {
	.row .content {
	    width: 70%;
	}
}

@media (max-width: 800px) {
	.row .content {
	    width: calc(100% - 80px);
	}
}

/***********************************************************************************
The Header
************************************************************************************/

@media (max-width: 1200px) {
	#header {
	    top: 20px;
	    right: 20px;
	}
}

@media (max-width: 800px) {
	#header {
	    width: 40px;
	}

	#header .profile {
		display: block;

		/* Effected these changes */
		background-position: center center;
		background-size: cover;
		background-repeat: no-repeat;
	
		border-radius: 100%;
	
		width: 120%;
		height: 50px;
	
		float: left;
	
		margin-bottom: 12.5px;
	
		box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
	}
}

/***********************************************************************************
Section Intros
************************************************************************************/

@media (max-width: 800px) {
	.intro .content .media {
		margin-left: -40px;
	}

	.intro .content footer {
	    margin-left: -40px;
	}
}

@media (max-width: 580px) {
	.intro {
		padding-bottom: 140px;
	}

	.intro .content footer {
	    margin-left: 0;
	}

	.intro .content footer .copy {
	    width: 100%;

	    padding-right: 40px;
	    margin: 0 0 34px;
	}

	.intro .content footer .actions {
	    text-align: left;

	    width: 100%;
	    height: 30px;

	    position: relative;
	    top: 0;
	    left: 0;

	    margin-top: 0;
	}
}


/***********************************************************************************
About
************************************************************************************/

@media (max-width: 400px) {
	#about .content header a:nth-child(1) {
	    display: none;
	}
}

@media (max-width: 340px) {
	#about {
	    padding-top: 100px;
	}

	#about .content header {
	    display: none;
	}
}

/***********************************************************************************
Work
************************************************************************************/

@media (max-width: 800px) {
	.project-filter-container {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	
	.project-filter {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.project-filter-container {
		padding: 0;
	}
	
	.filter-label {
		font-size: 12px;
	}
	
	.project-filter {
		width: 100%;
		max-width: 100%;
	}
}
 
@media (max-width: 1200px) {
	#work .content article {
	    width: 33.3333%;
	}
}

@media (max-width: 800px) {
	#work .content article {
	    width: 50%;
	}
}

@media (max-width: 480px) {
	#work .content {
		width: 100%;
	}

	#work .content article {
		width: calc(100% - 40px);

	    padding: 0 0 0 0;
	}

	#work .content article .media {
		padding-bottom: 50%;
	}

	#work .content article .copy {
		padding-left: 40px;
	}
}

/***********************************************************************************
Projects
************************************************************************************/

@media (max-width: 1200px) {
	#project {
	    width: calc(100% - 100px);
	}
}

@media (max-width: 980px) {
	#project {
	    width: calc(100% - 40px);
	    height: calc(100% - 40px);
	    left: 20px;
	    top: 20px;
	}

	#project .content {
		flex-direction: row !important;
	}

	#project .content .copy {
		width: 50% !important;
		padding: 40px 30px 30px !important;
		min-width: 300px !important;
	}

	#project .content .project-iframe-container {
		width: 50% !important;
	}
}

@media (max-width: 768px) {
	#project {
	    width: calc(100% - 20px);
	    height: calc(100% - 20px);
	    left: 10px;
	    top: 10px;
	}

	#project .content {
		flex-direction: column !important;
		overflow-y: auto;
	}

	#project .content .project-iframe-container {
		width: 100% !important;
		height: 50vh !important;
		min-height: 300px;
		flex-shrink: 0;
	}

	#project .content .copy {
		width: 100% !important;
		height: auto !important;
		padding: 30px 25px 25px !important;
		min-width: 0 !important;
		flex-shrink: 0;
		overflow-y: visible !important;
	}
}

@media (max-width: 480px) {
	#project {
	    width: 100%;
	    height: 100%;
	    left: 0;
	    top: 0;
	}

	#project .content .project-iframe-container {
		height: 45vh !important;
		min-height: 250px;
	}

	#project .content .copy {
		padding: 25px 20px 20px !important;
	}

	#project .content .copy h2 {
		font-size: 24px !important;
	}

	#project .content .copy p {
		font-size: 14px !important;
		line-height: 1.6 !important;
	}
}

@media (max-width: 320px) {
	#project .content .copy {
		padding: 20px 15px 15px !important;
	}

	#project .content .copy h2 {
		font-size: 20px !important;
	}

	#project .content .project-iframe-container {
		min-height: 200px;
	}
}

/***********************************************************************************
Arrivals
************************************************************************************/

@media (max-width: 480px) {
	#arrivals .content article {
	    width: calc(100% + 40px);
	}

	#arrivals .content article h2,
	#arrivals .content article p {
		padding-right: 40px;
	}

	#arrivals .content article span {
	    display: none;
	}
}