/*---Reset---*/

* {
	margin: 0px;
	padding: 0px;
	border: 0px;
	font-size: 100%;
	vertical-align: baseline;
	outline: none;
	font-size-adjust: none;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
}

*:focus {
	outline: none;
}

*, *:after, *:before {	
    -webkit-box-sizing: border-box;	
    -moz-box-sizing: border-box;	
    box-sizing: border-box;	
    padding: 0px;	
    margin: 0px;
}

/*---Font---*/

@font-face {
    font-family: 'OpenSans';
    src: url('../webfonts/opensans-webfont.woff2') format('woff2'),
         url('../webfonts/opensans-webfont.woff') format('woff'),
         url('../webfonts/opensans-webfont.ttf') format('truetype'),
         url('../webfonts/opensans-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MsMadi';
    src: url('../webfonts/MsMadi-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*---Global---*/

html {
	--duration: .7s;
}

body {
	margin: 0px;
	padding: 0px;
	width: 100%;
	font-family: 'OpenSans', sans-serif;
	color: #d9bd89;
	background-color: #372b24;
	overflow-x: hidden;
	-webkit-user-select: none;
  	-moz-user-select: none;
  	-ms-user-select: none;
 	-o-user-select: none;
  	user-select: none;
	cursor: default;
  	scrollbar-width: none;
}

body::-webkit-scrollbar { 
    display: none; 
}

.container {
    display: block;
	margin-left: auto;
	margin-right: auto;
}

.container:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0px;
}

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

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

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

.text-uppercase {
	text-transform: uppercase;
}

.hidden {
	display: none;
}

.clearfix {
	clear: both!important;
}

/*---Fonts---*/

p {
	font-size: 15px;
	line-height: 24px;
    font-weight: 300;
	margin-bottom: 10px;
}

a {
	color: #fdefc9;
	text-decoration: none;
}

a:hover {
	color: #eee;
	text-decoration: underline;
	transition: all 200ms ease;
}

small {
	font-size: 12px;
}

h2 {
	font-size: 28px;
}

h3 {
	font-size: 19px;
}

/*---Columns---*/

@media(max-width:767px) {
	.one-half-responsive {
		width: 100%;
	}
	.one-small-left-responsive {
		width: 100%;
	}
	.one-large-right-responsive {
		width: 100%;
	}
	.one-large-left-responsive {
		width: 100%;
	}
	.one-small-right-responsive {
		width: 100%;
	}
}

@media(min-width:768px) {
    .one-half-responsive {
        width: 45%;
        float: left;
        margin-right: 10%;
   }
}

@media(min-width:768px) {
    .one-small-left-responsive {
        width: 25%;
        float: left;
        margin-right: 5%;
   }
}

@media(min-width:768px) {
    .one-large-right-responsive {
        width: 70%;
        float: right;
        margin-right: 5%;
   }
}

@media(min-width:768px) {
    .one-large-left-responsive {
        width: 70%;
        float: left;
        margin-right: 5%;
   }
}

@media(min-width:768px) {
    .one-small-right-responsive {
        width: 25%;
        float: right;
        margin-right: 5%;
   }
}

.last-column {
	margin-right: 0%!important;
}

/*---Responsive---*/

.hide-if-mobile {
    display: none!important;
}

.hide-if-responsive {
    display: none!important;
}

@media(max-width:767px) {
    .hide-if-responsive {
        display: block!important;
   }
}

@media(min-width:768px) {
    .hide-if-mobile {
        display: block!important;   
   }
}