/* Import fonts */

* {
	margin: 0;
	padding: 0px;
  /*font-family: serif;*/
}
@media(max-width:767px) {
	* {
	  /*font-family: sans-serif;*/
	}
}

body {
	background: #fff;
	margin: 0;
	color: #5a5a5a;
}

@media(max-width:767px) {
	body {
		color: #000000;
	}
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 300;
}


p {
	padding: 0;
	margin-bottom: 12px;
	font-weight: 300;
	font-size: 16px;
	line-height: 26px;
	margin-top: 10px;
}

html,
body {
	height: 100%;
}

.alignleft { float: left; }
.alignright { float: right; }
.aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
	clear: both;
}
.centered {text-align: center}
.mt {margin-top: 50px;}
.mb {margin-bottom: 50px;}
.mtb {margin-top: 50px; margin-bottom: 50px;}
.mtb2 { margin-top: 100px; margin-bottom: 100px;}
.ptb {padding-top: 80px; padding-bottom: 80px;}

.clear {
	clear: both;
	display: block;
	font-size: 0;
	height: 0;
	line-height: 0;
	width:100%;
}
::-moz-selection  {
	color: #fff;
	text-shadow:none;
	background:#2B2E31;
}
::selection {
	color: #fff;
	text-shadow:none;
	background:#2B2E31;
}
*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
a {
	padding: 0;
	margin: 0;
	text-decoration: none;
	-webkit-transition: background-color .4s linear, color .4s linear;
	-moz-transition: background-color .4s linear, color .4s linear;
	-o-transition: background-color .4s linear, color .4s linear;
	-ms-transition: background-color .4s linear, color .4s linear;
	transition: background-color .4s linear, color .4s linear;
	color: #F7CA18;
}
a:hover,
a:focus {
  text-decoration: none;
  color:#696E74;
}

.nopadding {
	padding: 0px !important;
	margin: 0px;
}

/* BOOTSTRAP MODIFICATIONS - MODAL */
.modal-footer {
	padding: 15px;
	text-align: right;
	border-top: 1px solid #e5e5e5;
	background-color: #b9b9b9;
}

.modal-title {
	font-weight: 700;
}

.modal-header {
	background-color: #F7CA18;
}


/* MENU CONFIGURATION*/
.menu {
	position: fixed;
	right: -200px;
	width: 260px;
	height: 100%;
	top: 0;
	z-index: 10;
	text-align: left;
}

.menu.menu-open {
	right: 0px;
}

.menu-wrap {
	position: absolute;
	top: 0;
	left: 60px;
	background: #F7CA18;
	width: 200px;
	height: 100%;
}

.menu h1.logo a {
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 0.15em;
	line-height: 40px;
	color: #ffffff;
	margin-top: 20px;
}

.menu h1.logo a:hover {
	color: #2f2f2f;
}

.menu a {
	margin-left: 20px;
	color: #808080;
	display: block;
	font-size: 12px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0.1em;
}

.menu a:hover {
	color: #ffffff;
}

.menu a:active {
	color: #ffffff;
}

.menu-close {
	cursor: pointer;
	display: block;
	position: absolute;
	font-size: 14px;
	color: #808080;
	width: 40px;
	height: 40px;
	line-height: 40px;
	top: 20px;
	right: 5px;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

.menu-close:hover {
	color: #ffffff;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

/* Push the body after clicking the menu button */
.body-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.body-push-toright {
	left: 200px;
}

.body-push-toleft {
	left: -200px;
}

.menu,
.body-push {
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
		-ms-transition: all .3s ease;
		 -o-transition: all .3s ease;
			transition: all .3s ease;
}

#menuToggle {
	position: absolute;
	top: 20px;
	left: 0;
	z-index: 11;
	display: block;
	text-align: center;
	font-size: 14px;
	color: #ffffff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	background: rgba(0,0,0,0.25);
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

#menuToggle:hover {
	color: #ffffff;
	background: rgba(0,0,0,0.2);
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

/* Buttons */
.btn-design {
	color: white !important;
	font-size: 13px;
	letter-spacing: 1px;
	margin-left: 8px;
	margin-right: 8px;
}

.btn-y {
	color: black !important;
	background: #F7CA18;
	color: #2f2f2f;
}
.btn-y:hover {
	background: transparent;
	color: white;
	border: 1px solid #F7CA18;
}

.btn-clear {
	background-color: rgba(0,0,0,0.3);
	color: white;
	border: 1px solid white;
}
.btn-clear:hover {
	background-color: rgba(255,255,255,0.3);
	color: #2f2f2f;
}
@media(max-width:767px) {
	.btn-clear:hover {
		color: #fff;
	}
}


/* SLIDER */
#slides {
    position: relative;
    max-height: 1020px;
    background: #fff;
}
#slides ul li img {
    opacity: 1;
}


#bannertext {
    position: fixed;
    top: 33%;
    right: 0;
    left: 0;
    z-index: 2;
    margin: auto;
    color: #fff;
    text-align: center;
}
#bannertext h1 {
    position: relative;
    margin-bottom: 0;
    color: white;
    letter-spacing: 2px;
    font-weight: 900;
    font-size: 5.5em;
    line-height: 1em;
}

#bannertext p {
    margin-top:25px;
}

@media(max-width:767px) {
    #bannertext h1 {
        font-size: 60px;
    }
}
@media(max-width:480px) {
    #bannertext h1 {
        font-size: 30px;
    }
}

/* MAIN CONFIGURATION - BASE MODIFICATION */
h1 {
	font-weight: 900;
	font-size: 32px;
}

h2 {
	font-weight: 300;
	font-size: 24px;
}


/* COPYRIGHT */
#copyright {
	padding-bottom: 35px;
	padding-top: 35px;
	background: #1d1d1d;
	color: white;
}

#copyright h6 {
	font-size: 14px;
	letter-spacing: 0.8px;
}



.contents-bg1 {
	background: url(../img/bg1.jpg);
	padding-top: 40px;
}

.contents-bg2 {
	background: url(../img/bg2.jpg);
	padding-top: 40px;
}

.contents-bg3 {
	background: url(../img/bg3.jpg);
	background-size: cover;
	padding-top: 40px;
}

.list li {
	list-style-type: none;
}

.list dl dt {
	font-size: 16px;
}

.pagetitle {
	zoom: 0.5;
}
@media(max-width:767px) {
	.pagetitle {
		zoom: 1;
		max-width: 100%;
	}
}

@media(max-width:767px) {
	.btn-y:hover {
		background: #F7CA18;
	}
	.btn-clear:hover {
		background-color: rgba(0,0,0,0.3);
	}
}

.btn-design-twitter, .btn-design-twitter:hover {
	background: #1b95e0;
	color: white !important;
	padding: 8px;
	font-size: 14px;
}

.btn-design-twitter:hover {
	border: #1b95e0 solid 1px;
}
