/*CSS*/

@import url('https://fonts.googleapis.com/css?family=Playfair+Display');

body {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	color: #42464c;
	font-weight: normal;
	width: 100%;
	margin: 0;
}

h1, h2, h3, h4 {
	font-size: 72px;
	font-weight: bold;
	margin: 0;
	position: relative;
}
h2 {
	font-size: 30px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 20px;
}


a:link, a:active {
  color: inherit;
}

a:hover {
	text-decoration: none;
}

.container {
	max-width: 1190px;
	margin: 0 auto;
}

.row:after {
	content: "";
	display: block;
	clear: both;
}

.col-6 {
	float: left;
	width: 50%;
}
.col-5 {
	float: left;
	width: 41.666667%;
}
.col-7 {
	float: left;
	width: 58.333333%;
}

.top-wrapper {
	background: url(../images/barror-hero.jpg) no-repeat right top / cover;
	padding-top: 100px;
    padding-bottom: 200px;

}

.top-wrapper h2, .top-wrapper h3 {
	margin-bottom: 50px;
}

.two-col {
   -webkit-column-count: 2; /* Chrome, Safari, Opera */
   -moz-column-count: 2; /* Firefox */
   column-count: 2;
   margin-top: 120px;
   font-size: 20px;
}
.two-col p {
	margin: 0 0 30px 0;
}

.bottom-wrapper {
	padding-top: 200px;
	padding-bottom: 120px;
}
.bottom-wrapper h1 {
	padding-bottom: 60px;
}
.bottom-wrapper p {
	margin: 0 0 40px 0;
}

.bottom-wrapper h1:after {
         content: '';
         position: absolute;
         height: 7px;
         background: #42464c;
         width: 60px;
         left: 0;
         bottom: 0;
}


@media screen and (max-width: 1024px) {

   body {
   	  font-size: 16px;
   }
   
   h1 {
	font-size: 36px;
   }
	h2 {
	font-size: 24px;
	}
	h3 {
	font-size: 20px;
	}
	h4 {
	font-size: 16px;
	}

    .two-col {
    font-size: 16px;
    }

	.container {
	  max-width: 720px;
	}

	.col-5, .col-7 {
		float: none;
		width: 100%;
	}

	.col-6 {
		width: 58.333333%;;
	}

  .bottom-wrapper {
  	  padding-top: 50px;
  }
  .bottom-wrapper h1 {
  	  margin-bottom: 50px;
  }  

  .top-wrapper {
  	background-position: center top;
  	background-size: cover;
   }

}

@media screen and (max-width: 767px) { 

	.container {
	  max-width: 520px;
	}


	.col-6, .col-5, .col-7 {
		float: none;
		width: 100%;
	}

  .two-col {
   -webkit-column-count: 1; /* Chrome, Safari, Opera */
   -moz-column-count: 1; /* Firefox */
   column-count: 1;
  }

.top-wrapper {
	background: url(../images/mobile-image.jpg) no-repeat right top / cover;
	color: white;
	padding-bottom: 0;
}


}

@media screen and (max-width: 414px) { 

	.container {
	  max-width: 300px;
	}


}