/* Styles.css */

/* General styles */
html {
	overflow-x: hidden;
	max-width: 100%;
}

body {
	margin: 0 auto;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	overflow-x: hidden;
}

a.mainCTA {
	width: 200px;
	height: 20px;
	background: #519d93;
	border: 1px solid #519d93;
	color: #FFF;
	padding: .5% 2.22%;
	border-radius: 30px;
	margin: 0 1.5%;
	text-decoration: none;
	text-align: center;
	font-size: 1em;
}

a.mainCTA:hover {
	background: white;
	text-decoration: none;
	border: 1px solid #519d93;
	color: #000;
}

a.secondaryCTA {
	padding: .75% 2.22%;
	text-decoration: none;
	background: #FFF;
	border: 1px solid #519d93;
	color: #000;
	border-radius: 30px;
}

a.secondaryCTA:hover {
	text-decoration: none;
	border: 1px solid #519d93;
	color: #c0c0c0;
}

hr.dots {
	border: 1px dashed #519d93;
}

/* Mobile general styles */
@media screen and (max-width: 1000px) {
	a.mainCTA {
		padding: 2.5% 20%;
		margin: 10%;
	}
}

/* Navigation */
nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 50px;
	padding: .25%;
	width: 100%;
	z-index: 100;
	border-bottom: 1px solid #ddd;
	background: #fff;
}

nav#mainNav {
	position: fixed;
}

nav#mobileNav {
	display: none;
}

nav ul {
	list-style: none;
	display: flex;
	flex-basis: 100%;
	justify-content: space-evenly;
	align-items: center;
}

nav ul li {
	flex-basis: 50%;
	text-align: center;
}

nav ul li a, nav #langContainer .lang a {
	color: #000;
	text-decoration: none;
	padding: 0 2%;
}

nav ul li a:hover, nav #langContainer .lang a:hover {
	text-decoration: underline;
}

#langContainer {
	display: flex;
	flex-basis: 10%;
	border-left: 2.5px solid #519d93;
	justify-content: space-around;
	padding: 0 0 0 2%;
	margin: 0 1%;
}

/* Tablet navigation */

@media (min-width:1000px) and (max-width:1300px) {
	nav#mainNav a.mainCTA {
		display: none;
	}
}

/* Mobile navigation */
@media screen and (max-width: 1000px) {
	nav#mobileNav {
		display: block;
		width: 60px;
		height: 60px;
		margin: 2.5% 2.5% 0;
		padding: 0 10px 12.5px;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		-o-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		cursor: pointer;
		position: absolute;
		zoom: 0.8;
		border: none;
	}

	nav#mobileNav span {
		display: block;
		position: absolute;
		height: 8px;
		width: 77.5%;
		background: #519d93;
		border-radius: 9px;
		opacity: 1;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .25s ease-in-out;
		-moz-transition: .25s ease-in-out;
		-o-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
	}
	nav#mobileNav.closed {
		display: none;
	}
	nav#mobileNav b {
		font-size: .75em;
		text-transform: uppercase;
		display: flex;
		justify-content: center;
		line-height: 25px;
	}

	nav#mobileNav span:nth-child(1) {
		top: 24px;
	}

	nav#mobileNav span:nth-child(2),#mobileNav span:nth-child(3) {
		top: 40px;
	}

	nav#mobileNav span:nth-child(4) {
		top: 56px;
	}

	nav#mobileNav.open span:nth-child(1) {
		top: 60px;
		width: 0%;
		left: 50%;
	}

	nav#mobileNav.open span:nth-child(2) {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
		left: 7.5px;
	}

	nav#mobileNav.open span:nth-child(3) {
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
		left: 7.5px;
	}

	nav#mobileNav.open span:nth-child(4) {
		top: 18px;
		width: 0%;
		left: 50%;
	}

	nav#mobileNav.open span:nth-child(5) {
		display: none;
	}

	nav.flexNav {
		display: flex !important;
		flex-direction: column;
		font-size: 1.1em;
		height: auto;
		border: 0px;
		top: 100px;
		position: relative;
	}

	nav.flexNav ul {
		display: block;
		width: 100%;
		padding: 0;
	}

	nav.flexNav ul li {
		line-height: 1.75em;
	}

	nav.flexNav a.mainCTA {
		margin: 2.5% 10% 5%;
	}

	nav.flexNav #langContainer {
		border-top: 2.5px solid #519d93;
		border-left: 0;
		padding: 10% 0 0 0;
		margin: 5% 0;
	}

	nav.flexNav #langContainer .lang {
		padding: 0 50%;
	}
}

/* Hero element */
#hero {
	z-index: -1;
}

#heroBanner {
	display: flex;
	justify-content: center;
}

#hero video#heroVideo {
	width: 100%;
}

#heroContent {
	position: absolute;
	top: 50px;
	width: 100%;
	background: rgb(0 0 0 / 30%);
	margin: 0;
	padding: 5% 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
}

#heroContent h1 {
	font-family: 'Allura', cursive;
	font-size: 6em;
	font-weight: 400;
	margin: 5% 0 0 0;
}

#heroContent h2 {
	padding: 0 2% 0 2%;
	text-transform: uppercase;
	font-size: 1.5em;
}

#heroContent h3 {
	font-size: 1.35em;
	display: inline-flex;
	width: 100%;
	justify-content: center;
	color: #FFF;
	padding: 0 0 2% 0;
}

#heroContent h3 a {
	color: #fff;
	text-decoration: underline;
}

#heroContent h3 span.pipe {
	color: #dadada;
	padding: 0 2%;
	font-weight: 100;
}

#heroContent p {
	text-align: center;
	padding: 0 10%;
	font-size: 1.2em;
	max-width: 1000px;
}

div#readMoreAndCTA {
  display: flex;
	justify-content: center;
	width: 100%;
}

div#heroCTAs {
	display: flex;
	align-items: center;
	width: 20%;
	max-width: 300px;
}

#heroCTAs .mainCTA {
	height: 30px;
	display: flex;
	align-items: center;
	padding: .5% 3%;
	justify-content: center;
}

/* Hero scroll down element */
section#hero a#scrollLink {
	text-decoration: none;
	display: flex;
	align-items: center;
}

section#hero #scrollDown span#scrollText {
	text-transform: uppercase;
	font-size: 1em;
	color: #fff;
	margin: 30px 0 0 0;
}

/* Hero scroll down element end */

/* Small laptop hero element */
@media (min-width:1300px) and (max-width:1500px) {
	#hero video#heroVideo {
		height: 100vh;
		object-fit: cover;
	}
	#heroContent {
		justify-content: center;
	}
}

/* Small laptop hero element end */

/* Tablet hero element */
@media (min-width:1000px) and (max-width:1300px) {
	#hero #heroContent p {
		padding: 0 10%;
	}
	#hero video#heroVideo {
		height: 100vh;
		object-fit: cover;
	}
	#heroContent {
		justify-content: center;
		margin: 0 0 2.5% 0;
	}
	div#heroCTAs {
		display: flex;
		align-items: center;
		width: 30%;
	}
}

/* Tablet hero element end*/

/* Mobile hero element */
@media screen and (max-width: 1000px) {
	#hero {
		background: url('videos/hero_poster.jpeg');
		background-repeat: no-repeat;
		background-size: cover;
		margin: 0;
	}
	#hero video#heroVideo {
		height: 95vh;
		overflow: hidden;
		object-fit: cover;
	}
	#heroContent {
		top: auto;
		width: 100%;
		height: 95vh;
		margin: 0;
		padding: 0;
		justify-content: center;
	}
	#heroContent h1 {
		font-size: 4em;
		margin: 10% 0 0 0;
	}
	#heroContent h2 {
		font-size: 1.5em;
		text-align: center;
	}
	#heroContent h3 {
		font-size: 1em;
		margin: 2% 0;
	}
	#heroContent p {
		padding: 0 5% 5%;
		font-size: 1em;
	}
	div#heroCTAs {
		width: auto;
		margin-bottom: 20px;
	}
	div#readMoreAndCTA {
	  flex-direction: column;
		width: auto;
	}
	section#hero a#scrollLink {
		justify-content: center;
	}
	#heroCTAs a.mainCTA {
		margin: 2.5% auto;
		height: auto;
		padding: 2.5% 17.5% 2.5% 20%;
	}
	#heroCTAs a.secondaryCTA {
		padding: 2.5% 20%;
		height: 22.5px;
		text-align: center;
		margin: 2.5% auto 5%;
	}
}
/* Mobile hero element end */

/* It's a match */
@font-face {
	font-family: Hipster Script Pro;
	src: url(/fonts/HipsterScriptPro.ttf), url(/fonts/HipsterScriptPro.woff);
}
#tinderContainer {
	text-align: center;
	margin: 2.5% auto;
	width: 50%;
	padding: 2% 2% 0 2%;
}
#tinderContainer h2 {
	font-family: Hipster Script Pro, sans-serif;
	font-style:normal;
	font-size: 6em;
	margin: 0;
	background: #ED4B78;
	background: -webkit-linear-gradient(to right, #ED4B78 0%, #f6774d 100%);
	background: -moz-linear-gradient(to right, #ED4B78 0%, #f6774d 100%);
	background: linear-gradient(to right, #ED4B78 0%, #f6774d 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#tinderContainer p {
	font-size: 1.25em;
	margin: 0 0 2.5% 0;
}
#tinderContainer h3 {
	margin: 5% 0 7.5% 0;
}
#tinderContainer img.tinderImg {
	border-radius: 50%;
	width: 300px;
	border: 5px solid #fff;
	margin: 2.5% 0 1%;
}
#tinderContainer img.tinderImg:first-of-type {
	position: relative;
	display: none;
	left: 10px;
}
#tinderContainer img.tinderImg:last-of-type {
	position: relative;
	display: none;
	right: 10px;
}
#tinderContainer img.rightAnim {
	display: inline !important;
	animation: slide-in-fwd-right 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
#tinderContainer img.leftAnim {
	display: inline !important;
	animation: slide-in-fwd-left 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-fwd-right {
	0% {
		transform: translateZ(-1400px) translateX(100px);
		opacity: 0;
	}
	100% {
		transform: translateZ(0) translateX(0);
		opacity: 1;
	}
}
@keyframes slide-in-fwd-left {
	0% {
		transform: translateZ(-1400px) translateX(-100px);
		opacity: 0;
	}
	100% {
		transform: translateZ(0) translateX(0);
		opacity: 1;
	}
}

#tindercontainer div#infoSectionLink {
	height: 10px;
}

/* Tablet Tinder container */
@media (min-width:1000px) and (max-width:1300px) {
	#tinderContainer {
		width: 90%;
	}
}

/* Mobile Tinder container */
@media screen and (max-width: 1000px) {
	#tinderContainer {
		width: 100%;
		padding: 0 2%;
	}
	#tinderContainer h2 {
		font-size: 2em;
	}
	#tinderContainer p {
		font-size: 1em;
	}
	#tinderContainer img.tinderImg {
		width: 40%;
	}
}
/* It's a match end */


/* Info */
section#infoSection {
	padding: 1% 0;
}
section#infoSection h2 {
	text-align: center;
	text-transform: uppercase;
	margin: 1% 0 2% 0;
}
section#infoSection #infoContainer {
	display: flex;
	max-width: 75%;
	justify-content: space-evenly;
	margin: auto;
	flex-wrap: wrap;
}
section#infoSection #infoContainer .infoContainerIcon {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	padding: 2%;
	margin: 2%;
	flex-basis: 15%;
	border: 1px solid #519d93;
	border-radius: 20px;
}

section#infoSection #infoContainer span.infoIcon {
	font-size: 3em;
}

/* Mobile timer */
@media screen and (max-width: 1000px) {
	section#infoSection h2 {
		text-align: center;
		text-transform: uppercase;
		margin: 5% 0;
	}
	section#infoSection #infoContainer .infoContainerIcon {
		display: flex;
		flex-direction: row;
		flex-basis: 100%;
		flex-wrap: wrap;
		margin: 5% 0;
		justify-content: center;
		padding: 10% 15%;
	}
	section#infoSection #infoContainer span.infoIcon {
		margin: 0 auto;
		width: 100%;
	}
}

/* Info end */

/* Timer */
section#timer {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: rgb(81,157,147);
	background: linear-gradient(90deg, rgba(81,157,147,1) 50%, rgba(0,212,255,1) 100%);
	color: #fff;
}
#timer #timerContainer {
	margin: 2% 0;
	flex-basis: 100%;
}
#timer #timerContainer h2 {
	text-transform: uppercase;
}

#timer #timerContainer b {
	font-size: 4em;
}
#timer #timerContainer .timerInfo {
	display: inline-flex;
	flex-direction: column;
	padding: 2%;
}

/* Mobile timer */
@media screen and (max-width: 1000px) {
	section#timer {
		margin: 0 0 5% 0;
		padding: 5% 0 12.5% 0;
	}
	#timer #timerContainer b {
		font-size: 2em;
	}
	#timer #timerContainer span {
		font-size: .9em;
	}
}

/* Info section */
section#info {
	display: flex;
	align-items: center;
	padding: 2%;
	background: url(images/infobg.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: left;
	color: #fff;
	font-size: 1.2em;
	flex-direction: column;
}
section#info div#infoText {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: rgb(0 0 0 / 30%);
	width: 40%;
	padding: 2.5% 5%;
}
#info #infoText h2 {
	margin: 1% 0;
}
section#info #infoText p {
	max-width: 95%;
	margin: 0% 0 5% 0;
	text-align: center;
}
section#info #infoText a {
	color: #fff;
}
section#info #infoTextCTAs {
	display: flex;
}
section#info #infoText a.secondaryCTA {
	display: flex;
	margin: 1%;
	height: 30px;
	width: 215px;
	font-size: .85em;
	padding: .75% 5%;
	align-items: center;
	justify-content: center;
	color: #000;
}
section#info #infoText a.secondaryCTA:hover {
	text-decoration: none;
	border: 1px solid #519d93;
	color: #c0c0c0;
}

div#infoMap {
	margin: 2%;
}
div#infoMap iframe#map {
	border: none;
	background: #fff;
	border-radius: 5px;
	padding: 1%;
}

/* Mobile Info section */
@media screen and (max-width: 1000px) {
	section#info div#infoText {
		width: 90%;
		padding: 5% 5% 10% 5%;
		margin: 2%;
	}
	section#info #infoTextCTAs {
		margin: 2% 0 0 0;
		flex-wrap: wrap;
		justify-content: center;
	}
	div#infoMap iframe#map {
		padding: 0;
	}
}

/* Dresscode section */
section#dressCode {
	display: flex;
	flex-direction: column;
	align-items: center;
}
section#dressCode h2 {
	text-align: center;
	text-transform: uppercase;
	padding: 2% 0 0 0;
}
section#dressCode div#weatherData {
	display: flex;
	width: 50%;
	justify-content: center;
}
section#dressCode div#weatherStatistics, section#dressCode div#currentWeather {
	padding: 2%;
	margin: 2%;
	flex-direction: column;
	flex-basis: 50%;
}

section#dressCode #weatherStatistics div#weatherIcon {
	margin-top: 20px;
}

section#dressCode #weatherStatistics #weatherIcon img, .weatherSVG img {
	width: 40%;
}

section#dressCode #currentWeather span#location {
	margin: 2.5% 0;
	display: flex;
}

section#dressCode #currenWeatherTexts a.secondaryCTA {
	padding: 2% 7.5%;
	text-align: center;
	max-width: 150px;
}

section#dressCode #weatherStatistics b:first-child, section#dressCode #currentWeather b:first-child {
	margin: 0 0 1% 0;
}

/* Tablet weather section */
@media (min-width:1000px) and (max-width:1300px) {
	div#weatherData {
		display: flex;
		width: 70% !important;
	}
}

/* Mobile weather section */
@media screen and (max-width: 1000px) {
	section#dressCode div#weatherStatistics, section#dressCode div#currentWeather {
		margin: 0;
	}

	section#dressCode div#weatherData {
		display: flow-root;
		width: 90%;
		margin: 5% 0 0 0;
	}
	section#dressCode div#weatherStatistics {
		margin: 0 0 5% 0;
	}
	section#dressCode #currentWeather span#location {
		margin: 2.5% 0;
		display: flex;
	}
	section#dressCode #currentWeather, section#dressCode #weatherStatistics {
		margin: 2% 0;
	}
	section#dressCode #currentWeather a.secondaryCTA {
		margin: 2% 0 5%;
		padding: 2% 15%;
		display: flex;
		justify-content: center;
	}
}
/*End of dresscode section */

/*Wedding gift section */
section#weddingGift {
	background: rgb(81,157,147);
	background: linear-gradient(90deg, rgba(81,157,147,1) 50%, rgba(0,212,255,1) 100%);
	color: #fff;
	margin: 0;
	padding: 1% 5% 2.5% 5%;
	display: flex;
	flex-direction: column;
}
section#weddingGift #weddingGiftContent {
	display: flex;
	justify-content: center;
	margin: 1% 0 0 0;
}
section#weddingGift #weddingGiftContentText {
	flex-basis: 50%;
	margin: 0 5% 0 0;
	justify-content: flex-start;
}
section#weddingGift textarea#weddingGiftIBAN {
	font-size: 1.75em;
	font-weight: bold;
	color: #fff;
	display: flex;
	font-family: 'Open Sans', sans-serif;
	height: 50px;
	background: none;
	border: none;
	outline: none;
	resize: none;
	padding: 0;
}

section#weddingGift textarea#weddingGiftIBAN:hover {
	cursor: pointer;
}
section#weddingGift #copied {
	margin: 0 0 2%;
	display: flex;
	font-weight: bold;
	color: #000;
}
section#weddingGift #weddingGiftContentText p:last-of-type {
	margin: 0;
}

@media screen and (max-width: 1000px) {
	section#weddingGift {
		padding: 1% 5% 7.5% 5%;
	}
	section#weddingGift #weddingGiftContent {
		justify-content: flex-start;
	}
	section#weddingGift #weddingGiftContentText p {
		padding: 0 10% 0 0;
	}
}
/*End of wedding gift section */

/* Haatiimi section */
section#haaTiimi #haaTiimiContainer {
	display: flex;
	padding: 2.5% 2.5% 0;
	text-align: center;
	flex-wrap: wrap;
	justify-content: center;
}
#haaTiimi h2 {
	text-align: center;
	text-transform: uppercase;
	padding: 2% 0 0 0;
}
section#haaTiimi #haaTiimiContainer .haaTiimiMember, section#haaTiimi #haaTiimiContainer .haaTiimiMemberExtra {
	margin: 2%;
	padding: 1% 2.5%;
	flex-basis: 40%;
}

.en section#haaTiimi #haaTiimiContainer .haaTiimiMember, section#haaTiimi #haaTiimiContainer  .haaTiimiMember {
	flex-basis: 30%;
}

section#haaTiimi #haaTiimiContainer .haaTiimiMember img, #haaTiimi #haaTiimiExtraContainer .haaTiimiMemberExtra img  {
	border-radius: 50%;
	min-width: 200px;
	max-width: 200px;
}
section#haaTiimi #haaTiimiContainer .haaTiimiMember b, #haaTiimi #haaTiimiExtraContainer .haaTiimiMemberExtra b {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0 0 0;
}
#haaTiimi #haaTiimiExtraContainer {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-content: center;
	align-items: center;
	margin: 0 0 2% 0;
	padding: 0 30%;
}
#haaTiimi #plus {
	font-weight: bold;
	font-size: 3em;
	margin: 1% 0 5%;
	color: #519d93;
}
.haaTiimiMemberExtra {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* Tablet haatiimi section */

@media (min-width:1000px) and (max-width:1300px) {
	section#haaTiimi #haaTiimiContainer .haaTiimiMember, section#haaTiimi #haaTiimiContainer .haaTiimiMemberExtra {
		margin: 2.5% 5%;
	}
}

/* Mobile haatiimi section */

@media screen and (max-width: 1000px) {
	section#haaTiimi #haaTiimiContainer {
		flex-direction: column;
	}
	#haaTiimi #haaTiimiExtraContainer {
		padding: 0 15% 5%;
	}
}
/* End of haatiimi section */

/* Contact section */
section#contact {
	background: rgb(81,157,147);
	background: linear-gradient(90deg, rgba(81,157,147,1) 50%, rgba(0,212,255,1) 100%);
	color: #fff;
	flex-direction: column;
	display: flex;
	text-align: center;
}
section#contact h2 {
	text-align: center;
	text-transform: uppercase;
	padding: 2% 0 0 0;
}
section#contact img {
	max-width: 25%;
	margin: 1% auto;
	border-bottom: 4px solid #f5f5f5;
	border-left: 4px solid;
	border-right: 4px solid;
	border-top: 4px solid;
	-ms-transform: rotate(358.5deg);
	transform: rotate(358.5deg);
	box-shadow: 1px 1px 10px rgb(0 0 0 / 25%);
}
section#contact #contactContainer {
	display: flex;
	justify-content: center;
	align-items: center;
}
section#contact #contactContainer .contactPerson {
	padding: 1% 2.5% 2.5%;
}
section#contact #contactContainer .contactPerson span {
	font-size: 1.5em;
	font-weight: bold;
	display: flex;
	justify-content: center;
	margin: 5% 0;
}
section#contact #contactContainer .contactPerson a {
	color: #fff;
	text-decoration: none;
}

section#contact #contactContainer .contactPerson .contactWhatsapp {
	display: none;
}

@media screen and (max-width: 1000px) {
	section#contact {
		padding: 5%;
	}
	section#contact img {
		max-width: 90%;
	}
	section#contact #contactContainer {
		display: block;
	}
	section#contact #contactContainer .contactPerson {
		padding: 2.5%;
		margin: 0;
	}
	section#contact #contactContainer .contactPerson span {
		margin: 5% 0 0 0;
	}
	section#contact #contactContainer .contactPerson img {
		max-width: 200px;
	}
	section#contact #contactContainer .contactPerson a.button {
		background: #000;
		text-decoration: none;
		color: #fff;
		padding: 5%;
		margin: 0 0 5% 5%;
		border-radius: 40px;
		display: flex;
		justify-content: center;
		border: 2px solid #000;
		text-align: center;
	}
	section#contact #contactContainer .contactPerson .contactWhatsapp.show {
		display: flex;
		background: #128c7e;
		border: 2px solid #fff;
		flex-basis: 100%;
		margin: 7.5% 0 0 5%;
		border-radius: 40px;
		padding: 5%;
		justify-content: center;
	}
}
/* Contact section end */
/* Instagram section */

#instaFeed {
	border: 1px solid #000;
	margin: auto;
	width: 100%;
}

section#instagram #instagramContainer h2 {
	text-align: center;
	text-transform: uppercase;
	padding: 2% 0 0 0;
}

section#instagram #instagramContainer #instagramCardContainer {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

section#instagram #instagramContainer #instagramCardContainer .IG {
	flex-basis: 20%;
	display: flex;
	margin: 2.5%;
	padding: 1%;
	border: 1px solid #e8e8e8;
	box-shadow: 5px 5px 10px rgb(0 0 0 / 5%);
	color: #000;
	text-decoration: none;
}

section#instagram #instagramContainer #instagramCardContainer .IG #instagramCard {
	width: 100%;
}

section#instagram #instagramContainer #instagramCardContainer .IG #instagramCard .IGImage {
	height: 300px;
	margin: 0 0 10px 0;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	background-color: #efefef;
}

section#instagram #instagramContainer #instagramCardContainer .IG #instagramCard b {
	font-size: .9em;
	display: block;
}

section#instagram #instagramContainer #instagramCardContainer .IG #instagramCard span.caption {
	font-size: .9em;
	display: block;
	margin: 2.5% 0 5%;
}

section#instagram #instagramContainer #instagramCardContainer .IG #instagramCard span.timestamp {
	font-size: .8em;
	color: #c0c0c0;
	margin: 2% 0;
	display: block;
}

section#instagram #instagramContainer a.link {
	background: #000;
	padding: 1% 2%;
	font-size: 1em;
	margin: 1% auto 2%;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	border: 1px solid #000;
	display: flex;
	width: 50%;
	max-width: 300px;
	justify-content: center;
}
section#instagram #instagramContainer a.link:hover {
	color: #000;
	background: #fff;
	border: 1px solid #000;
}

@media screen and (max-width: 1000px) {
	section#instagram #instagramContainer #instagramCardContainer .IG {
		flex-basis: 90%;
		padding: 5% 2.5%;
	}
	section#instagram #instagramContainer {
		padding: 0 0 5% 0;
	}
	section#instagram #instagramContainer a.link {
		padding: 2.5% 5%;
		margin: 5% auto 0;
		width: 75%;
	}
	section#instagram #instagramContainer h2 {
		padding: 5%;
	}
}
/* Instagram section end */
#spotify {
	background: #000;
	color: #fff;
	padding: 1% 0 2.5%;
	justify-content: center;
	margin: 0;
}
div#spotifyContainer {
	display: flex;
	justify-content: center;
	flex-direction: column;
}
section#spotify h2 {
	text-align: center;
	text-transform: uppercase;
	padding: 2% 0 0 0;
}

#spotify div#spotifyContainer iframe {
	margin: 1% auto;
}

@media screen and (max-width: 1000px) {
	#spotify {
		padding: 5% 5% 10%;
		text-align: center;
	}

	#spotify div#spotifyContainer iframe {
		width: 100%;
	}

}
/*Spotify section end */

/* Footer section */
footer#footerContent {
	background: #000;
	color: #fff;
	margin: 0;
	padding: 2% 5%;
	display: flex;
	border-top: 1px solid;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
footer#footerContent #footerContentContainer span {
	font-size: 3em;
	font-family: 'Allura', cursive;
	display: flex;
	justify-content: center;
}
footer#footerContent #footerContentContainer b {
	display: flex;
	justify-content: center;
}
/* Footer section end */
/* Back up */
#backUp {
	display: flex;
	justify-content: flex-end;
	background: #000;
}
#backUp a {
	background: #fff;
	color: #000;
	padding: .5% 2%;
}

@media screen and (max-width: 1000px) {
	#backUp {
		justify-content: center;
	}
	#backUp a {
		padding: 3%;
		margin: 10%;
	}
}
