/* Document */
html, body {
	width: 100%;
}
body {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #686873;
}

/* Heading */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Sans Pro', sans-serif;
	color: #40404a;
}
h1 {
    margin: 0 0 30px;
    font-size: 36px;
	font-weight: 400;
    line-height: 1.1;
    color: #e32121;
}
h2 {
    margin: 5px 0 25px;
    font-size: 28px;
    font-weight: 400;
	line-height: 1.2;
}
h3 {
	margin: 5px 0 10px;
	font-size: 20px;
	font-weight: 600;
    line-height: 1.2;
}

/* Paragraph */
p {
	margin: 10px 0 25px;
}

/* Hyperlink */
a {
    color: #3067e4;
	text-decoration: underline;
}
a:hover,
a:focus {
    color: #255ad3;
	text-decoration: none;
}
a [class*="icon-"] ,
a:hover [class*="icon-"] {
    text-decoration: none;
}

/* Address */
address {
	line-height: 1.7;
}

/* List */
ul, ol {
	margin: 0 0 25px;
}

/* Lines */
hr {
	position: relative;
	margin: 40px 0;
	border-top-color: #edf0f1;
}
hr.space-top-small {
	margin-top: 10px;
}
hr.space-bottom-small {
	margin-bottom: 10px;
}
hr.space-top-collapse {
	margin-top: 0;
}
hr.space-bottom-collapse {
	margin-bottom: 0;
}

/* Text color */
.text-primary { color: #0908aa; }
.text-secondary { color: #e32121; }
.text-light { color: #929697; }
.text-dark { color: #424245; }
.text-white { color: #fff; }
.text-danger { color: #e41c33; }
.text-default { color: #5f5f63; }

/* Text size */
.small { font-size: 90%; }
.smaller { font-size: 80%; }
.smallest { font-size: 70%; }
.big { font-size: 110%; }
.bigger { font-size: 120%; }

/* Background color */
.bg-primary { background-color: #0908aa; }
.bg-secondary { background-color: #e32121; }
.bg-dark { background-color: #50505d; }
.bg-default { background-color: #5f5f63; }
.bg-white { background-color: #fff; }
.bg-light { background-color: #e7e7f1; }
.bg-danger { background-color: #e32121 }

/* Link */
.link {
    text-decoration: none;
}
.link > span {
    padding-bottom: 4px;
    border-bottom: 1px solid #d5d9dc;
}
.link:hover > span {
    border-bottom-color: #255ad3;
}
.link [class*="icon-arrow-"] {
    vertical-align: -1px;
}
.link .icon-arrow-long-right,
.link .icon-arrow-right {
    margin-right: -100%;
}

/* Button */
.btn {
	padding: 10px;
    height: 40px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
    line-height: normal;
	border-radius: 2px;
	border: 1px solid transparent;
}
.btn:hover,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
	border-color: transparent;
}
.btn.btn-primary {
	color: #fff;
	background: #e32121;
}
.btn.btn-primary:hover {
    color: #fff;
	background: #f03737;
}
.btn.btn-secondary {
	color: #fff;
	background: #0908aa;
}
.btn.btn-secondary:hover {
    color: #fff;
	background: #1211bf;
}
.btn.btn-white {
    color: #393d3e;
    background-color: #fff;
}
.btn.btn-white:hover {
	color: #119bb6;
    background-color: #fff;
}
.btn [class*="icon-arrow-"] {
	font-size: 14px;
	vertical-align: -1px;
    line-height: 0;
	display: inline-block;
	-webkit-transition: margin .15s ease-in-out;
    -moz-transition: margin .15s ease-in-out;
    -ms-transition: margin .15s ease-in-out;
    transition: margin .15s ease-in-out;
}
.btn:hover [class^="icon-arrow-"][class$="-left"] {
	margin-right: 8px;
}
.btn:hover [class^="icon-arrow-"][class$="-right"] {
	margin-left: 8px;
}

/* Forms */
.control-label,
.form-horizontal .control-label {
	padding-top: 11px;
    padding-bottom: 5px;
	font-size: 14px;
	font-weight: normal;
	text-align: left;
	line-height: normal;
}
.form-control {
	height: 42px;
	padding: 10px 8px;
	color: #696d6e;
	border: 1px solid #dcd7d8;
	border-radius: 2px;
	box-shadow: none;
}
.form-control.noborder {
	border-color: transparent;
}
textarea.form-control {
	height: 160px;
	resize: vertical;
}
.form-control.error {
	border-color: #da4e32;
}
.form-control:focus {
	border-color: #76a6ec;
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}
.form-group {
	margin-bottom: 10px;
}
.form-msg {
	padding-top: 5px;
	font-size: 12px;
	white-space: nowrap;
}
.form-msg ul {
	margin: 0;
	padding: 0;
	list-style-position: inside;
}
.form-msg li {
	line-height: normal;
}
.checkbox-inline,
.radio-inline {
	padding-top: 10px;
}

/* Table */
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    padding: 10px;
    border-color: #eee;
    border-bottom: 1px solid #ebecf1;
}
.table > tbody > tr > th {
    font-weight: 400;
}
.table td:first-child,
.table th:first-child {
    padding-left: 0;
}
.table td:last-child,
.table th:last-child {
    padding-right: 0;
}
.table > thead > tr > th {
    border-bottom-width: 1px;
}

/* Container */
.container,
.container-fluid {
	padding-left: 20px;
	padding-right: 20px;
}

/* Content width */
.content-width-large {
    max-width: 1280px;
}
.content-width-medium {
	max-width: 980px;
}
.content-width-small {
	max-width: 768px;
}

/* Content padding */
.content-padding {
	padding-top: 30px;
	padding-bottom: 30px;
}
.content-padding > h1:last-child,
.content-padding > p:last-child,
.content-padding > ul:last-child,
.content-padding > ol:last-child {
	margin-bottom: 0;
}

/* Content */
.content img[align="left"] {
    margin: 15px 30px 15px 0;
    width: 50%;
    max-width: 50%;
    float: left;
}
.content img[align="right"] {
    margin: 15px 0 15px 30px;
    width: 50%;
    max-width: 50%;
    float: right;
}

/* Spacer */
.spacer {
	height: 30px;
	clear: both;
}
.spacer-large {
	height: 60px;
	clear: both;
}
.spacer-small {
	height: 15px;
	clear: both;
}
.spacer-xsmall {
	height: 5px;
	clear: both;
}

/* Row */
.row {
	margin-left: -20px;
	margin-right: -20px;
}
.row.gutter-small {
	margin-left: -10px;
	margin-right: -10px;
}
.row.gutter-xsmall {
	margin-left: -5px;
	margin-right: -5px;
}
.row.gutter-collapse {
	margin-left: 0;
	margin-right: 0;
}

/* Columns */
.row > [class*="col-"] {
	padding-left: 20px;
	padding-right: 20px;
}
.row.gutter-small > [class*="col-"] {
	padding-left: 10px;
	padding-right: 10px;
}
.row.gutter-xsmall > [class*="col-"] {
	padding-left: 5px;
	padding-right: 5px;
}
.row.gutter-collapse > [class*="col-"] {
	padding-left: 0;
	padding-right: 0;
}

/* Block */
.block {
    padding: 20px;
}

/* Required */
.required {
	margin: 0 -100% 0 3px;
	width: 4px;
	height: 4px;
	text-indent: -1234em;
	vertical-align: 1px;
	border-radius: 50%;
	background-color: #e32121;
	display: inline-block;
}

/* Object fit */
.object-fit-cover {
    object-fit: cover;
}
.object-fit-contain {
    object-fit: contain;
}

/* Fit */
.fit {
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-block;
    overflow: hidden;
}
.fit > [class*="object-fit-"] {
    position: absolute;
	left: -100%;
	right: -100%;
	top: -100%;
	bottom: -100%;
	margin: auto;
}
.fit.landscape > .object-fit-cover {
    width: 100%;
    max-width: 100%;
	height: auto;
    max-height: none;
}
.fit.landscape > .object-fit-contain {
    width: auto;
    max-width: none;
	height: 100%;
	max-height: none;
}
.fit.portrait > .object-fit-cover {
    width: auto;
    max-width: none;
	height: 100%;
	max-height: 100%;
}
.fit.portrait > .object-fit-contain {
    width: 100%;
    max-width: 100%;
	height: auto;
	max-height: none;
}

/* Panel */
.panel {
	position: fixed;
	top: 0;
	left: 0;
    margin-top: -60px;
	width: 100%;
	height: 60px;
	line-height: 60px;
	z-index: 1000;
    -ms-transition: margin .3s;
	-moz-transition: margin .3s;
	-webkit-transition: margin .3s;
	transition: margin .3s;
}
.panel.show {
	margin-top: 0;
}
.panel.show + .panel.show {
	margin-top: 60px;
}
.panel .panel-inner {
	position: relative;
	height: 100%;
}
.panel h1 {
	margin: 0;
	font-size: 18px;
	line-height: 60px;
	white-space: nowrap;
}
.panel .dismiss {
	margin-top: 11px;
    padding-left: 3px;
    padding-right: 3px;
	float: right;
}

/* Date */
.date {
    position: relative;
    top: -20px;
}

/* Social items */
.social-items {
	font-size: 0;
}
.social-items .social {
	margin: 0 1px;
}

/* Social */
.social {
	width: 26px;
	height: 26px;
	font-size: 13px;
	color: #fff;
	line-height: 26px;
	text-align: center;
	border-radius: 50%;
	background-color: #2b0699;
	display: inline-block;
}
.social:hover {
	color: #fff;
	background-color: #ee2a2e;
}

/* Share */
.share {
	margin-right: 5px;
    font-size: 0;
    vertical-align: middle;
    display: inline-block;
}

/* Logo */
.logo {
	position: relative;
    margin-bottom: -10px;
    padding: 18px 5px 0;
    width: 130px;
    height: 70px;
    background-color: #fff;
	display: block;
    float: left;
}
.logo img {
	width: 100%;
    max-width: 100%;
    height: auto;
}

/* Phone */
.phone {
    float: right;
}

/* Nav */
.nav ul {
	margin: 0;
	padding: 0;
}
.nav li {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Menu */
.menu {
    position: relative;
    z-index: 999;
}
.menu ul li {
    position: relative;
}
.menu ul .menu-collapser {
    position: absolute;
    top: 1px;
    right: 0;
    margin: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    color: #595971;
    border: none;
    background-color: transparent;
    outline: none;
    transition: transform .2s ease-in-out;
}
.menu ul li.touch-open > .menu-collapser,
.menu ul li.active > .menu-collapser {
	color: #0908aa;
	transform: rotate(90deg);
}
.menu ul li:hover > .menu-collapser,
.menu ul li.hover > .menu-collapser,
.menu ul li.active > .menu-collapser {
	color: #0908aa;
}
.menu ul a {
	padding: 10px 20px;
	color: #424245;
	line-height: normal;
    text-decoration: none;
	display: block;
}
.menu ul a:hover,
.menu ul li.touch-open > a,
.menu ul li.hover > a,
.menu ul li:hover > a,
.menu ul li.active > a {
	color: #0908aa;
	text-decoration: none;
}
.menu ul ul {
    padding: 20px 0;
    background-color: #0908aa;
    display: none;
}
.menu ul li.touch-open > ul,
.menu ul li.active > ul {
    display: block;
}
.menu ul ul li {
    border-top: 1px solid rgba(255, 255, 255, .15);
}
.menu ul ul li:first-child {
    border-top: none;
}
.menu ul ul .menu-collapser {
    color: #ababe8;
}
.menu ul ul li:hover > .menu-collapser,
.menu ul ul li.hover > .menu-collapser,
.menu ul ul li.touch-open > .menu-collapser,
.menu ul ul li.active > .menu-collapser {
	color: #fff;
}
.menu ul ul a {
    font-size: 14px;
    color: #cfcff1;
}
.menu ul ul a:hover,
.menu ul ul li.touch-open > a,
.menu ul ul li.hover > a,
.menu ul ul li:hover > a,
.menu ul ul li.active > a {
    color: #fff;
	text-decoration: none;
}
.menu ul ul ul {
    background-color: #1e1dbe;
}

/* Menu main */
.menu-main {
	position: fixed;
	top: 0;
	left: 0;
    margin-left: -1234em;
	width: 100%;
	height: 100%;
    transition: margin 0s .6s;
}
.menu-open .menu-main {
    margin-left: 0;
    transition-delay: 0s;
}
.menu-main:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: #000;
	opacity: 0;
	display: block;
	z-index: 1;
	transition: opacity .3s .3s;
}
.menu-open .menu-main:before {
	opacity: .65;
	transition-delay: 0s;
}
.menu-main .menu-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
    overflow-y: auto;
    z-index: 2;
    transform: translate3d(-100%, 0, 0);
    transition: transform .4s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.menu-open .menu-main .menu-container {
    transform: translate3d(0, 0, 0);
}
.menu-main .menu-main-header {
    padding: 10px 20px;
    border-bottom: 1px solid #ececec;
}
.menu-main .menu-main-body {
    padding: 30px 0;
}
.menu-main ul a {
    font-size: 16px;
    color: #595971;
}
.menu-main .menu-toggler {
    margin: 0;
    color: #e32121;
	border-color: #e32121;
}
.menu-main .menu-toggler.btn:hover {
    color: #0908aa;
    border-color: #0908aa;
}
.menu-main .menu-toggler .menu-toggler-symbol span {
    background-color: #e32121;
}
.menu-main .menu-toggler.btn:hover .menu-toggler-symbol span {
    background-color: #0908aa;
}

/* Menu footer */
.menu-footer ul li {
    display: inline-block;
}
.menu-footer ul a {
    padding: 0 5px;
    line-height: inherit;
}

/* Menu certifications */
.menu-certification ul {
    text-align: center;
}
.menu-certification ul li {
    margin: 5px;
    display: inline-block;
}
.menu-certification ul a {
    padding: 0;
    width: 60px;
    display: block;
}

/* Menu sub */
.menu-sub {
    position: relative;
	background-color: #0908aa;
    z-index: 1;
}
.menu-sub .menu-sub-header {
    padding: 20px;
}
.menu-sub .menu-sub-header h2 {
    margin: 0;
    color: #fff;
}
.menu-sub ul {
    padding: 20px 0;
}
.menu-sub ul li {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
    float: none;
}
.menu-sub ul li:first-child {
	border-top: none;
}
.menu-sub ul a {
	padding: 10px 20px;
    font-size: 14px;
	color: #ababe8;
	line-height: normal;
    text-decoration: none;
	display: block;
}
.menu-sub ul li > a:hover,
.menu-sub ul li:hover > a,
.menu-sub ul li.active > a {
    color: #fff;
}
.menu-sub ul li.active > a i.icon-arrow-right {
    display: inline-block;
    -webit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.menu-sub ul ul {
    position: relative;
	margin-bottom: -1px;
	padding: 10px 0;
	background-color: #0aa32a;
	display: none;
}
.menu-sub ul li.active > ul {
	display: block;
}
.menu-sub ul ul a {
	padding: 5px 10px 5px 40px;
	font-size: 13px;
}

/* Menu toggler */
.menu-toggler {
	position: relative;
	color: #fff;
	border-color: #fff;
	background-color: transparent;
	display: block;
	outline: none;
	z-index: 2;
}
.menu-toggler.btn:hover,
.menu-toggler.btn:active,
.menu-toggler.btn:focus {
    color: #d4d4e0;
	box-shadow: none;
	border-color: #6f6f7c;
}
.menu-toggler .menu-toggler-symbol {
	vertical-align: -4px;
	display: inline-block;
}
.menu-toggler .menu-toggler-symbol span {
	margin: 3px auto;
	width: 16px;
	height: 2px;
	text-indent: -1234em;
	background-color: #fff;
	display: block;
	overflow: hidden;
    -webkit-transition: opacity .2s, background-color .2s, -webkit-transform .2s;
	-moz-transition: opacity .2s, background-color .2s, -moz-transform .2s;
	-ms-transition: opacity .2s, background-color .2s, -ms-transform .2s;
	transition: opacity .2s, background-color .2s, transform .2s;
}
.menu-toggler .menu-toggler-symbol span:first-child {
	margin-top: 2px;
}
.menu-open .menu-toggler .menu-toggler-symbol span:first-child {
    -webkit-transform: rotate(45deg) translate(4px, 4px);
    -moz-transform: rotate(45deg) translate(4px, 4px);
    -ms-transform: rotate(45deg) translate(4px, 4px);
	transform: rotate(45deg) translate(4px, 4px);
}
.menu-open .menu-toggler .menu-toggler-symbol span:first-child + span {
	opacity: 0;
}
.menu-open .menu-toggler .menu-toggler-symbol span:last-child {
    -webkit-transform: rotate(-45deg) translate(3px, -3px);
    -moz-transform: rotate(-45deg) translate(3px, -3px);
    -ms-transform: rotate(-45deg) translate(3px, -3px);
	transform: rotate(-45deg) translate(3px, -3px);
}

/* Breadcrumb */
.breadcrumb ul {
	white-space: nowrap;
	overflow: hidden;
	overflow-x: auto;
}
.breadcrumb li {
	height: 50px;
	font-size: 12px;
	color: #686a6c;
	line-height: 50px;
	display: inline-block;
}
.breadcrumb li:before {
	margin-right: 2px;
	font-family: 'icons';
	font-size: 12px;
	color: #949ea5;
    content: '\e800';
	vertical-align: -1px;
	display: inline-block;
}
.breadcrumb li:first-child:before {
	display: none;
}
.breadcrumb a {
	height: 100%;
	color: #949ea5;
	display: inline-block;
}
.breadcrumb a:hover {
	text-decoration: none;
}

/* Visual */
.visual {
    position: relative;
	height: 260px;
    overflow: hidden;
    z-index: 1;
}
.visual.visual-small {
    height: 160px;
}
.visual:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    content: '';
    background-color: #e32121;
    display: block;
    z-index: 2;
}
.visual > .container-fluid {
    height: 100%;
}
.visual .visual-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.visual .visual-image img {
    width: 100%;
    height: 100%;
}
.visual .visual-nav {
	position: absolute;
    bottom: 20px;
	width: 100%;
	font-size: 0;
	text-align: center;
	z-index: 2;
}
.visual .visual-nav a {
    padding-left: 20px;
	width: 100%;
	height: 40px;
	font-weight: 600;
	font-size: 12px;
	line-height: 40px;
	color: #fff;
	text-align: left;
	background-color: #555;
	display: block;
}
.visual .visual-nav a:hover {
	text-decoration: none;
	background-color: #444;
}
.visual .visual-nav li.active a {
	color: #fff;
	background-color: #333;
}
.visual .visual-team {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    display: none;
}

/* Slider */
.slider {
	position: relative;
}
.slider .slider-slides {
	position: relative;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}

/* Slide */
.slide {
	position: relative;
	margin-right: -100%;
	width: 100%;
	height: 100%;
	display: none;
	float: left;
}
.slide:first-child {
	display: block;
}
.slide.slide-overlay:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 90%;
	height: 100%;
	content: '';
    background: -moz-linear-gradient(left, rgba(33,33,38,1) 0%, rgba(33,33,38,0) 100%);
    background: -webkit-linear-gradient(left, rgba(33,33,38,1) 0%,rgba(33,33,38,0) 100%);
    background: linear-gradient(to right, rgba(33,33,38,1) 0%,rgba(33,33,38,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#212126', endColorstr='#00212126',GradientType=1 );
	opacity: .8;
	display: block;
	z-index: 2;
}
.slide .slide-image {
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
	z-index: 1;
}
.slide .slide-info {
	position: relative;
	height: 100%;
    font-size: 0;
	z-index: 3;
	vertical-align: middle;
}
.slide .slide-info:before {
	width: 0;
	height: 100%;
	content: '';
	vertical-align: middle;
	display: inline-block;
}
.slide .slide-content {
	max-width: 100%;
	vertical-align: middle;
	display: inline-block;
}
.slide .slide-info article {
	margin-top: 30px;
    font-family: 'Source Sans Pro', sans-serif;
	font-size: 40px;
	font-weight: 900;
	color: #fff;
	line-height: 0.8;
    text-indent: -0.35em;
    text-transform: uppercase;
	vertical-align: middle;
	display: inline-block;
}
.slide .slide-info article.title:after {
    width: 10px;
    height: 10px;
}
.slide .slide-info .btn {
	margin-top: 20px;
}

/* Album */
.album .album-image {
    position: relative;
    margin-bottom: 10px;
    height: 120px;
    display: block;
}
.album .album-image img {
    width: 100%;
    height: 100%;
}
.album .album-image:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    border: 0 solid #e32121;
    display: block;
    z-index: 1;
    opacity: 0;
    transition: all .15s ease-in-out;
}
.album .album-image:hover:before {
    border-width: 5px;
    opacity: 1;
}

/* Pagination  */
.pagination ul {
	font-size: 0;
	text-align: center;
}
.pagination li {
	padding: 1px;
	display: inline-block;
}
.pagination a {
	height: 40px;
	width: 40px;
	font-size: 12px;
	font-weight: 700;
	color: #686873;
	line-height: 40px;
	text-align: center;
	text-decoration: none;
	border: 1px solid #edf0f1;
	display: block;
}
.pagination a:hover {
	color: #e32121;
	border-color: #e32121;
}
.pagination li.active a {
	color: #fff;
	border-color: #0908aa;
	background-color: #0908aa;
}

/* List */
.list {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}
.list li {
    margin: 0;
    padding: 0;
	line-height: 1.5;
	border-bottom: 1px solid #edf0f1;
}
.list li:first-child {
	border-top: 1px solid #edf0f1;
}
.list .list-section {
    vertical-align: top;
    display: table-cell;
}
.list .list-body {
    width: 10000px;
}
.list time {
    width: 80px;
    display: block;
}

/* Nav list */
.nav-list a {
    padding: 10px 0;
    text-decoration: none;
    display: block;
}
.nav-list li.active > a,
.nav-list a:hover {
    color: #0fab30;
    text-decoration: none;
}

/* News item */
.news-item .news-item-title {
    margin-bottom: 0;
}
.news-item .news-item-title a {
    color: #0908aa;
    text-decoration: none;
}
.news-item .news-item-title a:hover {
    color: #e32121;
}
.news-item .btn {
    margin-top: 20px;
}

/* News archive */
.news-archive .news-archive-title {
    margin-bottom: 0;
    font-size: 18px;
}
.news-archive a:hover .news-archive-title {
    color: #e32121;
}
.news-archive figure {
    margin-right: 10px;
    width: 100px;
    min-height: 60px;
    max-height: 100px;
    vertical-align: top;
    overflow: hidden;
    display: block;
}
.news-archive time {
    width: auto;
}

/* Usp */
.usp li,
.usp li:first-child {
    padding: 5px 0;
    color: #686873;
    border: none;
}

/* Map */
.map {
	width: 100%;
	height: 300px;
}
.map img {
	max-width: none;
	width: auto;
}

/* Route */
.route {
	position: relative;
	z-index: 2;
}
.route .control-label {
	color: #fff;
}
.route .form-control {
	border: none;
}
.route .required {
	background-color: #205f1b;
}

/* Directions panel */
.directions-panel .directions-panel-placeholder {
	line-height: normal;
	display: block;
}
.directions-panel table {
	width: 100%;
}
.directions-panel td {
	padding: 10px;
	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #6f6b60;
	border-top: 1px solid #ececec;
	border-bottom: none;
}
.directions-panel .adp-placemark {
	border: none;
	background-color: transparent;
}
.directions-panel .adp-placemark td {
	font-weight: 600;
	color: #6f6b60;
	border: none;
}
.directions-panel .adp-summary {
	font-weight: 600;
	color: #6f6b60;
}
.directions-panel .adp-legal {
	font-size: 11px;
	color: #a3a8a3;
}
.directions-panel .adp-substep .adp-stepicon {
	top: 3px;
}
.directions-panel img {
	max-width: none;
}

/* VisualMedia */
.vm {
	width: 26px;
    height: 26px;
    display: inline-block;
}

/* Title */
.title:after {
    position: relative;
    left: 6px;
    margin-left: -6px;
    width: 4px;
    height: 4px;
    content: '';
    background-color: #e32121;
    display: inline-block;
}

/* Intro */
.intro {
    font-weight: 300;
}

/* Services */
.services {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Service */
.service a {
    color: #686873;
    text-decoration: none;
}
.service a:hover {
    color: #0908aa;
}
.service h2 {
    margin: 0;
    font-weight: 400;
    color: #0908aa;
}
.service h2:after {
    color: #e32121;
}
.service h2 a {
    color: inherit;
    text-decoration: none;
}
.service h2 a:hover {
    color: #e32121;
}
.service h2 .icon-arrow-long-right {
    font-size: 12px;
    vertical-align: middle;
}

/* Quote */
.quote {
    margin: 0;
    padding: 0;
    text-align: center;
    border: none;
}
.quote .quote-text {
    margin-bottom: 15px;
    font-size: 16px;
}
.quote .quote-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

/* Header */
.header {
    position: relative;
    background-color: #50505d;
    z-index: 2;
}
.header .header-top {
    position: relative;
    height: 60px;
}
.header .header-top .header-btn {
    margin: 10px 0 0 3px;
    padding-left: 5px;
    padding-right: 5px;
}

/* Footer */
.footer {
    position: relative;
    font-size: 11px;
    text-align: center;
    z-index: 1;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {

    /* Container */
	.container,
    .container-fluid {
		padding-left: 30px;
		padding-right: 30px;
	}

	/* Content padding */
	.content-padding {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	/* Row */
	.row {
		margin-left: -30px;
		margin-right: -30px;
	}
	.row.gutter-small {
		margin-left: -20px;
		margin-right: -20px;
	}
	.row.gutter-xsmall {
		margin-left: -10px;
		margin-right: -10px;
	}

	/* Columns */
	.row > [class*="col-"] {
		padding-left: 30px;
		padding-right: 30px;
	}
	.row.gutter-small > [class*="col-"] {
		padding-left: 20px;
		padding-right: 20px;
	}
	.row.gutter-xsmall > [class*="col-"] {
		padding-left: 10px;
		padding-right: 10px;
	}

    /* Logo */
    .logo {
        padding: 15px 20px;
        width: 200px;
    }

	/* Menu main */
    .menu-main .menu-container {
        width: 50%;
    }

	/* Visual */
	.visual {
		height: 340px;
	}
    .visual.visual-small {
        height: 240px;
    }
    .visual .visual-team {
        margin-left: 100px;
        width: 320px;
        display: block;
    }

    /* Slide */
	.slide .slide-content {
		max-width: 60%;
	}
    .slide .slide-info article {
		font-size: 60px;
	}

    /* Map */
    .map {
        height: 350px;
    }

}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {

    /* Heading */
    h1 {
        font-size: 46px;
        font-weight: 300;
    }

    /* Logo */
    .logo {
        margin-bottom: -20px;
        padding-top: 20px;
        width: 230px;
        height: 100px;
    }

    /* Phone */
    .phone {
        position: absolute;
        right: 30px;
        bottom: -50px;
    }

    /* Menu */
    .menu li {
        float: left;
    }
    .menu ul .menu-collapser {
        display: none;
    }
    .menu ul li.touch-open > .menu-collapser,
    .menu ul li.active > .menu-collapser {
        transform: rotate(0deg);
    }
    .menu ul ul {
        position: absolute;
        top: 100%;
        left: 0;
        margin: 0 0 0 -1234em;
        padding: 20px 0;
        width: 200px;
        box-shadow: 0 12px 14px rgba(0, 0, 0, .1);
        display: block;
        z-index: 999;
    }
    .menu li.hover > ul,
    .menu li.touch-open > ul {
        margin-left: 0;
    }
    .menu ul ul li {
        float: none;
    }
    .menu ul ul .menu-collapser {
        display: block;
    }
    .menu ul ul ul {
        top: -20px;
        left: 100%;
    }
    .menu ul ul li.hover > ul,
    .menu ul ul li.touch-open ul {
        margin-left: 0;
    }
    .menu ul ul ul:before {
        display: none;
    }

    /* Menu main */
	.menu-main {
		position: relative;
		margin: 10px 0 0 20px;
        width: auto;
        height: auto;
        float: left;
	}
	.menu-main:before {
        display: none;
    }
	.menu-main .menu-container {
        position: relative;
		margin: 0;
        padding: 0;
		width: 100%;
        background-color: transparent;
        overflow: visible;
        transform: none;
        transition: none;
	}
    .menu-main .menu-main-body {
        padding: 0;
    }
    .menu-main ul a {
        padding: 0 8px;
        height: 60px;
        font-size: 14px;
        font-weight: 600;
        line-height: 60px;
        color: #d4d4e0;
    }
    .menu-main ul a:hover,
    .menu-main ul li:hover > a {
        color: #fff;
    }
    .menu-main ul li.hover > a {
        color: #fff;
        background-color: #0908aa;
    }
    .menu-main ul li.active > a {
        color: #fff;
        background-color: #e32121;
    }
    .menu-main ul ul a {
        padding: 12px 10px;
        height: auto;
        font-weight: 400;
        line-height: normal;
    }
    .menu-main ul ul li.active > a {
        background-color: transparent;
    }
	.menu-main ul ul ul {
		margin-top: 0;
	}

    /* Menu footer */
    .menu-footer {
        margin-left: 20px;
        float: left;
    }

    /* Menu certifications */
    .menu-certification {
        margin: -36px 0 0 20px;
        float: left;
    }
    .menu-certification ul a {
        width: 80px;
    }

    /* Breadcrumb */
    .novisual .breadcrumb li {
        height: 100px;
        line-height: 100px;
    }

    /* Visual */
	.visual {
		height: 420px;
	}
    .visual.visual-small {
        height: 320px;
    }
    .visual .visual-team {
        margin-left: 120px;
        width: 410px;
    }

    /* Slide */
	.slide .slide-content {
		margin-top: 50px;
		max-width: 70%;
	}
    .slide .slide-info article {
		font-size: 80px;
	}

    /* Service */
    .service h2 {
        margin-bottom: 10px;
    }

    /* Map */
    .map {
        height: 400px;
    }

    /* VisualMedia */
    .vm {
        margin-top: 5px;
        width: 26px;
        height: 26px;
        float: right;
    }

    /* Header */
    .header .header-top {
        height: 80px;
    }
    .header .header-top .header-btn {
        margin-top: 20px;
    }

    /* Footer */
    .footer {
        text-align: left;
    }
    .footer .footer-copy {
        float: left;
    }

}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    /* Container */
	.container,
    .container-fluid {
		padding-left: 40px;
		padding-right: 40px;
	}

	/* Row */
	.row {
		margin-left: -40px;
		margin-right: -40px;
	}

	/* Columns */
	.row > [class*="col-"] {
		padding-left: 40px;
		padding-right: 40px;
	}

    /* Logo */
    .logo {
        padding-top: 25px;
        width: 260px;
        height: 120px;
    }

    /* Menu main */
    .menu-main {
        margin: 20px 0 0 40px;
    }
    .menu-main ul a {
        padding: 0 10px;
        font-size: 17px;
    }

    /* Visual */
	.visual {
		height: 500px;
	}
    .visual .visual-team {
        margin-left: 140px;
        width: 480px;
    }

    /* Map */
    .map {
        height: 400px;
    }

    /* Header */
    .header .header-top {
        height: 100px;
    }
    .header .header-top .header-btn {
        margin-top: 40px;
    }

}

.holidays {
    position: fixed;
    bottom: 15px;
    width: 100%;
    z-index: 999;
}
.holiday-content {
    padding: 15px 0;
    background-color: #50505d;
    color: #fff;
    text-align: center;
}