@charset "UTF-8";
/* CSS Document */

body {
	background-attachment: scroll;
	background-image: url(../pix/header2.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	position: absolute;
	height: 100%;
	width: 100%;
}
.tab-main {
	margin: 0px;
	width: 100%;
}

.container {
	width: 100%;
	max-width: auto;
}

.row {
	display: flex;
}

.col-50 {
	width: 50%;
	flex: 1 1 50%;
}

.text-center {
	text-align: center;
}

@media screen and (max-width: 1100px) {
	.row {
		flex-direction: column;
	}
	.col-50 {
		width: 100%;
		flex: 1 0 100%;
	}
	.col-50:not(:first-child) {
		margin-top: 70px;
	}
}