@charset "utf-8";

/* FONTS */

@font-face {
font-family: DIN-Regular;
src: url(fonts/DIN-Regular.woff);
}

@font-face {
font-family: DIN-Light;
src: url(fonts/DIN-Light.woff);
}

@font-face {
font-family: DIN-LightItalic;
src: url(fonts/DIN-LightItalic.woff);
}

@font-face {
font-family: DIN-CondBold;
src: url(fonts/DIN-CondBold.woff);
}








/* GENERIC */

html body {
	border: 0px;
	padding: 0px;
	outline: 0px;
	margin: 0px;
	font-family: 'DIN-Regular', sans-serif;
	font-size: 15px;
	color: #999999;
	min-height: 100vh;
	position: relative;
	text-align: center;
	line-height: 23px;
	scroll-behavior: smooth;
	width: 100%;
	background-color: white;
}

.title {
	font-size: 35px;
	margin: auto;
	line-height: 42px;
	margin-bottom: 25px;
	margin-top: 60px;
	width: 90%;
	color: #666666;
}

.underline {
	display: block;
	width: 100px;
	height: 2px;
	background-color: #BA9B64;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 40px;
}

.paragraph {
	width: 90%;
	max-width: 450px;
	margin: auto;
	margin-bottom: 60px;
}

.button {
	text-decoration: none;
	color: white;
	background-color: transparent;
	border: 2px solid #BA9B64;
	padding: 11px 45px;
	border-radius: 100px;
	transition: 0.2s;
	outline: 0;
	cursor: pointer;
	font-size: 15px;
	font-family: 'DIN-Regular', sans-serif;
}

.onWhite {
	color: #666666;
}

.button:hover {
	background-color: #BA9B64;
	color: #1A1A1A;
}

.staytuned {
	text-decoration: none;
	color: white;
}

.chevrons {
	font-size: 15px;
}

.staytuned:hover .chevrontop {
	color: #1A1A1A;
	background-color: #BA9B64;
}

#content {
	width: 100%;
}

#StayTuned {
	}







/* HEADER */
	
.fixedbar {
	height: 10px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #BA9B64;
	z-index: 100;
}

#header {
	width: 100%;
	text-align: center;
	background-color: white;
	height: 170px;
	transition: 0.3s;
	position: relative;
	z-index: 99;
}	

.headerContent {
	padding: 30px 5% 0px 5%;
	height: 140px;
	margin: auto;
	text-align: right;
	position: relative;
	background-color: white;
	display: block;
}

#headerBurgerDrop {
	padding: 30px 5% 0px 5%;
	height: 125px;
	width: 90%;
	margin: auto;
	text-align: center;
	position: relative;
	background-color: white;
	display: none;
	overflow: hidden;
	transition: 0.3s;
}

.Logo {
	width: 85px;
	float: left;
}

.navbar {
	height: 140px;
	float: right;
	text-align: right;
	position: relative;
	display: block;
}

.navGeneral {
	display: inline-block;
	margin-top: 105px;
	padding-bottom: 12px;
	text-decoration: none;
	color: #1A1A1A;
	font-size: 17px;
	border-bottom: 0px solid #BA9B64;
	transition: 0.4s;
}

.navGeneral:hover {
	border-bottom: 4px solid #BA9B64;
	padding-bottom: 8px;
}

.navSpacer {
	width: 40px;
	height: 10px;
	display: inline-block;	
}

.burgerMenu {
	opacity: 0;
	display: none;
	position: absolute;
	width: 90%;
	margin: auto;
	margin-top: calc(5vh + 70px);
}

.navGeneralBurger {
	display: inline-block;
	padding: 13px 20px;
	text-decoration: none;
	width: 50%;
	min-width: 150px;
	color: #1A1A1A;
	font-size: 17px;
	border-left: 0px solid #BA9B64;
	border-right: 0px solid #BA9B64;
	transition: 0.2s;
	margin-top: 5vh;
}

.navGeneralBurger:hover {
	border-left: 4px solid #BA9B64;
	border-right: 4px solid #BA9B64;
	padding: 13px 16px;
}

.burger_icon {
	display: none;
	float: right;
	margin: 0;
	border: 0;
	padding: 0;
	cursor: pointer;
	height: 20px;
	width: 20px;
	position: relative;
	outline: none;
	background-color: transparent;
}

.burger_line {
	height: 3px;
	background-color: #666666;
	width: 20px;
	transition: 0.3s;
	display: inline-block;
	pointer-events: none;
	position: absolute;
	right: 0px;
	top: 0;
}

#burger_top {
	transform: rotate(0deg);
	margin-top: 0px;
}

#burger_middle {
	opacity: 1;
	margin-top: 8px;
}

#burger_bottom {
	transform: rotate(0deg);
	margin-top: 16px;
}

.burger_click {
	width: 20px;
	height: 20px;
	position: absolute;
	top: -1px;
	right: -1px;
	outline: none;
	background-color: transparent;
}

#close_burger_icon {
	position: absolute;
	width: 27px;
	height: 27px;
	border: 0;
	padding: 0;
	margin: 0;
	right: calc(5vw - 3px);
	top: 25px;
	display: none;
	cursor: pointer;
	outline: none;
	background-color: transparent;
}

@media only screen and (max-width: 700px) {
	.burgerMenu {
		opacity: 1;
		display: block;
	}
	
	.burger_icon {
		display: block;
	}
		
	.Logo {
		width: 75px;
	}
	
	.navSpacer {
		display: block;
	}
	
	.navbar {
		display: none;
	}
	
	.headerContent {
		display: none;
	}
	
	#headerBurgerDrop {
		display: block;
	}
	
	#header {
		height: 155px;
	}
}













/* FOOTER */

#footer {
	width: 100%;
	text-align: center;
	background-color: #1A1A1A;
	height: 250px;
	position: absolute;
	bottom: 0;
}

.footertopbar {
	height: 10px;
	width: 100%;
	background-color: #BA9B64;
}

.footerSpacer {
	height:250px;
	width: 100%;
}

.footerContent {
	max-width: 1200px;
	margin: auto;
	width: 90%;
}

.ActiveEnterprises {
	color: #666666;
	position: absolute;
	bottom: 30px;
	left: 5%;
	transition: 0.2s;
	text-align: left;
}

.copyright {
	color: white;
	position: absolute;
	bottom: 30px;
	right: 5%;
	left: auto;
	transition: 0.2s;
	text-align: right;
}

.footerInfo {
	color: white;
	position: absolute;
	top: 40px;
	right: 5%;
	left: auto;
	letter-spacing: 1px;
	text-align: right;
}

.footerTel {
	text-decoration: none;
	color: white;
	transition: 0.2s;
	display: block;
	margin-bottom: 12px;
}

.footerTel:hover {
	color: #666666;
}

.footerMail {
	text-decoration: none;
	color: white;
	transition: 0.2s;
	display: block;
	margin-bottom: 10px;
}

.footerMail:hover {
	color: #666666;
}

.footerFb {
	text-decoration: none;
	color: white;
	transition: 0.2s;
	display: block;
}

.footerFb:hover {
	color: #666666;
}

.chevronFooter {
	padding: 8px 15px 8px 15px;
	position: absolute;
	bottom: 30px;
	top: auto;
	text-align: center;
	transition: 0.2s;
	right: calc(50% - 22px);
}


@media only screen and (max-width: 980px) {
	.chevronFooter {
		right: 5%;
	}
	
	.ActiveEnterprises {
		bottom: 60px;
	}
	
	.copyright {
		left: 5%;
		right: auto;
		text-align: left;
	}
}


@media only screen and (max-width: 600px) {
	#footer {
		height: 400px;
	}
	
	.footerSpacer {
		height: 400px;
	}
	
	.chevronFooter {
		right: 5%;
		bottom: auto;
		top: 40px;
	}
	
	.footerInfo {
		text-align: left;
		left: 5%;
		right: auto;
		top: 160px;
	}
}


@media only screen and (max-width: 400px) {
	#footer {
		height: 450px;
	}
	
	.footerSpacer {
		height: 450px;
	}
	
	.ActiveEnterprises {
		width: 200px;
		bottom: 95px;
	}
	
	.copyright {
		width: 200px;
	}
}




	




/* OVERLAYS AND FORMS*/



#headerWHITE {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: white;
	transition: 0.3s;
	opacity: 0;
}

#SubscribeCOVER {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	pointer-events: none;
}
	
#SubscribeBLACK {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: black;
	transition: 0.4s;
	opacity: 0;
}
	
#SubscribeFORM {
	width: 90vw;
	max-width: 700px;
	height: 550px;
	position: fixed;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 15px;
	background-color: white;
	transition: 0.2s;
	opacity: 0;
}
	
#closeSubscribe {
	width: 25px;
	height: 25px;
	position: absolute;
	top: 4vh;
	right: 3vh;
	cursor: pointer;
	outline: 0;
	border: 0;
}
	
#hireArtistCOVER {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	pointer-events: none;
}
	
#hireArtistBLACK {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: black;
	transition: 0.4s;
	opacity: 0;
}
	
#hireArtistFORM {
	width: 90vw;
	max-width: 700px;
	height: 90vh;
	min-height: 550px;
	max-height: 700px;
	position: fixed;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 15px;
	background-color: white;
	transition: 0.2s;
	opacity: 0;
}

#closeHireArtist {
	width: 25px;
	height: 25px;
	position: absolute;
	top: 4vh;
	right: 5vh;
	cursor: pointer;
	outline: 0;
	border: 0;
}

.FORMname {
	width: calc(44% - 40px);
	margin-top: 20px;
	margin-left: 5%;
	height: 40px;
	border-radius: 100px;
	border: 0;
	float: left;
	background-color: #F2F2F2;
	color: #666666;
	outline: 0;
	padding: 0px 20px;
	font-size: 15px;
	font-family: 'DIN-Regular', sans-serif;
}
	
.FORMsurname {
	width: calc(44% - 40px);
	height: 40px;
	border-radius: 100px;
	border: 0;
	float: right;
	background-color: #F2F2F2;
	color: #666666;
	margin-top: 20px;
	margin-right: 5%;
	outline: 0;
	padding: 0px 20px;
	font-size: 15px;
	font-family: 'DIN-Regular', sans-serif;
}

.FORMstagename {
	width: calc(90% - 40px);
	height: 40px;
	border-radius: 100px;
	border: 0;
	background-color: #F2F2F2;
	color: #666666;
	margin-top: 15px;
	outline: 0;
	padding: 0px 20px;
	font-size: 15px;
	font-family: 'DIN-Regular', sans-serif;
}

.FORMemail {
	width: calc(90% - 40px);
	height: 40px;
	border-radius: 100px;
	border: 0;
	background-color: #F2F2F2;
	color: #666666;
	margin-top: 15px;
	outline: 0;
	padding: 0px 20px;
	font-size: 15px;
	font-family: 'DIN-Regular', sans-serif;
}

.FORMnumber {
	width: calc(90% - 40px);
	height: 40px;
	border-radius: 100px;
	border: 0;
	background-color: #F2F2F2;
	color: #666666;
	margin-top: 15px;
	outline: 0;
	padding: 0px 20px;
	font-size: 15px;
	font-family: 'DIN-Regular', sans-serif;
}
	
.OneLineName {
	width: calc(90% - 40px);
	margin-top: 15px;
}
	
.OneLineSurname {
	width: calc(90% - 40px);
	margin-top: 15px;
}

.FORMbutton {
	text-decoration: none;
	color: #666666;
	background-color: transparent;
	border: 2px solid #BA9B64;
	padding: 11px 45px;
	border-radius: 100px;
	transition: 0.2s;
	outline: 0;
	cursor: pointer;
	display: block;
	position: absolute;
	bottom: 10%;
	left: calc(50% - 73px);
	font-size: 15px;
	font-family: 'DIN-Regular', sans-serif;
}

.FORMbutton:hover {
	background-color: #BA9B64;
	color: #1A1A1A;
}
	
.overlayTitle {
	margin-top: 7%;
}

.HireFormSelect {
	border: none;
	background-color: transparent;
	outline: 0;
	color: #666666;
	padding: 0;
	margin: auto;
	height: 40px;
	width: calc(100% - 26px);
	font-size: 15px;
	font-family: 'DIN-Regular', sans-serif;
}

.SelectContainer {
	border: none;
	background-color: #F2F2F2;
	outline: 0;
	color: #666666;
	padding: 0;
	margin: 0;
	height: 40px;
	width: 90%;
	margin: auto;
	margin-bottom: 0px;
	border-radius: 100px;
}

.FORMdate {
	border: none;
	background-color: transparent;
	outline: 0;
	color: #666666;
	padding: 0;
	margin: auto;
	height: 40px;
	width: calc(100% - 40px);
	font-size: 15px;
	font-family: 'DIN-Regular', sans-serif;
}

.FORMtime {
	border: none;
	background-color: transparent;
	outline: 0;
	color: #666666;
	padding: 0;
	margin: auto;
	height: 40px;
	width: calc(100% - 40px);
	font-size: 15px;
	font-family: 'DIN-Regular', sans-serif;
}

.DateContainer {
	border: none;
	background-color: #F2F2F2;
	outline: 0;
	color: #666666;
	padding: 0;
	margin: auto;
	width: 44%;
	float: right;
	margin-top: 20px;
	margin-right: 5%;
	height: 40px;
	margin-bottom: 0px;
	border-radius: 100px;
}

.TimeContainer {
	border: none;
	background-color: #F2F2F2;
	outline: 0;
	color: #666666;
	padding: 0;
	margin: auto;
	width: 44%;
	float: left;
	margin-top: 20px;
	margin-left: 5%;
	height: 40px;
	margin-bottom: 0px;
	border-radius: 100px;
}



@media only screen and (max-width: 700px) {
	#closeSubscribe {
		top: 25px;
		right: 5%;
	}
	
	#closeHireArtist {
		top: 25px;
		right: 5%;
	}
	
	#SubscribeFORM {
		border-radius: 8px;			
	}
	
	#hireArtistFORM {
		border-radius: 8px;			
	}
	
	.FORMname {
		width: calc(90% - 40px);
	}
	
	.FORMsurname {
		width: calc(90% - 40px);
		margin-top: 15px;
	}
	
	.FORMbutton {
		bottom: 5%;
	}
	
	.hireArtistText {
		bottom: calc(5% + 70px);
	}
	
	.DateContainer {
		width: 90%;
		margin-top: 15px;		
	}
	
	.TimeContainer {
		width: 90%;
		margin-top: 15px;		
	}
}

@media only screen and (max-width: 600px) {
	#closeSubscribe {
		top: 20px;
		right: 4%;
	}
	
	#closeHireArtist {
		top: 20px;
		right: 4%;
	}
	
	.overlayTitle {
		margin-top: 50px;
	}
	
	.FORMname {
		margin-top: 0px;
	}
	
	.TimeContainer {
		margin-bottom: 15px;
	}
}








/* BUSKERS SEARCH PAGE */

#Search {
	text-align: left;
	margin: auto;
	background-image: url('images/icon/search.png');
	background-position: 25px 13px;
	background-size: 17px;
	background-repeat: no-repeat;
	width: calc(70% - 80px);
	max-width: 540px;
	background-color: #f2f2f2;
	font-size: 16px;
	padding: 12px 20px 12px 60px;
	border-radius: 200px;
	border: 0;
	display: block;
	outline: 0;
	margin-bottom: 70px;
	margin-top: 55px;
}

#artistList {
	padding: 0;
	margin: 0;
	display: inline-block;
	list-style: none;
	width: 90%;
}

#artistList li a {
	float: left;
	margin-bottom: 45px;
	width: 25%;
	height: 170px;
	text-decoration: none;
	font-size: 18px;
	color: #999;
	position: relative;
}

.artistContent {
	width: 390px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	text-align: left;
}
	
.artistImage {
	background-color: #666666;
	background: url("images/DefaultDisk.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 170px;
	height: 170px;
    display: inline-block;
	border-radius: 18px;
	transition: 0.2s;
}

.artistTags {
	display: inline-block;
	width: auto;
    text-align: left;
	padding-right: 50px;
	position: absolute;
	top: 50%;
	transform: translate(30px, -50%);
	height: auto;
	font-size: 13px;
	font-family: 'DIN-LightItalic', Sans-serif;
	letter-spacing: 1px;
	line-height: 16px;
}

.artistTagsTitle {
	font-family: 'DIN-CondBold', Sans-serif;
	color: #BA9B64;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 40px;
	font-size: 15px;
}
	
.alessandroTerzoImage {
	background-image: url("images/artist/alessandroterzo/button.jpg");
}
	
.brianTonnaImage {
	background-image: url("images/artist/briantonna/button.jpg");
}

.danielRavenImage {
	background-image: url("images/artist/danielraven/button.jpg");
}

.davidCauchiImage {
	background-image: url("images/artist/davidcauchi/button.jpg");
}

.denicijaImage {
	background-image: url("images/artist/denicija/button.jpg");
}

.dreamPuddleImage {
	background-image: url("images/artist/dreampuddle/button.jpg");
}

.jessicaMagroImage {
	background-image: url("images/artist/jessicamagro/button.jpg");
}

.malteseMotionImage {
	background-image: url("images/artist/maltesemotion/button.jpg");
}

.terramaxkaImage {
	background-image: url("images/artist/terramaxka/button.jpg");
}

.terramaxkaImage {
	background-image: url("images/artist/terramaxka/button.jpg");
}

#artistList li a:hover .alessandroTerzoImage {
	background-image: url("images/artist/alessandroterzo/buttonhover.jpg");
}

#artistList li a:hover .brianTonnaImage {
	background-image: url("images/artist/briantonna/buttonhover.jpg");
}

#artistList li a:hover .danielRavenImage {
	background-image: url("images/artist/danielraven/buttonhover.jpg");
}

#artistList li a:hover .davidCauchiImage {
	background-image: url("images/artist/davidcauchi/buttonhover.jpg");
}

#artistList li a:hover .denicijaImage {
	background-image: url("images/artist/denicija/buttonhover.jpg");
}

#artistList li a:hover .dreamPuddleImage {
	background-image: url("images/artist/dreampuddle/buttonhover.jpg");
}

#artistList li a:hover .jessicaMagroImage {
	background-image: url("images/artist/jessicamagro/buttonhover.jpg");
}

#artistList li a:hover .malteseMotionImage {
	background-image: url("images/artist/maltesemotion/buttonhover.jpg");
}

#artistList li a:hover .terramaxkaImage {
	background-image: url("images/artist/terramaxka/buttonhover.jpg");
}




@media only screen and (max-width: 1800px) {
	#artistList li a {
		width: 33.3%;
	}
}



@media only screen and (max-width: 1380px) {
	#artistList li a {
		width: 50%;
	}
}

@media only screen and (max-width: 890px) {
	#artistList li a {
		width: 100%;
	}
}

@media only screen and (max-width: 500px) {
	.artistImage {
		width: 120px;
		height: 120px;
		border-radius: 13px;
	}
	
	#artistList li a {
		height: 120px;
	}

	.artistContent {
		width: 340px;
	}
}









/* OTHER CONTENT */

.herobuttons {
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 6vh;
}

@media only screen and (max-height: 370px) {	
	.herobuttons {
		bottom: 30px;
	}
}

.bigbutton {
	width: 90%;
	max-width: 600px;
	height: 100px;
	border-radius: 10px;
	background-color: #BA9B64;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: block;
	margin: auto;
	margin-bottom: 20px;
	cursor: pointer;
	outline: 0;
	border: 0;
}

.bigbuttontitle {
	height: 80px;
	padding-top: 10px;
}

.hirebutton {
	background-image: url("images/artistButton.jpg");
	transition: 0.2s;
}

.hirebutton:hover {
	background-image: url("images/artistButtonHover.jpg");
}

.eventsbutton {
	background-image: url("images/eventsButton.jpg");
	transition: 0.2s;
}

.eventsbutton:hover {
	background-image: url("images/eventsButtonHover.jpg");
}

.blogbutton {
	background-image: url("images/blogButton.jpg");
	transition: 0.2s;
}

.blogbutton:hover {
	background-image: url("images/blogButtonHover.jpg");
}

.prefooter {
	text-align: center;
	width: 100vw;
	padding-bottom: 65px;
	padding-top: 50px;
	background-color: #F2F2F2;
}

.buskingHabits {
	min-height: 150px;
	width: 90%;
	margin: auto;
}

.habitsContent {
	position: relative;
	width: 150px;
	height: 170px;
	display: inline-block;
	margin: 0px 20px;
}

.habitsIcon {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 70px;
}

.habitsText {
	width: 100%;
	position: absolute;
	top: 100px;
	left: 50%;
	transform: translate(-50%, 0);
	text-align: center;
}

@media only screen and (max-width: 670px) {
	.habitsContent {
		width: 220px;
		height: 100px;
		display: block;
		margin: 20px auto;
	}
	
	.habitsIcon {
		top: 50%;
		left: 0;
		transform: translate(0, -50%);
	}
	
	.habitsText {
		width: 160px;
		position: absolute;
		top: 50%;
		left: 100px;
		transform: translate(0, -50%);
		text-align: left;
	}
}

.socialIconSize {
	display: inline-block;
	padding: 11px 5px 11px 6px;
	margin: 0px 20px;
}

.socialFacebook {
	color: #3C5A99;
}

.socialInstagram {
	color: #E1306C;
}

.socialYoutube {
	color: #FF0000;
}

.socialWebsite {
	color: #00745F;
}

.socialSoundcloud {
	color: #FF6A00;
}

.socialGlobe {
	color: #0090FF;
}

.socialFacebook:hover {
	color: #666666;
}

.socialInstagram:hover {
	color: #666666;
}

.socialYoutube:hover {
	color: #666666;
}

.socialWebsite:hover {
	color: #666666;
}

.socialSoundcloud:hover {
	color: #666666;
}

.socialGlobe:hover {
	color: #666666;
}






.aboutSection1 {
	height: 300px;
	background-color: #F2F2F2;
	position: relative;
}

.aboutImage1 {
	height: 100%;
	width: 100%;
	position: absolute;
	right: 0;
	background-image: url('images/about1.png');
	background-repeat: no-repeat;
	background-position: right;
	background-size: contain;
}

.aboutSection1text {
	text-align: center;
	width: 400px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

.aboutImage1_logo {
	width: 200px;
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translate(0, -50%);
}





.aboutSection2 {
	height: 300px;
	background-color: #1D1D1B;
	position: relative;
}

.aboutImage2 {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	background-image: url('images/about2.png');
	background-repeat: no-repeat;
	background-position: left;
	background-size: contain;
}

.aboutSection2text {
	text-align: center;
	width: 400px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}


@media only screen and (max-width: 1800px) {
	.aboutSection1text {
		width: 293px;
		left: 5%;
		text-align: left;
		transform: translate(0px, -50%)
	}
	
	.aboutSection2text {
		width: 300px;
		left: calc(5vw + 610px);
		text-align: left;
		transform: translate(0px, -50%)
	}
}

@media only screen and (max-width: 1055px) {
	.aboutImage1 {
		width: 50%;
		background-size: cover;
		background-position: -60px, 50%;
	}
	
	.aboutImage2 {
		width: 50%;
		background-position: center;
		background-size: cover
	}
	
	.aboutSection2text {
		left: 55vw;
	}
}

@media only screen and (max-width: 750px) {
	.aboutSection1 {
		height: 600px;
	}
	
	.aboutImage1 {
		background-image: url('images/about1_mob.png');
		width: 100%;
		height: 400px;
		bottom: 0;
		background-position: top;
	}

	.aboutSection1text {
		text-align: center;
		width: 90%;
		max-width: 400px;
		top: 55px;
		left: 50%;
		transform: translate(-50%, 0);
	}
	
	.aboutImage1_logo {
		right: 50%;
		top: auto;
		bottom: 30px;
		transform: translate(50%, 0);
	}
	
	
	.aboutSection2 {
		height: 520px;
	}

	.aboutSection2text {
		text-align: center;
		width: 90%;
		max-width: 400px;
		top: 55px;
		left: 50%;
		transform: translate(-50%, 0);
	}
	
	.aboutImage2 {
		width: 100%;
		height: 250px;
		bottom: 0;
	}
}

@media only screen and (max-width: 500px) {
	.aboutSection1 {
		height: 650px;
	}
	
	.aboutImage1 {
		height: 400px;
	}
	
	.aboutImage1_logo {
		bottom: 55px;
	}
}