/*
font-family:'Myriad W01 Lt';
font-family:'Myriad W01 Lt It';
font-family:'Myriad W01 Regular';
font-family:'Myriad W01 It';
font-family:'Myriad W01 SmBd';
font-family:'Myriad W01 SmBd It';
font-family:'Myriad W01 Bd';
font-family:'Myriad W01 Bd It';
*/
/* GENERAL */
@font-face {
	font-family: 'angelina_regular';
	src: url('../fonts/angelina/angelina-webfont.woff2') format('woff2'),
	url('../fonts/angelina/angelina-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

body {
	font-family:'Myriad W01 Regular';
	color: #222222;
	font-size: 16px;
}

a, a:hover, a:focus {
	text-decoration: none;
	outline: none;
}

em {
	font-family:'Myriad W01 It';
}

h1, h2, h3, h4, strong {
	font-family:'Myriad W01 Bd';
}

h1 em, h2 em, h3 em, h4 em, strong em {
	font-family:'Myriad W01 Bd It';
}

h2 {
	font-size: 30px;
	color: #76291D;
}

img {
	max-width: 100%;
	height: auto;
}

ul.socials,
ul.menu,
ul.menu ul {
	margin: 0px 0px;
	padding: 0px 0px;
	list-style: none;
}

.screen-reader-text {
	display: none;
}
/* END GENERAL */

/* HEADER */
#site-header {
	position: relative;
	background-color: #fff;
	z-index: 250;
}

#site-header div.container {
	position: relative;
	padding-top: 10px;
	padding-bottom: 10px;
}

div.header-slogan {
	font-size: 30px;
	font-family: 'angelina_regular';
	color: #333;
}

div.header-logo a img {
	height: 80px;
}

div.header-logo button.toggle-navigation {
	border: 0px;
	padding: 0px 0px;
	background-color: transparent;
	outline: none;
}

div.header-logo button.toggle-navigation > span {
	display: block;
	width: 40px;
	height: 5px;
	border-radius: 10px;
	background-color: #000;
	margin-bottom: 5px;
}

div.header-logo button.toggle-navigation > span:last-child {
	margin-bottom: 0px;
}

div.header-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

div.header-links a.button-phone {
	display: inline-block;
	background-color: #efebeb;
	border-radius: 37px;
	padding: 12px 20px;
	font-size: 23px;
	font-family:'Myriad W01 SmBd';
	color: #222222;
}

div.header-links a.button-phone i {
	width: 36px;
	height: 36px;
	background-color: #e4b017;
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	line-height: 36px;
	text-align: center;
}

div.header-links a.button-phone strong {
	display: inline-block;
	color: #000;
	margin: 0px 5px;
}

div.header-links a.button-phone span {
	display: inline-block;
}

div.header-links button.toggle-search {
	display: inline-block;
	width: 36px;
	height: 36px;
	background-color: #e4b017;
	border-radius: 50%;
	padding: 0px 0px;
	border: 0px;
	font-size: 20px;
	line-height: 36px;
	color: #fff;
	text-align: center;
	outline: none;
	cursor: pointer;
}

div.header-links ul.menu {
	position: relative;
	padding-right: 20px;
	margin: 0px 15px 0px 20px;
}

div.header-links ul.menu:after {
	content: '';
	width: 2px;
	height: 55px;
	background-color: #e4b017;
	position: absolute;
	top: 50%;
	right: 0px;
	margin-top: -27.5px;
}

div.header-links ul.menu li {
	display: inline-block;
}

div.header-links ul.menu li a {
	font-size: 22px;
	color: #222222;
}

div.header-links ul.menu li a:hover {
	text-decoration: underline;
}

div.header-search {
	background-color: #efebeb;
	padding: 20px 20px;
	border-radius: 6px;
}

div.header-search form {
	display: flex;
	flex-wrap: wrap;
}

div.header-search form .form-control {
	height: 36px;
	width: 60%;
	border: 0px;
	border-radius: 0px;
	outline: none !important;
	box-shadow: none !important;
}

div.header-search form button[type="submit"] {
	width: 40%;
	border: 0px;
	padding: 0px 20px;
	background-color: #e4b017;
	color: #fff;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
	outline: none;
	cursor: pointer;
}

@media (min-width: 992px) {
	#site-header div.container {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	div.header-logo {
		margin-right: 40px;
	}

	div.header-logo button.toggle-navigation {
		display: none;
	}

	div.header-links {
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	div.header-search {
		position: absolute;
		top: 117px;
		right: 0px;
		margin-top: 30px;
		opacity: 0;
		visibility: hidden;
		transition: all .3s ease;
		-webkit-transition: all .3s ease;
	}

	div.header-search:before {
		content: '';
		width: 0;
		height: 0;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-bottom: 10px solid #efebeb;
		position: absolute;
		top: -10px;
		right: 20px;
	}

	body.open-search div.header-search {
		margin-top: 0px;
		opacity: 1;
		visibility: visible;
	}
}

@media (min-width: 1200px) {
	div.header-slogan {
		font-size: 35px;
	}

	div.header-links ul.menu {
		padding-right: 30px;
		margin: 0px 25px 0px 50px;
	}
}

@media (max-width: 991px) {
	#site-header {
		overflow: hidden;
	}

	#site-header div.container {
		padding-top: 20px;
		padding-bottom: 0px;
	}

	div.header-slogan {
		text-align: center;
		padding: 10px 0px 5px;
	}

	div.header-logo button.toggle-navigation {
		float: right;
		margin-top: 70px;
	}

	div.header-links {
		position: absolute;
		top: 22px;
		right: 15px;
	}

	div.header-links a.button-phone {
		font-size: 18px;
		padding: 10px 15px;
	}

	div.header-links a.button-phone i,
	div.header-links button.toggle-search {
		width: 32px;
		height: 32px;
		font-size: 16px;
		line-height: 32px;
	}

	div.header-links ul.menu:after {
		height: 30px;
		margin-top: -15px;
	}

	div.header-links ul.menu li a {
		font-size: 18px;
	}

	div.header-search {
		display: none;
		margin: 0px -500px;
		padding: 20px 500px;
	}

	body.open-search div.header-search {
		display: block;
	}
}

@media (max-width: 767px) {
	div.header-links ul.menu {
		padding-right: 15px;
		margin: 0px 10px 0px 15px;
	}

	div.header-links a.button-phone {
		padding: 10px 10px;
	}
}

@media (max-width: 575px) {
	div.header-links {
		position: relative;
		top: auto;
		right: auto;
		margin-bottom: 15px;
	}

	div.header-links a.button-phone,
	div.header-links ul.menu li a {
		font-size: 16px;
	}

	div.header-links a.button-phone i {
		width: 28px;
		height: 28px;
		font-size: 14px;
		line-height: 28px;
	}

	div.header-links ul.menu {
		padding-right: 0px;
		margin: 0px 0px 0px 15px;
	}

	div.header-links ul.menu:after {
		display: none;
	}

	div.header-links button.toggle-search {
		position: absolute;
		bottom: -52px;
		right: 0px;
		width: 36px;
		height: 36px;
		line-height: 36px;
	}
}
/* END HEADER */

/* NAVIGATION */
#site-navigation {
	display: block;
	position: relative;
	background-color: #000;
	z-index: 200;
}

#site-navigation ul.menu li a {
	display: inline-block;
	font-size: 22px;
	font-family:'Myriad W01 SmBd';
	color: #fff;
	transition: opacity .3s ease;
	-webkit-transition: opacity .3s ease;
}

#site-navigation ul.menu li a:hover {
	opacity: 0.7;
}

#site-navigation ul.menu > li.menu-item-home > a {
	color: #e4b017;
}

@media (min-width: 992px) {
	#site-navigation ul.menu {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	#site-navigation ul.menu > li {
		position: relative;
		margin: 0px 20px;
	}

	#site-navigation ul.menu > li > a {
		white-space: nowrap;
		line-height: 55px;
	}

	#site-navigation ul.sub-menu {
		position: absolute;
		top: 100%;
		min-width: 220px;
		background-color: #efebeb;
		margin-top: 30px;
		opacity: 0;
		visibility: hidden;
		transition: all .3s ease;
		-webkit-transition: all .3s ease;
	}

	#site-navigation ul.sub-menu li {
		position: relative;
	}

	#site-navigation ul.sub-menu li a {
		display: block;
		font-size: 18px;
		color: #333;
		padding: 5px 15px;
		transition: background-color .3s ease;
		-webkit-transition: background-color .3s ease;
	}

	#site-navigation ul.sub-menu li a:hover {
		background-color: #f0f0f0;
	}

	#site-navigation ul.sub-menu ul.sub-menu {
		left: 100%;
		top: 0px;
		background-color: #f0f0f0;
	}

	#site-navigation ul.menu > li:hover > ul.sub-menu,
	#site-navigation ul.sub-menu li:hover > ul.sub-menu {
		margin-top: 0px;
		opacity: 1;
		visibility: visible;
	}
}

@media (min-width: 1200px) {
	#site-navigation ul.menu > li {
		margin: 0px 30px;
	}
}

@media (max-width: 991px) {
	#site-navigation {
		display: none;
	}

	#site-navigation.collapsing,
	#site-navigation.show {
		display: block;
	}

	#site-navigation .container {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	#site-navigation ul.sub-menu {
		margin-left: 15px;
	}

	#site-navigation ul.sub-menu li a {
		font-size: 20px;
	}
}
/* END NAVIGATION */

/* MODULES */
@media (max-width: 767px) {
	.fl-col.fl-col-small {
		max-width: 100%;
	}
}
/* END MODULES */

/* HOME SECTION */
.section h2 {
	margin: 0px 0px 20px;
}

.section p {
	margin-bottom: 20px;
}

.section p:last-child {
	margin-bottom: 0px;
}
/* END HOME SECTION */

/* SLIDESHOW SECTION */
#slideshow .slideshow {
	height: 450px;
}

#slideshow .slideshow div {
	height: 100%;
}

#slideshow div.slide-inner {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

@media (max-width: 575px) {
	#slideshow .slideshow {
		height: 300px;
	}

	div#content-area .entry-content img {
		float: none;
		width: 100%;
	}
}
/* END SLIDESHOW SECTION */

/* LINKS SECTION */
#links:before,
#links:after {
	content: '';
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0px;
	right: 0px;
	background-image: url(../images/pattern-1.png);
	background-repeat: no-repeat;
	background-position: right top;
	z-index: 5;
}

#links:before {
	right: auto;
	left: 0px;
	background-image: url(../images/pattern-2.png);
	background-position: left top;
}

#links {
	position: relative;
	background-color: #222222;
	padding-bottom: 75px;
}

#links .container {
	position: relative;
	z-index: 10;
}

#links ul.menu {
	position: relative;
	top: -55px;
	background-color: #e4b017;
	border-radius: 8px;
	text-align: center;
}

#links ul.menu li {
	text-align: center;
}

#links ul.menu li a {
	display: block;
	padding: 22px 0px;
	font-size: 18px;
	color: #222;
}

#links ul.menu li i {
	width: 39px;
	height: 39px;
	background-color: #222222;
	border-radius: 50%;
	font-size: 18px;
	color: #fff;
	line-height: 39px;
	text-align: center;
}

#links ul.menu li strong {
	display: inline-block;
	vertical-align: middle;
	margin-left: 13px;
}

@media (min-width: 768px) {
	#links ul.menu {
		display: flex;
		flex-wrap: wrap;
	}

	#links ul.menu li {
		width: 33.33%;
		border-right: 1px solid #ffc51a;
	}

	#links ul.menu li:last-child {
		border-right-color: transparent;
	}
}

@media (min-width: 992px) {
	#links ul.menu li a {
		font-size: 30px;
	}
}

@media (max-width: 767px) {
	#links:before,
	#links:after {
		display: none;
	}

	#links ul.menu li {
		border-bottom: 1px solid #ffc51a;
	}

	#links ul.menu li:last-child {
		border-bottom-color: transparent;
	}

	#links ul.menu li a {
		font-size: 24px;
	}
}
/* END LINKS SECTION */

/* ABOUT SECTION */
#about {
	position: relative;
	padding-bottom: 56px;
	z-index: 20;
}

#about strong > em {
	font-family:'Myriad W01 SmBd It';
}

#about .about-inner {
	background-color: #f0f0f0;
	border-radius: 8px;
	margin: -52px 0px 0px;
	overflow: hidden;
}

#about .col-md-5 {
	min-height: 280px;
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
}

#about .col-md-7 {
	padding: 50px 60px;
}

@media (max-width: 767px) {
	#about .col-md-7 {
		padding: 30px 20px;
	}
}
/* END ABOUT SECTION */

/* NEWS SECTION */
#news {
	padding-bottom: 30px;
}

#news hr {
	border: 0px;
	height: 1px;
	width: 100%;
	background-color: #e8e3e3;
	margin: 0px 0px 23px;
}
/* END NEWS SECTION */

/* FOLLOW SECTION */
.follow-us {
	background-color: #000000;
	padding: 15px 15px;
	font-size: 20px;
	color: #fff;
	text-align: center;
}

.follow-us p {
	margin: 0px 0px 5px;
}

.follow-us a {
	color: #fff;
}

.follow-us ul.socials {
}

.follow-us ul.socials li {
	display: inline-block;
	margin: 0px 13px;
}

.follow-us ul.socials li span,
.follow-us ul.socials li i {
	display: inline-block;
	vertical-align: middle;
}

.follow-us ul.socials li span {
	margin-right: 6px;
}
/* END FOLLOW SECTION */

/* POST-ITEM */
.row.blog .col-lg-4.col-md-6 {
	padding-bottom: 30px;
}

.post-item a {
	color: inherit;
}

.post-item p {
	margin: 0px;
}

.post-item .post-item-inner {
	position: relative;
	border-radius: 10px;
	background-color: #f0f0f0;
	overflow: hidden;
}

.post-item .post-item-title {
	position: relative;
	background-color: #222222;
	border-bottom: 4px solid #e4b017;
	text-align: center;
}

.post-item .post-item-title p {
	font-size: 18px;
	line-height: 21px;
	color: #fff;
}

.post-item strong.post-item-date {
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 36px;
	background-color: #e4b017;
	padding: 6px 0px;
	font-size: 12px;
	color: #222222;
	text-transform: uppercase;
	line-height: 12px;
	text-align: center;
}

.post-item .post-item-thumbnail {
	position: relative;
	display: block;
	height: 193px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.post-item .post-item-excerpt {
	padding: 30px 30px 66px;
}

.post-item a.post-item-more {
	background-color: #e4b017;
	font-size: 16px;
	line-height: 36px;
	padding: 0px 30px;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

.post-item a.post-item-more i {
	font-size: 12px;
}

@media (min-width: 768px) {
	.post-item .post-item-title {
		min-height: 102px;
	}

	.post-item .post-item-title p {
		position: absolute;
		top: 50%;
		left: 38px;
		right: 38px;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
}

@media (min-width: 992px) {
	.post-item,
	.post-item .post-item-inner {
		height: 100%;
	}
}

@media (min-width: 1200px) {
	.post-item .post-item-title p {
		font-size: 22px;
		line-height: 26px;
	}
}

@media (max-width: 767px) {
	.post-item .post-item-title {
		padding: 15px 35px;
	}
}
/* END POST-ITEM */

/* PAGE HEADER */
#page-header .page-photo {
	height: 350px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

#page-header .page-title {
	position: relative;
	background-color: #222222;
}

#page-header .page-title:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	right: 0px;
	background-image: url(../images/pattern-1.png);
	background-repeat: no-repeat;
	background-position: right -25px;
	z-index: 5;
}

#page-header .page-title .container {
	position: relative;
	z-index: 10;
}

#page-header .page-title h1 {
	font-size: 40px;
	color: #fff;
	margin: 0px 0px;
}

.page-breadcrumb {
	padding: 20px 0px 0px;
	color: #222;
}

.page-breadcrumb a {
	color: #222;
	font-family:'Myriad W01 Bd';
}

.page-breadcrumb span.separator {
	display: inline-block;
	margin: 0px 8px;
	font-size: 12px;
}

@media (min-width: 992px) {
	#page-header .page-title .container {
		min-height: 80px;
	}

	#page-header .page-title h1 {
		position: absolute;
		top: 50%;
		left: 15px;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
}

@media (max-width: 991px) {
	#page-header .page-title {
		padding: 25px 0px;
	}
}

@media (max-width: 575px) {
	#page-header .page-photo {
		height: 300px;
	}

	#page-header .page-title h1 {
		font-size: 30px;
	}
}
/* END PAGE HEADER */

/* ENTRY CONTENT */
#site-content {
	padding: 40px 0px;
}

body.page-template-page_home #site-content {
	padding: 0px 0px;
}

.entry-content {
	font-size: 18px;
}

.entry-content a:not([class]) {
	color: #d55904;
}

.entry-content a:not([class]):hover {
	color: #b34b04;
}

.entry-content img.alignleft {
	float: left;
	margin: 0px 15px 15px 0px;
}

.entry-content img.alignright {
	float: right;
	margin: 0px 0px 15px 15px;
}

.entry-content img.aligncenter {
	display: block;
	margin: 0px auto 15px;
}
/* END ENTRY CONTENT */

/* WIDGET */
#widget-area .widget-title {
	font-size: 25px;
	color: #222;
	border-radius: 8px 8px 0 0;
	background-color: #e4b017;
	margin: 0px -30px 25px;
	padding: 16px 30px;
}

#widget-area .widget {
	padding: 0px 30px 25px;
	border-radius: 0 0 8px 8px;
	background-color: #efebeb;
}

#widget-area .widget ul.menu li a {
	font-size: 20px;
	color: #222222;
	font-family:'Myriad W01 SmBd';
}

#widget-area .widget ul.menu > li {
	margin-bottom: 8px;
}

#widget-area .widget ul.menu > li:last-child {
	margin-bottom: 0px;
}

#widget-area .widget ul.menu li.current-menu-item > a {
	font-family:'Myriad W01 Bd';
}

#widget-area .widget ul.menu ul {
	padding-left: 15px;
}

#widget-area .widget ul.menu ul a {
	font-size: 18px;
}

@media (min-width: 992px) {
	#widget-area {
		padding-left: 10px;
	}
}

@media (max-width: 991px) {
	#widget-area {
		padding-top: 10px;
	}
}
/* END WIDGET */

/* GFFORM */
div.gform_wrapper {
	margin: 0px 0px;
}

div.gform_wrapper input[type="submit"] {
	background-color: #e4b017;
	border: 0px;
	padding: 9px 20px;
	font-family:'Myriad W01 SmBd';
	color: #222;
	outline: none;
	cursor: pointer;
}

div.gform_wrapper .gform_footer {
	margin: 0px 0px;
	padding: 10px 0px 0px;
}
/* END GFFORM */

/* DEFAULT TEMPLATE */
ul.menu.post {
	margin-bottom: 30px;
}

ul.menu.post li {
	margin-bottom: 10px;
}

ul.menu.post li:last-child {
	margin-bottom: 0px;
}

ul.menu.post li a {
	font-size: 22px;
	color: #222;
	font-family:'Myriad W01 Bd';
}

.pagination {
	display: block;
	border-radius: 0px;
}

.pagination .nav-links {
}

.pagination .nav-links span,
.pagination .nav-links a {
	display: inline-block;
	font-size: 22px;
	color: #222;
	font-family:'Myriad W01 Bd';
	border-bottom: 2px solid transparent;
	padding: 0px 7px;
	margin-right: 7px;
}

.pagination .nav-links a:hover {
	color: #e4b017;
}

.pagination .nav-links span.current {
	color: #e4b017;
	border-bottom-color: #e4b017;
}

#map_canvas {
	height: 210px;
}

main#site-content table {
	background: #F5F5F5;
	margin: 20px 0;
}

main#site-content table td {
	border: 1px solid #DDDDDD;
	padding: 10px;
}
/* END DEFAULT TEMPLATE */
