/* BASE CSS */
* {
	margin: 0px;
	padding: 0px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	background-color: #FFFFFF;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: adobe-garamond-pro, Georgia, "Times New Roman", serif;
	font-size: 19px;
	line-height: 2em;
}

body.editor, body.short_editor {
	background-image: none;
	background-color: #FFFFFF;
	min-height: 400px;
	transition: none;
	padding-top: 0px;
}

body.short_editor {
	min-height: 200px;
}

#content .tox-edit-area__iframe {
	padding: 0px 10px;
	background-color: transparent;
}

table {
	border-collapse:collapse;
	border-spacing: 0px;
	border: 0px;
	margin-bottom: 1em;
}

table.data_table {
	width: 100%;
}

table th {
	text-align: left;
}

table td {
	vertical-align: top;
}

p, .block p {
	margin-bottom: 1em;
	text-align: justify;
}

.block p:last-child {
	margin-bottom: 0px;
}

#content ul, #content ol, .editor ul, .editor ol {
	padding-left: 15px;
	margin-bottom: 1em;
}

#content li, #content_blocks li, .editor li {
	line-height: 1.75em;
	margin-bottom: .25em;
}

strong, b {
	font-weight: 600;
}

h1, h2.h1 {
	font-family: trajan-pro-3, Georgia, "Times New Roman", serif;
	font-size: 30px;
	line-height: 1.1em;
	font-weight: normal;
/*	text-transform: uppercase;*/
	text-align: center;
	color: #AD9455;
}

.layout2 h1, .layout_admin h1, .layout2 h2.h1 {
/*	text-transform: none;*/
	color: #000000;
}

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

h3 {
	font-size: 22px;
	line-height: 1.1em;
	margin-bottom: .25em;
}

.trajan {
	font-family: trajan-pro-3, Georgia, "Times New Roman", serif;
}

hr {
	border: 0px;
	height: 1px;
	margin: 1em auto;
	color: #AD9455;
	background-color: #AD9455;
	width: 100px;
}

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

#content img, .editor img {
}

a {
	text-decoration: none;
	cursor: pointer;
	color: #AD9455;
}

a, button, .button, input[type="button"], input[type="submit"] {
	transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
}

a.fancy_button, input.fancy_button, span.fancy_button {
	background-color: #AD9455 !important;
	font-family: trajan-pro-3, Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: .4em 1em;
	white-space: nowrap;
	text-align: center;
}

blockquote {
	margin: 10px 0px 10px 15px;
}

.cl {
	clear: left;
}

.cr {
	clear: right;
}

.cb {
	clear: both;
}

.cf:before, .cf:after {
	content: "";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	zoom: 1;
}

.sr {
	position: absolute;
	height: 1px;
	width: 1px;
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px,1px,1px,1px);
	clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
	-webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
	overflow: hidden !important;
}

#content .embed_container, #content_blocks .embed_container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0px;
	overflow: hidden;
	max-width: 100%;
	margin-bottom: 20px;
}

#content_blocks .block_content_photo .embed_container, #content_blocks .block_video .embed_container {
	height: 100%;
	margin-bottom: 0px;
}

#content .embed_container iframe, #content .embed_container object, #content .embed_container embed,
#content_blocks .embed_container iframe, #content_blocks .embed_container object, #content_blocks .embed_container embed {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.table_container {
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
}

.right_photo {
	float: right;
	margin: 5px 0px 40px 40px;
	display: block;
	max-width: 50%;
}

.left_photo {
	float: left;
	margin: 5px 40px 40px 0px;
	display: block;
	max-width: 50%;
}

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

	.right_photo, .left_photo {
		float: none;
		margin: 0px auto 20px auto !important;
		width: 100% !important;
		max-width: 100% !important;
	}

}

.col2 {
	margin-bottom: 1em;
}

@media only screen and (min-width: 768px) {

	.cols {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		justify-content: space-between;
	}

	.cols .col2 {
		width: calc(50% - 15px);
	}

	.cols .col3 {
		width: calc(33.3333333333% - 20px);
	}

}

/* FORM CSS */

label, .label {
	white-space: nowrap;
}

input, select, textarea {
	font-family: adobe-garamond-pro, Georgia, "Times New Roman", serif;
	font-size: 19px;
	line-height: 24px;
	padding: .5em .75em;
	background-color: #FFFFFF;
	border: 1px solid #CCCCCC;
	-webkit-border-radius: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

button, .button, input[type="button"], input[type="submit"], .layout_admin .ui-dialog-buttonset .ui-button {
	border: 0px;
	background-color: #000000;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	padding: 2px 4px;
	-webkit-appearance: none;
	cursor: pointer;
}

button:hover, .button:hover, input[type="button"]:hover, input[type="submit"]:hover, .layout_admin .ui-dialog-buttonset .ui-button:hover {
	 background-color: #333333;
}

button:disabled, button[disabled], input[type="button"]:disabled {
	background-color: #999999;
	cursor: default;
}

.alert, .red {
	color: #EB0000;
}

/* CONTAINER CSS */

.container {
	width: 100%;
	max-width: 1100px;
	margin: 0px auto;
	padding: 0px 100px;
	position: relative;
}

.block.padding_top {
	padding-top: 100px;
}

.block.padding_bottom {
	padding-bottom: 100px;
}

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

	.container {
		padding: 0px 50px;
	}

	.block.padding_top {
		padding-top: 60px;
	}

	.block.padding_bottom {
		padding-bottom: 60px;
	}

}

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

	.container {
		padding: 0px 30px;
	}

}

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

	.container {
		padding: 0px 15px;
	}

}

/* LAYOUT CSS */

header {
	position: relative;
}

#skip_content {
	position: absolute;
	top: 0px;
	right: 10px;
	transform: translateY(-150%);
	background-color: #000000;
	color: #FFFFFF;
	padding: 0px 10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	outline: none;
	z-index: 500;
}

#skip_content:focus {
	transform: translateY(10px);
}

#header_inner .container {
	border-bottom: 1px solid #AD9455;
	padding-bottom: 20px;
}

#logo {
	text-align: center;
	padding: 20px 0px 11px 0px;
}

#logo img {
/*	width: 80%;*/
	width: 100%;
	max-width: 450px;
}

#brands_wrapper {
	max-width: 450px;
	margin: 0px auto 40px auto;
/*	width: 80%;*/
}

#brands {
	display: flex;
	justify-content: space-between;
/*	max-width: 350px;
	margin: 0px auto 40px auto;*/
	padding: 0px 11%;
}

#brands_inner {
	padding: 0px 11%;
}

#brands a {
	align-self: flex-end;
}

#brands #tolosa_logo {
	width: 25.14%;
	width: 36%;
}

#brands #alpha_omega_logo {
	width: 37%;
	width: 52.9%;
}

#brands #perinet_logo {
	width: 18.8%;
}

#brands #two_squared_logo {
	width: 9.9%;
}

#brands img {
	width: 100%;
	display: block;
}

#content {
	position: relative;
}

#ctas {
	padding: 100px 0px;
}

#ctas .container {
	max-width: none;
}

.cta {
	position: relative;
}

.cta img {
	display: block;
	width: 100%;
	height: auto;
}

.cta a {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.6);
}

.cta a:hover {
	background-color: transparent;
}

.cta a span.content {
	display: block;
	width: 100%;
	text-align: center;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

@media only screen and (min-width: 750px) {

	#ctas .container {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-column-gap: 40px;
		grid-column-gap: 2.5%;
	}

}

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

	#ctas .container {
		max-width: 570px;
	}

	.cta {
		margin-top: 1px;
	}

	.cta:first-child {
		margin-top: 0px;
	}

}

footer {
	background-color: #000000;
	font-size: 16px;
	text-transform: uppercase;
	text-align: center;
	color: #FFFFFF;
	padding: 5px 0px 20px 0px;
}

#footer_logo {
	position: relative;
	margin: 30px 0px 10px 0px;
}

#footer_logo:after {
	content: " ";
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	border-bottom: 1px solid #FFFFFF;
}

#footer_logo img {
	position: relative;
	z-index: 10;
	display: block;
	margin: 0px auto;
}

#footer_brands {
	margin: 20px 0px 25px 0px;
}

#footer_brands a {
	display: inline-block;
}

#footer_brands a:nth-child(3) {
	margin: 0px 32px;
}

@media only screen and (min-width: 500px) {

	#footer_brands br {
		display: none;
	}

	#footer_brands a:last-child {
		margin-right: 20px;
	}

}

#social {
	padding: 4px 0px 0px;
	text-align: center;
}

.social {
	margin-top: 10px;
}

#social li, .social li {
	list-style: none;
	display: inline-block;
	margin: 0px 10px;
	font-size: 35px;
	line-height: 35px;
}

#social li a {
	display: block;
	color: #FFFFFF;
}

.social li a {
	display: block;
}

#social li a:hover {
	color: #BBBBBB;
}

#copyright span, #copyright a {
	white-space: nowrap;
}

/* NAVIGATION CSS */

#nav ul {
	padding: 0px;
}

#nav li {
	list-style: none;
	position: relative;
	font-size: 22px;
	line-height: 1em;
	text-transform: uppercase;
}

#nav li a {
	color: #000000;
}

#nav li a:hover {
	color: #AD9455;
}

#subnav {
	position: absolute;
	top: 5px;
	left: 0px;
	width: 100%;
	text-align: center;
}

#content #subnav ul {
	padding: 0px;
	margin: 0px;
}

#subnav li {
	list-style: none;
}

#subnav li a {
	color: #000000;
}

#subnav li a:hover, #subnav li.active a {
	color: #CCCCCC;
}

footer nav {
	margin-bottom: 1em;
}

footer nav li {
	list-style: none;
	text-transform: uppercase;
}

footer nav li a {
	color: #FFFFFF;
}

footer nav li a:hover {
	color: #BBBBBB;
}

@media only screen and (min-width: 600px) {

	footer nav ul {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}

}

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

	footer nav ul {
		max-width: 500px;
		margin: 0px auto;
	}

	footer nav li {
		display: inline-block;
		margin: 0px 15px;
	}

}

/* CONTENT BLOCK CSS */

.block.border_top {
	border-top: 1px solid #DDDDDD;
}

.block .header {
	border-bottom: 1px solid #000000;
	margin-bottom: 2em;
	padding-bottom: 4px;
	position: relative;
}

.block .header.link {
	text-align: center;
}

.block .header a.more {
	font-family: trajan-pro-3, Georgia, "Times New Roman", serif;
	font-size: 14px;
	line-height: 1em;
	color: #AD9455;
}

@media only screen and (min-width: 700px) {

	.block .header.link {
		padding-left: 150px;
		padding-right: 150px;
	}

	.block .header a.more {
		position: absolute;
		bottom: 3px;
		right: 0px;
	}

}

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

	.block .header.link {
		padding-bottom: 0px;
	}

	.block_vertical_boxes .header.link {
		text-align: left;
	}

}

.block_content .photo {
	margin-bottom: 10px;
}

.block_photo {
	max-width: none;
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.block_photo.parallax {
	min-height: 500px;
	background: transparent;
}

.block_photo img {
	width: 100%;
	display: block;
}

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

	.block_photo {
		height: 400px;
		overflow: hidden;
	}

	.block_photo img {
		width: 800px;
		max-width: none;
	}

	.block_photo.center img {
		position: relative;
		left: 50%;
		margin-left: -400px;
	}

	.block_photo.right img {
		float: right;
	}

	.block_photo.left_center img {
		position: relative;
		left: 25%;
		margin-left: -150px;
	}

	.block_photo.right_center img {
		position: relative;
		left: 75%;
		margin-left: -450px;
	}

}

#content .block_content_photo .photo img {
	width: 100%;
	display: block;
}

#content .block_content_photo.stretch .photo img {
	height: 100%;
	object-fit: cover;
}

#content .block_content_photo .right_photo, #content .block_content_photo .left_photo {
        width: 50%;
}

#content .block_content_photo .right_photo {
        margin-left: 5%;
}

#content .block_content_photo .left_photo {
        margin-right: 5%;
}

.block_content_photo .content_inner {
	width: 100%;
	padding: 0px 0px 0px 10%;
	font-size: 17px;
	line-height: 2em;
}

.block_content_photo.right .content_inner {
	width: 100%;
	padding: 0px 10% 0px 0px;
}

@media only screen and (min-width: 800px) {

	.block_content_photo.stretch .content_container {
		display: flex;
	}

	.block_content_photo.stretch.right .content_container {
		flex-direction: row-reverse;
	}

	.block_content_photo.stretch .content_container .photo {
		flex: 1;
		margin-bottom: 0px;
	}

	.block_content_photo.stretch .content_container .content {
		display: flex;
		flex: 1;
		align-items: center;
	}

}

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

	.block_content_photo .content_inner {
		margin-top: 1em;
		padding: 0px;
	}

}

.block_boxes .block_box {
	margin-bottom: 40px;
}

.block_boxes .block_box .content_inner {
	margin-bottom: 1em;
	padding: 0px 20px;
}

.block_boxes .photo {
	margin-bottom: 1em;
}

.block_boxes .block_box p {
	font-size: 17px;
	line-height: 1.75em;
}

.block_boxes .block_box a.fancy_button {
	display: block;
	margin: 0px 20px;
}

@media only screen and (min-width: 768px) {

	.block_boxes .container_inner {
		display: table;
	}

	.block_boxes .block_box {
		display: table-cell;
		width: calc(100%/3 - 30px);
		width: 286px;
	}

	.block_boxes .block_box:nth-child(2) {
		width: 308px;
	}

	.block_boxes .block_box:first-child .content_inner {
		padding-left: 0px;
	}

	.block_boxes .block_box:nth-child(2) .content_inner {
		border-left: 1px solid #000000;
		border-right: 1px solid #000000;
	}

	.block_boxes .block_box:last-child .content_inner {
		padding-right: 0px;
	}

	.block_boxes .block_box:first-child a.fancy_button {
		margin-left: 0px;
	}

	.block_boxes .block_box:last-child a.fancy_button {
		margin-right: 0px;
	}

}

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

	.block_boxes .block_box {
		max-width: 380px;
		margin: 60px auto 0px auto;
	}

	.block_boxes .block_box:first-child {
		margin-top: 0px;
	}

}

.block_boxes2 .header {
	margin-bottom: 0px;
}

.block_boxes2 .header h2 {
	color: #000000;
}

.block_boxes2 .block_box .photo img {
	display: block;
}

.block_boxes2 h3, .block_news_events h2 {
	font-family: trajan-pro-3, Georgia, "Times New Roman", serif;
	font-weight: normal;
}

.block_boxes2 p {
	margin-bottom: 1em !important;
}

.block_boxes2 a.fancy_button {
	display: block;
}

@media only screen and (min-width: 768px) {

	.block_boxes2 .block_box {
		display: flex;
		border-top: 1px solid #000000;
	}

	.block_boxes2 .container_inner .block_box:first-child {
		border-top: 0px;
	}

	.block_boxes2 .container_inner .block_box:nth-child(odd) {
		flex-direction: row-reverse;
	}

	.block_boxes2 .block_box .photo {
		flex: 1;
		padding: 30px;
	}

	.block_boxes2 .block_box .content {
		display: flex;
		flex: 1;
		padding: 30px;
		align-items: center;
	}

	.block_boxes2 .container_inner .block_box:nth-child(odd) .photo {
		border-left: 1px solid #000000;
	}

	.block_boxes2 .container_inner .block_box:nth-child(even) .content {
		border-left: 1px solid #000000;
	}

}

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

	.block_boxes2 .block_box {
		margin-top: 2em;
	}

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

	.block_boxes2 .block_box .photo img {
		display: inline-block;
	}

}

.block_vertical_boxes .header {
	margin-bottom: 0px;
}

.block_vertical_boxes .header.link {
	padding-left: 0px;
}

/*
.block_vertical_boxes h1, .block_vertical_boxes h2.h1 {
	text-align: left;
}
*/

.block_vertical_boxes .left_content .content_inner {
	float: right;
	padding-right: 20px;
	font-family: trajan-pro-3, Georgia, "Times New Roman", serif;
	font-size: 14px;
	line-height: 2em;
}

.block_vertical_boxes .block_box {
	width: 100%;
	padding-right: 60px;
	margin-top: 20px;
}

.block_vertical_boxes h3 {
	font-family: trajan-pro-3, Georgia, "Times New Roman", serif;
	font-size: 20px;
	line-height: 30px;
	font-weight: normal;
	border-bottom: 1px solid #000000;
	display: inline-block;
	padding-left: 40px;
	margin-bottom: 10px;
}

.block_vertical_boxes .right_content .content_inner {
	padding-left: 40px;
}

.block_vertical_boxes a.fancy_button {
	display: block;
}

@media only screen and (min-width: 700px) {

	.block_vertical_boxes .container_inner {
		display: table;
		width: 100%;
	}

	.block_vertical_boxes .left_content {
		display: table-cell;
		width: 25%;
		vertical-align:top;
		padding-top: 10px;
		border-right: 1px solid #000000;
	}

	.block_vertical_boxes .right_content {
		display: table-cell;
		width: 75%;
		vertical-align:top;
	}

}

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

	.block_vertical_boxes .left_content {
		display: none;
	}

	.block_vertical_boxes .block_box {
		padding-right: 40px;
	}

}

#mailinglist {
	width: 300px;
	margin: 0px auto 2em auto;
}

#mailinglist #email_box {
	font-family: trajan-pro-3, Georgia, "Times New Roman", serif;
	font-size: 18px;
	color: #AD9455;
	border: 0px;
	border-bottom: 1px solid #000000;
	padding: 0px;
	width: 230px;
	height: 30px;
	vertical-align: top;
}

#mailinglist button {
	background-color: transparent;
	border-bottom: 1px solid #000000;
	width: 70px;
	height: 30px;
	padding: 0px;
	vertical-align: top;
	text-align: center;
}

/* HOME CSS */

.block_slideshow {
	clear: both;
	width: 100%;
	position: relative;
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.block_slideshow ul {
	padding: 0px !important;
	position: relative;
	width: 100%;
}

.block_slideshow .rslides li {
	list-style: none;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	opacity: 0;
}

.block_slideshow .rslides li:first-child {
	display: block;
	float: left;
	opacity: 1;
}

.block_slideshow .rslides li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	float: left;
}

.block_slideshow .content {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	text-align: center;
}

.block_slideshow .content_inner {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.block_slideshow .rslides_tabs {
	padding: 0px;
	text-align: center;
	position: absolute;
	bottom: 1%;
	left: 0px;
	width: 100%;
	z-index: 10;
}

.rslides_tabs li {
	list-style: none;
	display: inline-block;
	margin: 0px 3px;
	width: 14px;
	height: 14px;
	position: relative;
}

.rslides_tabs li a {
	display: block;
	width: 14px;
	height: 14px;
	overflow: hidden;
	text-indent: 105%;
	cursor: pointer;
}

.rslides_tabs li a:before {
	position: absolute;
	top: 0px;
	left: 0px;
	content: "\f10C";
	font-family: FontAwesome;
	font-size: 14px;
	line-height: 14px;
	color: #FFFFFF;
	text-indent: 0px;
}

.rslides_tabs li.rslides_here a:before {
	content: "\f111";
}

.rslides_nav {
	display: none;
}

/* NEWS AND EVENTS CSS */

.block_news_events .header {
	margin-bottom: 0px;
	border-bottom: 0px;
}

.block_news_events {
	margin-top: 30px;
}

.block_news_events .item {
	padding: 30px;
	border-top: 1px solid #000000;
}

.block_news_events .item .event_photo {
	text-align: center;
}

.block_news_events a.fancy_button {
	display: block;
}

@media only screen and (min-width: 850px) { 

	.block_news_events .container_inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.block_news_events.featured .container {
		max-width: none;
	}

	.block_news_events .item {
		width: 50%;
	}

	.block_news_events .item:nth-child(2n) {
		border-left: 1px solid #000000;
	}

}

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

	.block_news_events .item {
		padding: 3% 3% 2% 3%;
	}

}

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

	.block_news_events .item {
		padding: 4% 4% 2.8% 4%;
	}

}

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

	.block_news_events .item {
		padding: 20px 20px 10px 20px;
	}

}

/* GALLERY CSS */

.gallery {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-column-gap: 20px;
	margin-top: -20px;
}

.gallery div {
	margin-top: 20px;
}

.gallery div img {
	background-color: #DDDDDD;
	padding: 3%;
	display: block;
}

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

	.gallery {
		grid-template-columns: 1fr 1fr 1fr;
	}

}

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

	.gallery {
		grid-template-columns: 1fr 1fr;
	}

}

/* FAQ CSS */

.block_faqs div.question {
	cursor: pointer;
	padding: 5px 15px;
	margin-bottom: 10px;
	background-color: #DDDDDD;
	padding: 10px 15px 10px 15px;
}

.block_faqs div.question:before {
	float: left;
	margin-right: 10px;
	display: inline;
	content: '\f0d7';
	font-family: FontAwesome;
	font-size: 20px;
	font-weight: normal;
	font-style: normal;
}

.block_faqs div.answer {
	display: none;
}

.block_faqs div.expand div.question:before {
	content: '\f0d8';
}

.block_faqs div.expand div.answer {
	display: block;
	margin-bottom: 20px;
}

/* FEEDBACK CSS */

#content form.feedback {
}

form.feedback label {
	display: block;
	font-style: italic;
}

form.feedback div {
	margin-bottom: 10px;
}

form.feedback div label {
	display: inline;
	white-space: normal;
}

form.feedback input, form.feedback select, form.feedback textarea {
	width: 100%;
	height: 40px;
	padding: 0px 10px;
	border: 1px solid #AD9455;
}

form.feedback input.radio, form.feedback input.checkbox {
	width: auto;
	height: auto;
	padding: 0px;
}

form.feedback textarea {
	width: 100%;
	height: 100px;
	padding: 5px 10px;
}

form.feedback input.\fancy_button {
	max-width: 320px;
	width: 100%;
	display: inline-block;
}

/* INSTAGRAM CSS */

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

.block_instagram .posts {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 2em;
}

.block_instagram .posts div {
	width: calc(100% / 3 - 15px);
	position: relative;
}

.block_instagram .posts a {
	display: block;
	width: 100%;
	height: 0px;
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.block_instagram p {
	text-align: center;
}

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

	.block_instagram .posts {
		margin-bottom: 1em;
	}

	.block_instagram .posts div {
		width: 100%;
		margin-bottom: 1em;
	}

}

/* POPUP CSS */

#popup {
	display: none;
	width: 90%;
	max-width: 650px;
	background-color: #FFFFFF;
	padding: 50px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#popup p {
	line-height: 1.5em;
}

#popup p:last-of-type {
	margin-bottom: 0px;
}

#popup .close {
	border: 0px;
	background-color: transparent;
	position: absolute;
	top: 8px;
	right: 10px;
	cursor: pointer;
	font-size: 22px;
	line-height: 22px;
}

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

	#popup {
		padding: 30px;
	}

}

/* RESPONSIVE CSS */

@media only screen and (min-width: 850px) {

	#nav_trigger, #nav_close {
		display: none;
	}

	#nav #main_nav {
		display: flex;
		justify-content: space-around;
		padding: 6px 0px 4px 0px;
		max-width: 700px;
		margin: 0px auto;
	}

	#nav > ul > li {
	}

	#nav li > ul {
		position: absolute;
		top: 25px;
		left: 0px;
		padding: 0px 10px;
		z-index: 20;
		visibility: hidden;
		opacity: 0;
		transition: .2s .2s;
		background-color: #FFFFFF;
	}

	#nav li:hover > ul {
		visibility: visible;
		transition-delay: 0s;
		opacity: 1;
	}

	#nav li li {
		white-space: nowrap;
	}

	#nav li li a {
		display: block;
		padding: 7px 0px;
		border-top: 1px solid #FFFFFF;
	}

	#nav li li:first-child a {
		border-top: 0px;
	}

	#content #subnav ul {
		padding: 5px 0px;
	}

	#subnav li {
		display: inline;
		margin: 0px 15px;
		white-space: nowrap;
	}

	#section_title {
		display: none;
	}

}

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

	.mobile_nav body {
		overflow: hidden;
	}

	#header_inner .container {
		padding: 0px;
	}

	#logo {
		left: 0px;
		width: 100%;
		text-align: center;
	}

/*
	#brands {
		text-align: center;
		padding-right: 18px;
	}
*/

	.mobile_nav #header_inner {
		height: 100vh;
/*		overflow-y: scroll;
		position: fixed;*/
	}

	#nav_trigger {
		border: 0px;
		background-color: transparent;
		width: 30px;
		padding: 0px;
		position: absolute;
		top: 25px;
		right: 0px;
		z-index: 100;
		cursor: pointer;
	}

	#nav_trigger:after, #nav_trigger:before, #nav_trigger span {
		content: '';
		display: block;
		background-color: #000000;
		border-radius: 2px;
		height: 5px;
		margin: 5px 0px;
		transition: all .2s ease-in-out;
	}

	.mobile_nav #nav_trigger:before {
		transform: translateY(10px) rotate(45deg);
	}

	.mobile_nav #nav_trigger:after {
		transform: translateY(-10px) rotate(-45deg);
	}

	.mobile_nav #nav_trigger span {
		display: block;
		transform: scale(0);
	}

	.mobile_nav #header_inner {
		/*height: 100vh;*/
		overflow-y: scroll;
		z-index: 50;
	}

	#nav {
		width: 0px;
		height: 100vh;
		position: absolute;
		right: 0px;
		top: 0px;
		padding-top: 50px;
		z-index: 50;
		overflow-x: hidden;
		overflow-y: scroll;
		transition: width 0.4s ease;
		background-color: #FFFFFF;
	}

	.mobile_nav #nav {
		width: 100%;
	}

	#nav li {
		display: block;
		font-size: 26px;
		text-align: center;
	}

	#nav li a {
		display: block;
		padding: 10px 15px;
	}

	#nav li ul {
		padding: 0px;
		max-height: 0px;
		overflow: hidden;
		transition: all 0.4s cubic-bezier(0,1,0,1);
	}

	#nav li.expanded > ul {
		padding-bottom: 10px;
		max-height: 499px;
		transition: all 0.4s cubic-bezier(1,0,1,0);
	}

	#nav li li {
		font-size: 16px;
	}

	#nav li li a {
		padding: 6px 30px;
	}

	#subnav {
		height: 42px;
		position: relative;
	}

	#section_title {
		padding: 0px 15px;
		font-size: 16px;
		line-height: 38px;
		font-weight: bold;
		-webkit-tap-highlight-color: rgba(0,0,0,0);
	}

	#section_title:after {
		padding-left: 10px;
		content: '\f0d7';
		font-family: FontAwesome;
		font-size: 20px;
		font-weight: normal;
		font-style: normal;
	}

	#subnav.expanded #section_title:after {
		content: '\f0d8';
	}

	#subnav ul {
		position: absolute;
		top: 40px;
		left: 0px;
		width: 100%;
		max-height: 0px;
		overflow: hidden;
		background-color: #DDDDDD;
		z-index: 30;
		transition: all 0.4s cubic-bezier(0,1,0,1);
	}

	#subnav.expanded ul {
		max-height: 499px;
		overflow: auto;
		transition: all 0.4s cubic-bezier(1,0,1,0);
	}

	#subnav li {
		margin: 0px;
		display: block;
		line-height: 1.1em;
	}

	#subnav li:first-child {
		padding-top: 10px;
	}

	#subnav li:last-child {
		padding-bottom: 10px;
	}

	#subnav li a {
		display: block;
		padding: 10px 15px;
	}

}

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

	#brands {
		left: 30px;
		width: calc(100% - 60px);
	}

}

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

	#brands {
		left: 15px;
		width: calc(100% - 30px);
	}

}
*/
