/* ------------------------------------------------
 Author: ArtStyles
 URL: http://themeforest.net/user/artstyles

 Template Name: Artico - Creative Coming Soon Template
 Version: 1.3
------------------------------------------------ */


/* ------------------------------------------------

 - General Styles
 - Typography
 - Section
 - One Section
   - Buttom
   - Subscription
   - Countdown
 - Two Section
 - Three Section
 - Four Section
   - Social Buttons
 - Animations
 - Responsive Styles

------------------------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Quicksand:wght@300;400;500&display=swap');

/* ---------------------------
    - Global Variables
--------------------------- */

:root {
    --color-primary: #42b479;
}


/* ---------------------------
    - General Styles
--------------------------- */

html,
body {
    overflow: hidden;
}

body {
    background: #fff;
    color: #394655;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    font-weight: 300;
	line-height: 2.4rem;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}


/* ---------------------------
    - Typography
--------------------------- */

h1 {
	font-size: 5.6rem;
	font-weight: 700;
	line-height: 5.8rem;
	margin-top: 3.6rem;
	margin-bottom: 2.4rem;
}

h2 {
	font-size: 4.6rem;
	font-weight: 700;
	line-height: 4.8rem;
	margin-top: 3.8rem;
	margin-bottom: 2.4rem;
}

h3 {
	font-size: 3.6rem;
	line-height: 3.8rem;
	margin-top: 3rem;
	margin-bottom: 2.4rem;
}

h4 {
	font-size: 2.8rem;
	line-height: 3rem;
	margin-top: 2.8rem;
	margin-bottom: 2.4rem;
}

h5 {
	font-size: 2.4rem;
	line-height: 2.6rem;
	margin-top: 2.6rem;
	margin-bottom: 2.4rem;
}

h6 {
	font-size: 1.8rem;
	line-height: 2.4rem;
	margin-top: 2.4rem;
	margin-bottom: 2.4rem;
}

p {
	margin-top: 1.4rem;
	margin-bottom: 2.4rem;
}

input[type="text"],
input[type="email"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

::-moz-selection {
	background: #858b9b;
	color: #fff;
}

::selection {
	background: #858b9b;
	color: #fff;
}

::-webkit-input-placeholder {
	color: #394655;
}

::-moz-placeholder {
	color: #394655;
}

:-moz-placeholder {
	color: #394655;
}

:-ms-input-placeholder {
	color: #394655;
}


/* ---------------------------
    - One Section
--------------------------- */

.section {
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.section .container {
	position: relative;
	z-index: 10;
}

.nav-list {
	display: flex;
	justify-content: flex-end;
	transform: translateY(-4rem);
}

.nav-list .nav-item {
	list-style: none;
}

.nav-list .nav-item a {
	color: var(--color-primary);
	filter: drop-shadow(2px 4px 6px var(--color-primary));
	font-weight: 700;
	font-size: 2rem;
	margin-left: 1rem;
	transition: all .4s ease;
}

.nav-list .nav-item a:hover {
	transform: translateY(-2px);
	background-color: transparent;
	color: #fff;
}

.one-section {
	color: #fff;
}

#video-bg {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-size: 100% 100%;
	background-color: black;
	background-position: center center;
	background-size: contain;
	object-fit: cover;
}

.one-section:before {
	content: "";
	position: absolute;
	background-image: url(/homepage/images/ven2.jpg);
	top: 0;
	background-position: 50% 50%;
	height: 100%;
	opacity: 0.7;
	width: 100%;
	z-index: 1;
	background-size: cover;
	animation: background-animation 16s linear infinite 0s;
}

.floating-nav-container {
	position: absolute;
	right: 30%;
	top: 80%;
}

.floating-nav-container .btn .fa {
	display: none;
	color: #fff;
	margin-right: 1rem;
}

.floating-nav-container .btn {
	display: inline-flex;
	align-items: center;
	padding: 0;
	color: var(--color-primary);
	font-weight: 600;
	margin-bottom: 0;
	font-size: inherit;
	text-align: center;
	white-space: nowrap;
	vertical-align: inherit;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: none;
	transition: all .3s ease;
}

.floating-nav-container .btn:hover {
	background: none;
	padding: .8rem;
	color: #fff;
	filter: drop-shadow(4px 4px 10px #fff);
}

.floating-nav-container .btn:hover .fa {
	color: var(--color-primary);
	/* transform: rotate(-360deg);
	transition: transform .5s ease; */
	animation: headShake .35s linear 0s;
}

.floating-nav-container .custom-nav {
	opacity: 0;
}

.fa.fa-plus {
	font-size: 3rem;
}

.custom-nav+label {
	cursor: pointer;
	position: absolute;
	right: 0;
	pointer-events: inherit;
	top: 0;
	background-color: var(--color-primary);
	filter: drop-shadow(2px 4px 6px var(--color-primary));
	border-radius: 50%;
	z-index: 2;
	display: flex;
	padding: 1rem 2.5rem;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
	opacity: 0.7;
}

@media screen and (min-width: 580px) {
	.custom-nav+label::before {
		bottom: -60% !important;
	}
}

.custom-nav+label .fa-plus {
	transition: transform .5s ease;
}

.custom-nav:checked+label .fa-plus {
	transform: rotate(-225deg);
	transition: transform .5s ease;
}

.one,
.two,
.three,
.four,
.five,
.six,
.seven,
.eight,
.nine,
.ten,
.eleven {
	cursor: pointer;
	position: absolute;
	right: 1em;
	bottom: 1em;
	/* padding: 1em; */
	width: auto;
	height: auto;
	border-radius: .5rem;
	padding: .5rem;
	opacity: 0;
	z-index: 1;
	transform: rotateZ(90deg);
	transition: all .35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-nav:checked~.one,
.custom-nav:checked~.two,
.custom-nav:checked~.three,
.custom-nav:checked~.four,
.custom-nav:checked~.five,
.custom-nav:checked~.six,
.custom-nav:checked~.seven,
.custom-nav:checked~.eight,
.custom-nav:checked~.nine,
.custom-nav:checked~.ten,
.custom-nav:checked~.eleven {
	opacity: 1;
}

.custom-nav:checked~.one {
	transform: translate(-7em, 5.5em);
	/* transform: translate(-17em, 1.5em); */
	/* transition-delay: .7s; */
}

.custom-nav:checked~.two {
	transform: translate(-7em, -0.5em);
	/* transform: translate(-1em, -3.5em); */
	/* transition-delay: .6s; */
}

.custom-nav:checked~.three {
	transform: translate(-1em, -5em);
	/* transform: translate(-1em, -6.5em); */
	/* transition-delay: .5s; */
}

.custom-nav:checked~.four {
	transform: translate(4em, -5em);
	/* transform: translate(-1em, -9.5em); */
	/* transition-delay: .4s; */
}

.custom-nav:checked~.five {
	transform: translate(8em, -0.5em);
	/* transform: translate(3em, 1.5em); */
	/* transition-delay: .3s; */
}

.custom-nav:checked~.six {
	transform: translate(9em, 5.5em);
	/* transform: translate(8em, 1.5em); */
	/* transition-delay: .2s; */
}

.custom-nav:checked~.seven {
	transform: translate(5em, 10em);
	/* transform: translate(13em, 1.5em); */
	/* transition-delay: .1s; */
}

.custom-nav:checked~.eight {
	transform: translate(-3em, 10em);
	/* transform: translate(-1em, 6.5em); */
}


/* .custom-nav:checked ~ .nine {
	transform: translate(3em, 9.5em);
	transform: translate(-1em, 9.5em);
	transition-delay: .2s;
}

.custom-nav:checked ~ .ten {
	transform: translate(-3em, 9.5em);
	transform: translate(-12em, 1.5em);
	transition-delay: .1s;
}

.custom-nav:checked ~ .eleven {
	transform: translate(-8em, 7em);
	transform: translate(-7em, 1.5em);
} */

@keyframes background-animation {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.06);
	}
	100% {
		transform: scale(1);
	}
}

.title {
	/* font-family: 'Space Grotesk', cursive; */
	font-weight: 800;
	letter-spacing: .5rem;
	line-height: 120%;
	text-transform: uppercase;
}

.title,
.title-page,
.title-page-left {
	padding-bottom: 20px;
	position: relative;
}

.title-page,
.title-page-left {
	font-family: 'Space Grotesk', cursive;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--color-primary);
}

.title:before,
.title-page:before,
.title-page-left:before {
	content: "";
	position: absolute;
	border-bottom: 1px solid #fff;
	width: 10rem;
	bottom: 0;
}

.title-page:before {
	border-bottom: 1px solid #fff;
	margin: 0 auto;
	left: 0;
	right: 0;
}

.title-page-left:before {
	border-bottom: 1px solid var(--color-primary);
	margin: 0 auto;
	left: 0;
}

.title-description {
	font-size: 14px;
	letter-spacing: 1.5px;
	margin-bottom: 1rem;
}

.title-description span {
	display: block;
	color: var(--color-primary);
	font-size: 3rem;
	line-height: 120%;
	font-weight: 600;
	margin-bottom: 2rem;
}

.title-description-page {
	font-size: 1.8rem;
	color: #858b9b;
}

#particles-js canvas {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.arrow-next {
	position: absolute;
	bottom: 3rem;
	left: 0;
	right: 0;
	opacity: 1;
	margin: 0 auto;
	height: 4rem;
	width: 4rem;
	z-index: 2;
	-webkit-animation: pointDown 0.6s 0.6s ease-in infinite alternate forwards;
	animation: pointDown 0.6s 0.6s ease-in infinite alternate forwards;
	fill: #fff;
}

.arrow-next svg {
	width: 2em;
}

.arrow-next path {
	-webkit-transition: fill 0.3s;
	transition: fill 0.3s;
	fill: inherit;
}

.arrow-next:hover,
.arrow-next:focus {
	fill: #5fac88;
	outline: none;
}


/* Buttom */

.btn-fill {
	background: var(--color-primary);
	filter: drop-shadow(2px 4px 6px var(--color-primary));
	border-radius: 3rem;
	color: #fff;
	/* width: 50%; */
	display: inline-block;
	font-size: 2rem;
	font-weight: 300;
	height: 4.6rem;
	line-height: 4.4rem;
	letter-spacing: 1.5px;
	position: relative;
	overflow: hidden;
	margin: 2rem 2rem 0 0;
	padding: 0 3rem;
	-webkit-transition: background 0.6s;
	-moz-transition: background 0.6s;
	transition: background 0.6s;
}

.btn-fill:hover {
	background: transparent;
	color: #fff;
	text-decoration: none;
}

.btn-fill:active,
.btn-fill:focus {
	color: #fff;
	outline: none !important;
	box-shadow: none;
}

.btn-no-fill {
	background: transparent;
	border: 2px solid #fff;
	line-height: 4.2rem;
	position: relative;
}

.btn-no-fill:hover {
	background: #fff;
	border: 2px solid #fff;
	color: #31364c;
	line-height: 42px;
}

.btn-fill:after {
	content: '';
	background: var(--color-primary);
	border-radius: 3rem;
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	width: 0%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn-fill:hover:after {
	width: 100%;
}

.btn-no-fill:after {
	background: #fff;
}

.btn-fill i {
	margin-left: 1.8rem;
}

.animation-angle-down {
	-webkit-animation: animation-angle-down linear 1.4s infinite both;
	animation: animation-angle-down linear 1.4s infinite both;
}

.animation-angle-right {
	-webkit-animation: animation-angle-right linear 1.4s infinite both;
	animation: animation-angle-right linear 1.4s infinite both;
}

.icon-play {
	background-image: url(../images/play-button.svg);
	background-size: cover;
	display: inline-block;
	vertical-align: middle;
	margin-top: -4px;
	margin-left: 1.4rem;
	height: 2rem;
	width: 2rem;
}


/* Subscription */

.subscription {
	margin-top: 30px;
	position: relative;
}

.subscription .form-control {
	background: #fff;
	border: 2px solid #394655;
	border-radius: 0;
	box-shadow: none;
	color: #394655;
	font-size: 18px;
	font-weight: 600;
	height: 60px;
	padding: 6px 146px 6px 20px;
	position: relative;
	outline: none;
	width: 100%;
	z-index: 1;
}

.subscription .form-control:focus {
	border: 2px solid #394655;
	box-shadow: none;
}

.subscription .has-error .form-control,
.subscription .has-error .form-control:focus {
	background: #fff;
	border: 2px solid #f16468;
	box-shadow: none;
}

.subscription .form-control::-moz-placeholder {
	color: #394655;
	opacity: 1;
}

.subscription .form-control:-ms-input-placeholder {
	color: #394655;
}

.subscription .form-control::-webkit-input-placeholder {
	color: #394655;
}

.subscription .has-error .form-control::-moz-placeholder {
	color: #f16468;
	opacity: 1;
}

.subscription .has-error .form-control:-ms-input-placeholder {
	color: #f16468;
}

.subscription .has-error .form-control::-webkit-input-placeholder {
	color: #f16468;
}

.subscription .style-text-danger,
.subscription .style-text-success {
	margin-top: 8px;
	margin-left: 0px;
	text-align: center;
}

.subscription .btn-subscribe,
.subscription .btn-subscribe.disabled {
	background: #394655;
	color: #fff;
	border-radius: 0;
	font-size: 16px;
	font-weight: 600;
	height: 60px;
	padding: 0 20px;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 1;
	width: auto;
	text-align: right;
	text-transform: uppercase;
	z-index: 2;
}

.subscription .btn-subscribe:focus {
	box-shadow: none;
	color: #fff;
	outline: none;
}

.subscription .btn-subscribe:hover {
	color: #fff;
}

.subscription .btn-subscribe:before {
	content: "";
	color: #fff;
	border: 30px solid #394655;
	border-top-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	height: 60px;
	position: absolute;
	top: -1px;
	visibility: hidden;
	width: 60px;
	z-index: -1;
	transform: translateX(0px);
	transition: visibility 0.3s, transform 0.5s;
}

.subscription .btn-subscribe:hover:before {
	visibility: visible;
	transform: translateX(-80px);
}

.subscription .has-error .btn-subscribe,
.subscription .has-error .btn-subscribe:focus {
	background: #f16468;
}

.subscription .has-error .btn-subscribe:before {
	border-right-color: #f16468;
}


/* Countdown */

.dash {
	display: inline-block;
	height: auto;
	padding: 20px;
	position: relative;
	color: #fff;
	border-radius: 0px;
	margin: 20px 5px 8px 0;
	min-width: 120px;
}

.dash .digit {
	font-size: 68px;
	font-weight: 300;
	line-height: 44px;
}

.dash_title {
	position: relative;
	display: block;
	bottom: 0;
	right: 0;
	left: 0;
	font-size: 12px;
	text-transform: uppercase;
	padding-bottom: 14px;
}


/* ---------------------------
    - Two Section
--------------------------- */


/* .author {
	font-size: 18px;
	font-weight: 600;
} */

.diagonal-img {
	position: relative;
	overflow: hidden;
}

.diagonal-img:before {
	content: "";
	background: #fff;
	position: absolute;
	top: -8rem;
	bottom: 0;
	left: -14rem;
	height: 60rem;
	width: 20rem;
	transform: rotate(24deg);
	z-index: 2;
}

.diagonal-img img {
	transform: scale(1.0);
	-webkit-transition: transform 0.8s;
	transition: transform 0.8s;
}

.diagonal-img:hover img {
	transform: scale(1.1);
}

.two-section {
	background-color: #394655 !important;
	color: aliceblue;
}

.two-section .fp-tableCell {
	vertical-align: middle !important;
}

section.two-section::before {
	content: "";
	position: absolute;
	background-image: url(/homepage/images/home-bg.jpg);
	top: 0;
	right: 0;
	background-position: 50% 50%;
	height: 100%;
	/* clip-path: circle(60% at 95% 7%); */
	width: 100%;
	/* z-index: 99; */
	background-size: cover;
}


/* section.two-section .row .col-md-6 {
	color: #fff;
}

section.two-section .title-page-left:before {
	border-color: #fff;
} */

.two-section .fa {
	font-size: 10rem;
	padding-right: 2rem;
}


/* ---------------------------
    - Three Section
--------------------------- */

.three-section {
	position: relative;
	color: #fff;
}

.three-section .title-page {
	padding-bottom: 1rem;
}

.three-section .title-page,
.three-section .title-description-page {
	color: #fff;
	/* margin: .5rem 0 0 0; */
}

.three-section .title-description-page {
	font-weight: 500;
	letter-spacing: 1.5px;
}

section.three-section::before {
	content: "";
	position: absolute;
	background-image: url(/homepage/images/leaves.jpg);
	top: 0;
	right: 0;
	background-position: left;
	height: 100%;
	width: 100%;
	z-index: 0;
	background-size: cover;
	animation: background-animation 24s linear infinite 0s;
}

.row-features {
	margin: 0;
}

.row-features div[class^="col-"] {
	margin-bottom: 3rem;
}

.row-features img {
	margin-top: 10px;
	width: 64px;
}

.col-features h6 {
	color: inherit;
	font-size: 1.8rem;
	letter-spacing: 1px;
	margin-top: 0;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.col-features p {
	font-size: 1.4rem;
	letter-spacing: 1.5px;
	margin-bottom: 0;
}

.col-features {
	background: inherit;
	padding: 0 2rem;
	position: relative;
}

.col-features .fa {
	font-size: 5rem;
	margin-right: 2rem;
	width: 5rem;
}

.col-features:hover img {
	transform: scale(1.05);
}

.col-features:hover img {
	transform: scale(1);
	-webkit-transition: transform 0.3s;
	transition: transform 0.3s;
}


/* ---------------------------
    - Four Section
--------------------------- */

input.style-input,
input.style-input,
textarea.style-textarea {
	background: transparent;
	color: #394655;
	border-bottom: 2px solid #394655;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-radius: 0;
	font-size: 20px;
	font-weight: 700;
	box-shadow: none;
	-webkit-transition: background 0.3s, border-bottom 0.3s;
	transition: background 0.3s, border-bottom 0.3s;
}

input.style-input,
input.style-input {
	height: 60px;
	padding: 6px 20px;
}

input.style-input:focus,
input.style-input:focus,
textarea.style-textarea:focus {
	background: #f2f3f9;
	border-color: #f2f3f9;
	border-radius: 0;
	box-shadow: none;
	-webkit-transition: background 0.3s, border-bottom 0.3s;
	transition: background 0.3s, border-bottom 0.3s;
}

textarea.style-textarea {
	padding: 20px;
	resize: none;
	overflow: auto;
	-ms-overflow-style: none;
	outline: none;
}

.contact-row .has-error .form-control,
.contact-row .has-error .form-control:focus {
	border-bottom: 2px solid #f16468;
	box-shadow: none;
	-webkit-transition: background 0.3s, border-bottom 0.3s;
	transition: background 0.3s, border-bottom 0.3s;
}

.style-label,
.has-error .form-control.style-label {
	background: transparent;
	border: 0;
	box-shadow: none;
	color: #394655;
	padding: 10px 0 0 20px;
	text-align: left;
}

.has-error .form-control.style-label {
	color: #f16468;
}

.help-block.with-errors {
	color: #f16468;
	font-size: 12px;
	font-weight: 400;
	padding: 6px 20px 0 0;
	margin: 0;
}

.help-block.with-errors ul {
	margin: 0;
}

.btn-style,
.btn-style.disabled {
	background: transparent;
	border: 2px solid #394655;
	border-radius: 0 0px 0 0px;
	color: #394655;
	font-size: 16px;
	font-weight: 700;
	height: 60px;
	margin-bottom: 30px;
	opacity: 1;
	position: relative;
	text-transform: uppercase;
	-webkit-transition: border 0.3s, color 0.3s, background 0.3s;
	transition: border 0.3s, color 0.3s, background 0.3s;
}

.btn-style:hover,
.btn-style:focus,
.btn-style:active,
.btn-style:active:focus {
	background: #394655;
	border: 2px solid #394655;
	color: #fff;
	outline: none;
}

.style-text-danger,
.style-text-success {
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.style-text-danger {
	color: #f16468;
}

.style-text-success {
	color: #42a24b;
}


/* Social Buttons */

.social-buttons {
	margin: 2rem auto;
}

.social-buttons li {
	padding: 0 20px;
}

.social-buttons li a {
	color: #394655;
	display: block;
	font-size: 18px;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.social-buttons li a:hover {
	color: #f16468;
}

.three-section .footer {
	display: flex;
	justify-content: space-between;
	margin: 0 2rem;
	padding: 1rem;
	flex-wrap: wrap;
}

.three-section .footer a {
	color: var(--color-primary);
}

.three-section .footer a:hover {
	color: #fff;
	text-decoration: none;
}

.currency-marquee {
    position: fixed;
    bottom: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
}

.currency {
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.6);
	padding: 3px;
	margin-right: 3px;
	border: 1px solid rgba(71, 72, 86, 0.5);
	border-radius: 3px;
	width: 200px;
	font-weight: bold;
	text-align: center;
}

.currency:hover {
	background-color: rgba(45, 48, 60, 0.32);
	cursor: pointer;
}

.currency-name {
	color: #69c298;
}

.currency-price {
	color: #a79595;
}
.sc-launcher, .sc-launcher img {
    bottom: 40px!important;
}
.theme--dark.v-navigation-drawer {
    z-index:9999;
}


/* ---------------------------
    - Animations
--------------------------- */


/* -- Angle Down -- */

@keyframes animation-angle-down {
	0% {
		transform: translate(0px, 0px);
	}
	15% {
		transform: translate(0px, -8px);
	}
	30% {
		transform: translate(0px, 0px);
	}
	45% {
		transform: translate(0px, -5px);
	}
	60% {
		transform: translate(0px, 0px);
	}
	75% {
		transform: translate(0px, -2px);
	}
	100% {
		transform: translate(0px, 0px);
	}
}

@-webkit-keyframes animation-angle-down {
	0% {
		-webkit-transform: translate(0px, 0px);
	}
	15% {
		-webkit-transform: translate(0px, -25px);
	}
	30% {
		-webkit-transform: translate(0px, 0px);
	}
	45% {
		-webkit-transform: translate(0px, -15px);
	}
	60% {
		-webkit-transform: translate(0px, 0px);
	}
	75% {
		-webkit-transform: translate(0px, -5px);
	}
	100% {
		-webkit-transform: translate(0px, 0px);
	}
}


/* -- Angle Down -- */

@keyframes animation-angle-right {
	0% {
		transform: translate(0px, 0px);
	}
	15% {
		transform: translate(-8px, 0px);
	}
	30% {
		transform: translate(0px, 0px);
	}
	45% {
		transform: translate(-5px, 0px);
	}
	60% {
		transform: translate(0px, 0px);
	}
	75% {
		transform: translate(-2px, 0px);
	}
	100% {
		transform: translate(0px, 0px);
	}
}

@-webkit-keyframes animation-angle-right {
	0% {
		transform: translate(0px, 0px);
	}
	15% {
		transform: translate(-8px, 0px);
	}
	30% {
		transform: translate(0px, 0px);
	}
	45% {
		transform: translate(-5px, 0px);
	}
	60% {
		transform: translate(0px, 0px);
	}
	75% {
		transform: translate(-2px, 0px);
	}
	100% {
		transform: translate(0px, 0px);
	}
}


/* -- Arrow Next -- */

@-webkit-keyframes pointDown {
	from {
		transform: translate3d(0, -10px, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes pointDown {
	from {
		transform: translate3d(0, -10px, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}


/* ---------------------------
    - Responsive Styles
--------------------------- */


/* Descktop 800px height */

@media only screen and (max-height: 800px) {
	.title-page-left,
	.title-page-left {
		margin-top: 4rem;
	}
}


/* Tablets */

@media only screen and (max-width: 990px) {
	/* .title {
		text-align: center;
	} */
	.title:before {
		margin: 0 auto;
		left: 0;
		right: 0;
	}
	/* .title-description {
		text-align: center;
	}
	.btn-col {
		text-align: center;
	} */
	.title {
		font-size: 3.2rem;
		padding-bottom: .5rem;
		/* text-align: center; */
	}
	.three-section .footer {
		justify-content: flex-start;
		margin: 0 2rem;
		padding: 2px;
		/* flex-direction: column; */
		flex-wrap: wrap;
	}
	.three-section .footer a {
		margin: 1rem;
	}
	.title:before {
		margin: 0 auto;
		left: 0 !important;
		right: auto;
	}
	section.two-section::before {
		background-position: 20% 50%;
	}
	.nav-list {
		transform: translateY(1rem);
	}
	.fp-tableCell {
		vertical-align: revert !important;
	}
	.floating-nav-container {
		top: 130%;
		transform: translateX(-2rem);
	}
	.one-section:before {
		background-position: 70% 50%;
		height: 100%;
		background-repeat: no-repeat;
	}
	#countdown_dashboard {
		margin-top: 3rem;
		text-align: center;
	}
	.dash .digit {
		font-size: 6.4rem;
	}
	.diagonal-img:before,
	.diagonal:before {
		display: none;
	}
}


/* Phones */

@media screen and (max-height: 750px) and (max-width: 580px) {
	.floating-nav-container {
		top: 130%;
		right: 36%;
	}
	/* .custom-nav:checked ~ .three {
		transform: translate(-6em, -4em);
	}
	.custom-nav:checked ~ .four {
		transform: translate(3em, -4em);
	} */
	.one-section:before {
		background-position: 70% 50%;
		/* height: 120%; */
	}
}


/* @media screen and (max-width: 468px) and (min-width: 359px) {
	.floating-nav-container {
		bottom: 0;
		left: 50% !important;
		top: 145%;
		 transform: translateX(-50%);
	}
} */

@media only screen and (max-width: 580px) {
	.title {
		font-size: 2.4rem;
		padding-bottom: .5rem;
		/* text-align: center; */
	}
	.three-section .title-description-page {
		margin-bottom: 4rem;
		margin-right: 1rem;
		margin-left: 1rem;
	}
	/* .custom-nav + label {
		padding: 2.5rem !important;
	} */
	.floating-nav-container {
		top: 130%;
		right: 36%;
	}
	.title:before {
		margin: 0 auto;
		left: 0 !important;
		right: auto;
	}
	.title-description {
		/* text-align: center; */
		letter-spacing: 1px;
	}
	.title-description span {
		font-size: 2rem;
	}
	.arrow-next {
		display: none;
	}
	.subscription .input-subscription {
		padding-right: 20px;
	}
	.subscription .btn-subscribe {
		margin-top: 15px;
		position: relative;
		text-align: center;
		width: 100%;
	}
	.subscription .style-text-danger,
	.subscription .style-text-success {
		margin-top: 10px;
		margin-left: 0px;
		text-align: center;
	}
	.btn-subscribe:before {
		display: none;
	}
	.row-features img {
		margin-top: 0px;
		width: 48px;
	}
	.two-section .fa {
		font-size: 6rem;
	}
	.social-buttons {
		margin: 20px 0 60px;
	}
	section#features {
		padding-top: 160px;
	}
	div#footer a {
		color: #fff;
		line-height: 1;
		display: inline-block;
		margin: 1rem 2rem 1rem 1rem;
		font-size: 0.8em;
	}
}


/* !
 * fullPage 2.7.9
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo */

html.fp-enabled,
.fp-enabled body {
	margin: 0;
	padding: 0;
	/* overflow:hidden; */
	/* Avoid flicker on slides transitions for mobile phones #336 */
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#superContainer {
	height: 100%;
	position: relative;
	-ms-touch-action: none;
	/* Touch detection for Windows 8 */
	touch-action: none;
	/* IE 11 on Windows Phone 8.1 */
}

.fp-section {
	position: relative;
	-webkit-box-sizing: border-box;
	/* Safari<=5 Android<=3 */
	-moz-box-sizing: border-box;
	/* <=28 */
	box-sizing: border-box;
}

.fp-slide {
	float: left;
}

.fp-slide,
.fp-slidesContainer {
	height: 100%;
	display: block;
}

.fp-slides {
	z-index: 1;
	height: 100%;
	overflow: hidden;
	position: relative;
	-webkit-transition: all 0.3s ease-out;
	/* Safari<=6 Android<=4.3 */
	transition: all 0.3s ease-out;
}

.fp-section.fp-table,
.fp-slide.fp-table {
	display: table;
	table-layout: fixed;
	width: 100%;
}

.fp-tableCell {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
}

.fp-slidesContainer {
	float: left;
	position: relative;
}

.fp-controlArrow {
	-webkit-user-select: none;
	/* webkit (safari, chrome) browsers */
	-moz-user-select: none;
	/* mozilla browsers */
	-khtml-user-select: none;
	/* webkit (konqueror) browsers */
	-ms-user-select: none;
	/* IE10+ */
	position: absolute;
	z-index: 4;
	top: 50%;
	cursor: pointer;
	width: 0;
	height: 0;
	border-style: solid;
	margin-top: -3.8rem;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.fp-controlArrow.fp-prev {
	left: 1.5rem;
	width: 0;
	border-width: 3.85rem 3rem 3.85px 0;
	border-color: transparent #fff transparent transparent;
}

.fp-controlArrow.fp-next {
	right: 15px;
	border-width: 3.85rem 0 3.85rem 3.4rem;
	border-color: transparent transparent transparent #fff;
}

.fp-scrollable {
	overflow: scroll;
}

.fp-notransition {
	-webkit-transition: none !important;
	transition: none !important;
}

#fp-nav {
	position: fixed;
	z-index: 100;
	margin-top: -3.2rem;
	top: 50%;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
}

#fp-nav.right {
	right: 1.7rem;
}

#fp-nav.left {
	left: 1.7rem;
}

.fp-slidesNav {
	position: absolute;
	z-index: 4;
	left: 50%;
	opacity: 1;
}

.fp-slidesNav.bottom {
	bottom: 1.7rem;
}

.fp-slidesNav.top {
	top: 1.7rem;
}

#fp-nav ul,
.fp-slidesNav ul {
	margin: 0;
	padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
	display: block;
	width: 1.4rem;
	height: 1.3rem;
	margin: .7rem;
	position: relative;
}

.fp-slidesNav ul li {
	display: inline-block;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
	height: 1.2rem;
	width: 1.2rem;
	margin: -.6rem 0 0 -.6rem;
	border-radius: 100%;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
	border-radius: 50%;
	position: absolute;
	z-index: 1;
	height: 4px;
	width: 4px;
	border: 0;
	background: var(--color-primary);
	left: 50%;
	top: 50%;
	margin: -2px 0 0 -2px;
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
	width: 1rem;
	height: 1rem;
	margin: -5px 0px 0px -5px;
}

#fp-nav ul li .fp-tooltip {
	background: var(--color-primary);
	color: #fff;
	padding: 4px 10px;
	border-radius: 2px;
	position: absolute;
	top: -1rem;
	font-size: 1.4rem;
	white-space: nowrap;
	max-width: 220px;
	display: block;
	opacity: 0;
	width: 0;
	cursor: pointer;
}

#fp-nav ul li .fp-tooltip:before {
	content: "";
	border: 4px solid var(--color-primary);
	border-top-color: transparent;
	border-bottom-color: transparent;
	border-right-color: transparent;
	margin-top: -4px;
	position: absolute;
	right: -8px;
	top: 50%;
	height: 4px;
	width: 4px;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active+.fp-tooltip {
	-webkit-transition: opacity 0.2s ease-in;
	transition: opacity 0.2s ease-in;
	width: auto;
	opacity: 1;
}

#fp-nav ul li .fp-tooltip.right {
	right: 2rem;
}

#fp-nav ul li .fp-tooltip.left {
	left: 2rem;
}

.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
	height: auto !important;
}


/* ---------------------------
    - Popup
--------------------------- */


/* #dialog {
	background-color: #fff;
	padding: 20px 30px;
	text-align: left;
	max-width: 400px;
	margin: 40px auto;
	position: relative;
}
.mfp-content button.mfp-close {
	background-color: #f16468;
	background-image: url(../images/close.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 60% 60%;
	width: 48px;
	height: 48px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	padding: 0px 0 2px 0px;
	color: #fff;
	font-style: normal;
	font-size: 48px;
	opacity: 1;
	text-indent: -9999px;
	transition: background-color 0.3s;
}
.mfp-content .mfp-close:hover,
.mfp-content .mfp-close:focus {
	background-color: #f97e81;
}
html.fp-enabled,
.fp-enabled body {
	overflow: visible;
}
.mfp-wrap .mfp-container {
	position: fixed;
} */


/* ---------------------------
    - Preloader
--------------------------- */

.spinner4 {
	width: 4rem;
	height: 4rem;
	background-color: var(--color-primary);
	border-radius: 50%;
	position: absolute;
	top: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	right: 0 !important;
	margin: auto;
	-webkit-animation: rotateplane 1.2s infinite ease-in-out;
	animation: rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes rotateplane {
	0% {
		-webkit-transform: perspective(120px);
	}
	50% {
		-webkit-transform: perspective(120px) rotateY(180deg);
	}
	100% {
		-webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
	}
}

@keyframes rotateplane {
	0% {
		transform: perspective(120px) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
	}
	50% {
		transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
	}
	100% {
		transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
		-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}
}