
/*--------------------
Import Google Fonts
--------------------*/

@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:300,400,500,700|Roboto:400,400i,500,500i&display=swap');

/*--------------------
1. General
--------------------*/

body {
  margin: 0px;
    font-family: 'Roboto', sans-serif;
	background: url(../images/bg-main.jpg) no-repeat top center fixed;
	background-size: cover;
	color: #d0ba7e;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 500;
    font-family: 'Roboto Slab', serif;
    color: #d0ba7e;
}

h1 {
	font-size: 36px;
}	

p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
	line-height: 23px;
    letter-spacing: 0.2px;
    color: #fff;
}
a {
	color: #d0ba7e;
	text-decoration: none;
}	
a:hover {
	text-decoration: underline;
}


.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding: 10% 0 5% 0;
}


.img-responsive {
  max-width: 100%;
  height: auto;
  display: none;
}

.img-responsive-mobile {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.text-center {
	text-align: center;
	padding: 0 3% 0 3%;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-50 {
	margin-bottom: 50px;
}	
.mb-100 {
	margin-bottom: 100px;
}
.mb-200 {
	margin-bottom: 200px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-50 {
	margin-top: 50px;
}	
.mt-100 {
	margin-top: 100px;
}
.mt-200 {
	margin-top: 200px;
}
.no-cursor {
	cursor: auto;
}	
.button {
	display: inline-block;
	border-radius: 5px;
	padding: 10px 20px;
	border: 1px solid #d0ba7e;
	margin: 5px;
	color: #d0ba7e;
	font-size: 16px;
	text-decoration: none;
}
.button-white{
	color: #061109;
	background: #d0ba7e;
	}
	
.insta-box img {
	position: relative; 
	top: 10px; 
	margin-right: 6px;
}
	
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
  .img-responsive {
  display: inline-block;
	}
  .img-responsive-mobile {
  display: none;
	}
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}