/**
 * [Table of contents]
 *   1 Base
 *     1.1 Reset Styles
 *     1.2 Context Styles
 *     1.3 Page layout
 *     1.4 Offsets
 *   2 Utilities
 *     2.1 Text styling
 *     2.2 Row spacing
 *     2.3 Sections
 *     2.4 Grid modules
 *     2.5 Backgrounds
 *     2.6 Utilities custom
 *   3 Components
 *     3.1 Typography
 *     3.2 Brand
 *     3.3 Links
 *     3.4 Boxes
 *     3.5 Groups
 *     3.6 Responsive units
 *     3.7 Lists
 *     3.8 Images
 *     3.9 Icons
 *     3.10 Buttons
 *     3.11 Forms
 *     3.12 Snackbars
 *     3.13 Footers
 *   4 Plugins
 *     4.1 Animate
 *     4.2 Preloader
 *     4.3 ToTop
 *     4.4 Google Map
 *     4.5 Material Parallax
 */
/** @group Base */
/** @section Reset Styles */
a:focus,
button:focus {
	outline: none !important;
}

button::-moz-focus-inner {
	border: 0;
}

*:focus {
	outline: none;
}

blockquote {
	padding: 0;
	margin: 0;
}

input,
button,
select,
textarea {
	outline: none;
}

label {
	margin-bottom: 0;
}

p {
	margin: 0;
}

ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul li,
ol li {
	display: block;
}

dl {
	margin: 0;
}

dt,
dd {
	line-height: inherit;
}

dt {
	font-weight: inherit;
}

dd {
	margin-bottom: 0;
}

cite {
	font-style: normal;
}

form {
	margin-bottom: 0;
}

address {
	margin-top: 0;
	margin-bottom: 0;
}

figure {
	margin-bottom: 0;
}

html p a:hover {
	text-decoration: none;
}

/** @section Context Styles */
.context-dark, .bg-gray-700, .bg-primary, .bg-gray-600,
.context-dark h1,
.bg-gray-700 h1,
.bg-primary h1,
.bg-gray-600 h1, .context-dark h2, .bg-gray-700 h2, .bg-primary h2, .bg-gray-600 h2, .context-dark h3, .bg-gray-700 h3, .bg-primary h3, .bg-gray-600 h3, .context-dark h4, .bg-gray-700 h4, .bg-primary h4, .bg-gray-600 h4, .context-dark h5, .bg-gray-700 h5, .bg-primary h5, .bg-gray-600 h5, .context-dark h6, .bg-gray-700 h6, .bg-primary h6, .bg-gray-600 h6, .context-dark [class^='heading-'], .bg-gray-700 [class^='heading-'], .bg-primary [class^='heading-'], .bg-gray-600 [class^='heading-'] {
}

/** @section Page layout */
.page {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	opacity: 0;
}

.page.fadeIn {
	animation-timing-function: ease-out;
}

.page.fadeOut {
	animation-timing-function: ease-in;
}

[data-x-mode] .page {
	opacity: 1;
}

html.boxed body {
	background: #edeff4 url(../images/bg-pattern-boxed.png) repeat fixed;
}

@media (min-width: 1630px) {
	html.boxed .page {
		max-width: 1600px;
		margin-left: auto;
		margin-right: auto;
		box-shadow: 0 0 23px 0 rgba(1, 1, 1, 0.1);
	}
	html.boxed .rd-navbar-static {
		max-width: 1600px;
		margin-left: auto;
		margin-right: auto;
	}
	html.boxed .rd-navbar-static.rd-navbar--is-stuck {
		max-width: 1600px;
		width: 100%;
		left: calc(50% - 1600px);
		right: calc(50% - 1600px);
	}
}

.page-header {
	z-index: 1;
	position: relative;
	background-color: #1e497d;
}

.page-header-brand {
    position: relative;
    padding: 40px 70px;
    text-align: center;
    color: #ffffff;
    background-color: #FFFFFF;
}

.ie-10 .page-header-brand svg,
.ie-11 .page-header-brand svg {
	width: 510px;
	height: 62px;
}

@media (min-width: 768px) {
	.ie-10 .page-header-brand svg,
	.ie-11 .page-header-brand svg {
		width: 690px;
		height: 83px;
	}
}

@media (min-width: 992px) {
	.ie-10 .page-header-brand svg,
	.ie-11 .page-header-brand svg {
		width: 930px;
		height: 112px;
	}
}

@media (min-width: 1200px) {
	.ie-10 .page-header-brand svg,
	.ie-11 .page-header-brand svg {
		width: 1170px;
		height: 142px;
	}
}

html:not(.ie-11):not(.ie-10) .page-header-brand svg {
	width: 100%;
	height: auto;
}

.page-header-brand svg {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin-top: -1px;
}

.page-header-brand svg path {
	fill: #ffffff;
}

@media (min-width: 1200px) {
	.page-header-brand {
		padding: 80px 100px 43px;
	}
}

/** @section Offsets */
* + p {
	margin-top: 15px;
}

p + p {
	margin-top: 12px;
}

figure + p {
	margin-top: 5px;
}

img + p {
	margin-top: 15px;
}

h2 + p,
.heading-2 + p {
	margin-top: 12px;
}

p + h2,
p + .heading-2 {
	margin-top: 15px;
}

h3 + h5 {
	margin-top: 10px;
}

h3 + figure {
	margin-top: 20px;
}

h3 + img {
	margin-top: 42px;
}

* + .row {
	margin-top: 30px;
}

* + .big {
	margin-top: 20px;
}

* + .text-block {
	margin-top: 30px;
}

* + .button {
	margin-top: 30px;
}

.row + h3,
.row + .heading-3 {
	margin-top: 80px;
}

.container + .container {
	margin-top: 35px;
}

.row + .row {
	margin-top: 35px;
}

@media (min-width: 1200px) {
	* + .rd-form {
		margin-top: 30px;
	}
	.container + .container {
		margin-top: 60px;
	}
	.row + .row {
		margin-top: 60px;
	}
}

/** @group Utilities */
/** @section Text styling */
.text-italic {
	font-style: italic;
}

.text-normal {
	font-style: normal;
}

.text-underline {
	text-decoration: underline;
}

.text-strike {
	text-decoration: line-through;
}

.font-weight-thin {
	font-weight: 100;
}

.font-weight-light {
	font-weight: 300;
}

.font-weight-regular {
	font-weight: 400;
}

.font-weight-medium {
	font-weight: 500;
}

.font-weight-sbold {
	font-weight: 600;
}

.font-weight-bold {
	font-weight: 700;
}

.font-weight-ubold {
	font-weight: 900;
}

.text-spacing-0 {
	letter-spacing: 0;
}

.text-primary {
	color: #858585 !important;
}

.text-gray-600 {
	color: #1e497d;
}

/** @section Row spacing */
.row-0 {
	margin-bottom: 0px;
}

.row-0:empty {
	margin-bottom: 0;
}

.row-0 > * {
	margin-bottom: 0px;
}

.row-15 {
	margin-bottom: -15px;
}

.row-15:empty {
	margin-bottom: 0;
}

.row-15 > * {
	margin-bottom: 15px;
}

.row-20 {
	margin-bottom: -20px;
}

.row-20:empty {
	margin-bottom: 0;
}

.row-20 > * {
    margin-bottom: 20px;
    text-align: left;
}

.row-30 {
	margin-bottom: -30px;
}

.row-30:empty {
	margin-bottom: 0;
}

.row-30 > * {
	margin-bottom: 30px;
}

.row-50 {
	margin-bottom: -50px;
}

.row-50:empty {
	margin-bottom: 0;
}

.row-50 > * {
	margin-bottom: 50px;
}

@media (min-width: 992px) {
	.row-lg-30 {
		margin-bottom: -30px;
	}
	.row-lg-30:empty {
		margin-bottom: 0;
	}
	.row-lg-30 > * {
		margin-bottom: 30px;
	}
	.row-lg-40 {
		margin-bottom: -50px;
	}
	.row-lg-40:empty {
		margin-bottom: 0;
	}
	.row-lg-40 > * {
		margin-bottom: 50px;
	}
}

@media (min-width: 1200px) {
	.row-xl-120 {
		margin-bottom: -120px;
	}
	.row-xl-120:empty {
		margin-bottom: 0;
	}
	.row-xl-120 > * {
		margin-bottom: 120px;
	}
}

/** @section Sections */
.section-xs {
	padding-top: 25px;
	padding-bottom: 25px;
}

.section-sm,
.section-md,
.section-xl {
	padding-top: 50px;
	padding-bottom: 50px;
}

.section-lg {
	padding-top: 60px;
	padding-bottom: 60px;
}

.section-xl {
	padding-top: 75px;
	padding-bottom: 75px;
}

.section-xxl {
	padding-top: 90px;
	padding-bottom: 90px;
}

.section-collapse + .section-collapse {
	padding-top: 0;
}

.section-collapse:last-child {
	padding-bottom: 0;
}

html [class*='section-'].section-bottom-0 {
	padding-bottom: 0;
}

@media (max-width: 991.98px) {
	section.section-sm:first-of-type,
	section.section-md:first-of-type,
	section.section-lg:first-of-type,
	section.section-xl:first-of-type,
	section.section-xxl:first-of-type {
		padding-top: 40px;
	}
}

@media (min-width: 768px) {
	.section-lg {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.section-xl {
		padding-top: 90px;
		padding-bottom: 90px;
	}
	.section-xxl {
		padding-top: 120px;
		padding-bottom: 80px;
	}
}

@media (min-width: 992px) {
	.section-lg {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.section-xl {
		padding-top: 110px;
		padding-bottom: 110px;
	}
	.section-xxl {
		padding-top: 165px;
		padding-bottom: 110px;
	}
}

@media (min-width: 1200px) {
	.section-lg {
		padding-top: 115px;
		padding-bottom: 115px;
	}
	.section-xl {
		padding-top: 160px;
		padding-bottom: 160px;
	}
	.section-xxl {
		padding-top: 256px;
		padding-bottom: 147px;
	}
}

.section-single {
	display: flex;
	text-align: center;
}

.section-single p {
	margin-left: auto;
	margin-right: auto;
}

.section-single * + .rights {
	margin-top: 35px;
}

@media (min-width: 992px) {
	.section-single * + .rights {
		margin-top: 60px;
	}
}

.section-single .rd-mailform-wrap {
	max-width: 670px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-single * + .rd-mailform-wrap {
	margin-top: 20px;
}

.section-single-header {
	padding: calc(1em + 3vh) 0 calc(1em + 2vh);
}

.section-single-main {
	padding: calc(1em + 4vh) 0;
}

.section-single-footer {
	padding: calc(1em + 2vh) 0 calc(1em + 3vh);
}

.section-single-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 100vh;
}

.section-single-inner > * {
	width: 100%;
}

/** @section Grid modules */
.grid-demo {
	letter-spacing: 0;
	text-align: center;
}

.grid-demo p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.grid-demo * + p {
	margin-top: 5px;
}

.grid-demo * + .row {
	margin-top: 20px;
}

.grid-demo .row + .row {
	margin-top: 0;
}

@media (min-width: 1200px) {
	.grid-demo {
		text-align: left;
	}
	.grid-demo p {
		white-space: normal;
		overflow: visible;
		text-overflow: unset;
	}
	.grid-demo * + p {
		margin-top: 25px;
	}
}

.grid-demo-bordered .row {
	border: 0 solid #deebf7;
	border-top-width: 1px;
}

.grid-demo-bordered .row:last-child {
	border-bottom-width: 1px;
}

.grid-demo-bordered [class*='col'] {
	padding: 5px 15px;
}

.grid-demo-bordered [class*='col']:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1px;
	border-left: 1px solid #deebf7;
}

@media (min-width: 768px) {
	.grid-demo-bordered [class*='col'] {
		padding: 30px;
	}
}

@media (min-width: 1200px) {
	.grid-demo-bordered [class*='col'] {
		padding: 50px 50px 45px;
	}
}

.grid-demo-underlined .row {
	border-bottom: 1px solid #deebf7;
}

.grid-demo-underlined [class*='col'] {
	padding: 5px 15px;
}

@media (min-width: 768px) {
	.grid-demo-underlined [class*='col'] {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

@media (min-width: 1200px) {
	.grid-demo-underlined [class*='col'] {
		padding-top: 45px;
		padding-bottom: 45px;
	}
}

.row-narrow {
	margin-left: -10px;
	margin-right: -10px;
}

.row-narrow > [class*='col'] {
	padding-left: 10px;
	padding-right: 10px;
}

/** @section Backgrounds */
.context-dark .brand .brand-logo-dark, .bg-gray-700 .brand .brand-logo-dark, .bg-primary .brand .brand-logo-dark, .bg-gray-600 .brand .brand-logo-dark {
	display: none;
}

.context-dark .brand .brand-logo-light, .bg-gray-700 .brand .brand-logo-light, .bg-primary .brand .brand-logo-light, .bg-gray-600 .brand .brand-logo-light {
	display: block;
}

.bg-default {
	background-color: #ffffff;
}

.bg-default:not([style*="background-"]) + .bg-default:not([style*="background-"]) {
	padding-top: 0;
}

.bg-gray-100 {
	background-color: #deebf7;
}

.bg-gray-100:not([style*="background-"]) + .bg-gray-100:not([style*="background-"]) {
	padding-top: 0;
}

.bg-gray-700 {
	background-color: #5d6166;
}

.bg-gray-700:not([style*="background-"]) + .bg-gray-700:not([style*="background-"]) {
	padding-top: 0;
}

.bg-primary {
	background-color: #deebf7;
}

.bg-primary + .bg-primary {
	padding-top: 0;
}

.bg-primary .text-gray-600,
.bg-primary h5.text-gray-600 {
    color: #858585;
    text-align: left;
}

.bg-primary a.heading-4, .bg-primary a.heading-4:focus, .bg-primary a.heading-4:active {
	color: #ffffff;
}

.bg-primary a.heading-4:hover {
	color: #858585;
}

.bg-gray-600 {
	background-color: #deebf7;
}

.bg-gray-600:not([style*="background-"]) + .bg-gray-600:not([style*="background-"]) {
	padding-top: 0;
}

.bg-image {
	background-size: cover;
	background-position: center;
}

@media (min-width: 992px) {
	html:not(.tablet):not(.mobile) .bg-fixed {
		background-attachment: fixed;
	}
}

/** @section Utilities custom */
.height-fill {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.height-fill > * {
	flex-grow: 1;
	flex-shrink: 0;
}

.object-inline {
	white-space: nowrap;
}

.object-inline > * {
	display: inline-block;
	min-width: 20px;
	vertical-align: top;
	white-space: normal;
}

.object-inline > * + * {
	margin-left: 5px;
}

.oh {
	position: relative;
	overflow: hidden;
}

.text-decoration-lines {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.text-decoration-lines-content {
	position: relative;
	display: inline-block;
	min-width: 170px;
	font-size: 13px;
	text-transform: uppercase;
}

.text-decoration-lines-content::before, .text-decoration-lines-content::after {
	content: '';
	position: absolute;
	height: 1px;
	background: #deebf7;
	top: 50%;
	width: 100vw;
}

.text-decoration-lines-content::before {
	left: 0;
	transform: translate3d(-100%, 0, 0);
}

.text-decoration-lines-content::after {
	right: 0;
	transform: translate3d(100%, 0, 0);
}

* + .text-decoration-lines {
	margin-top: 30px;
}

[style*='z-index: 1000;'] {
	z-index: 1101 !important;
}

.text-block > * {
	margin-left: .125em;
	margin-right: .125em;
}

.privacy-link {
	display: inline-block;
}

* + .privacy-link {
	margin-top: 30px;
}

/** @group Components */
/** @section Typography */
body {
	font-size: 14px;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: subpixel-antialiased;
}

h1, h2, h3, h4, h5, h6, [class^='heading-'] {
	margin-bottom: 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, [class^='heading-'] a {
	color: inherit;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, [class^='heading-'] a:hover {
	color: #858585;
}

h1,
.heading-1 {
	font-size: 40px;
}

@media (min-width: 1200px) {
	h1,
	.heading-1 {
		font-size: 90px;
		line-height: 1.2;
	}
}

h2,
.heading-2 {
	font-size: 40px;
	line-height: 1.2;
}

@media (min-width: 576px) {
	h2,
	.heading-2 {
		font-size: 45px;
	}
}

@media (min-width: 992px) {
	h2,
	.heading-2 {
		font-size: 55px;
	}
}

@media (min-width: 1200px) {
	h2,
	.heading-2 {
		font-size: 80px;
	}
}

h3,
.heading-3 {
	font-size: 35px;
	line-height: 65px;
}

@media (min-width: 576px) {
	h3,
	.heading-3 {
		font-size: 40px;
	}
}

@media (min-width: 992px) {
	h3,
	.heading-3 {
		font-size: 50px;
	}
}

@media (min-width: 1200px) {
	h3,
	.heading-3 {
		font-size: 60px;
	}
}

h4,
.heading-4 {
	font-size: 30px;
	line-height: 1.5;
}

@media (min-width: 576px) {
	h4,
	.heading-4 {
		font-size: 35px;
	}
}

@media (min-width: 992px) {
	h4,
	.heading-4 {
		font-size: 50px;
	}
}

a.heading-4 {
	font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 300;
}

h5,
.heading-5 {
	font-size: 24px;
	line-height: 1.5;
}

* + h5 {
	margin-top: 15px;
}

@media (min-width: 576px) {
	* + h5 {
		margin-top: 20px;
	}
}

@media (min-width: 992px) {
	* + h5 {
		margin-top: 30px;
	}
}

h6,
.heading-6 {
	font-size: 16px;
	line-height: 1.5;
}

small,
.small {
	display: block;
	font-size: 12px;
	line-height: 1.5;
}

mark,
.mark {
	padding: 3px 5px;
	color: #ffffff;
	background: #1e497d;
}

.big {
	font-size: 18px;
	line-height: 1.55556;
}

.lead {
	font-size: 24px;
	line-height: 34px;
	font-weight: 300;
}

code {
	padding: 3px 5px;
	border-radius: 0.2rem;
	font-size: 90%;
	color: #111111;
	background: #edeff4;
}

p [data-toggle='tooltip'] {
	padding-left: .25em;
	padding-right: .25em;
	color: #1e497d;
}

p [style*='max-width'] {
	display: inline-block;
}

::selection {
	background: #1e497d;
	color: #ffffff;
}

::-moz-selection {
	background: #1e497d;
	color: #ffffff;
}

/** @section Brand */
.brand {
	display: inline-block;
}

.brand .brand-logo-light {
	display: none;
}

.brand .brand-logo-dark {
	display: block;
}

/** @section Links */
a {
	transition: all 0.3s ease-in-out;
}

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

a, a:focus, a:active {
	color: #1e497d;
}

a:hover {
	color: #1e497d;
}

a[href*='tel'], a[href*='mailto'] {
	white-space: nowrap;
}

.link-hover {
	color: #1e497d;
}

.link-press {
	color: #1e497d;
}

/** @section Boxes */
.box-minimal {
	text-align: center;
}

.box-minimal .box-minimal-icon {
	font-size: 50px;
	line-height: 50px;
	color: #1e497d;
}

.box-minimal-divider {
	width: 36px;
	height: 4px;
	margin-left: auto;
	margin-right: auto;
	background: #1e497d;
}

.box-minimal-text {
	width: 100%;
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
}

* + .box-minimal {
	margin-top: 30px;
}

* + .box-minimal-title {
	margin-top: 10px;
}

* + .box-minimal-divider {
	margin-top: 20px;
}

* + .box-minimal-text {
	margin-top: 15px;
}

.context-dark .box-minimal p, .bg-gray-700 .box-minimal p, .bg-primary .box-minimal p, .bg-gray-600 .box-minimal p {
	color: #c8c8c8;
}

.box-promo {
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
}

.box-promo .rd-mailform {
	max-width: 442px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.box-promo .form-button {
	text-align: center;
}

.box-service {
	max-width: 370px;
	margin-left: auto;
	margin-right: auto;
}

.box-service-body {
	padding: 30px 20px;
	background-color: #ffffff;
}

.box-service-sub-title {
	color: #1e497d;
}

.box-service-link {
	position: relative;
	display: inline-block;
}

.box-service-link:hover .box-service-link-svg {
	fill: #858585;
}

.box-service-link .box-service-link-icon {
	font-size: 25px;
}

.box-service-link-icon {
	color: #ffffff;
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.box-service-link-svg {
	fill: #1e497d;
	transition: .3s ease-out all;
}

html:not(.ie-11):not(.ie-10) .box-service-link-svg {
	width: 100%;
	height: auto;
}

[class*='ie-'] .box-service-link-svg {
	width: 370px;
	height: 118px;
}

* + .box-service-sub-title {
	margin-top: 25px;
}

@media (min-width: 576px) {
	.box-service {
		max-width: 370px;
	}
	.box-service-link .box-service-link-icon {
		font-size: 30px;
	}
}

@media (min-width: 992px) {
	.box-service-body {
		padding: 54px 50px 80px;
	}
	* + .box-service-sub-title {
		margin-top: 40px;
	}
}

.box-info {
	max-width: 370px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.box-info-title {
	line-height: 1.08;
}

.box-info-icon .icon {
	color: #1e497d;
}

.box-info-link {
	position: relative;
	display: inline-block;
}

.box-info-link .icon {
	position: absolute;
	top: 40%;
	left: 50%;
	font-size: 25px;
	transform: translate(-50%, -50%);
	color: #ffffff;
}

.box-info-link:hover .box-info-link-svg {
	fill: #858585;
}

.box-info-link-svg {
	width: 80px;
	height: 76px;
	fill: #1e497d;
	transition: .3s ease-out all;
}

* + .box-info-title {
	margin-top: 10px;
}

* + .box-info-link {
	margin-top: 17px;
}

@media (min-width: 992px) {
	.box-info-link .icon {
		font-size: 30px;
	}
	.box-info-link-svg {
		width: 103px;
		height: 98px;
	}
	* + .box-info-link {
		margin-top: 18px;
	}
}

@media (min-width: 1200px) {
	* + .box-info-title {
		margin-top: 60px;
	}
	* + .box-info-text {
		margin-top: 30px;
	}
	* + .box-info-link {
		margin-top: 80px;
	}
}

/** @section Groups */
html .group {
	margin-bottom: -20px;
	margin-left: -15px;
}

html .group:empty {
	margin-bottom: 0;
	margin-left: 0;
}

html .group > * {
	margin-top: 0;
	margin-bottom: 20px;
	margin-left: 15px;
}

html .group-sm {
	margin-bottom: -10px;
	margin-left: -10px;
}

html .group-sm:empty {
	margin-bottom: 0;
	margin-left: 0;
}

html .group-sm > * {
	margin-top: 0;
	margin-bottom: 10px;
	margin-left: 10px;
}

html .group-xl {
	margin-bottom: -20px;
	margin-left: -30px;
}

html .group-xl:empty {
	margin-bottom: 0;
	margin-left: 0;
}

html .group-xl > * {
	margin-top: 0;
	margin-bottom: 20px;
	margin-left: 30px;
}

@media (min-width: 992px) {
	html .group-xl {
		margin-bottom: -20px;
		margin-left: -45px;
	}
	html .group-xl > * {
		margin-bottom: 20px;
		margin-left: 45px;
	}
}

html .group-custom {
	display: flex;
	flex-flow: wrap column;
	max-width: 100%;
	margin-bottom: -10px;
}

html .group-custom > * {
	flex-grow: 1;
	width: 100%;
	margin-top: 0;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

@media (min-width: 576px) {
	html .group-custom {
		flex-flow: row nowrap;
		align-items: center;
	}
	html .group-custom > * {
		margin-right: 10px;
	}
	html .group-custom > *:last-child {
		margin-right: 0;
	}
}

* + .group-custom {
	margin-top: 30px;
}

* + .group {
	margin-top: 30px;
}

* + .group-sm {
	margin-top: 30px;
}

* + .group-xl {
	margin-top: 20px;
}

/** @section Responsive units */
.unit {
	display: flex;
	flex: 0 1 100%;
	margin-bottom: -30px;
	margin-left: -20px;
}

.unit > * {
	margin-bottom: 30px;
	margin-left: 20px;
}

.unit:empty {
	margin-bottom: 0;
	margin-left: 0;
}

.unit-body {
	flex: 0 1 auto;
}

.unit-left,
.unit-right {
	flex: 0 0 auto;
	max-width: 100%;
}

.unit-spacing-xs {
	margin-bottom: -15px;
	margin-left: -7px;
}

.unit-spacing-xs > * {
	margin-bottom: 15px;
	margin-left: 7px;
}

@media (min-width: 576px) {
	.unit-xl {
		margin-bottom: -20px;
		margin-left: -40px;
	}
	.unit-xl > * {
		margin-bottom: 20px;
		margin-left: 40px;
	}
}

@media (min-width: 992px) {
	.unit-xl {
		margin-bottom: -20px;
		margin-left: -80px;
	}
	.unit-xl > * {
    margin-bottom: 20px;
    margin-left: 80px;
    text-align: left;
    color: #858585;
	}
}

/** @section Lists */
.list > li + li {
	margin-top: 10px;
}

.list-xs > li + li {
	margin-top: 5px;
}

.list-sm > li + li {
	margin-top: 10px;
}

.list-md > li + li {
	margin-top: 18px;
}

.list-lg > li + li {
	margin-top: 25px;
}

.list-xl > li + li {
	margin-top: 30px;
}

@media (min-width: 768px) {
	.list-xl > li + li {
		margin-top: 60px;
	}
}

.list-inline > li {
	display: inline-block;
}

.list-inline-md {
	transform: translate3d(0, -10px, 0);
	margin-bottom: -10px;
	margin-left: -9px;
	margin-right: -9px;
}

.list-inline-md > * {
	margin-top: 10px;
	padding-left: 9px;
	padding-right: 9px;
}

* + .list-inline {
	margin-top: 30px;
}

.list-terms dt + dd {
	margin-top: 5px;
}

.list-terms dd + dt {
	margin-top: 25px;
}

* + .list-terms {
	margin-top: 25px;
}

.index-list {
	counter-reset: li;
}

.index-list > li .list-index-counter {
	font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 50px;
	line-height: 1.2;
	font-weight: 300;
	color: #858585;
}

.index-list > li .list-index-counter:before {
	content: counter(li, upper-alpha);
	counter-increment: li;
}

.index-list-title {
	color: #1e497d;
}

.index-list-sub-title {
	max-width: 410px;
	text-transform: uppercase;
}

.index-list-link {
	position: relative;
	display: inline-block;
}

.index-list-link .icon {
	position: absolute;
	top: 40%;
	left: 50%;
	font-size: 25px;
	transform: translate(-50%, -50%);
	color: #ffffff;
}

.index-list-link:hover .index-list-link-svg {
	fill: #858585;
}

.index-list-link-svg {
	width: 80px;
	height: 76px;
	fill: #1e497d;
	transition: .3s ease-out all;
}

* + .index-list-title {
	margin-top: 8px;
}

* + .index-list-sub-title {
	margin-top: 13px;
}

* + .index-list-link {
	margin-top: 17px;
}

@media (min-width: 992px) {
	.index-list > li .list-index-counter {
		font-size: 80px;
	}
	.index-list-link .icon {
		font-size: 30px;
	}
	.index-list-link-svg {
		width: 103px;
		height: 98px;
	}
	* + .index-list-title {
		margin-top: 10px;
	}
	* + .index-list-sub-title {
		margin-top: 20px;
	}
	* + .index-list-link {
		margin-top: 18px;
	}
}

@media (min-width: 1200px) {
	.index-list > li .list-index-counter {
		font-size: 100px;
	}
	* + .index-list-title {
		margin-top: 30px;
	}
	* + .index-list-sub-title {
		margin-top: 38px;
	}
	* + .index-list-link {
		margin-top: 60px;
	}
}

.list-marked {
	text-align: left;
}

.list-marked > li {
	position: relative;
	padding-left: 25px;
}

.list-marked > li::before {
	position: absolute;
	display: inline-block;
	left: 0;
	top: 1px;
	min-width: 25px;
	content: '\f105';
	font: 400 14px/24px 'FontAwesome';
	color: #858585;
}

.list-marked > li + li {
	margin-top: 4px;
}

* + .list-marked {
	margin-top: 15px;
}

p + .list-marked {
	margin-top: 10px;
}

.list-ordered {
	counter-reset: li;
	text-align: left;
}

.list-ordered > li {
	position: relative;
	padding-left: 25px;
}

.list-ordered > li:before {
	position: absolute;
	content: counter(li, decimal) ".";
	counter-increment: li;
	top: 0;
	left: 0;
	display: inline-block;
	width: 15px;
	color: #b7b7b7;
}

.list-ordered > li + li {
	margin-top: 10px;
}

* + .list-ordered {
	margin-top: 15px;
}

/** @section Images */
img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.img-responsive {
	width: 100%;
}

/** @section Icons */
.icon {
	display: inline-block;
	font-size: 18px;
	line-height: 1;
}

.icon::before {
	position: relative;
	display: inline-block;
	font-weight: 400;
	font-style: normal;
	speak: none;
	text-transform: none;
}

.icon-default {
	color: #858585;
}

.icon-primary {
	color: #1e497d;
}

.icon-circle {
	border-radius: 50%;
}

.icon-xs {
	font-size: 14px;
}

.icon-sm {
	font-size: 16px;
}

.icon-md {
	font-size: 25px;
}

.icon-lg {
	font-size: 60px;
	line-height: 1;
}

.icon-xl {
	font-size: 65px;
	line-height: 1;
}

.icon-xxl {
	font-size: 180px;
	line-height: .86;
}

@media (min-width: 768px) {
	.icon-lg {
		font-size: 80px;
	}
	.icon-xl {
		font-size: 90px;
	}
	.icon-xxl {
		font-size: 260px;
	}
}

@media (min-width: 992px) {
	.icon-lg {
		font-size: 100px;
	}
	.icon-xl {
		font-size: 113px;
	}
	.icon-xxl {
		font-size: 315px;
	}
}

.icon-primary {
	color: #1e497d;
}

.icon-gray-600 {
	color: #858585;
}

a.icon-gray-600, a.icon-gray-600:focus, a.icon-gray-600:active {
	color: #858585;
}

a.icon-gray-600:hover {
	color: #1e497d;
}

a.icon-gray-600.icon-round {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 78px;
	height: 78px;
	text-align: center;
	overflow: hidden;
	border-radius: 50%;
}

a.icon-gray-600.icon-round, a.icon-gray-600.icon-round:focus, a.icon-gray-600.icon-round:active {
	color: #ffffff;
	background-color: #858585;
}

a.icon-gray-600.icon-round:hover {
	color: #ffffff;
	background-color: #1e497d;
}

/** @section Buttons */
.button {
	position: relative;
	overflow: hidden;
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
	padding: 40px 35px;
	font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: uppercase;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: center;
	cursor: pointer;
	vertical-align: middle;
	user-select: none;
	border: 0 !important;
	box-shadow: none !important;
	transition: .2s all ease-in-out;
}

.button-content {
	padding: 20px;
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: center;
}

html:not(.ie-11):not(.ie-10) .button-icon svg {
	height: 80px;
	width: auto;
}

.button-icon {
	display: inline-flex;
	position: relative;
	background: transparent;
	padding: 0;
}

.button-icon .icon {
	position: absolute;
	font-size: 30px;
	top: 50%;
	left: 48%;
	transform: translate(-50%, -50%);
}

@media (min-width: 992px) {
	.button-content {
		padding: 40px 35px;
	}
	html:not(.ie-11):not(.ie-10) .button-icon svg {
		height: 103px;
	}
}

.button-block {
	display: block;
	width: 100%;
}

.button-default, .button-default:focus {
	color: #cccccc;
	background-color: #858585;
	border-color: #858585;
}

.button-default:hover, .button-default:active, .button-default.active {
	color: #ffffff;
	background-color: #1e497d;
	border-color: #1e497d;
}

.button-default.button-ujarak::before {
	background: #1e497d;
}

.button-gray-100, .button-gray-100:focus {
	color: #151515;
	background-color: #edeff4;
	border-color: #edeff4;
}

.button-gray-100:hover, .button-gray-100:active, .button-gray-100.active {
	color: #151515;
	background-color: #dde1ea;
	border-color: #dde1ea;
}

.button-gray-100.button-ujarak::before {
	background: #dde1ea;
}

.button-primary, .button-primary:focus, .button-primary:active {
	color: #ffffff;
	background-color: #1e497d;
}

.button-primary:hover {
	background-color: #858585;
}

.button-primary.button-icon {
	background-color: transparent;
}

.button-primary.button-icon .button-content {
	color: #ffffff;
	background-color: #1e497d;
	transition: .3s ease-out all;
}

.button-primary.button-icon svg path {
	fill: #858585;
	transition: .3s ease-out all;
}

.button-primary.button-icon .icon {
	color: #ffffff;
}

.button-primary.button-icon:hover .button-content {
	background-color: #858585;
}

.button-primary.button-icon:hover svg path {
	fill: #1e497d;
}

.button-default-outline, .button-default-outline:focus {
	color: #cccccc;
	background-color: transparent;
	border-color: #5d6166;
}

.button-default-outline:hover, .button-default-outline:active, .button-default-outline.active {
	color: #ffffff;
	background-color: #1e497d;
	border-color: #1e497d;
}

.button-default-outline.button-ujarak::before {
	background: #1e497d;
}

.button-ghost {
	border: 0;
	background-color: transparent;
}

.button-ghost:hover {
	color: #ffffff;
	background: #1e497d;
}

.button-facebook, .button-facebook:focus {
	color: #ffffff;
	background-color: #1e497d;
	border-color: #1e497d;
}

.button-facebook:hover, .button-facebook:active, .button-facebook.active {
	color: #ffffff;
	background-color: #1e497d;
	border-color: #1e497d;
}

.button-facebook.button-ujarak::before {
	background: #1e497d;
}

.button-twitter, .button-twitter:focus {
	color: #ffffff;
	background-color: #1e497d;
	border-color: #1e497d;
}

.button-twitter:hover, .button-twitter:active, .button-twitter.active {
	color: #ffffff;
	background-color: #1e497d;
	border-color: #1e497d;
}

.button-twitter.button-ujarak::before {
	background: #1e497d;
}

.button-google, .button-google:focus {
	color: #ffffff;
	background-color: #1e497d;
	border-color: #1e497d;
}

.button-google:hover, .button-google:active, .button-google.active {
	color: #ffffff;
	background-color: #cc3a1a;
	border-color: #cc3a1a;
}

.button-google.button-ujarak::before {
	background: #cc3a1a;
}

.button-shadow {
	box-shadow: 0 9px 21px 0 rgba(204, 204, 204, 0.15);
}

.button-shadow:hover {
	box-shadow: 0 9px 10px 0 rgba(204, 204, 204, 0.15);
}

.button-shadow:focus, .button-shadow:active {
	box-shadow: none;
}

.button-ujarak {
	position: relative;
	z-index: 0;
	transition: background .4s, border-color .4s, color .4s;
}

.button-ujarak::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #1e497d;
	z-index: -1;
	opacity: 0;
	transform: scale3d(0.7, 1, 1);
	transition: transform 0.42s, opacity 0.42s;
	border-radius: inherit;
}

.button-ujarak, .button-ujarak::before {
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.button-ujarak:hover {
	transition: background .4s .4s, border-color .4s 0s, color .2s 0s;
}

.button-ujarak:hover::before {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

.button-xs {
	padding: 8px 17px;
}

.button-sm {
	padding: 5px 25px;
	font-size: 12px;
	line-height: 1.5;
}

.button-lg {
	padding: 12px 50px;
	font-size: 14px;
	line-height: 1.5;
}

.button-xl {
	padding: 16px 50px;
	font-size: 16px;
	line-height: 28px;
}

@media (min-width: 992px) {
	.button-xl {
		padding: 20px 80px;
	}
}

.button-circle {
	border-radius: 30px;
}

.button-round-1 {
	border-radius: 5px;
}

.button-round-2 {
	border-radius: 10px;
}

.btn-primary {
	border-radius: 3px;
	font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
	transition: .33s;
}

.btn-primary, .btn-primary:active, .btn-primary:focus {
	color: #ffffff;
	background: #1e497d;
	border-color: #1e497d;
}

.btn-primary:hover {
	color: #ffffff;
	background: #000000;
	border-color: #000000;
}

/** @section Forms */
.rd-form {
	position: relative;
	text-align: left;
}

.rd-form .button {
	padding-top: 10px;
	padding-bottom: 10px;
	min-height: 86px;
}

* + .rd-form {
	margin-top: 20px;
}

input:-webkit-autofill ~ label,
input:-webkit-autofill ~ .form-validation {
	color: #000000 !important;
}

.form-wrap {
	position: relative;
}

.form-wrap.has-error .form-input {
	border-color: #f5543f;
}

.form-wrap.has-focus .form-input {
	border-color: #1e497d;
}

.form-wrap + * {
	margin-top: 15px;
}

@media (min-width: 992px) {
	.form-wrap + * {
		margin-top: 27px;
	}
}

.form-input {
	display: block;
	width: 100%;
	min-height: 50px;
	padding: 13px 40px;
	font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 15px;
	font-weight: 300;
	line-height: 26px;
	color: #ffffff;
	background-color: #9b9b9b;
	background-image: none;
	border-radius: 0;
	text-transform: uppercase;
	-webkit-appearance: none;
	transition: .3s ease-in-out;
	border: 1px solid #9b9b9b;
}

.form-input:focus {
	outline: 0;
}

@media (min-width: 992px) {
	.form-input {
		min-height: 86px;
		padding: 29px 80px;
	}
}

textarea.form-input {
	height: 135px;
	min-height: 86px;
	max-height: 230px;
	resize: vertical;
}

.recaptcha div {
	display: block;
	transform-origin: 0 0;
}

.recaptcha iframe {
	display: block;
}

.form-icon {
	position: absolute;
	left: 11px;
	top: 25px;
	font-size: 20px;
	transform: translateY(-50%);
	pointer-events: none;
}

@media (min-width: 992px) {
	.form-icon {
		left: 40px;
		top: 43px;
	}
}

.form-label,
.form-label-outside {
	margin-bottom: 0;
	color: #ffffff;
	font-weight: 300;
	text-transform: uppercase;
}

.form-label {
	position: absolute;
	top: 25px;
	left: 0;
	right: 0;
	padding-left: 40px;
	padding-right: 40px;
	font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 15px;
	font-weight: 300;
	line-height: 26px;
	pointer-events: none;
	text-align: left;
	z-index: 9;
	transition: .25s;
	will-change: transform;
	transform: translateY(-50%);
}

.form-label.focus {
	opacity: 0;
}

.form-label.auto-fill {
	color: #ffffff;
}

@media (min-width: 992px) {
	.form-label {
		padding-left: 80px;
		padding-right: 80px;
		top: 43px;
	}
}

.form-label-outside {
	width: 100%;
	margin-bottom: 4px;
}

@media (min-width: 768px) {
	.form-label-outside {
		position: static;
	}
	.form-label-outside, .form-label-outside.focus, .form-label-outside.auto-fill {
		transform: none;
	}
}

[data-x-mode='true'] .form-label {
	pointer-events: auto;
}

.form-validation {
	position: absolute;
	right: 8px;
	top: 0;
	z-index: 11;
	margin-top: 2px;
	font-size: 9px;
	font-weight: 400;
	line-height: 12px;
	letter-spacing: 0;
	color: #f5543f;
	transition: .3s;
}

.form-validation-left .form-validation {
	right: auto;
	left: 8px;
}

#form-output-global {
	position: fixed;
	bottom: 30px;
	left: 15px;
	z-index: 2000;
	visibility: hidden;
	transform: translate3d(-500px, 0, 0);
	transition: .3s all ease;
}

#form-output-global.active {
	visibility: visible;
	transform: translate3d(0, 0, 0);
}

@media (min-width: 576px) {
	#form-output-global {
		left: 30px;
	}
}

.form-output {
	position: absolute;
	top: 100%;
	left: 0;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.2;
	margin-top: 2px;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
}

.form-output.active {
	opacity: 1;
	visibility: visible;
}

.form-output.error {
	color: #f5543f;
}

.form-output.success {
	color: #98bf44;
}

.radio .radio-custom,
.radio-inline .radio-custom,
.checkbox .checkbox-custom,
.checkbox-inline .checkbox-custom {
	opacity: 0;
}

.radio .radio-custom, .radio .radio-custom-dummy,
.radio-inline .radio-custom,
.radio-inline .radio-custom-dummy,
.checkbox .checkbox-custom,
.checkbox .checkbox-custom-dummy,
.checkbox-inline .checkbox-custom,
.checkbox-inline .checkbox-custom-dummy {
	position: absolute;
	left: 0;
	width: 14px;
	height: 14px;
	outline: none;
	cursor: pointer;
}

.radio .radio-custom-dummy,
.radio-inline .radio-custom-dummy,
.checkbox .checkbox-custom-dummy,
.checkbox-inline .checkbox-custom-dummy {
	pointer-events: none;
	background: #ffffff;
}

.radio .radio-custom-dummy::after,
.radio-inline .radio-custom-dummy::after,
.checkbox .checkbox-custom-dummy::after,
.checkbox-inline .checkbox-custom-dummy::after {
	position: absolute;
	opacity: 0;
	transition: .22s;
}

.radio .radio-custom:focus,
.radio-inline .radio-custom:focus,
.checkbox .checkbox-custom:focus,
.checkbox-inline .checkbox-custom:focus {
	outline: none;
}

.radio input,
.radio-inline input,
.checkbox input,
.checkbox-inline input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.radio-custom:checked + .radio-custom-dummy:after,
.checkbox-custom:checked + .checkbox-custom-dummy:after {
	opacity: 1;
}

.radio,
.radio-inline {
	padding-left: 28px;
}

.radio .radio-custom-dummy,
.radio-inline .radio-custom-dummy {
	top: 1px;
	left: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid #b7b7b7;
}

.radio .radio-custom-dummy::after,
.radio-inline .radio-custom-dummy::after {
	content: '';
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	background: #5d6166;
	border-radius: inherit;
}

.checkbox,
.checkbox-inline {
	padding-left: 28px;
}

.checkbox .checkbox-custom-dummy,
.checkbox-inline .checkbox-custom-dummy {
	left: 0;
	width: 18px;
	height: 18px;
	margin: 0;
	border: 1px solid #b7b7b7;
}

.checkbox .checkbox-custom-dummy::after,
.checkbox-inline .checkbox-custom-dummy::after {
	content: '\f222';
	font-family: "Material Design Icons";
	position: absolute;
	top: -1px;
	left: -2px;
	font-size: 20px;
	line-height: 18px;
	color: #cccccc;
}

.toggle-custom {
	padding-left: 60px;
	-webkit-appearance: none;
}

.toggle-custom:checked ~ .checkbox-custom-dummy::after {
	background: #1e497d;
	transform: translate(20px, -50%);
}

.toggle-custom ~ .checkbox-custom-dummy {
	position: relative;
	display: inline-block;
	margin-top: -1px;
	width: 44px;
	height: 20px;
	background: #9b9b9b;
	cursor: pointer;
}

.toggle-custom ~ .checkbox-custom-dummy::after {
	content: '';
	position: absolute;
	display: inline-block;
	width: 16px;
	height: 16px;
	left: 0;
	top: 50%;
	background: #b7b7b7;
	transform: translate(4px, -50%);
	opacity: 1;
	transition: .22s;
}

.rd-form-inline {
	text-align: center;
}

.rd-form-inline .form-input {
	padding: 15px 42px;
	min-height: 60px;
}

.rd-form-inline .form-label {
	top: 50%;
	transform: translateY(-50%);
}

.rd-form-inline .button {
	min-height: 60px;
}

@media (min-width: 480px) {
	.rd-form-inline {
		display: flex;
		text-align: left;
	}
	.rd-form-inline .form-wrap {
		flex-grow: 1;
	}
	.rd-form-inline .form-input {
		padding: 15px 42px;
		min-height: 103px;
		font-size: 14px;
		font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
		font-weight: 300;
	}
	.rd-form-inline .form-label {
		font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
		font-weight: 300;
		font-size: 14px;
		padding: 15px 42px;
	}
	.rd-form-inline .button {
		margin-left: -1px;
		position: relative;
		overflow: visible;
		padding-left: 30px;
		padding-right: 11px;
		margin-right: 37px;
		min-height: 103px;
		transition: .3s ease-out all;
	}
	.rd-form-inline .button:after {
		position: absolute;
		top: 0;
		left: 100%;
		content: "";
		display: inline-block;
		border-style: solid;
		border-width: 51.5px 0 51.5px 37px;
		border-color: transparent transparent transparent #1e497d;
		transition: .3s ease-out all;
	}
	.rd-form-inline .button:hover {
		color: #ffffff;
		background-color: rgba(0, 191, 243, 0.7);
	}
	.rd-form-inline .button:hover:after {
		border-color: transparent transparent transparent rgba(0, 191, 243, 0.7);
	}
	.rd-form-inline .form-button {
		margin-top: 0;
	}
}

.bg-gray-600 .rd-form-inline .form-input {
	color: rgba(62, 69, 76, 0.5);
	background-color: #ffffff;
}

.bg-gray-600 .rd-form-inline .form-label {
	color: rgba(62, 69, 76, 0.5);
}

.form-sm .form-input,
.form-sm .button {
	padding-top: 9px;
	padding-bottom: 9px;
	min-height: 40px;
}

.form-sm .form-validation {
	top: -16px;
}

.form-sm .form-label {
	top: 20px;
}

.form-sm * + .button {
	margin-top: 10px;
}

.form-lg .form-input,
.form-lg .form-label,
.form-lg .select2-container .select2-choice {
	font-size: 16px;
}

.form-lg .form-input,
.form-lg .select2-container .select2-choice {
	min-height: 58px;
	padding-top: 16px;
	padding-bottom: 16px;
	font-size: 16px;
}

.form-lg .form-button {
	min-height: 60px;
}

.form-lg .form-label {
	top: 30px;
}

.context-dark .form-label,
.context-dark .form-input {
	color: #5d6166;
}

.context-dark .form-icon {
	color: rgba(62, 69, 76, 0.3);
}

.context-dark .form-input {
	background-color: #ffffff;
}

h4 + .rd-mailform {
	margin-top: 25px;
}

@media (min-width: 768px) {
	h4 + .rd-mailform {
		margin-top: 40px;
	}
}

@media (min-width: 1200px) {
	h4 + .rd-mailform {
		margin-top: 70px;
	}
}

/** @section Snackbars */
.snackbars {
	padding: 9px 16px;
	margin-left: auto;
	margin-right: auto;
	color: #ffffff;
	text-align: left;
	background-color: #151515;
	border-radius: 0;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
	font-size: 14px;
}

.snackbars .icon-xxs {
	font-size: 18px;
}

.snackbars p span:last-child {
	padding-left: 14px;
}

.snackbars-left {
	display: inline-block;
	margin-bottom: 0;
}

.snackbars-right {
	display: inline-block;
	float: right;
	text-transform: uppercase;
}

.snackbars-right:hover {
	text-decoration: underline;
}

@media (min-width: 576px) {
	.snackbars {
		max-width: 540px;
		padding: 12px 15px;
		font-size: 15px;
	}
}

/** @section Footers */
.footer-classic {
	text-align: center;
	color: #ffffff;
}

.footer-classic .rights {
	font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
}

.footer-classic .rights a, .footer-classic .rights a:focus, .footer-classic .rights a:active {
	color: #ffffff;
}

.footer-classic .rights a:hover {
	color: #1e497d;
}

.footer-classic .rights-divider {
	display: inline-block;
	padding-right: 5px;
}

.footer-classic * + .rights {
	margin-top: 35px;
}

@media (min-width: 768px) {
	.footer-classic * + .rights {
		margin-top: 45px;
	}
}

@media (min-width: 992px) {
	.footer-classic * + .rights {
		margin-top: 60px;
	}
}

@media (min-width: 1200px) {
	.footer-classic * + .rights {
		margin-top: 100px;
	}
}

/** @group Plugins */
/** @section Animate */
.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
	opacity: 1;
}

.animated.infinite {
	animation-iteration-count: infinite;
}

.animated.hinge {
	animation-duration: 2s;
}

html:not(.lt-ie10) .not-animated {
	opacity: 0;
}

.ipad .not-animated,
.ios .not-animated {
	opacity: 1 !important;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.fadeIn {
	animation-name: fadeIn;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.fadeInUp {
	animation-name: fadeInUp;
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.fadeInDown {
	animation-name: fadeInDown;
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.fadeInLeft {
	animation-name: fadeInLeft;
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.fadeInRight {
	animation-name: fadeInRight;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.fadeOut {
	animation-name: fadeOut;
}

@keyframes slideInDown {
	0% {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}

.slideInDown {
	animation-name: slideInDown;
}

@keyframes slideInLeft {
	0% {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}

.slideInLeft {
	animation-name: slideInLeft;
}

@keyframes slideInRight {
	0% {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}

.slideInRight {
	animation-name: slideInRight;
}

@keyframes slideOutDown {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		visibility: hidden;
		transform: translate3d(0, 100%, 0);
	}
}

.slideOutDown {
	animation-name: slideOutDown;
}

/** @section Preloader */
.preloader {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 10000;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: #ffffff;
	transition: .3s all ease;
}

.preloader.loaded {
	opacity: 0;
	visibility: hidden;
}

.preloader-body {
	text-align: center;
}

.preloader-body p {
	position: relative;
	right: -8px;
}

.cssload-container {
	width: 100%;
	height: 36px;
	text-align: center;
}

.cssload-speeding-wheel {
	width: 36px;
	height: 36px;
	margin: 0 auto;
	border: 3px solid #1e497d;
	border-radius: 50%;
	border-left-color: transparent;
	border-bottom-color: transparent;
	animation: cssload-spin .88s infinite linear;
}

@keyframes cssload-spin {
	100% {
		transform: rotate(360deg);
	}
}

/** @section ToTop */
.ui-to-top {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 100;
	width: 50px;
	height: 50px;
	font-size: 20px;
	line-height: 46px;
	color: #ffffff;
	background: #1e497d;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
	transition: .45s all ease-in-out;
	transform: translate3d(0, 100px, 0);
}

.ui-to-top:hover {
	color: #ffffff;
	background: #111111;
	text-decoration: none;
}

.ui-to-top:focus {
	color: #ffffff;
}

.ui-to-top.active {
	transform: translate3d(0, 0, 0);
}

html.mobile .ui-to-top,
html.tablet .ui-to-top {
	display: none !important;
}

@media (min-width: 576px) {
	.ui-to-top {
		right: 40px;
		bottom: 40px;
	}
}

/** @section Google Map */
.google-map-markers {
	display: none;
}

.google-map-container {
	width: 100%;
}

.google-map {
	height: 250px;
	width: 100%;
	height: 250px;
}

@media (min-width: 992px) {
	.google-map {
		height: 414px;
	}
}

/** @section Material Parallax */
.parallax-container {
	position: relative;
	overflow: hidden;
}

.material-parallax {
	position: absolute;
	top: 0;
	left: -1px;
	right: -1px;
	bottom: 0;
	z-index: 0;
}

.parallax-content {
	position: relative;
	z-index: 1;
}

.material-parallax img {
	display: none;
	position: absolute;
	left: 50%;
	bottom: 0;
	min-width: 101%;
	min-height: 101%;
	max-width: none;
	transform: translate3d(-50%, 0, 0);
}

.parallax-disabled {
	background-size: cover;
	background-position: center;
}

html:not(.ie-11):not(.ios) .parallax-disabled {
	background-attachment: fixed;
}
