/*==============================================================================
Reset
==============================================================================*/

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,iframe,main,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}


@import url('https://fonts.googleapis.com/css?family=Khand:300,400,500,600,700');

/*==============================================================================
General
==============================================================================*/

*,
*:before,
*:after {
	box-sizing: border-box;
	transition-duration: 300ms;
	transition-property: none;
}
html {
    width: 100%;
    overflow-x: hidden;
}

body {
	background: #000 url(../img/bg.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	color: #fff;
	font: 400 100%/1.5 'Khand', helvetica, arial, sans-serif;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
}

/*==============================================================================
Main
==============================================================================*/

.main-wrap {
	padding: 30px 50px 0;
}

.main {
	margin: 0 auto;
	max-width: 1200px;
	text-align: center;
}
.main img {
	max-width: 100%;
}

.main-band-wrap {
	flex: 0 0 50%;
	min-height: 700px;
	position: relative;
	width: 50%;
}

.main-band {
	bottom: 0;
	left: 0;
	margin: auto;
	max-height: 100%;
	max-width: 100%;
	position: absolute;
	right: 0;
	top: 0;
}

.main-content {
	display: flex;
	flex: 0 0 50%;
	flex-direction: column;
	justify-content: center;
	padding: 30px 0 60px 30px;
	width: 50%;
}

.main-title {
	font-size: 32px;
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.2;
	margin: 0 0 20px;
	text-align: center;
}

.main-subtitle {
	color: #f1e1d1;
	font-size: 25px;
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.2;
	margin: 0 0 40px;
	text-align: center;
}

.divider {
	margin: 25px auto;
}

iframe {
	margin: 0 auto;
	text-align: center;
	justify-content: center;
	align-items: center;
	max-width: 100%;
}

.button {
    background: transparent;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 40px auto;
    padding: 10px 15px;
    font-size: 42px;
    font-weight: 700;
    max-width: 300px;
    border: 1px solid;
    text-align: center;
    text-decoration: none;
    transition-property: background, color;
    vertical-align: top;
}

.button:first-child {
	margin-top: 0;
}

.button-text {
	display: block;
}

.button:hover {
	background: #fff;
	color: #000;
}
@media (max-width: 1024px) {
	.dates {
	    margin-left: 5px;
	}
}

@media ( max-width: 800px ) {
	.main-wrap {
		padding: 30px;
	}

	.main {
		display: block;
	}

	.main-content {
		padding: 40px 0 0;
		width: auto;
	}
	.divider {
		margin: 15px auto;
	}

	.button {
		margin: 15px auto 15px;
	}
}