
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html{
	height: 100%;
	color: #F3F4F5;
    background-color: #fff;
}

/*-------------
	Layout
--------------*/

body{
    display: flex;
    flex-direction: column;
    height: 100%;
	font: 400 16px/1.4 "traditional arabic", "perpetua tilting", garamond, serif;
	letter-spacing: 5px;
}

header{
	/* We want the header to have a static height - it will always take up just as much space as it needs.  */
	/* 0 flex-grow, 0 flex-shrink, auto flex-basis */
	flex: 0 0 auto;
}

.main-content{
	/* By setting flex-grow to 1, the main content will take up 
	all of the remaining space on the page (the other elements have flex-grow: 0 and won't contest the free space). */
	/* 1 flex-grow, 0 flex-shrink, auto flex-basis */
	flex: 1 0 auto;
}

footer{
	/* Just like the header, the footer will have a static height - it shouldn't grow or shrink.  */
	/* 0 flex-grow, 0 flex-shrink, auto flex-basis */
	flex: 0 0 auto;
}


/*-------------
	Header
--------------*/

header {
	background-color: #D37B39;
	/*box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.15);
	padding: 20px 40px;*/
	box-sizing: border-box;	
}

header .header-limiter {
	max-width: 880px;
	text-align: center;
	margin: 0 auto;
}

/* Logo */

header .header-limiter h1 {
	float: left;
    line-height: 40px;
    margin: 0;
    font-size: 16px;
}

header .header-limiter h1 span {
    color: #989898;
}

/* The header links */

header .header-limiter a {
	color: #ffffff;
	text-decoration: none;
}

header .header-limiter nav{
	line-height: 40px;
	float: right;
}

header .header-limiter nav a{
    display: inline-block;
    padding: 0 5px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    opacity: 0.9;
    font-weight: bold;
    border-radius: 3px;
    padding: 0px 25px;
    background-color: #D6336A;
}

header .header-limiter nav a:hover{
	opacity: 1;
}

header .header-limiter nav a.selected {
	color: #608bd2;
	pointer-events: none;
	opacity: 1;
}

/* Making the header responsive */

@media all and (max-width: 600px) {

	header {
		padding: 20px 0;
	}

	header .header-limiter h1 {
		float: none;
		margin: 10px 0 10px;
		text-align: center;
		font-size: 16px;
		line-height: 1;
	}

	header .header-limiter nav {
		float:none;
	}

}


/*--------------------
	Main Content
--------------------*/
a{
	color: #111;
	text-decoration: none;
}

a:hover{
	color: #fff;
}

.main-content{
	color: #222;
	padding: 0px;
	background-color: #D37B39;
	/*max-width: 960px;*/
	margin: auto;
	width: 100%
}
.cities span {
	font-style: normal;
	padding: 0px 25px 0px 25px;
	font-size: 20px;
}
.card {
	max-width: 960px;
	margin: 0 auto;
	background-color: #d37b39;
	height: 100%;
	padding: 50px 0px 0px;
	text-align: center;
}

.buttons {
	background-color: #111;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	width: 100%;
	text-align: center;
  	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	padding: 20px 20px;
	margin: 0 auto;
	/*max-width: 960px;*/
	height: 57px;
	text-transform: uppercase;
}

.justify{ /*dlc css hack to justify text*/
  width: 100%;
  max-width: 650px;
  margin: 2em auto 0;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: white;
  text-align: justify !important;
  padding: 1em;
}
.card h1{ /*dlc css hack to justify text*/
  font-size: 1.5em;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 1em;
  text-align: justify !important;
  line-height: 1.5em;
  height: .5em;
  }
.card h1::after{ /*dlc css hack to justify text*/
    width: 100%;
    content:"";
    display: inline-block;
  }

/*.card h2{
	margin-bottom: 25px;
	font-size: 22px;
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
}*/
.card h2{ /*dlc css hack to justify text*/
  font-size: 1.5em;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 1em;
  text-align: justify !important;
  line-height: 1.5em;
  height: .5em;
  }
.card h2::after{ /*dlc css hack to justify text*/
    width: 100%;
    content:"";
    display: inline-block;
  }

.card h3{
	font-weight: normal;
	color: #222;
	font-size: 16px;
	max-width: 600px;
	line-height: 1.6;
	margin: 0 auto 35px;
}

.card a, .buttons a {
    margin: 0 20px;
    text-decoration: none;
    background-color: transparent;
    color: #fff;
    padding: 10px 10px 6px;
}

.card a:hover, .buttons a:hover {
	background-color: transparent;
	color: #d37b39;
}

.card p, .footer-limiter p{
	text-align: center;
	margin: 20px 0 0;
	line-height: 1.5;
	text-transform: uppercase;
	/*font: 400 16px/1.4 "traditional arabic", "perpetua tilting", garamond, serif;*/
	font-weight: 400;
	font-size: 16px;
	font-size: 1rem;
}

.footer-limiter p.cities {
	color: #222;
}

.card p.cities, .footer-limiter p.cities{
	margin: 70px 0 0;
	line-height: 1.5;
}

.card #add-content{
	display: inline-block;
    padding: 15px 60px;
    background: #111;
    border-radius: 3px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 30px;
}

.card #add-content:hover {
	background: #333;
}

.card .dummy-content p,
.card .dummy-content img{
	display: none;
}

.card img {
    /*width: 100%;
    text-align: center;
    margin-bottom: 0px;
    max-width: 750px;*/
	display: block;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
}


/*--------------------
	Footer styles
--------------------*/

footer{
	background-color: #D37B39;
	/*box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	text-align: left;
	font: normal 16px sans-serif;
	padding: 20px 50px;
	height: 57px;
*/
	width: 100%;	margin: 0 auto;
	/*max-width: 960px;*/
}

footer .footer-limiter {
	/*max-width: 960px;*/
	margin: 0 auto;
}

footer .footer-left p{
	color:  #8f9296;
	font-size: 14px;
	margin: 0;
}

/* Footer links */

footer p.footer-links{
	font-size:18px;
	font-weight: normal;
	color:  #ffffff;
	margin: 0 0 10px;
	padding: 0;
}

footer p.footer-links a{
	display:inline-block;
	line-height: 1.8;
	text-decoration: none;
	color:  inherit;
}

footer .footer-right{
	float: right;
	margin-top: 6px;
	max-width: 180px;
}

footer .footer-right a{
	display: inline-block;
	width: 35px;
	height: 35px;
	background-color:  #33383b;
	border-radius: 2px;

	font-size: 20px;
	color: #ffffff;
	text-align: center;
	line-height: 35px;

	margin-left: 3px;
}

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 600px) {

	footer .footer-left,
	footer .footer-right{
		text-align: center;
	}

	footer .footer-right{
		float: none;
		margin: 0 auto 20px;
	}

	footer .footer-left p.footer-links{
		line-height: 1.8;
	}
}

/* ------- Demo adds. Please ignore and remove ------- */

#bsaHolder{
	top: 100px !important;
}

@media (max-width: 1200px) {
    #bsaHolder{ 
    	display:none;
    }
}
