html {
	scroll-behavior: smooth;
}

body {
	width: 100vw;

	overflow-x: hidden;
	overflow-y: hidden;

	margin: 0;
	padding: 0;

	background: #1B1B22;

	
	font-family: -apple-system, BlinkMacSystemFont,
		"Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
		"Helvetica Neue", sans-serif;
	font-size: 18px;
}

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

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}


	/*
	Colour scheme:
	
	rgb(53, 187, 236) - Lighter Blue
	rgb(39, 168, 224) - Blue
	rgb(14, 134, 201) - Deep Blue
	rgb(3, 118, 191) - Dark Blue
	rgb(40, 40, 50) - Dark Grey
	#31314A - Faded Grey Blue
	#2D2C4D - Faded Dark Blue
	#252540 - Deep Blue
	#53526D - Faded Grey
	white - Text Offwhite
	*/






	/* ----- MAIN CONTAINER & BACKGROUND ----- */






	/* ----- HEADER & NAV ----- */

header {
	width: 100%;
	height: 60px;
	
	position: fixed;
	top: 0;
	
	background: #1B1B22;
	color: white;

	z-index: 10;

	border-style: solid;
	border-color: rgb(41, 171, 226);
	border-width: 2px 0;
}
nav {
	width: 100%;


	max-width: 800px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

	cursor: default;
}
.navigation {
	width: auto;

	margin: auto;
}

.audiosoup-title-backdrop {
	height: 45px;

	display: inline-block;
	position: relative;

	margin-left: 10px;
	margin-top: 5px;

	font-size: 30px;

	cursor: pointer;

	z-index: 10;
}
.audiosoup-title, .audiosoup-title-bowl {
	position: relative;
	top: -1px;

	padding: 0;
	margin: 0;

	cursor: pointer;
}
.audiosoup-title-bowl {
	width: 35px;
	height: 35px;
}
.audiosoup-title-link {
	width: 100%;
	height: 100%;

	position: absolute;
	right: 0;

	margin: 0;
}
.nav-logo {
	display: none;
	width: 100%;
}
a.audiosoup {
	text-decoration: none;
	letter-spacing: -6px;

	font-weight: 600;

	transition: 1.2s;
	transition-delay: 0.6s;
}
.li-audiosoup {
	padding: 0;
	margin: 0;
	margin-top: 2px;
}
.as1, .as2 {
	position: relative;
	z-index: 20;
	padding: 0;
	margin: 0;
	width: 150%;
	height: 100%;
}
a.navlink:not(.audiosoup-title-bowl) {
	padding: 5px;
	margin: 5px;

	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;

	text-decoration: none;
}
.navlink-border {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 75%;
	max-height: 75%;
	border-bottom: solid rgb(41, 171, 226, 0) 2px;
	border-top: solid rgb(41, 171, 226, 0) 2px;

	transition: 0.5s;
}
.navlink:hover .navlink-border {
	border-bottom: solid rgb(41, 171, 226, 0.3) 2px;
	border-top: solid rgb(41, 171, 226, 0.3) 2px;
}
a {
	background: none;
	color: white;
}

@media screen and (min-width: 800px) {

	.active {
		color: rgb(41, 171, 226);
		
		transition: 0s;
		transition-delay: 0s;
	}

}

.clicked {
	color: rgb(41, 171, 226);

	transition: 0s;
	transition-delay: 0s;
}
.as1, .ast1, .as2:hover, .ast2:hover {
	color: rgb(41, 171, 226);

	transition: 0.05s;
}
.as2, .ast2, .as1:hover, .ast1:hover {
	color: rgb(0, 113, 188);

	transition: 0.05s;
}
div.navigation li a:first-child {
	margin: 0;
}
.navlink:hover:not(.audiosoup-title) {
	color: rgb(41, 171, 226);
}
.silent-navlink {
	visibility: hidden;
	width: 0;
	padding: 0;
	margin: 0;
}
ul {
	margin: 0;
	padding: 0;

	list-style-type: none;
}
li, div.scroll-amount {
	margin: 0px 5px 0px 0px;
	padding: 5px 0px 0px 0px;

	text-decoration: none;
}
#navheader {
	display: none;

	position: fixed;
	top: 63px;
	right: 0;
	background: #1B1B22;

	margin: 0;
	margin-top: 2px;
	padding: 3px;
	border-style: solid;
	border-color: rgb(41, 171, 226);
	border-width: 0 0 1px 1px;
	
	box-shadow: 0 0 2px 2px black;

	font-size: 22px;

	width: 30%;
	min-width: 150px;
}
.nav-icon {
	display: flex;
	position: relative;

	width: 40px;
	height: 60px;

	margin: 0 10px 0 0;

	float: right;
}
.nav-icon-pic {
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 800px) {

	#navheader, li, div.scroll-amount {
		display: inline-block;

		position: inherit;
		background: none;
		margin-top: -4px;
		border: none;
		font-size: 20px;
	}
	#navheader {
		width: auto;
		box-shadow: none;
	}
	.nav-icon {
		display: none;
	}
	.navlink {
		display: none;
	}
	.audiosoup-title-backdrop {
		float: right;
	
		margin-right: 10px;
		margin-top: -8px;
	}
	a.audiosoup {
		font-size: 30px;
		letter-spacing: -5px;
		margin-top: -20px;
		padding-top: -20px;
	}

}


.text-shrink {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
.text-stay, .lf1, .lf2, .lf3, .lf4, .lf5, .lf6, .lf7, .lf8 {
	transition: 0.35s;
} 
.active, .clicked, .lf1, .lf2, .lf3, .lf4, .lf5, .lf6, .lf7, .lf8 {
	transition-delay: 0s;
}
.text-stay {
	transition-delay: 0.02s;
}
.lf1 {
	transition-delay: 0.04s;
}
.lf2 {
	transition-delay: 0.06s;
}
.lf3 {
	transition-delay: 0.08s;
}
.lf4 {
	transition-delay: 0.10s;
}
.lf5 {
	transition-delay: 0.12s;
}
.lf6 {
	transition-delay: 0.14s;
}
.lf7 {
	transition-delay: 0.16s;
}
.lf8 {
	transition-delay: 0.18s;
}


	/* --- RESPONSIVE --- */



	/* ----- TEXT ----- */

.main-title {
	width: 100%;

	display: flex;

	position: relative;

	margin: 0 0;
	padding-bottom: 2%;

	text-align: center;
	justify-content: center;

	font-size: 45px;
	font-weight: bold;
	text-shadow: 0 3px black;

	cursor: default;

	margin-bottom: 20px;
}
.main-title-sub {
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	padding: auto;
	padding-top: 30px;
}
.main-title-1, .main-title-2 {
	margin: 0 6px;
}
.main-title-1 {
	color: rgb(41, 171, 226);
}
.main-title-2 {
	color: rgb(0, 113, 188);
}
.main-title-3 {
	color: rgb(255, 255, 255, 0.8)
}
p {
	position: relative;
	display: block;

	text-align: center;
}


@media screen and (min-width: 800px) {

	.main-title {
		padding-bottom: 0;
	}
	.main-title-sub {
		padding-top: 0;
	}

}


@media screen and (max-width: 420px) {

	.php-title {
		font-size: 30px;
	}
	.main-title {
		font-size: 40px;
	}
	.main-title-sub {
		font-size: 22px;
	}

}





	/* ----- PARALLAX ----- */



main.wrapper {
	scroll-behavior: smooth;

	position: fixed;
	top: 0;
	left: 0;
	
	width: 100%;
	height: 100%;

	padding: 0;
	margin: 0;

	margin-top: 64px;

	overflow-x: hidden;

	-ms-overflow-style: none;
	scrollbar-width: none;
}

main.php-wrapper {
	margin-top: 0;
}

main.wrapper::-webkit-scrollbar {
	display: none;
}

section {
	position: relative;
	display: flex;

	z-index: 200;
}


/*

.parallax::after {
	content: ' ';
	position: fixed;
	top: 0;
	left: 0;

	width: 100%;
	height: auto;
	

	background-image: url(/pics/Background3.png);

	background-repeat: round;

	margin: 0;
	padding: 0;

	z-index: -1;
}



*/

	/* ----- HOME ----- */

section.home {
	width: 100%;
	height: calc(100vh - 75px);

	position: relative;
	display: flex;

	align-content: center;
	justify-content: center;

	padding: auto;
	margin: auto;
}
.home-box {
	width: 100%;
	height: calc(100vh - 75px);

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

	display: flex;

	font-size: 0;
	

	padding: 0;

	z-index: 100;
}
.home-pic-wrapper {
	width: 200px;
	height: 200px;

	margin-left: auto;
	margin-right: auto;
	margin-top: 30vh;

}
.home-audio-wrapper {
	width: 480px;
	height: 200px;

	margin-right: auto;
	margin-top: 30vh;

	display: none;
}
.home-pic {
	width: 200px;
	height: 200px;


	position: relative;

	margin: auto;

	z-index: 110;
	transition: 1.4s;
	transition-delay: 0.7s;
}
.home-audio {
	width: 100%;
	height: 200px;

	position: relative;
	top: 48px;

	display: none;
	
	margin-left: 10px;

	font-weight: bold;
	font-size: 95px;

	cursor: default;

	color:	rgb(41, 171, 226);

	z-index: 105;
}


@media screen and (min-width: 800px) {
	
	.home-audio {
		display: flex;
		position: relative;
		flex-direction: row;
		flex-wrap: nowrap;
	}
	.home-audio-wrapper {
		display: block;
	}
	.home-pic-wrapper {
		margin-right: 0;
	}
	.home-pic {
		position: absolute;
	}

}

/*
.preloader-curtain {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100vh;

	background: #1B1B22;

	z-index: 108;
}
*/
.bowlback {
	background: #1B1B22;
	position: absolute;
	top: 0;
	left: 0;
	

	width: 100%;
	height: 100%;

	display: flex;
	margin: 0;
	padding: 0;

	z-index: 108;
}
.ast {
	position: relative;
	margin: 0;
	padding: 0;

	opacity: 0;

	
	transition: 1.4s;
	transition-delay: 0.7s;
}
.ast, .home-pic-st3 {
	-webkit-filter: drop-shadow(0 0 3px rgb(0, 0, 0, 0.7));
}
.ast:hover, .home-pic:hover {
	transform: translate(0, -5px);
	transition: 0.1s;
}
.ast:hover {
	text-shadow: 0 5px 5px rgb(0, 0, 0, 0.7);
}
.home-pic:hover {
	-webkit-filter: drop-shadow(0 5px 5px rgb(0, 0, 0, 0.7));
}
.home-construction {
	width: 300px;
	height: auto;
	
	position: fixed;
	bottom: 20px;
	right: 20px;
	
	margin: auto;
	padding: 50px 20px;
	margin-right: 20px;

	background: rgb(40, 40, 50);
	color: white;

	border-style: solid;
	border-color: rgb(0, 113, 188);
	border-width: 2px;
	border-radius: 2px;

	box-shadow: 0px 0px 4px 3px rgb(15, 15, 15);

	z-index: 5;

}
.home-construction p {
	text-align: center;
	justify-content: center;
	vertical-align: middle;
	margin: 0;
	padding: 0;
}







section.content {
	width: 100%;
	height: auto;

	position: relative;

	color:white;

	padding: 0;
	margin: 0;
}
.main-div-column {
	width: 100%;
	height: 100%;

	transform-style: preserve-3d;

	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	padding: 0px 0px 0px;
}
.main-div-wrapper {
	width: 100%;
	position: relative;
	padding-bottom: 0px;

	background:  rgb(5, 5, 5, 0.5);
}
.main-php-wrapper{
	display: block;
	width: 100%;
	height: 50vh;
	margin-bottom: auto;
}
.main-div {
	margin: 0px auto;
	margin-bottom: 50vh;
	padding: 2% 0 5%;

	font-size: 21px;
	font-weight: lighter;
}
.main-div:not(.footer) {
	width: 100%;
	max-width: 815px;
}
.contact {
	margin-bottom: 80px;
}
.footer {
	width: 100%;
	height: 150px;

	margin-bottom: 0;
	margin-top: 30vh;

	padding: 3vw;
}



/*


	/* ----- ANCHORS ----- */

a.anchor, a.hiddenanchor {
	height: 0px;

	display: block;
	position: relative;

	visibility: hidden;
}
a.anchor {
	top: -5px;
}
a.hiddenanchor {
	top: -140px;
}




	/* ----- ABOUT SECTION ----- */

.about-container {
	width: 100%;

	display: block;

	padding: 0;
}
.php-container {
	display: block;
	width: 100%;
	height: 50%;
}
.about-part {
	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: row;

	margin: 0;
	padding: 5px 0;

	cursor: default;
}
.about-pic-thumb {
	width: 130px;
	height: auto;

	border-style: solid;
	border-radius: 2px;
	border-width: 2px;
	border-color: rgb(0, 113, 188);
}
.pic-left, .pic-right, .text-left, .text-right {
	display: inline-block;

	background: #1B1B22;
	font-size: 21px;

	border-radius: 3px;
	box-shadow: 0px 0px 8px 5px black;

	margin: 10px;
	padding: 10px;
}
.pic-left, .pic-right {
	transition: 0.4s;
}
.pic-hide {
	display: none;
}
.about-text {
	padding: 3%;

	text-align: center;
}

.pic-left:hover .about-pic, .pic-right:hover .about-pic {
	transform: scale(1.1);
	filter: hue-rotate(-50deg) brightness(1.3);
	border-color:rgb(41, 171, 226);
}
.pic-left:hover, .pic-right:hover {
	box-shadow: 0px 0px 8px 5px black;

	transition: 0.4s;
}


.php-text-box {
	width: 100%;
	height: auto;
	margin: auto;
	padding: 0;
}

@media screen and (min-width: 800px) {
	
	.about-pic {
		padding: 10px;

		transition: 0.4s;
	}
	.pic-hide {
		display: inherit;
	}
	.about-text {
		line-height: 33px;
		padding: 10px 3px 3px 3px;
	}

}



	/* ----- PORTFOLIO SECTION ----- */

.portfolio-container {
	width: 90%;

	max-width: 600px;
	margin: auto;
	padding: 5%;

	display: block;
}
.portfolio-column {
	width: 100%;

	display: block;
}

@media screen and (min-width: 800px) {

	.portfolio-container {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;

		max-width: 800px;
	}
	.portfolio-column {
		width: 50%;
	
		flex-direction: column;
		flex-wrap: nowrap;
		padding: 5px;
		margin: 0;
	}

}
.parentpic-container {
	width: 100%;
	height: auto;

	margin: 10px 0;

	position: relative;

	background: #1B1B22;

	border-radius: 3px;
	box-shadow: 0px 0px 8px 5px black;

	text-align: center;
	vertical-align: middle;

	transition: 0.4s;
}
.parentpic-container:hover {
	box-shadow: 0px 0px 8px 5px black;

	transition: 0.4s;
}
.parentpic {
	padding: 20px;

	color: white;

	border-radius: 2px;

	transition: 0.5s;
}
.parentpic:last-child {
	margin-bottom: 0;
}
.pic {
	width: 100%;
	height: auto;

	position: relative;
	
	border-style: solid;
	border-width: 2px;
	border-color: black;
	border-radius: 2px;
	
	transition: 0.5s;
}
.parentpic-container:hover .pic {
	filter: blur(2px) grayscale(0.7) brightness(0.3);

	transform: scale(1.03);
}
.imagetext{
	width: 100%;
	height: auto;

	position: absolute;

	margin: 0;
	padding: 0;

	opacity: 0;

	text-shadow: 3px 3px 5px black;

	cursor: default;

	transition: 0.5s;

	z-index: 2;

	font-size: 22px;
	text-decoration: none;
}
.parentpic-container:hover .imagetext {
	opacity: 1;

}
.imagetext:hover {
	color: rgb(41, 171, 226);
	cursor: pointer;
	text-decoration: underline;
}
.imagetextcenter {
	position: absolute;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
	margin: 0;
	padding: 0;

	text-align: center;
}


	/* ----- SERVICES SECTION ----- */

.services-icons {
	width: 98%;

	display: block;

	padding: 1%;
	margin: 0;
}
.label-toggle {
	width: auto;

	margin: 10px;
}
.services-block-inner {
	width: 100%;
}
.services-left, .services-right {
	width: 100%;
	display: block;
}
.services-right {
	display: none;
}
.services-icon {

	position: relative;
	display: flex;
	flex-direction: row;

	padding: 5px 5px 30px 5px;
	margin: 0;

	background: #1B1B22;

	box-shadow: 0px 0px 3px 5px black;

	cursor: default;

	z-index: 140;

	height: min-content;
}
.services-align-right {
	margin-left: auto;
}


@media screen and (min-width: 800px) {

	.services-icon {
		padding: 8px;
	}
	.services-icons {
		display: flex;
		flex-direction: row;
	}
	.services-left, .services-right {
		width: 50%;
		display: block;
		margin: 0 10px;
	}
	.services-block-inner {
		margin: 10px 0 20px 0;
	}
	.serv-mid {
		display: none;
	}

}





.services-icon-img {
	width: 70px;
	height: auto;

	position: relative;
	display: block;

	border-style: solid;
	border-radius: 2px;
	border-width: 2px;
	border-color: rgb(0, 113, 188, 0.5);

	transition: 0.4s;

	z-index: 220;
}
.services-title {
	font-size: 2em;
	font-weight: lighter;
}
.services-description {
	margin-top: 0;

	padding: 0 0.05em;

	color: white;
	display: none;

	font-size: 1.4em;
	line-height: 1.3em;
}
.services-textblock {
	padding: 0px 0px 10px 15px;

	color: white;

	font-size: 13px;
}
.services-textblock-right {
	padding: 0px 20px 10px 0px;

	text-align: right;
}
.services-dropdown {
	width: calc(100% - 10px);
	
	position: absolute;
	bottom: 5px;
	background: linear-gradient(to bottom, #1B1B22, rgb(0, 113, 188, 0));
	background-color: rgb(0, 113, 188, 0.1);
	z-index: 210;
}
.drop-arrow {
	position: relative;
	display: flex;
	
	width: 30px;

	margin: 7px auto 3px auto;

	opacity: 0.5;
}





input[type=checkbox] {
	display: none;
}

input[type=checkbox].toggle:checked + label .drop-arrow {
	rotate: 180deg;
}
input[type=checkbox].toggle:checked + label .services-icon {
	resize: vertical;
	opacity: 1;
	border-color: rgb(41, 171, 226);
	filter: hue-rotate(-50deg) brightness(1.3);

	transform: scale(1.05);

	transition: 0.4s;
}
input[type=checkbox].toggle:checked + label .services-title {
	display: none
}
input[type=checkbox].toggle:checked + label .services-icon-img {
	display: none
}
input[type=checkbox].toggle:checked + label .services-description {
	display: flex;
}

@media screen and (min-width: 800px) {

	.label-toggle {
		padding: 0;
		margin: 0;
	}
	input[type=checkbox].toggle:checked + label .services-icon {
		z-index: 200;
	}
	.services-icon:hover {
		z-index: 201;
	}
	input[type=checkbox].toggle:checked + label .services-icon-left {
		margin-right: -105%;
	}
	input[type=checkbox].toggle:checked + label .services-icon-right {
		margin-left: -105%;
	}
	input[type=checkbox].toggle:checked + label .services-icon-img {
		display: block;
	}
	.services-icon-img {
		width: 100px;
	}
	input[type=checkbox].toggle:checked + label .services-icon {
		border-color: rgb(41, 171, 226);
		filter: none;
	
		transform: none;
	
		transition: none;
	}
	.drop-arrow {
		display: none;
	}
	.services-icon:hover .services-icon-img {
		opacity: 1;
		border-color: rgb(41, 171, 226);
		filter: hue-rotate(-50deg) brightness(1.3);
	
		transform: scale(1.05);
	
		transition: 0.4s;
	}

	input[type=checkbox].toggle:checked + label .services-icon {
		resize: none;
	}
	.services-description {
		font-size: 20px;
		line-height: 33px;
		margin-top: 1px;
	}

}




	/* ----- CONTACT SECTION ----- */



.contact-form-container {

	display: block;

	margin: 20px;
	padding: 20px;
	
	background: #1d1d20;

	border-radius: 3px;
	box-shadow: 0px 0px 8px 5px black;
}

@media screen and (min-width: 800px) {

	.contact-form-container {
		margin-top: 50px;
	}

}


.contact-label {
	width: auto;

	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;

	margin: 10px;

	text-align: left;
}
.contact-left, .contact-right {
	display: block;

	margin: 4px;
	padding: 0;

}
.contact-left {
	width: 25%;
}
.contact-right {
	width: 67%;

	margin-right: 0;
}
label, input:not(textarea) {
	width: 100%;

	display: block;
}
label, input, textarea {
	color: white;
}
label {
	padding: 8px 0 10px 0px;
	margin-top: 10px;	
	
	font-family: -apple-system, BlinkMacSystemFont,
	"Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
	"Helvetica Neue", sans-serif;

	font-size: 17px;
}
input:not(.form-button), textarea {
	width: 100%;
	padding: 10px 15px 10px 15px;
	margin-top: 7px;

	background: #1d1d20;

	border-style: solid;
	border-color: #313136;
	border-width: 2px;
	border-radius: 2px;
	box-shadow: inset 0px 0px 4px 3px rgb(15, 15, 15);
}
input, textarea, .text-basic {
	font-family: -apple-system, BlinkMacSystemFont,
	"Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
	"Helvetica Neue", sans-serif;

	font-size: 15px;
}
textarea {
	height: 200px;
}
.button-wrapper {
	width: 100%;

	padding: 10px 15px 10px 15px;
}
.form-button {
	width: 30%;
	min-width: 100px;

	position: relative;

	margin: auto;
	padding: 10px;

	background: #1B1B22;

	border-style: solid;
	border-color: rgb(51, 51, 51);
	border-radius: 2px;
	box-shadow: 0px 0px 8px 5px black;

	text-decoration: none;

	transition: 0.5s;

	border: 1px solid #666;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;  
	border-radius: 2px;
	-moz-box-shadow:  inset 0px 0px 4px 3px rgb(15, 15, 15);
	-webkit-box-shadow:  inset 0px 0px 4px 3px rgb(15, 15, 15);
	box-shadow:  inset 0px 0px 4px 3px rgb(15, 15, 15);
	-webkit-appearance: none;

}
.form-button:hover {
	transform: scale(1.1);
	
	border-color: rgb(0, 113, 188);

	box-shadow: 0px 0px 4px 3px rgb(15, 15, 15);
}
.text-basic {
	text-decoration: none;
}
input:focus, textarea:focus {
	outline: none;
}
.statusMessage {
	display: none;
}
.placeholder {
	width: 735px;
	height: 150px;

	display: block;
	position: relative;
	top: 200px;

	padding: 5px 10px;

	text-align: center;
	text-shadow: 3px 3px 5px black;

	cursor: default;

	visibility: hidden;
}

form #email {
	display: none;
}

.positioned {
	position: relative;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin-top: auto;
	margin-bottom: auto;
}
.php-return-button {
	min-width: 160px;
}


@media screen and (min-width: 800px) {

	.contact-form-container {
		width: 735px;
		height: auto;
	}

}

@media screen and (max-width: 450px) {

	.contact-left {
		display: none;
	}
	.contact-right {
		width: 80%;
	}

}




  
  
  /* Dimensions and position of the status messages */
  
.statusMessage {
	width: 300px;
	height: 30px;
	
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	
	margin: auto;
	padding: 40px 20px;
	
	background: #1d1d20;
	color: white;

	font-size: 18px;

	border-style: solid;
	border-color: rgb(0, 113, 188);
	border-width: 2px;
	border-radius: 2px;

	box-shadow: 0px 0px 4px 3px rgb(15, 15, 15);

	z-index: 51;
}
.statusMessage p {
    text-align: center;
    margin: auto;
    padding: 0;
}
  
	/* ----- FOOTER SECTION ----- */

.footer {
	font-size: 13px;
}

/*



@media screen and (max-width: 880px) {
	.main-div-wrapper, .contact-form-container  {
		width: 80%;
		padding-left: 5%;
		padding-right: 5%;
		margin: 5%;
	}
	.main-div {
		padding: 5% 0 ;
	}
	.main-title {
		width: 100%;
	}
	.about-container, .portfolio-container, .services-block-inner, .services-icons {
		width: auto;
		display: block;
		height: auto;
	}
	.about-part {
		width: auto;
		max-width: 600px;
		height: auto;
		display: block;
		margin: auto;
	}
	.pic-hide {
		display: none;
	}
	.portfolio-column, .services-block {
		margin: auto;
		padding: 0;
		width: 60%;
		min-width: 400px;
		height: auto;
	}
	.services-icons, .services-left, .services-right {
		margin-top: 0;
		padding: 0;
	}
	.contact-left {
		display: none;
	}
	.contact-label {
		width: 100%;
		margin: auto;
	}
	.contact-right {
		width: 98%;
		margin: 1%;
	}
	input:not(.form-button), textarea {
		width: calc(99% - 30px);
		margin: 0;
	}
	.button-wrapper {
		width: calc(99% - 30px);
	}
}
@media screen and (max-width: 700px) {
	.about-part {
		width: 400px;
	}
}
@media screen and (max-width: 800px) {
	.home-box {
		display: inline-block;
		padding-top: 20vh;
	}
	.home-audio-wrapper, .home-pic-wrapper {
		margin: auto;
	}
	.audiosoup-title-backdrop {
		width: 35px;
	}
	.audiosoup-title {
		display: none;
	}
	.audiosoup-title-bowl {
		width: 35px;
	}
	.nav-logo {
		float: right;
		width: 35px;
		display: block;
	}
}
@media screen and (max-width: 570px) {
	input.form-button {
		font-size: 12px;
	}
}
.display-none {
	display: none;
	background: blue;
}


*/



