/* ------------------------------------ */
/* ---------- Reset Browser ----------- */
/* ------------------------------------ */

@import url("reset.css");

/* ------------------------------------ */
/* --------------- Fonts -------------- */
/* ------------------------------------ */

/* Merriweather */
@import url(https://fonts.googleapis.com/css?family=Merriweather:400,400italic,700,700italic);

/* Open Sans */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);

/* ------------------------------------ */
/* ---------- General styles ---------- */
/* ------------------------------------ */

* {
	font-smooth: antialiased;
	-webkit-font-smoothing : antialiased;
	-moz-osx-font-smoothing: grayscale;
}
input {
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
html {
	overflow-x: hidden;
}
body {
	overflow-x: hidden;
	width: 100%;
	position: relative;
	font-size: 16px;
	line-height: 24px;
	color: #505050;
	font-family: 'Open Sans', sans-serif;
	font-style: normal;
	font-weight: 400;
	background: #ffffff;
}
.clear {
	clear: both;
	display: block;
}
a {
	text-decoration: none;
	-webkit-transition: background-color 0.3s cubic-bezier(0.86, 0, 0.07, 1), border-color 0.3s cubic-bezier(0.86, 0, 0.07, 1), color 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: background-color 0.3s cubic-bezier(0.86, 0, 0.07, 1), border-color 0.3s cubic-bezier(0.86, 0, 0.07, 1), color 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: background-color 0.3s cubic-bezier(0.86, 0, 0.07, 1), border-color 0.3s cubic-bezier(0.86, 0, 0.07, 1), color 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: background-color 0.3s cubic-bezier(0.86, 0, 0.07, 1), border-color 0.3s cubic-bezier(0.86, 0, 0.07, 1), color 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	transition: background-color 0.3s cubic-bezier(0.86, 0, 0.07, 1), border-color 0.3s cubic-bezier(0.86, 0, 0.07, 1), color 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
.container {
	width: 1200px;
	margin: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
#page {
	width: 100%;
	margin: auto;
	position: relative;
	z-index: 100;
	overflow: hidden;
}
.table {
	display: table;
	width: 100%;
	height: 100%;
}
.table-cell {
	display: table-cell;
	vertical-align: middle;
}
.btn,
.wysiwyg .btn {
	display: inline-block;
	vertical-align: top;
	font-size: 18px;
	line-height: 18px;
	color: #ffffff;
	padding: 15px 80px;
	font-weight: 600;
	text-transform: uppercase;
	background: #bc6021;
	position: relative;
	overflow: hidden;
}
.btn .text,
.wysiwyg .btn .text {
	display: block;
	position: relative;
	z-index: 200;
	font-weight: 700;
}
.btn .bg,
.wysiwyg .btn .bg {
	position: absolute;
	top: 0px;
	right: calc(100% + 15px);
	bottom: 0px;
	left: calc(-100% - 15px);
	-webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	background: #b15719;
	z-index: 100;
}
.btn .bg:after,
.wysiwyg .btn .bg:after {
	content: "";
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: -15px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 105px 45px 0 0;
	border-color: #b15719 transparent transparent transparent;
}
.btn:hover .bg,
.wysiwyg .btn:hover .bg {
	left: 0px;
	right: 0px;
}
.btn:hover,
.btn.active,
.wysiwyg .btn:hover {
	color: #ffffff;
}

/* ----------------------------------- */
/* ---------- Header styles ---------- */
/* ----------------------------------- */

.site-header {
	z-index: 2000;
	position: relative;
}

/* header-top */
.site-header .header-top {
	background: #2b3a61; /* Old browsers */
	background: -moz-linear-gradient(top,  #2b3a61 0%, #202d4d 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2b3a61), color-stop(100%,#202d4d)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #2b3a61 0%,#202d4d 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #2b3a61 0%,#202d4d 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #2b3a61 0%,#202d4d 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #2b3a61 0%,#202d4d 100%); /* W3C */
	height: 218px;
}
.site-header .header-top:after {
	clear: both;
	content: "";
	display: block;
}

/* logo */
.site-header .logo {
	width: 427px;
	padding-top: 63px;
}
.site-header .logo img {
	display: block;
	width: 100%;
}

/* header-bottom */
.site-header .header-bottom {
	background: #0097bd;
}
.site-header .header-bottom:after {
	clear: both;
	content: "";
	display: block;
}

/* main menu */
.site-header .main-menu {
	width: 60%;
}
.site-header .main-menu:after {
	display: block;
	content: "";
	clear: both;
}
.site-header .main-menu ul li {
	display: block;
	float: left;
	position: relative;
	margin-right: 10px;
}
.site-header .main-menu ul li:last-of-type {
	margin-right: 0px;
}
.site-header .main-menu ul li a {
	display: block;
	font-size: 30px;
	line-height: 61px;
	height: 61px;
	font-family: "alize",serif;
	font-style: normal;
	font-weight: 400;
	color: #ffffff;
	text-transform: uppercase;
	padding: 0 15px;
	position: relative;
}
.site-header .main-menu ul li a:after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 61px 10px 0 0;
	border-color: #0097bd transparent transparent transparent;
	position: absolute;
	left: 100%;
	top: 0px;
	content: "";
	display: block;
	-webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
.site-header .main-menu ul li a:before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 61px 10px;
	border-color: transparent transparent #0097bd transparent;
	position: absolute;
	right: 100%;
	top: 0px;
	content: "";
	display: block;
	-webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
.site-header .main-menu ul li.current_page_item a,
.site-header .main-menu ul li.current_page_ancestor a,
.site-header .main-menu ul li:hover a {
	background: #001d3e;
	color: #0097bd;
}
.site-header .main-menu ul li.current_page_item a:before,
.site-header .main-menu ul li.current_page_ancestor a:before,
.site-header .main-menu ul li:hover a:before {
	border-color: transparent transparent #001d3e transparent;
}
.site-header .main-menu ul li.current_page_item a:after,
.site-header .main-menu ul li.current_page_ancestor a:after,
.site-header .main-menu ul li:hover a:after {
	border-color: #001d3e transparent transparent transparent;
}
.site-header .main-menu ul li.current_page_item ul li a,
.site-header .main-menu ul li.current_page_ancestor ul li a,
.site-header .main-menu ul li:hover ul li a {
	color: #ffffff;
}
.site-header .main-menu ul li .submenu {
	position: absolute;
	top: 100%;
	left: -10px;
	background: #001d3e;
	width: 180px;
	display: none;
	padding: 0 25px;
}
.site-header .main-menu ul li ul {
	display: block;
	padding: 25px 0;
}
.site-header .main-menu ul li ul li  {
	margin: 0;
	display: block;
	margin-bottom: 10px;
	float: none;
}
.site-header .main-menu ul li ul li:last-of-type  {
	margin-bottom: 0px;
}
.site-header .main-menu ul li ul li a {
	text-transform: none;
	padding: 0px;
	line-height: 22px;
	font-size: 20px;
	height: auto;
}
.site-header .main-menu ul li ul li a:before,
.site-header .main-menu ul li ul li a:after {
	display: none;
}
.site-header .main-menu ul li ul li.current_page_item a,
.site-header .main-menu ul li ul li.current_page_ancestor a,
.site-header .main-menu ul li ul li a:hover {
	color: #0097bd;
}

/* ------------------------------------- */
/* -------- Site main Styles ----------- */
/* ------------------------------------- */

.site-main {
	position: relative;
	padding: 55px 0 100px;
	background: url('../images/site-main-bg.jpg') no-repeat center top;
}
.site-main .container:after {
	clear: both;
	content: "";
	display: block;
}

/* site-main-content */
.site-main-content {
	float: left;
	width: 60%;
}

/* Entry Styles */
.entry {
}

/* WYSIWYG Styles */
.wysiwyg {
}
.wysiwyg .darkblue {
    color: #222e4d;
}
.wysiwyg .lightblue {
    color: #0097bd;
}
.wysiwyg strong {
	font-weight: 700;
}
.wysiwyg p {
	margin-bottom: 24px;
}
.wysiwyg .title {
	margin-bottom: 24px;
	background: url('../images/title-bg.png') repeat-y left;
	padding: 15px 30px;
	border-left: solid 4px #222e4d;
	position: relative;
    margin-left:-34px;
}
.wysiwyg .title:before {
	content: "";
	display: block;
	background: url('../images/title-left-bg.png') no-repeat center;
	width: 27px;
	height: 30px;
	top: 50%;
	margin-top: -15px;
	left: -8px;
	position: absolute;
}
.wysiwyg .title * {
	margin-bottom: 0px;
}
.wysiwyg h1 {
	font-size: 24px;
	line-height: 24px;
	color: #222e4d;
	margin-bottom: 24px;
	font-family: 'Merriweather', serif;
}
.wysiwyg h2 {
	font-size: 24px;
	line-height: 24px;
	margin-bottom: 24px;
	color: #222e4d;
	font-family: 'Merriweather', serif;
}
.wysiwyg h3 {
	font-size: 20px;
	line-height: 20px;
	margin-bottom: 12px;
	color: #222e4d;
	font-weight: 700;
	font-family: 'Merriweather', serif;
}
.wysiwyg h4 {
	font-size: 18px;
	line-height: 18px;
	margin-bottom: 12px;
	color: #222e4d;
	font-weight: 700;
	font-family: 'Merriweather', serif;
}
.wysiwyg ul {
	margin: 0;
	list-style-type: none;
	margin-bottom: 24px;
}

.wysiwyg ul li {
	position: relative;
}
.wysiwyg ul li:before {
	position: absolute;
	left: -12px;
	top: 0px;
	content: "\2022"
}
.wysiwyg ol {
	margin: 0;
	list-style-type: decimal;
	margin-bottom: 24px;
}
.wysiwyg .table-holder {
	overflow: hidden;
	margin-bottom: 24px;
}
.wysiwyg .table-holder .msg {
	display: none;
	font-size: 10px;
	line-height: 20px;
}
.wysiwyg .data-table {
	background: #f2f2f2;
	border: solid 1px #cecece;
	border-collapse: collapse;
}
.wysiwyg .data-table td,
.wysiwyg .data-table th {
	text-align: left;
	padding: 10px 15px;
	border: solid 1px #cecece;
}
.wysiwyg a {
	color: #0097bd;
}
.wysiwyg a:hover {
	color: #2b3a61;
}
.wysiwyg blockquote {
	padding: 24px;
	background: #f2f2f2;
	border: solid 1px #cecece;
	margin-bottom: 24px;
}
.wysiwyg *:last-child {
	margin-bottom: 0;
}

/* Images */
.wysiwyg img {
	margin-bottom: 24px;
}
.wysiwyg img[class*="align"],
.wysiwyg img[class*="wp-image-"],
.wysiwyg img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
.wysiwyg img.size-full,
.wysiwyg img.size-large,
.wysiwyg img.header-image,
.wysiwyg img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
.wysiwyg .alignleft {
	float: left;
}
.wysiwyg .alignright {
	float: right;
}
.wysiwyg .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wysiwyg .alignleft,
.wysiwyg .wp-caption.alignleft {
	margin: 0px 24px 12px 0;
}
.wysiwyg .alignright,
.wysiwyg .wp-caption.alignright {
	margin: 0px 0 12px 24px;
}
.wysiwyg .aligncenter,
.wysiwyg .wp-caption.aligncenter {
	clear: both;
	margin-top: 40px;
    margin-bottom: 40px;
    margin-left:auto;
    margin-right: auto;
}
.wysiwyg embed,
.wysiwyg iframe,
.wysiwyg object,
.wysiwyg video,
.wysiwyg img {
	max-width: 100%;
}
.wysiwyg embed,
.wysiwyg iframe,
.wysiwyg object,
.wysiwyg video {
	margin-bottom: 24px;
}

/* accordion */
.wysiwyg .accordion {
	margin-bottom: 24px;
}
.wysiwyg .accordion .item {
	position: relative;
	margin-bottom: 40px;
	-webkit-transition: margin 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: margin 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: margin 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: margin 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	transition: margin 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.wysiwyg .accordion .item.active {
	margin-bottom: 15px;
}
.wysiwyg .accordion .item .item-title {
	width: 50%;
	background: #2b3a61;
	padding: 0 15px;
	height: 50px;
	z-index: 1900;
	position: relative;
	cursor: pointer;
	margin-bottom: -25px;
}
.wysiwyg .accordion .item .item-title:after {
	position: absolute;
	left: 100%;
	top: 0px;
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 50px 20px 0 0;
	border-color: #2b3a61 transparent transparent transparent;
}
.wysiwyg .accordion .item .item-title h4 {
	font-size: 18px;
	line-height: 20px;
	color: #ffffff;
	font-family: 'Open Sans', sans-serif;
	font-style: normal;
	font-weight: 400;
}
.wysiwyg .accordion .item .item-title .icon {
	line-height: 24px;
	font-size: 24px;
	color: #ffffff;
	float: right;
    -webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	margin-left: 30px;
}
.wysiwyg .accordion .item .item-title.active .icon {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.wysiwyg .accordion .item .item-content {
	background: #f1eae1;
	z-index: 1800;
	display: none;
}
.wysiwyg .accordion .item .item-content .wrp {
	padding: 50px 40px 25px 40px;
}
.wysiwyg .accordion .item .item-content ul {
	-moz-columns:2;
	-webkit-columns:2;
	columns:2;
    -moz-column-gap: 40px;
    -webkit-column-gap: 40px;
    column-gap: 40px;
}
.wysiwyg .accordion .item .item-content ul li {
	margin-bottom: 5px;
}
.wysiwyg .accordion .item .item-content ul li a {
	color: #505050;
}
.wysiwyg .accordion .item .item-content ul li a:hover {
	color: #0097bd;
}

/* site-main-sidebar */
.site-main-sidebar {
	float: right;
	width: 35%;
	position: relative;
	z-index: 3000;
}

/* contact-us */
.site-main-sidebar .contact-us {
	font-size: 24px;
	line-height: 24px;
	color: #dfc9a6;
	text-align: right;
	margin-bottom: 40px;
}
.site-main-sidebar .contact-us a {
	color: #ffffff;
	font-weight: 700;
}
.site-main-sidebar .contact-us a:hover {
	color: #dfc9a6;
}

/* banner image */
.site-main-sidebar .banner-image {
	border: solid 3px #856f59;
	margin-bottom: 40px;
	position: relative;
}
.site-main-sidebar .banner-image:before {
	content: "";
	background: #000000;
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 30px;
	top: 30px;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    0px 0px 30px 0px rgba(50, 50, 50, 0.75);
	box-shadow:         0px 0px 30px 0px rgba(50, 50, 50, 0.75);
}
.site-main-sidebar .banner-image img {
	display: block;
	width: 100%;
	position: relative;
}

/* rq-form */
.rq-form {
	position: relative;
	background: rgba(223,201,166,0.43);
	padding: 88px 30px 40px 30px;
	margin: 0 40px;
}
.rq-form .rq-form-title {
	position: absolute;
	left: -10px;
	top: -10px;
	max-width: 90%;
	background: #2b3a61;
	font-size: 26px;
	line-height: 26px;
	height: 78px;
	color: #ffffff;
	padding: 0 40px;
	text-transform: uppercase;
}
.rq-form .rq-form-title:after {
	position: absolute;
	content: "";
	left: 100%;
	top: 0px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 78px 30px 0 0;
	border-color: #2b3a61 transparent transparent transparent;
}
.rq-form .rq-form-title h3 {
	vertical-align: middle;
}
.rq-form .rq-form-title h3 span {
	color: #dfc9a6;
	font-family: 'Merriweather', serif;
	font-weight: 700;
	vertical-align: middle;
}
.rq-form .rq-form-content form li {
	margin-bottom: 20px;
}
.rq-form .rq-form-content form li:last-of-type {
	margin-bottom: 0px;
}
.rq-form .rq-form-content .gfield_label {
	display: none!important;
}
.rq-form .rq-form-content input[type="text"] {
	width: 100%!important;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	height: 34px;
	font-size: 18px;
	color: #715d49;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
	padding: 0 10px;
	border: none;
	background: #e0d0b9;
	border-radius: 6px;
	margin: 0;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(175, 146, 102, 0.75);
	-moz-box-shadow:    inset 0px 0px 10px 0px rgba(175, 146, 102, 0.75);
	box-shadow:         inset 0px 0px 10px 0px rgba(175, 146, 102, 0.75);
}
.rq-form .rq-form-content input[type="text"]::-webkit-input-placeholder {
    color: #715d49;
}
.rq-form .rq-form-content input[type="text"]:-moz-placeholder {
    color: #715d49;
    opacity: 1;
}
.rq-form .rq-form-content input[type="text"]::-moz-placeholder {
    color: #715d49;
    opacity: 1;
}
.rq-form .rq-form-content input[type="text"]:-ms-input-placeholder {
    color: #715d49;
}
.rq-form .rq-form-content textarea {
	width: 100%!important;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	height: 155px;
	font-size: 18px;
	color: #715d49;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
	padding: 5px 10px;
	border: none;
	background: #e0d0b9;
	border-radius: 6px;
	margin: 0;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(175, 146, 102, 0.75);
	-moz-box-shadow:    inset 0px 0px 10px 0px rgba(175, 146, 102, 0.75);
	box-shadow:         inset 0px 0px 10px 0px rgba(175, 146, 102, 0.75);
}
.rq-form .rq-form-content textarea::-webkit-input-placeholder {
    color: #715d49;
}
.rq-form .rq-form-content textarea:-moz-placeholder {
    color: #715d49;
    opacity: 1;
}
.rq-form .rq-form-content textarea::-moz-placeholder {
    color: #715d49;
    opacity: 1;
}
.rq-form .rq-form-content textarea:-ms-input-placeholder {
    color: #715d49;
}
.rq-form .rq-form-content ul.gfield_checkbox li {
	margin-bottom: 8px;
	background: -moz-linear-gradient(left,  rgba(205,177,134,0.8) 0%, rgba(205,177,134,0) 70%, rgba(205,177,134,0) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(205,177,134,0.8)), color-stop(70%,rgba(205,177,134,0)), color-stop(100%,rgba(205,177,134,0))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left,  rgba(205,177,134,0.8) 0%,rgba(205,177,134,0) 70%,rgba(205,177,134,0) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left,  rgba(205,177,134,0.8) 0%,rgba(205,177,134,0) 70%,rgba(205,177,134,0) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left,  rgba(205,177,134,0.8) 0%,rgba(205,177,134,0) 70%,rgba(205,177,134,0) 100%); /* IE10+ */
	background: linear-gradient(to right,  rgba(205,177,134,0.8) 0%,rgba(205,177,134,0) 70%,rgba(205,177,134,0) 100%); /* W3C */
	padding: 10px!important;
}
.rq-form .rq-form-content ul.gfield_checkbox li:last-of-type {
	margin-bottom: 0;
}
.rq-form .rq-form-content ul.gfield_checkbox li input[type="checkbox"] {
	display: none;
}
.rq-form .rq-form-content ul.gfield_checkbox li label {
	display: block;
	font-size: 18px;
	line-height: 20px;
	padding: 3px 0;
	font-weight: 700;
	color: #715d49;
	position: relative;
	padding-left: 40px;
	cursor: pointer;
	text-transform: uppercase;
	margin: 0!important;
}
.rq-form .rq-form-content ul.gfield_checkbox li label:before {
	display: block;
	content: "\f00c";
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -13px;
	width: 26px;
	height: 26px;
	background: #ffffff;
	border: solid 2px #856f59;
	color: #ffffff;
	-webkit-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 16px;
    text-align: center;
    line-height: 22px;
}
.rq-form .rq-form-content ul.gfield_checkbox li input[type="checkbox"]:checked + label:before {
	color: #856f59;
}
.rq-form .rq-form-content .gform_footer {
	text-align: center!important;
	margin: 0!important;
	padding: 0!important;
	padding-top: 40px!important;
}
.rq-form .rq-form-content .gform_footer input[type="submit"] {
	display: inline-block;
	vertical-align: top;
	border: none;
	background: #7a6652;
	font-size: 18px;
	font-family: 'Open Sans', sans-serif;
	color: #ffffff;
	text-transform: uppercase;
	height: 55px;
	padding: 0 50px;
	border-radius: 10px;
	cursor: pointer;
	-webkit-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
.rq-form .rq-form-content .gform_footer input[type="submit"]:hover {
	background: #a1662a;
}


.rq-form label.gfield_label + div.ginput_container {
    margin-top: 0!important;
}


.rq-form .gform_wrapper {
    margin: 0;
    max-width: 100%;
}



/* ----------------------------------- */
/* ---------- Testimonials styles ---- */
/* ----------------------------------- */

.testimonials {
	position: relative;
	background: url('../images/testimonials-bg.jpg') no-repeat center;
	background-size: cover;
}
.testimonials .testimonials-title {
	position: absolute;
	left: 0px;
	right: 0px;
	top: -45px;
	text-align: center;
}
.testimonials .testimonials-title h3 {
	display: inline-block;
	vertical-align: top;
	background: url('../images/testimonials-title-bg.png') no-repeat center;
	background-size: 100% 100%;
	font-size: 22px;
	line-height: 22px;
	color: #222e4d;
	text-transform: uppercase;
	font-family: 'Merriweather', serif;
	padding: 32px 68px;
	position: relative;
}
.testimonials .testimonials-title h3:before {
	content: "";
	position: absolute;
	display: block;
	background: url('../images/testimonials-title-left.png') no-repeat;
	width: 18px;
	height: 20px;
	left: 25px;
	top: 50%;
	margin-top: -10px;
}
.testimonials .testimonials-title h3:after {
	content: "";
	position: absolute;
	display: block;
	background: url('../images/testimonials-title-right.png') no-repeat;
	width: 18px;
	height: 20px;
	right: 25px;
	top: 50%;
	margin-top: -10px;
}
.testimonials .controls {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
}
.testimonials .testimonials-prev {
	position: absolute;
	z-index: 1500;
	left: 20px;
	top: 50%;
	font-size: 50px;
	line-height: 50px;
	margin-top: -25px;
	height: 50px;
	width: 50px;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	color: #7e7f84;
}
.testimonials .testimonials-next {
	position: absolute;
	z-index: 1500;
	right: 20px;
	top: 50%;
	font-size: 50px;
	line-height: 50px;
	margin-top: -25px;
	height: 50px;
	width: 50px;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
	color: #7e7f84;
}
.testimonials .testimonials-prev:hover,
.testimonials .testimonials-next:hover {
	color: #222e4d;
}
.testimonials .slides {
	width: 100%;
	height: auto;
	overflow: hidden;
}
.testimonials .slide {
	width: 100%;
	height: auto;
	padding: 80px 0;
}
.testimonials .slide .table-cell.border-right {
	border-right: solid 3px #222e4d;
}
.testimonials .slide .client {
	padding: 20px 60px;
	text-align: center;
	width: 220px;
}
.testimonials .slide .client .name {
	font-size: 24px;
	line-height: 28px;
	color: #222e4d;
	display: block;
	font-family: 'Merriweather', serif;
	margin-bottom: 5px;
}
.testimonials .slide .client .name span {
	font-size: 18px;
	font-family: 'Open Sans', sans-serif;
}
.testimonials .slide .client .institution {
	font-size: 18px;
	line-height: 20px;
	color: #856f59;
	display: block;
}
.testimonials .slide .quote {
	font-size: 18px;
	line-height: 24px;
	color: #505050;
	font-family: 'Merriweather', serif;
	font-style: italic;
	padding: 20px 60px;
}

/* ----------------------------------- */
/* ------------ Home styles ---------- */
/* ----------------------------------- */

.introduction {
	background: url('../images/introduction-bg.jpg') no-repeat center;
	background-size: cover;
	font-size: 18px;
	line-height: 28px;
	color: #ffffff;
	padding: 30px 0;
}
.introduction .introduction-ct {
	width: 55%;
}

/* ----------------------------------- */
/* ---------- Footer styles ---------- */
/* ----------------------------------- */

.site-footer {
}

/* footer-description */
.site-footer .footer-description {
	padding: 55px;
	background: url('../images/footer-description-bg.jpg') no-repeat center;
	background-size: cover;
	color: #ffffff;
	font-size: 18px;
	line-height: 28px;
	color: #ffffff;
}

/* footer-bottom */
.site-footer .footer-bottom {
	padding: 40px 0;
	background: #0f1931;
	text-align: center;
}
.site-footer .footer-bottom .table {
	margin-bottom: 40px;
}
.site-footer .footer-bottom .table .table-cell {
	width: 20%;
}
.site-footer .footer-bottom .table .table-cell:nth-of-type(3n+2) {
	width: 60%;
}

/* footer-logo */
.site-footer .footer-logo {
	float: left;
	width: 180px;
}
.site-footer .footer-logo img {
	width: 100%;
	display: block;
}

/* footer-info */
.site-footer .footer-info {
	font-size: 15px;
	line-height: 22px;
}
.site-footer .footer-info ul li {
	display: inline-block;
	vertical-align: top;
}
.site-footer .footer-info ul li {
	display: inline-block;
	vertical-align: top;
	color: #e1e1e1;
}
.site-footer .footer-info ul li:after {
	content: "\00a0\00a0\00a0\00a0|\00a0\00a0\00a0\00a0"
}
.site-footer .footer-info ul li:last-of-type::after {
	display: none;
}
.site-footer .footer-info ul li:last-of-type {
	margin-right: 0px;
}
.site-footer .footer-info ul li a {
	color: #e1e1e1;
}
.site-footer .footer-info ul li a:hover {
	color: #20a0c1;
}

/* social */
.site-footer .social {
	float: right;
}
.site-footer .social ul li {
	display: inline-block;
	vertical-align: top;
	margin-right: 15px;
	margin-bottom: 0px;
}
.site-footer .social ul li:last-of-type {
	margin-right: 0px;
}
.site-footer .social ul li a {
	display: block;
	width: 38px;
	height: 38px;
	background: #d4d5d9;
	border-radius: 50%;
	font-size: 20px;
	line-height: 38px;
	color: #0f1931;
}
.site-footer .social ul li a:hover {
	background: #20a0c1;
}

/* developer */
.site-footer .developer {
	width: 148px;
	height: 37px;
	display: block;
	margin: auto;
}
.site-footer .developer a {
	width: 148px;
	height: 37px;
	display: block;
	background: url('../images/developer-logo.png');
	position: relative;
	text-indent: -9999px;
}
.site-footer .developer a:after {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	background: url('../images/developer-logo-active.png') no-repeat center;
	background-size: 148px 37px;
	content: "";
	display: block;
	-webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.site-footer .developer a:hover::after {
	opacity: 1;
}

/* ----------------------------------- */
/* --------- Desktop styles ---------- */
/* ----------------------------------- */

@media (min-width: 1080px) {

	#page {
		margin: auto!important;
	}

	/* ----------- Visibility ------------ */

	.visible-desktop {
		display: block!important;
	}
	.visible-tablet {
		display: none!important;
	}
	.visible-phone {
		display: none!important;
	}
	.hidden-desktop {
		display: none!important;
	}

}

@media (min-width: 1080px) and (max-width: 1340px) {

	.container {
		width: 1024px;
	}

	.site-header .main-menu ul li a {
	    font-size: 26px;
	    padding: 0 10px;
	}
	.rq-form {
	    margin: 0 20px;
	}
	.rq-form .rq-form-title {
	    font-size: 20px;
	}
	.site-main-sidebar .contact-us {
		font-size: 20px;
		line-height: 20px;
	}

}

/* ----------------------------------- */
/* ------ Mobile Menu styles --------- */
/* ----------------------------------- */

.mobile-menu-wrp {
	position: relative;
}
.mobile-menu-wrp:after {
	content: "";
	clear: both;
	display: block;
}
.mobile-menu {
	display: none;
}

/* mobile-main-menu */
.mobile-menu .mobile-main-menu {
	position: relative;
	padding-bottom: 20px;
}
.mobile-menu .mobile-main-menu ul {
}
.mobile-menu .mobile-main-menu ul li {
	display: block;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: solid 1px #66c1d7;
}
.mobile-menu .mobile-main-menu ul li:last-of-type {
	margin-bottom: 0px;
	border-bottom: none;
}
.mobile-menu .mobile-main-menu ul li a {
	font-family: "alize",serif;
	font-style: normal;
	font-weight: 400;
	display: inline-block;
	vertical-align: middle;
	font-size: 30px;
	line-height: 30px;
	text-transform: uppercase;
	color: #ffffff;
}
.mobile-menu .mobile-main-menu ul li a:hover,
.mobile-menu .mobile-main-menu ul li.current_page_item a,
.mobile-menu .mobile-main-menu ul li.current_page_ancestor a {
	color: #2b3a61;
}
.mobile-menu .mobile-main-menu ul li.current_page_item ul li a,
.mobile-menu .mobile-main-menu ul li.current_page_ancestor ul li a {
	color: #ffffff;
}
.mobile-menu .mobile-main-menu ul li .parent .icon {
	width: 8px;
	height: 15px;
	float: right;
	background: url('../images/show-submenu-icon-mobile.png') no-repeat center;
	background-size: 8px 15px;
	cursor: pointer;
	position: relative;
    -webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	margin-left: 15px;
	margin-right: 15px;
}
.mobile-menu .mobile-main-menu ul li .parent .icon.active {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.mobile-menu .mobile-main-menu ul li li {
	margin-bottom: 5px;
	padding: 0;
	border-bottom: none;
}
.mobile-menu .mobile-main-menu ul li li a {
	color: #ffffff;
	font-size: 18px;
	line-height: 20px;
	text-transform: none;
}
.mobile-menu .mobile-main-menu ul li li a:hover,
.mobile-menu .mobile-main-menu ul li ul li.current_page_item a {
	color: #2b3a61;
}
.mobile-menu .mobile-main-menu ul li .submenu-content {
	display: none;
	position: relative;
}
.mobile-menu .mobile-main-menu ul li .submenu-content .wrp {
	padding: 10px 0;
}
.mobile-menu .mobile-main-menu ul li ul {
	padding: 0px;
}

/* show-mobile-menu */
.show-mobile-menu {
	cursor: pointer;
	height: 46px;
	background: #0097bd;
}
.show-mobile-menu .icon {
	width: 35px;
	height: 17px;
	position: relative;
	margin: auto;
}
.show-mobile-menu .icon:before {
	background: url('../images/show-mobile-menu-icon.png') no-repeat center;
	width: 35px;
	height: 17px;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	-webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
.show-mobile-menu.active .icon:before {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
}
.show-mobile-menu .icon:after {
	background: url('../images/close-mobile-menu-icon.png') no-repeat center;
	width: 35px;
	height: 17px;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	-webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.show-mobile-menu.active .icon:after {
	opacity: 1;
}

/* mobile rq-form */
.mobile-rq-form {
	margin: 0;
	padding: 0;
}
.mobile-rq-form .rq-form-title {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    cursor: pointer;
}
.mobile-rq-form .rq-form-content {
    display: none;
}
.mobile-rq-form .rq-form-content form {
    padding: 30px;
}
.mobile-rq-form .rq-form-title:after {
    display: block;
    border: none;
    width: 78px;
    height: 78px;
    background: url('../images/show-submenu-icon-mobile.png') no-repeat center;
    position: absolute;
    right: 0px;
    top: 0px;
    left: auto;
    -webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
.mobile-rq-form .rq-form-title.active:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.mobile-rq-form .rq-form-title:before {
    display: none;
}

/* ----------------------------------- */
/* --------- Tablets styles ---------- */
/* ----------------------------------- */

@media (min-width: 660px) and (max-width: 1080px) {

	.container {
		width: 100%;
		margin: auto;
		padding: 0 30px;
	}

	/* header */
	.site-header .mobile-contact-us {
	    position: absolute;
	    top: 0px;
	    right: 0px;
	}
	.site-header .mobile-contact-us a {
	    display: block;
	    font-size: 16px;
	    color: #dfc9a6;
	    position: relative;
	    padding-right: 50px;
	    height: 38px;
	    line-height: 38px;
	}
	.site-header .mobile-contact-us a:after {
	    content: "";
	    position: absolute;
	    right: 0px;
	    top: 0px;
	    width: 38px;
	    height: 38px;
	    background: url('../images/mobile-contact-us-icon.png') no-repeat center #a0866c;
	}
	.site-header .mobile-contact-us a:hover {
	    color: #ffffff;
	}
	.site-header .header-top {
	    height: auto;
	}
	.site-header .header-top .container {
	    padding: 78px 0 40px;
	}
	.site-header .logo {
	    padding-top: 0px;
	    width: 300px;
	    margin: auto;
	}

	/* main */
	.site-main-content {
	    float: none;
	    width: auto;
	}
	.rq-form .rq-form-title {
		font-size: 26px;
		line-height: 26px;
		padding: 0 30px;
	}
	.wysiwyg .alignleft {
		max-width: 50%;
	}
	.wysiwyg .alignright {
		max-width: 50%;
	}
	.introduction .introduction-ct {
	    width: auto;
	}
	.wysiwyg .title::before {
	    display: none;
	}
	.wysiwyg .title {
	    border: none;
	    margin-left: -30px;
	    margin-right: -30px;
	    padding-left: 30px;
	    padding-right: 30px;
	}

	/* testimonials */
	.testimonials .slide .container .table {
	    display: block;
	}
	.testimonials .slide .container .table-cell {
	    display: block;
	}
	.testimonials .slide .client {
	    width: auto;
	}

	/* footer */
	.site-footer .footer-description {
	    padding: 30px 0 49px 0;
	}
	.site-footer .footer-bottom {
		padding: 49px 0 30px;
	}
	.site-footer .footer-bottom .table {
	    display: block;
	    margin-bottom: 0px;
	}
	.site-footer .footer-bottom .table-cell {
	    display: block;
	    width: auto!important;
	}
	.site-footer .footer-logo {
	    float: none;
	    margin: auto;
	    margin-bottom: 20px;
	}
	.site-footer .footer-info {
	    margin-bottom: 20px;
	}
	.site-footer .footer-info ul li {
	    display: block;
	}
	.site-footer .footer-info ul li:after {
	    display: none;
	}
	.site-footer .social {
	    float: none;
	    position: absolute;
	    left: 0px;
	    right: 0px;
	    top: -68px;
	}

	/* ----------- Visibility ------------ */

	.visible-desktop {
		display: none!important;
	}
	.visible-tablet {
		display: block!important;
	}
	.hidden-tablet {
		display: none!important;
	}
	.visible-phone {
		display: none!important;
	}

}

/* ----------------------------------- */
/* --------- Phones styles ----------- */
/* ----------------------------------- */

@media (max-width: 659px) {

	.container {
		width: 100%;
		margin: auto;
		padding: 0 20px;
	}

	/* header */
	.site-header .mobile-contact-us {
	    position: absolute;
	    top: 0px;
	    right: 0px;
	}
	.site-header .mobile-contact-us a {
	    display: block;
	    font-size: 16px;
	    color: #dfc9a6;
	    position: relative;
	    padding-right: 50px;
	    height: 38px;
	    line-height: 38px;
	}
	.site-header .mobile-contact-us a:after {
	    content: "";
	    position: absolute;
	    right: 0px;
	    top: 0px;
	    width: 38px;
	    height: 38px;
	    background: url('../images/mobile-contact-us-icon.png') no-repeat center #a0866c;
	}
	.site-header .mobile-contact-us a:hover {
	    color: #ffffff;
	}
	.site-header .header-top {
	    height: auto;
	}
	.site-header .header-top .container {
	    padding: 78px 0 40px;
	}
	.site-header .logo {
	    padding-top: 0px;
	    width: 260px;
	    margin: auto;
	}

	/* main */
	.site-main {
	    padding: 30px 0 60px;
	}
	.site-main-content {
	    float: none;
	    width: auto;
	}
	.rq-form .rq-form-title {
		font-size: 22px;
		line-height: 22px;
		padding: 0 20px;
	}
	.mobile-rq-form .rq-form-content form {
	    padding: 20px;
	}
	.wysiwyg .alignleft {
		float: none;
		margin-left: auto!important;
		margin-right: auto!important;
	}
	.wysiwyg .alignright {
		float: none;
		margin-left: auto!important;
		margin-right: auto!important;
	}
	.wysiwyg .table-holder {
		width: 100%;
		overflow: scroll;
		height: auto;
		position: relative;
		padding-bottom: 7px;
		margin-bottom: 24px;
	}
	.wysiwyg .accordion .item .item-title {
	    width: auto;
	    padding: 0 20px;
	    height: auto;
	    padding-top: 10px;
	    padding-bottom: 10px;
	}
	.wysiwyg .accordion .item .item-title::after {
		display: none;
	}
	.wysiwyg .accordion {
	    margin-left: -20px;
	    margin-right: -20px;
	}
	.wysiwyg .accordion .item .item-content .wrp {
	    padding: 50px 20px 25px;
	}
	.wysiwyg .accordion .item .item-content ul {
	    -moz-columns:1;
		-webkit-columns:1;
		columns:1;
	    -moz-column-gap: 0px;
	    -webkit-column-gap: 0px;
	    column-gap: 0px;
	}
	.wysiwyg .title::before {
	    display: none;
	}
	.wysiwyg .title {
	    border: none;
	    margin-left: -20px;
	    margin-right: -20px;
	    padding-left: 20px;
	    padding-right: 20px;
	}
	.introduction .introduction-ct {
	    width: auto;
	}

	/* testimonials */
	.testimonials .testimonials-title h3 {
	    font-size: 20px;
	    line-height: 20px;
	}
	.testimonials .slide .container .table {
	    display: block;
	}
	.testimonials .slide .container .table-cell {
	    display: block;
	}
	.testimonials .slide .client {
	    width: auto;
	    padding: 0;
	}
	.testimonials .slide .quote {
	    width: auto;
	    padding: 0;
	    margin-bottom: 20px;
	}
	.testimonials .slide {
	    padding: 60px 0 20px 0;
	}

	/* footer */
	.site-footer .footer-description {
	    padding: 30px 0 49px 0;
	}
	.site-footer .footer-bottom {
		padding: 49px 0 30px;
	}
	.site-footer .footer-bottom .table {
	    display: block;
	    margin-bottom: 0px;
	}
	.site-footer .footer-bottom .table-cell {
	    display: block;
	    width: auto!important;
	}
	.site-footer .footer-logo {
	    float: none;
	    margin: auto;
	    margin-bottom: 20px;
	}
	.site-footer .footer-info {
	    margin-bottom: 20px;
	}
	.site-footer .footer-info ul li {
	    display: block;
	}
	.site-footer .footer-info ul li:after {
	    display: none;
	}
	.site-footer .social {
	    float: none;
	    position: absolute;
	    left: 0px;
	    right: 0px;
	    top: -68px;
	}

	#back-to-top {
		background: #2b3a61;
		font-weight: 700;
		padding: 10px;
		text-align: center;
		text-transform: uppercase;
		font-size: 16px;
		color: #ffffff;
		cursor: pointer;
	}
	#back-to-top i {
		font-weight: normal;
		margin-left: 40px;
		color: #ffffff;
	}

	/* ----------- Visibility ------------ */

	.visible-desktop {
		display: none!important;
	}
	.visible-tablet {
		display: none!important;
	}
	.visible-phone {
		display: block!important;
	}
	.hidden-phone {
		display: none!important;
	}

}
