html,
body {
	height: 100%;
	width: 100%;
}

body {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 12px;
	color: #5a5a5a;
}

body.cursor {
	cursor: pointer;
}

body.no-scroll {
	overflow: hidden;
}

pull-left {
	float: left;
}

pull-right {
	float: right;
}

.clearfix:after,
.clearfix:before,
.row:after,
.row:before {
	content: '';
	display: block;
	clear: both;
	height: 0;
}

input {
	outline: none;
	color: #2a2a2a;
}

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

.article-container {
	width: 960px;
}

.article-container img {
	display: block;
	margin-bottom: 20px;
}

.fixed-bg {
	background-attachment: fixed;
	background-size: cover;
	background-position: 0 0;
}

.push-top {
	margin-top: 2em;
}

body.no-scroll {
	overflow: hidden;
}

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

.page-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 11;
	display: none;
	-webkit-transition: background-color 350ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
	-o-transition: background-color 350ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
	transition: background-color 350ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.page-overlay .small-container {
	background-color: white;
	width: 550px;
	margin: 0 auto;
	padding: 50px;
}

.page-overlay.block {
	display: block;
}

.page-overlay.active {
	background-color: black;
	background-color: rgba(0, 0, 0, 0.9);
}

.content-overlay {
	align-items: center;
	padding: 25px;
}

.content-overlay.block {
	display: block;
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
}

.data-privacy {
	font-size: 14px;
}

.data-privacy header {
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 1em;
}

.data-privacy .check-group {
	position: relative;
	display: block;
	line-height: 1.5;
	text-align: center;
}

.data-privacy .check-group p {
	font-size: 12px;
	display: inline-block;
	vertical-align: middle;
	margin: 0;
}

.data-privacy .check-group input {
	display: none;
}

.data-privacy .check-group span {
	vertical-align: middle;
	border: 2px solid #ffaa0e;
	width: 14px;
	height: 14px;
	display: inline-block;
	margin-right: 5px;
	position: relative;
	top: -1px;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.data-privacy .check-group span i {
	height: 14px;
	width: 14px;
	background: url('../img/checkbox-icon.webp') no-repeat center;
	background-size: cover;
	position: absolute;
	left: -2px;
	top: -2px;
	color: transparent;
	font-size: 11px;
	font-weight: bold;
	display: none;
}

.data-privacy .check-group input:checked + span {
	background-color: #ffaa0e;
}

.data-privacy .check-group input:checked + span i {
	display: block;
}

.data-privacy .text-center:last-child {
	margin: 1.5em 0 0;
}

.data-privacy .btn {
	background-color: #ffaa0e;
	width: 150px;
	max-width: 100%;
	padding: 10px;
	color: white;
	text-align: center;
	display: inline-block;
}

.data-privacy .error {
	color: red;
	text-align: center;
	font-size: 12px;
	display: none;
	margin: 1.5em 0;
}

.data-privacy p {
	line-height: 1.75;
}

.data-privacy a {
	text-decoration: none;
	color: #ffaa0e;
}

.data-privacy.error .error {
	display: block;
}

.data-privacy.error .check-group span {
	border-color: red;
}

.data-privacy.error .check-group input:checked + span {
	border-color: #ffaa0e;
}

.hero-area {
	height: 100%;
	width: 100%;
	min-height: 700px;
	background: url('../img/hero-bg.webp') top center;
	background-size: cover;
	text-align: center;
}

.hero-area .container {
	padding: 50px 0;
}

.hero-area .logo {
	width: 800px;
	max-width: 100%;
	margin-bottom: 10px;
}

.hero-area .hero-copy {
	color: #fedd39;
	font-size: 30px;
	line-height: 30px;
	margin-bottom: 40px;
	font-weight: bold;
	font-style: italic;
	letter-spacing: 1px;
}

.hero-area .hero-subcopy {
	font-size: 22px;
	line-height: 26px;
	width: 960px;
	max-width: 100%;
	margin: 0 auto;
	margin-bottom: 50px;
	letter-spacing: 1px;
	color: white;
	text-shadow: 0px 0px 10px black;
}

.hero-area a {
	background-color: #d84a4a;
	display: block;
	margin: 0 auto;
	width: 150px;
	color: white;
	font-size: 16px;
	text-transform: uppercase;
	overflow: hidden;
	position: relative;
	font-weight: bold;
}

.hero-area a span {
	position: relative;
	z-index: 2;
}

.hero-area a:before {
	content: '';
	display: block;
	height: 0px;
	width: 0px;
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	border-radius: 100%;
	background-color: black;
	z-index: 1;
	-webkit-transition: left 750ms cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: left 750ms cubic-bezier(0.4, 0, 0.2, 1);
	transition: left 750ms cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-property: left, top, opacity, background-color, height, width,
		border-radius;
	-o-transition-property: left, top, opacity, background-color, height, width,
		border-radius;
	transition-property: left, top, opacity, background-color, height, width, border-radius;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.hero-area a:hover:before {
	height: 200px;
	width: 200px;
	opacity: 0.2;
}

.nav-item {
	padding: 70px 40px 40px;
	height: 400px;
	background-color: #fedd39;
	position: relative;
	background-size: cover;
	background-position: left;
	-webkit-transition: background-color 1000ms cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: background-color 1000ms cubic-bezier(0.4, 0, 0.2, 1);
	transition: background-color 1000ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item.y2 {
	background-image: url('../img/nav-offer.webp');
}

.nav-item.y2.active {
	left: 25%;
}

.nav-item.news {
	background-image: url('../img/nav-news.jpg');
}

.nav-item.y3 {
	background-color: #fee671;
}

.nav-item.box-bg {
	background-color: white;
	color: white;
}

.nav-item.box-bg p,
.nav-item.box-bg header {
	color: white;
}

.nav-item.box-bg a {
	border-color: white;
	background-image: url('../img/btn-arrow-white.webp');
}

.nav-item.updates {
	background-image: url('../img/nav-updates.webp');
}

.nav-item.smc {
	background-image: url('../img/nav-smc.webp');
}

.nav-item.white {
	background-color: white;
}

.nav-item.contactus {
	background-image: url('../img/contactus-bg.jpg');
}

.nav-item .parent {
	padding: 0;
}

.nav-item header {
	text-transform: uppercase;
	color: #c23c3c;
	font-weight: bold;
	font-size: 24px;
	line-height: normal;
}

.nav-item header span {
	display: block;
}

.nav-item header:after {
	content: '';
	width: 125px;
	height: 5px;
	display: block;
	background-color: white;
	margin: 20px 0;
}

.nav-item p {
	font-size: 16px;
	line-height: normal;
	color: #484848;
}

.nav-item a {
	border: 1px solid #c23c3c;
	position: absolute;
	left: 40px;
	padding: 25px;
	bottom: 40px;
	background-image: url('../img/btn-arrow.webp');
}

.nav-item.has-item a.sor-container {
	padding-left: 5rem;
	position: relative;
	left: 0;
}

.nav-item.has-item .sor-container .sor {
	display: block;
	width: 4rem;
	height: auto;
	position: absolute;
	left: 0;
	top: 0.5rem;
}

.has-item {
	-webkit-transition: left 750ms cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: left 750ms cubic-bezier(0.4, 0, 0.2, 1);
	transition: left 750ms cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-property: left, top, background-image, padding;
	-o-transition-property: left, top, background-image, padding;
	transition-property: left, top, background-image, padding;
	left: 0;
	top: 0;
}

.has-item .inner-content {
	display: none;
}

.has-item .inner-content.start {
	display: block;
}

.has-item a.btn-arrow {
	left: 15px;
	bottom: 50px;
	background-color: #c23c3c;
	background-image: url('../img/btn-arrow-white-back.webp');
	display: none;
	z-index: 11;
	opacity: 0;
}

.has-item.active {
	position: fixed;
	background-image: none;
	z-index: 10;
	padding: 90px 15px 50px 7%;
}

.has-item.active + .nav-item {
	margin-left: 25%;
}

.has-item.active header,
.has-item.active section {
	display: none;
}

.has-item.active .btn-arrow {
	display: block;
	-webkit-animation: fade-in-from-bottom 500ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
	-o-animation: fade-in-from-bottom 500ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
	-webkit-animation-name: fade-in-from-bottom;
	-webkit-animation-duration: 500ms;
	-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-animation-fill-mode: forwards;
	-webkit-animation-delay: 575ms;
	animation: fade-in-from-bottom 500ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.has-item.pop-start {
	-webkit-animation: pop-start 750ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
	-o-animation: pop-start 750ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
	-webkit-animation-name: pop-start;
	-webkit-animation-duration: 750ms;
	-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-animation-fill-mode: forwards;
	animation: pop-start 750ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.has-item.pop-close {
	-webkit-animation: pop-close 750ms cubic-bezier(0.4, 0, 0.2, 1) both;
	-o-animation: pop-close 750ms cubic-bezier(0.4, 0, 0.2, 1) both;
	-webkit-animation-name: pop-close;
	-webkit-animation-duration: 750ms;
	-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-animation-fill-mode: both;
	animation: pop-close 750ms cubic-bezier(0.4, 0, 0.2, 1) both;
	min-height: 400px;
}

.has-item.pop-close .btn-arrow {
	opacity: 1;
	-webkit-animation: fade-out-to-bottom 150ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
	-o-animation: fade-out-to-bottom 150ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
	-webkit-animation-name: fade-out-to-bottom;
	-webkit-animation-duration: 150ms;
	-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-animation-fill-mode: forwards;
	animation: fade-out-to-bottom 150ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.inner-container.mCustomScrollbar {
	height: 100%;
	font-size: 14px;
}

.inner-content {
	z-index: 2;
	min-height: 100%;
	height: 100%;
	color: #484848;
}

.inner-content .content {
	width: 55%;
	min-width: 400px;
	height: 100%;
}

.inner-content strong {
	font-size: 60px;
	font-weight: bold;
	line-height: 50px;
	display: block;
	margin-bottom: 30px;
	color: #484848;
}

.inner-content p,
.inner-content li {
	font-size: 18px;
	line-height: 1.75;
	color: #484848;
}

.inner-content h3 {
	text-transform: uppercase;
	font-size: 22px;
}

.inner-content h3:after {
	content: '';
	display: block;
	height: 5px;
	width: 100px;
	background-color: #fedd39;
	margin: 20px 0;
}

.inner-content.start h3,
.inner-content.start p,
.inner-content.start strong {
	color: #484848;
	opacity: 0;
	-webkit-animation: fade-in-from-bottom 225ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
	-o-animation: fade-in-from-bottom 225ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
	-webkit-animation-name: fade-in-from-bottom;
	-webkit-animation-duration: 225ms;
	-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-animation-fill-mode: forwards;
	animation: fade-in-from-bottom 225ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.inner-content.start h3 {
	-webkit-animation-delay: 25ms;
	-o-animation-delay: 25ms;
	animation-delay: 25ms;
}

.inner-content.start strong {
	-webkit-animation-delay: 75ms;
	-o-animation-delay: 75ms;
	animation-delay: 75ms;
}

.inner-content.start p {
	-webkit-animation-delay: 125ms;
	-o-animation-delay: 125ms;
	animation-delay: 125ms;
}

.inner-content.close {
	display: block;
}

.inner-content.close h3,
.inner-content.close p,
.inner-content.close strong,
.inner-content.close .img-layer {
	opacity: 1;
	-webkit-animation: fade-out-to-bottom 225ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
	-o-animation: fade-out-to-bottom 225ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
	-webkit-animation-name: fade-out-to-bottom;
	-webkit-animation-duration: 225ms;
	-webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-animation-fill-mode: forwards;
	animation: fade-out-to-bottom 225ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.inner-content.close h3 {
	-webkit-animation-delay: 125ms;
	-o-animation-delay: 125ms;
	animation-delay: 125ms;
}

.inner-content.close strong {
	-webkit-animation-delay: 75ms;
	-o-animation-delay: 75ms;
	animation-delay: 75ms;
}

.inner-content.close p {
	-webkit-animation-delay: 25ms;
	-o-animation-delay: 25ms;
	animation-delay: 25ms;
}

.bg-layer {
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: -1;
	left: 0;
	top: 0;
}

.bg-layer .img-layer {
	position: absolute;
	background-repeat: no-repeat;
}

.bg-layer .b1 {
	height: 100%;
	width: 80%;
	right: 0;
	bottom: 0;
	background-image: url('../img/b1.webp');
	background-size: 75%;
	background-position: bottom right;
}

.bg-layer .sky {
	height: 100%;
	width: 100%;
	background-image: url('../img/sky.webp');
	background-position: bottom right;
	background-size: 100% 100%;
}

.bg-layer .cloud {
	width: 100%;
	height: 500px;
	background-image: url('../img/cloud.webp');
	right: 0;
	bottom: 175px;
	-webkit-animation: bg-move 30s linear infinite;
	-o-animation: bg-move 30s linear infinite;
	-webkit-animation-name: bg-move;
	-webkit-animation-duration: 30s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-fill-mode: infinite;
	animation: bg-move 30s linear infinite;
	background-position: 0 0%;
	background-repeat: repeat;
}

.mCSB_scrollTools {
	z-index: 10;
}

.col-2 {
	width: 25%;
	float: left;
}

.col-3 {
	width: 33.33%;
	float: left;
}

.col-4 {
	width: 50%;
	float: left;
}

.col-6 {
	width: 75%;
	float: left;
}

.col-8 {
	width: 100%;
	float: left;
}

.col-thirds {
	width: 33.33%;
	float: left;
}

.col-twothirds {
	width: 66.66%;
	float: left;
}

.parent {
	padding: 0;
}

.parent .col-4 {
	padding: 90px 50px 50px;
}

.parent .parent {
	padding: 0;
}

.parent .parent header {
	padding: 40px 50px 0 0;
}

.parent .parent section .col-4 {
	padding-top: 0;
	padding-bottom: 5px;
}

.footer {
	color: #5a5a5a;
	text-transform: uppercase;
}

.footer .nav-item {
	height: 450px;
}

.footer .has-item {
	text-transform: none;
}

.footer .has-item header:after {
	display: block;
}

.footer .has-item header a {
	position: static;
	background: none;
	color: inherit;
	padding: 0;
	border: 0;
	text-decoration: none;
}

.footer .has-item a {
	border: 1px solid #c23c3c;
	position: absolute;
	left: 40px;
	padding: 25px;
	bottom: 40px;
	background-image: url(../img/btn-arrow.webp);
}

.footer .has-item .btn-arrow {
	background-image: url(../img/btn-arrow-white-back.webp);
}

.footer h3 {
	font-size: 23px;
	line-height: normal;
}

.footer i {
	margin-bottom: 10px;
	display: block;
}

.footer p {
	font-size: 18px;
	line-height: normal;
}

.footer header {
	margin-bottom: 15px;
}

.footer header:after {
	display: none;
}

.footer section {
	margin-bottom: 15px;
	font-size: 14px;
	line-height: normal;
}

.footer a {
	display: block;
	background-image: none;
	position: static;
	border: 0;
	padding: 0;
	margin-bottom: 10px;
}

.btn {
	padding: 15px;
	text-decoration: none;
	cursor: pointer;
}
