
/*
Table Of Contents
1.) Typography
2.) Default Styles
3.) Container - Main
4.) Header - Main
5.) Content - Main
6.) Footer - Main
7.) Inner - Pages
8.) Text - Colors

===============================================*/

/*
 1.) Typography
----------------------------------------*/

@import url("animate.css") all;
@import url("brands.min.css") all;
@import url("light.min.css") all;
@import url("regular.min.css") all;
@import url("solid.min.css") all;
@import url("fontawesome.min.css") all;

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/webfonts-proximanova-light-webfont.eot');
    src: url('../fonts/webfonts-proximanova-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/webfonts-proximanova-light-webfont.woff2') format('woff2'),
         url('../fonts/webfonts-proximanova-light-webfont.woff') format('woff'),
         url('../fonts/webfonts-proximanova-light-webfont.ttf') format('truetype'),
         url('../webfonts/proximanova-light-webfont.svg#Proxima Nova') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/webfonts-ProximaNovaRegular.eot');
    src: url('../fonts/webfonts-ProximaNovaRegular.eot') format('embedded-opentype'),
         url('../fonts/webfonts-ProximaNovaRegular.woff2') format('woff2'),
         url('../fonts/webfonts-ProximaNovaRegular.woff') format('woff'),
         url('../fonts/webfonts-ProximaNovaRegular.ttf') format('truetype'),
         url('../webfonts/ProximaNovaRegular.svg#Proxima Nova') format('svg');
	font-weight: 400;
	font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/webfonts-ProximaNovaMedium.eot');
    src: url('../fonts/webfonts-ProximaNovaMedium.eot') format('embedded-opentype'),
         url('../fonts/webfonts-ProximaNovaMedium.woff2') format('woff2'),
         url('../fonts/webfonts-ProximaNovaMedium.woff') format('woff'),
         url('../fonts/webfonts-ProximaNovaMedium.ttf') format('truetype'),
         url('../webfonts/ProximaNovaMedium.svg#Proxima Nova') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/webfonts-proximanova-semibold-webfont.eot');
    src: url('../fonts/webfonts-proximanova-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/webfonts-proximanova-semibold-webfont.woff2') format('woff2'),
         url('../fonts/webfonts-proximanova-semibold-webfont.woff') format('woff'),
         url('../fonts/webfonts-proximanova-semibold-webfont.ttf') format('truetype'),
         url('../webfonts/proximanova-semibold-webfont.svg#Proxima Nova') format('svg');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/webfonts-ProximaNovaBold.eot');
    src: url('../fonts/webfonts-ProximaNovaBold.eot') format('embedded-opentype'),
         url('../fonts/webfonts-ProximaNovaBold.woff2') format('woff2'),
         url('../fonts/webfonts-ProximaNovaBold.woff') format('woff'),
         url('../fonts/webfonts-ProximaNovaBold.ttf') format('truetype'),
         url('../webfonts/ProximaNovaBold.svg#Proxima Nova') format('svg');
	font-weight: 700;
	font-style: normal;
}


/*
 2.) Default Styles
----------------------------------------*/

* {
	margin: 0;
	padding: 0;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* render html5 elements as block */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

sub, 
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
	font-size: 20px;
}

sub {
	bottom: -0.25em;
}

img {
	width: auto;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
	line-height: .5em;
}


/*  Custom animations
/*-------------------------------------------------- */
@-webkit-keyframes reveal {
 0% {
 opacity: 0;
}
 1% {
 opacity: 0;
 -webkit-transform: scale(0.98) translateY(-15px);
}
 80% {
 -webkit-transform: scale(1);
}
 100% {
 -webkit-transform: translateY(0);
}
}
 @-moz-keyframes reveal {
 0% {
 opacity: 0;
}
 1% {
 opacity: 0;
 -moz-transform: scale(0.98) translateY(-15px);
}
 80% {
 -moz-transform: scale(1);
}
 100% {
 -moz-transform: translateY(0);
}
}


/* #Basic Styles
================================================== */

body {
	font-family: "Proxima Nova", sans-serif;
	font-weight: 500;
	font-size: 21px;
	color: #ffffff;
	line-height: 26px; 
	background: #1e1e1e;
}

@media only screen and (max-width: 1199px) {
body {
	font-size: 18px;
	line-height: 24px; 
}
}

@media only screen and (max-width: 767px) {
body {
	font-size: 17px;
	line-height: 23px; 
}
}


/* #Links
================================================== */

a {
	color: #ffc491;
	text-decoration: none;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	cursor: pointer;
}

a:hover,
a:focus,
a:active {
	color: #f8b661;
	text-decoration: underline;
}

a:visited {
	outline: 0;
}


/* #Heading H1, H2, H3, H4, H5, H6, P
================================================== */

h1, 
h2, 
h3, 
h4, 
h5, 
h6 { 
	font-weight: 700;
	padding-bottom: 15px; 
}

h1,
.h1 {
	font-size: 66px;
	line-height: 70px; 
}

h2,
.h2 {
	font-size: 51px;
	line-height: 55px; 
}

h3,
.h3 {
	font-size: 29px;
	line-height: 35px; 
}

h4,
.h4 { 
	font-size: 24px; 
	line-height: 30px; 
}

h5,
.h5 { 
	font-size: 20px; 
	line-height: 25px; 
}

p {
	padding-bottom: 30px;
}

h1:last-child, 
h2:last-child, 
h3:last-child, 
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child { 
	padding-bottom: 0;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

@media only screen and (max-width: 1199px) {
h1,
.h1 {
	font-size: 50px;
	line-height: 54px; 
}

h2,
.h2 {
	font-size: 40px;
	line-height: 44px; 
}
}

@media only screen and (max-width: 767px) {
h1,
.h1 {
	font-size: 36px;
	line-height: 42px; 
}

h2,
.h2 {
	font-size: 30px;
	line-height: 36px; 
}

h3,
.h3 {
	font-size: 22px;
	line-height: 28px; 
}

h4,
.h4 { 
	font-size: 20px; 
	line-height: 26px; 
}

p {
	padding-bottom: 25px;
}
}


/*= Unorder List 
=======================================================*/

ul,
ol {
	list-style: none; 
	padding: 0 0 0 15px;
}

ul:last-child,
ol:last-child {
	padding-bottom: 0;
}

li { 
	position: relative;
	padding: 0 0 10px 28px;
	text-align: left;
}

li:last-child {
	padding-bottom: 30px;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
	padding-bottom: 0;
}

ul li:before {
	width: 7px;
	height: 7px;
	content: "";
	background: #ffcf91;
	border-radius: 360px;
	position: absolute;
	top: 10px;
	left: 0;
}

@media only screen and (max-width: 1199px) {
li { 
	padding-left: 24px;
}

ul li:before {
	width: 6px;
	height: 6px;
	top: 10px;
}
}

@media only screen and (max-width: 767px) {
li { 
	padding-left: 22px;
}

li:last-child {
	padding-bottom: 25px;
}

ul li:before {
	top: 9px;
}
}


/*= Order List 
=======================================================*/

ol {
	counter-reset: item;
}

ol > li {
	counter-increment: item; 
	padding-left: 30px;
}

ol > li:before {
	content: counter(item);
	font-weight: 700;
	color: #ffcf91;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
}

@media only screen and (max-width: 1199px) {
ol > li {
	padding-left: 26px;
}
}

@media only screen and (max-width: 767px) {
ol > li { 
	padding-left: 24px;
}
}


/* #Input
================================================= */

textarea, 
select, 
input[type="text"], 
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="search"], 
input[type="tel"], 
input[type="color"], 
.uneditable-input {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

input, 
textarea, 
select {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
	width: 100%;
	float: left; 
	font-family: "Proxima Nova", sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: #ffffff;
	line-height: 24px;
	text-transform: none;
	padding: 0 0 10px 0;
	margin: 0;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	width: 100%;
	height: 50px;
	float: left;
	font-family: "Proxima Nova", sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: #ffffff;
	line-height: 24px;
	text-align: center;
	background: #a5a5a5;
	border: none;
	border-radius: 17px;
	box-shadow: 0 5px 9px #00000033;
	outline: none;
	white-space: nowrap;
	text-overflow: ellipsis;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	overflow: hidden;
	position: relative;
	padding: 12px 20px;
	margin: 0;
}

textarea {
	height: 110px;
	outline: none;
	resize: none;
}

select {
	background-image: url(../fonts/img-icon-down.svg);
	background-size: 14px auto;
	background-repeat: no-repeat;
	background-position: top 18px right 18px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-top: 0;
	padding-right: 38px;
	padding-left: 38px;
	padding-bottom: 0;
}

select::-ms-expand {
	display:none;
}

select.colorize option:not([disabled]) {
	color: #ffffff;
}

select.colorize option.def:not([disabled]),
select.colorize.empty:not([disabled]) {
	color: #ffffff;
}

::-webkit-input-placeholder, 
::-webkit-textarea-placeholder {
	color: #ffffff;
}

input::-moz-placeholder, 
textarea::-moz-placeholder {
	color: #ffffff;
}

::-moz-placeholder {
	color: #ffffff;
}

::-ms-input-placeholder {
	color: #ffffff;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	outline: 0;
	box-shadow: rgba(0, 0, 0, .70) 0 0 15px;
}


/* Custom - Select */
.custom-select-out {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: top;
	position: relative;
}

.custom-select-out select {
	display: none;
}

.custom-select-out .custom-select {
	width: 100%;
	height: 50px;
	float: left;
	font-family: "Proxima Nova", sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: #ffffff;
	line-height: 50px;
	text-align: center;
	background: #a5a5a5;
	background-image: url(../fonts/img-icon-down.svg);
	background-size: 14px auto;
	background-repeat: no-repeat;
	background-position: top 18px right 18px;
	border: none;
	border-radius: 16px;
	box-shadow: 0 5px 9px #00000033;
	outline: none;
	white-space: nowrap;
	text-overflow: ellipsis;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	overflow: hidden;
	position: relative;
	padding: 0 38px;
	margin: 0;
}

.custom-select-out .custom-options { 
	width: 100%; 
	float: left;
	background: #a5a5a5;
	border: none;
	border-radius: 16px;
	box-shadow: rgba(0, 0, 0, .20) 0 5px 5px;
	overflow: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 2;
	padding: 20px 0;
	margin: 1px 0 0 0;
	display: none;
}

.custom-select-out .custom-options .option-item { 
	width: 100%; 
	float: left; 
	font-family: "Proxima Nova", sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: #ffffff;
	line-height: 24px;
	cursor: pointer;
	padding: 5px 20px;
	margin: 0; 
}

.custom-select-out .custom-options .option-item:first-child {
	display: none; 
}

.custom-select-out .custom-options .option-item:before {
	display: none;
}

.custom-select-out .custom-options .option-item:hover,
.custom-select-out .custom-options .option-item:focus,
.custom-select-out .custom-options .option-item.active { 
	color: #000000; 
	background: #ffcf91;
}



/* #Buttons
================================================== */

button {
	background: none;
	border: none;
	box-shadow: none;
	text-decoration: none;
	white-space: normal;
	cursor: pointer;
	outline: 0;
	padding: 0;
	margin: 0;
}

button:hover,
button:focus,
button:active,
button:active:focus {
	box-shadow: none;
	outline: 0;
}

.btn, 
.button, 
input[type="button"], 
input[type="submit"] {
	width: auto;
	float: none;
	display: inline-block;
	font-family: "Proxima Nova", sans-serif; 
	font-weight: 700;
	font-size: 26px;
	color: #ffffff;
	line-height: 30px;
	text-align: center;
	text-decoration: none;
	text-transform: none;
	white-space: normal;
	vertical-align: middle;
	background: #515151;
	border-radius: 360px;
	box-shadow: none;
 	border: none;
	position: relative;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	cursor: pointer;
	padding: 13px 50px;
	margin: 0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
.button:hover,
.button:focus,
.button:active,
.button:active:focus,
.button.active,
.button.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus,
.btn:not(:disabled):not(.disabled).active, 
.btn:not(:disabled):not(.disabled):active,
.show .btn  {
	color: #ffffff;
	text-decoration: none;
	background: #999999;
}

.btn-voilet, 
.button.btn-voilet, 
input.btn-voilet[type="button"], 
input.btn-voilet[type="submit"] {
	background: #9484f4;
}

.btn-voilet:hover, 
.btn-voilet:focus, 
.btn-voilet:active, 
.btn-voilet:active:focus, 
.btn-voilet.active, 
.btn-voilet.active:focus,
.button.btn-voilet:hover, 
.button.btn-voilet:focus, 
.button.btn-voilet:active, 
.button.btn-voilet:active:focus, 
.button.btn-voilet.active, 
.button.btn-voilet.active:focus, 
input.btn-voilet[type="button"]:hover, 
input.btn-voilet[type="button"]:focus, 
input.btn-voilet[type="button"]:active, 
input.btn-voilet[type="button"]:active:focus, 
input.btn-voilet[type="button"].active, 
input.btn-voilet[type="button"].active:focus, 
input.btn-voilet[type="submit"]:hover, 
input.btn-voilet[type="submit"]:focus, 
input.btn-voilet[type="submit"]:active, 
input.btn-voilet[type="submit"]:active:focus, 
input.btn-voilet[type="submit"].active, 
input.btn-voilet[type="submit"].active:focus,
.btn-voilet:not(:disabled):not(.disabled).active, 
.btn-voilet:not(:disabled):not(.disabled):active,
.show .btn-voilet { 
	background: #6f5ce2;
}

.btn.sml, 
.button.sml, 
input.btn.sml[type="button"], 
input.btn.sml[type="submit"] {
	font-size: 15px;
	line-height: 20px;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn:focus,
.button:focus,
button:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
	outline: 0;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn-out {
	width: 100%;
	float: none; 
	display: inline-block;
}

@media only screen and (max-width: 1199px) {
.btn, 
.button, 
input[type="button"], 
input[type="submit"] {
	font-size: 22px;
	line-height: 28px;
	padding: 12px 40px;
}
}

@media only screen and (max-width: 767px) {
.btn, 
.button, 
input[type="button"], 
input[type="submit"] {
	font-size: 18px;
	line-height: 22px;
	padding: 12px 35px;
}
}


/* #Flying focus
================================================== */

#flying-focus {
	position: absolute;
	margin: 0;
	background: transparent;
	-webkit-transition-property: left, top, width, height, opacity;
	transition-property: left, top, width, height, opacity;
	-webkit-transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
	transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
	visibility: hidden;
	pointer-events: none;
	box-shadow: -webkit-focus-ring-color 0 0 0 2px; 
	border-radius: 0;
}

#flying-focus.flying-focus_visible {
	visibility: visible;
	z-index: 9999;
}

.flying-focus_target {
	outline: none !important; /* Doesn't work in Firefox :( */
}

/* http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links/199319 */
.flying-focus_target::-moz-focus-inner {
	border: 0 !important;
}

/* Replace it with @supports rule when browsers catch up */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
#flying-focus {
	box-shadow: none;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -3px;
}
}


/* Skip - Button */
.skip-btn {
	width: 180px;
	height: 44px;
	float: left;
	font-size: 15px;
	color: #000000;
	line-height: 44px;
	text-decoration: none;
	text-align: center;
	background: #ffcf91;
	border-radius: 0;
	-webkit-transition: top 1s ease-out, background 1s linear;
	transition: top 1s ease-out, background 1s linear;
	overflow: hidden;
	z-index: 100;
	position: absolute;
	z-index: 1001;
	top: -44px;
	left: 0;
	padding: 0; 
	margin: 0;
}

.skip-btn:hover,
.skip-btn:focus,
.skip-btn:active {
	top: 0px;
	color: #000000;
	text-decoration: none;
	background: #ffcf91;
	box-shadow: rgba(0, 0, 0, .20) 0 0 25px;
	-webkit-transition: top .1s ease-in, background .5s linear;
	transition: top .1s ease-in, background .5s linear;
}


/*
 3.) Container - Main
----------------------------------------*/

#container-main {
	width: 100%;
	min-height: 100vh;
	float: left;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

@media only screen and (max-width: 767px) {
.container {
	max-width: 560px;
	padding: 0 30px;
}
}


/*
 4.) Header - Main
----------------------------------------*/

#header-main {
	width: 100%;
	height: 120px;
	float: left;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

@media only screen and (max-width: 991px) {	
#header-main {
	height: 81px;
}
}

@media only screen and (max-width: 767px) {	
#header-main {
	height: 75px;
}
}


/* Site Brand */
#header-main .brand {
	height: 81px;
	float: right;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: relative;
	z-index: 6;
	margin: 19.5px 0 0 -600px;
}

#header-main .brand img {
	width: 100%;
	max-width: 260px;
}

@media only screen and (min-width: 992px) {
#header-main.menu-right .brand {
	float: left;
	margin-left: 0;
	margin-right: -600px;
}
}

@media only screen and (max-width: 991px) {	
#header-main .brand {
	height: 81px;
	float: left;
	margin: 0 -600px 0 0;
}

#header-main .brand img {
	max-width: 220px;
}
}

@media only screen and (max-width: 767px) {	
#header-main .brand {
	height: 75px;
}

#header-main .brand img {
	max-width: 200px;
}
}


/* Nav - Bar */
@media only screen and (min-width: 992px) {
#header-main .nav-bar {
	float: left;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	margin: 19.5px 0 0 0;
}

#header-main.menu-right .nav-bar {
	float: right;
}

/* Main - Menu */
#header-main .main-menu {
	float: left;
	padding: 0;
	margin: 0;
}

#header-main .main-menu ul {
	float: left;
	padding: 0;
	margin: 0 -23px;
}

#header-main .main-menu ul li {
	height: 81px;
	float: left;
	padding: 23px 0 0 0;
	margin: 0 3px;
}

#header-main .main-menu ul li:before {
	display: none;
}

#header-main .main-menu ul li > a {
	height: 35px;
	float: left;
	font-weight: 600;
	font-size: 23px;
	color: #e5e5e5;
	line-height: 35px;
	text-decoration: none;
	text-align: center;
	border-radius: 14px;	
	position: relative;
	padding: 0 18px;
}

#header-main .main-menu ul li:hover > a,
#header-main .main-menu ul li > a:focus, 
#header-main .main-menu ul li.nav-menu-open > a, 
#header-main .main-menu ul li.current-menu-item > a, 
#header-main .main-menu ul li.current-menu-parent > a, 
#header-main .main-menu ul li.current-menu-ancestor > a {
	color: #e5e5e5;
	background: #5b5b5b;
}

#header-main .main-menu ul li > a:focus+ul,
#header-main .main-menu ul li:hover > ul,
#header-main .main-menu ul li > .nav-menu-open {
	opacity: 1; 
	pointer-events: auto; 
	z-index: 5;
}

#header-main .main-menu ul li > ul {
	width: 250px;
	float: left;
	background: #5b5b5b;
	border-radius: 18px;
	position: absolute;
	top: 81px;
	left: 50%;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	opacity: 0; 
	pointer-events: none; 
	z-index: -1;
	padding: 30px 25px;
	margin: 0 0 0 -125px;
}

#header-main .main-menu ul li > ul:before {
	content: "";
	width: 0;
	height: 0;
	box-sizing: border-box;
	border: 10px solid #5b5b5b;
	transform-origin: 0 0;
	transform: rotate(-45deg);
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	position: absolute;
	top: 0;
	left: 50%;
	margin: 0 0 0 -15px;
}

#header-main .main-menu ul li > ul li {
	width: 100%;
	height: auto;
	float: left;
	padding: 0;
	margin: 0 0 15px 0;
}

#header-main .main-menu ul li > ul li:last-child {
	margin-bottom: 0;
}

#header-main .main-menu ul li > ul li a {
	width: 100%;
	height: auto;
	font-size: 20px;
	line-height: 26px;
	text-align: center;
	text-transform: none;
	padding: 0;
	margin: 0;
}

#header-main .main-menu ul li > ul li a:after {
	display: none;
}

#header-main .main-menu ul li > ul li:hover > a,
#header-main .main-menu ul li > ul li > a:focus, 
#header-main .main-menu ul li > ul li.nav-menu-open > a, 
#header-main .main-menu ul li > ul li.current-menu-item > a, 
#header-main .main-menu ul li > ul li.current-menu-parent > a, 
#header-main .main-menu ul li > ul li.current-menu-ancestor > a {
	color: #ffcf91;
	background: none;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.hiddenscroll {
	overflow: hidden;
}
	
.overlay-menu {
	width: 100%;
	height: 100%;
	float: left;
	background: rgba(255, 255, 255, .80);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 110;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: top .15s ease-out;
	-moz-transition: top .15s ease-out;
	transition: top .15s ease-out;
	overflow: hidden;
}

.overlay-menu.active {
	visibility: visible;
	opacity: .95;
	-webkit-transition: opacity .2s ease-out;
	-moz-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}
	
#header-main .nav-bar {
	width: 90%;
	max-width: 420px;
	height: 100%;
	float: left;
	background: #363636;
	box-shadow: rgba(0, 0, 0, .05) 0 0 7px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	transition: all .25s ease-out;
	overflow: auto;
	overflow-x: hidden;
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 500;
	padding: 0 40px;
	margin: 0;
}

#header-main .nav-bar.active {
	right: 0;
}

#header-main .nav-bar .nav-max {
	width: 100%;
	float: left;
}

#header-main .nav-bar .nav-mid {
	width: 100%;
	float: left;
	padding: 0 0 45px 0;
}
}

@media only screen and (max-width: 991px) {	
#header-main .main-menu {
	width: 100%;
	float: left;
	padding: 0 0 40px 0;
}

#header-main .main-menu ul {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0;
}

#header-main .main-menu ul li {
	width: 100%;
	float: left;
	border-bottom: 1px solid rgba(255, 255, 255, .15);
	padding: 0;
	margin: 0;
}

#header-main .main-menu ul li:before {
	display: none;
}

#header-main .main-menu ul li > a {
	width: 100%;
	float: left;
	font-weight: 600;
	font-size: 24px;
	color: #ffffff;
	line-height: 28px;
	text-decoration: none;
	padding: 20px 50px 20px 0;
}

#header-main .main-menu ul li.menu-item-has-children > .accord {
	width: 50px;
	height: 68px;
	float: right;
	border-left: 1px solid rgba(255, 255, 255, .15);
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: block;
}

#header-main .main-menu ul li.menu-item-has-children > .accord:after {
	width: 100%;
	height: 40px;
	float: left;
	content: "\f078";
	font-family: "Font Awesome\ 5 Pro";
	font-weight: 900;
	font-size: 20px;
	color: #ffffff;
	line-height: 40px;
	text-align: right;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -20px 0 0 0;
}

#header-main .main-menu ul li.menu-item-has-children > .accord.active:after {
	content: "\f077";
}

#header-main .main-menu ul li:hover > a,
#header-main .main-menu ul li.current-menu-item > a, 
#header-main .main-menu ul li.current-menu-parent > a, 
#header-main .main-menu ul li.current-menu-ancestor > a {
	color: #ffcf91;
}

#header-main .main-menu ul li ul {
	border-top: 1px solid rgba(255, 255, 255, .15);
	padding: 0 0 0 20px;
	display: none;
}

#header-main .main-menu ul li ul.active {
	display: block;
}

#header-main .main-menu ul li ul li:last-child {
	border-bottom: none;
}
}

@media only screen and (max-width: 767px) {
.hiddenscroll {
	overflow: hidden;
}
	
#header-main .nav-bar {
	width: 100%;
	height: 100%;
	float: left;
	background: #363636;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	padding: 75px 0 0 0;
	margin: 0;
}

#header-main .nav-bar.active {
	visibility: visible;
	opacity: 1;
}

#header-main .nav-bar .nav-max {
	width: 100%;
	height: 100%;
	float: left;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, .15);
	overflow: auto;
	overflow-x: hidden;
	position: relative;
	padding: 0;
	margin: 0;
}

#header-main .nav-bar .nav-mid {
	width: 100%;
	max-width: 560px;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	padding: 20px 30px;
}

#header-main .main-menu ul li > a {
	font-size: 22px;
	line-height: 26px;
}

#header-main .main-menu ul li.menu-item-has-children > .accord {
	height: 66px;
}
}


/* Menu - Btn */
#header-main .menu-btn {
	width: 40px;
	height: 27px;
	float: right;
	vertical-align: top;
	line-height: 1em;
	outline: 0;
	position: relative;
	cursor: pointer;
	z-index: 6;
	padding: 0;
	margin: 26.5px 0 0 0;
	display: none;
}

#header-main .menu-btn .menu-bar {
	width: 100%;
	height: 4px;
	float: left;
	background: #ffffff;
	text-indent: -99999px;
	position: relative;
}

#header-main .menu-btn .menu-bar:before,
#header-main .menu-btn .menu-bar:after {
	content: "";
	width: 70%;
	height: 4px;
	float: left;
	background: #ffffff;
	position: absolute;
	left: 15%;
}

#header-main .menu-btn .menu-bar:before {
	top: -12px;
}

#header-main .menu-btn .menu-bar:after {
	top: 12px;
}

@media only screen and (max-width: 991px) {
#header-main .menu-btn {
	display: inline-block;
}
}

@media only screen and (max-width: 767px) {
#header-main .menu-btn {
	margin-top: 23.5px;
}

#header-main .menu-btn.active {
	width: 28px;
}

#header-main .menu-btn.active .menu-bar {
	background: none;
}

#header-main .menu-btn.active .menu-bar:before,
#header-main .menu-btn.active .menu-bar:after {
	width: 100%;
	top: 0;
	left: 0;
}

#header-main .menu-btn.active .menu-bar:before {
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
}

#header-main .menu-btn.active .menu-bar:after {
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
}
}


/* Close - Btn */
#header-main .close-btn {
	height: 26px;
	float: right;
	position: relative;
	z-index: 1;
	cursor: pointer;
	display: none;
	margin: 20px 0 20px 0;
}

#header-main .close-btn .menu-bar {
	width: 26px;
	height: 3px;
	float: left;
	text-indent: -99999px;
	position: relative;
	transition: all 0.4s ease;
	margin: 10px 0 0 0;
}

#header-main .close-btn .menu-bar:before,
#header-main .close-btn .menu-bar:after {
	content: "";
	width: 100%;
	height: 3px;
	float: left;
	background: #ffffff;
	border-radius: 6px;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.4s ease;
}

#header-main .close-btn .menu-bar:before {
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
}

#header-main .close-btn .menu-bar:after {
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
#header-main .close-btn {
	display: block;
}	
}


/* Header - Fixed
#header-main.fixed {
	height: 81px;
	background: #1e1e1e;
	box-shadow: rgba(255, 255, 255, .50) 0 0 7px;
	position: fixed;
}

#header-main.fixed .brand {
	margin-top: 0;
}

@media only screen and (min-width: 992px) {
#header-main.fixed .nav-bar {
	margin-top: 0;
}
}

@media only screen and (max-width: 991px) {	
#header-main.fixed {
	height: 81px;
}
}

@media only screen and (max-width: 767px) {	
#header-main.fixed {
	height: 75px;
}
}
*/



/*
 5.) Content - Home
----------------------------------------*/

#content-home { 
	width: 100%;
	float: left;
	flex: 1 0 auto;
}


/* Hero - Main */
.hero-main { 
	width: 100%;
	min-height: 100vh;
	float: left;
	display: flex;
	flex: 1 0 auto;
	align-items: center;
	background-image: url(../images/img-bg-middle.png);
	background-size: 1401px auto;
	background-repeat: repeat-x;
	background-position: bottom 0 left 0;
	overflow: hidden;
	position: relative;
}

.hero-main:before {
	content: ""; 
	width: 100%;
	height: 350px;
	float: left;
	background: url(../images/img-bg-top-1.png) no-repeat top center;
	background-size: auto 255px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.11;
}

.hero-main:after {
	content: ""; 
	width: 100%;
	height: 350px;
	float: left;
	background: url(../images/img-bg-top-2.png) no-repeat top center;
	background-size: auto 255px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.2;
}

.hero-main .content-out,
.hero-main .content-inn {
	width: 100%;
	float: left;
}

.hero-main .content-vis {
	width: 100%;
	float: left;
	position: relative;
	z-index: 2;
	padding: 120px 0;
}

.hero-main .aside {
	width: 100%;
	max-width: 560px;
	float: left;
	padding: 50px 0 0 0;
}

.hero-main .aside h1,
.hero-main .aside h1 {
	padding-bottom: 20px;
}

.hero-main .aside p {
	padding-bottom: 35px;
}

.hero-main .aside h1:last-child,
.hero-main .aside h2:last-child,
.hero-main .aside p:last-child {
	padding-bottom: 0;
}

.hero-main .content-cur:before { 
	content: ""; 
	width: 100%; 
	height: 100%; 
	float: left; 
	background: url(../images/img-hero-curve.png) no-repeat top right; 
	background-size: auto 100%; 
	position: absolute; 
	top: 0; 
	right: 0;
	z-index: 1;
}

@media only screen and (min-width: 1930px) {
.hero-main .content-cur:before { 
	height: 120%;
}
}

@media only screen and (min-width: 1360px) {
.hero-main .content-out:before {
	content: ""; 
	width: 100%;
	height: 506px;
	float: left;
	background: url(../images/img-bg-bottom-left-1.png) no-repeat bottom left;
	background-size: 555px auto;
	mix-blend-mode: overlay;
	position: absolute;
	bottom: 0;
	left: 0;
}

.hero-main .content-out:after {
	content: ""; 
	width: 100%;
	height: 506px;
	float: left;
	background: url(../images/img-bg-bottom-left-2.png) no-repeat bottom left;
	background-size: 555px auto;
	mix-blend-mode: overlay;
	position: absolute;
	bottom: 0;
	left: 0;
}

.hero-main .content-inn:before {
	content: ""; 
	width: 100%;
	height: 506px;
	float: right;
	background: url(../images/img-bg-bottom-right-1.png) no-repeat bottom right;
	background-size: 516px auto;
	mix-blend-mode: overlay;
	position: absolute;
	bottom: 0;
	right: 0;
}

.hero-main .content-inn:after {
	content: ""; 
	width: 100%;
	height: 506px;
	float: right;
	background: url(../images/img-bg-bottom-right-2.png) no-repeat bottom right;
	background-size: 516px auto;
	mix-blend-mode: overlay;
	position: absolute;
	bottom: 0;
	right: 0;
}
}

@media only screen and (max-width: 1359px) {
.hero-main .content-out:before {
	content: ""; 
	width: 1400px;
	height: 100%;
	float: left;
	background: url(../images/img-bg-bottom-mobile-1.png) no-repeat bottom left;
	background-size: 1400px auto;
	mix-blend-mode: overlay;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin: 0 0 0 -700px;
}

.hero-main .content-out:after {
	content: ""; 
	width: 1400px;
	height: 100%;
	float: left;
	background: url(../images/img-bg-bottom-mobile-2.png) no-repeat bottom right;
	background-size: 1400px auto;
	mix-blend-mode: overlay;
	position: absolute;
	bottom: 0;
	right: 50%;
	margin: 0 -700px 0 0;
}
}

@media only screen and (max-width: 1199px) {
.hero-main .content-out:before {
	margin: 0 0 0 -600px;
}

.hero-main .content-out:after {
	margin: 0 -600px 0 0;
}

.hero-main .content-cur:before { 
	height: 85%; 
}

.hero-main .content-vis {
	padding: 81px 0;
}

.hero-main .aside {
	max-width: 500px;
}
}

@media only screen and (max-width: 991px) {
.hero-main .content-cur:before { 
	height: 50%; 
}
}

@media only screen and (max-width: 767px) {
.hero-main:before {
	background-size: auto 200px;
}

.hero-main:after {
	background-size: auto 200px;
}

.hero-main .content-out:before {
	margin: 0 0 0 -450px;
}

.hero-main .content-out:after {
	margin: 0 -450px 0 0;
}

.hero-main .content-cur:before { 
	height: 200px; 
}

.hero-main .content-vis {
	padding: 75px 0;
}

.hero-main .aside {
	max-width: 450px;
	padding-top: 40px;
}

.hero-main .aside h1,
.hero-main .aside h1 {
	padding-bottom: 15px;
}

.hero-main .aside p {
	padding-bottom: 30px;
}
}


/* Section - Content */
.section-cont {
	width: 100%;
	float: left;
	background: transparent linear-gradient(180deg, #1e1e1e 0%, #000000 100%);
	overflow: hidden;
	position: relative;
}

.section-cont:before {
	content: "";
	width: 386px;
	height: 281px;
	float: left;
	background: url(../images/img-bg-features-left.png) no-repeat top center;
	background-size: 386px auto;
	position: absolute;
	top: 285px;
	left: 0;
	opacity: 0.10;
}

.section-cont:after {
	content: "";
	width: 358px;
	height: 396px;
	float: left;
	background: url(../images/img-bg-features-right.png) no-repeat top center;
	background-size: 358px auto;
	position: absolute;
	top: 180px;
	right: 0;
	opacity: 0.10;
}

.section-cont .inner-cont {
	width: 100%;
	float: left;
	position: relative;
	padding: 60px 0 115px 0;
}

.section-cont .inner-cont:before {
	content: "";
	width: 40.80%;
	height: 100%;
	float: left;
	background: url(../images/img-feature-curve.png) no-repeat bottom left;
	background-size: 100% auto;
	position: absolute;
	bottom: 0;
	left: 0;
}

@media only screen and (min-width: 1400px) {
.section-cont .inner-cont:before {
	width: 35%;
}
}

@media only screen and (max-width: 1199px) {
.section-cont:before {
	width: 270px;
	height: 197px;
	background-size: 270px auto;
	top: 180px;
}

.section-cont:after {
	width: 251px;
	height: 277px;
	background-size: 251px auto;
	top: 120px;
}

.section-cont .inner-cont {
	padding: 50px 0 80px 0;
}
}

@media only screen and (max-width: 767px) {
.section-cont:before {
	width: 193px;
	height: 141px;
	background-size: 193px auto;
	top: 120px;
}

.section-cont:after {
	width: 179px;
	height: 198px;
	background-size: 179px auto;
	top: 80px;
}

.section-cont .inner-cont {
	padding: 40px 0 60px 0;
}

.section-cont .inner-cont:before {
	width: 280px;
	background-size: 280px auto;
}
}


/* Feature - Boxes */
.feature-boxes {
	width: 100%;
	float: left;
	position: relative;
	z-index: 2;
	padding: 0 0 70px 0;
}

.feature-boxes:last-child {
	padding-bottom: 0;
}

.feature-boxes h2 {
	text-align: center;
	padding: 0 0 55px 0;
}

.feature-boxes .article {
	width: 28.63%;
	float: left;
	display: inline-block;
	vertical-align: top;
	font-weight: 600;
	font-size: 15px;
	color: #7a7a7a;
	line-height: 21px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	background: #202020;
	border: 3px solid #ffcf91;
	border-radius: 20px;
	padding: 25px 25px 40px 25px;
	margin: 2.25%;
}

.feature-boxes .article h3,
.feature-boxes .article h4,
.feature-boxes .article h5 {
	font-size: 20px;
	color: #ffffff;
	line-height: 25px;
	position: relative;
	padding: 0 0 25px 30px;
}

.feature-boxes .article h3:last-child,
.feature-boxes .article h4:last-child,
.feature-boxes .article h5:last-child {
	padding-bottom: 0;
}

.feature-boxes .article h3 em,
.feature-boxes .article h4 em,
.feature-boxes .article h5 em {
	float: none;
	display: inline-block;
	vertical-align: middle;
	color: #ffcf91;
	position: absolute;
	top: 2px;
	left: 0;
}

.feature-boxes .article:hover,
.feature-boxes .article:focus,
.feature-boxes .article:active {
	box-shadow: #ffcf91 0 0 15px;
}

.feature-boxes .article-out {
	width: 104.50%;
	float: left;
	display: flex;
	flex-wrap: wrap;
	margin: -2.25%;
}

@media only screen and (max-width: 1199px) {
.feature-boxes {
	padding: 0 0 60px 0;
}

.feature-boxes h2 {
	padding: 0 0 45px 0;
}

.feature-boxes .article h3,
.feature-boxes .article h4,
.feature-boxes .article h5 {
	padding: 0 0 20px 30px;
}
}

@media only screen and (max-width: 991px) {
.feature-boxes .article {
	width: 45.50%;
}
}

@media only screen and (max-width: 767px) {
.feature-boxes h2 {
	padding: 0 0 35px 0;
}

.feature-boxes .article {
	width: 100%;
	padding: 25px 20px 40px 20px;
	margin: 0 0 30px 0;
}

.feature-boxes .article-out {
	width: 100%;
	margin: 0 0 -30px 0;
}
}


/* Price - Boxes */
.pricing-boxes {
	width: 100%;
	float: left;
	text-align: center;
	position: relative;
	z-index: 2;
}

.pricing-boxes h2 {
	color: #ffcf91;
	text-align: center;
	padding: 0 0 55px 0;
}

.pricing-boxes .article {
	width: 23.63%;
	float: left;
	display: inline-block;
	vertical-align: top;
	font-weight: 600;
	font-size: 15px;
	color: #6d6d6d;
	line-height: 21px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	background: #111111;
	border: 3px solid #ffcf91;
	border-radius: 20px;
	padding: 55px 25px 65px 25px;
	margin: 4.85%;
}

.pricing-boxes .article h3,
.pricing-boxes .article h4,
.pricing-boxes .article h5 {
	color: #ffffff;
	padding: 0 0 14px 0;
}

.pricing-boxes .article h3:last-child,
.pricing-boxes .article h4:last-child,
.pricing-boxes .article h5:last-child {
	padding-bottom: 0;
}

.pricing-boxes .article .price {
	width: 100%;
	float: left;
	font-weight: 700;
	font-size: 15px;
	color: #ffcf91;
	line-height: 20px;
	padding: 0 0 39px 0;
}

.pricing-boxes .article:hover,
.pricing-boxes .article:focus,
.pricing-boxes .article:active {
	box-shadow: #ffcf91 0 0 15px;
}

.pricing-boxes .article-out {
	width: 109.70%;
	float: left;
	display: flex;
	flex-wrap: wrap;
	margin: -4.85%;
}

@media only screen and (max-width: 1199px) {
.pricing-boxes h2 {
	padding: 0 0 45px 0;
}

.pricing-boxes .article {
	width: 27.53%;
	padding: 50px 20px 50px 20px;
	margin: 2.90%;
}

.pricing-boxes .article .price {
	padding: 0 0 35px 0;
}

.pricing-boxes .article-out {
	width: 105.80%;
	margin: -2.90%;
}
}

@media only screen and (max-width: 991px) {
.pricing-boxes .article {
	width: 29.33%;
	padding: 50px 20px 50px 20px;
	margin: 2%;
}

.pricing-boxes .article-out {
	width: 104%;
	margin: -2%;
}
}

@media only screen and (max-width: 767px) {
.pricing-boxes h2 {
	padding: 0 0 35px 0;
}

.pricing-boxes .article {
	width: 100%;
	padding: 50px 20px;
	margin: 0 0 30px 0;
}

.pricing-boxes .article h3 {
	padding: 0 0 10px 0;
}

.pricing-boxes .article-out {
	width: 100%;
	margin: 0 0 -30px 0;
}
}


/*
 6.) Footer - Main
----------------------------------------*/

#footer-main {
	width: 100%;
	float: left;
	flex-shrink: 0;
	font-weight: 700;
	font-size: 20px;
	line-height: 26px;
	text-align: center;
	background: #2a2a2a;
	padding: 20px 0;
}

@media only screen and (max-width: 1199px) {
#footer-main { 
	font-size: 18px;
}
}

@media only screen and (max-width: 767px) {
#footer-main { 
	font-size: 14px; 
	line-height: 20px;
}

#footer-main .container {
	padding: 0 15px;
}
}


/*
 7.) Inner - Pages
----------------------------*/

#content-main { 
	width: 100%;
	float: left;
	display: flex;
	flex: 1 0 auto;
	align-items: center;
	background-image: url(../images/img-bg-middle.png);
	background-size: 1401px auto;
	background-repeat: repeat-x;
	background-position: bottom 0 left 0;
	position: relative;
	overflow: hidden;
}

#content-main:before {
	content: ""; 
	width: 100%;
	height: 350px;
	float: left;
	background: url(../images/img-bg-top-1.png) no-repeat top center;
	background-size: auto 255px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.11;
}

#content-main:after {
	content: ""; 
	width: 100%;
	height: 350px;
	float: left;
	background: url(../images/img-bg-top-2.png) no-repeat top center;
	background-size: auto 255px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.2;
}

#content-main .content-out,
#content-main .content-inn {
	width: 100%;
	float: left;
}

#content-main .content-vis {
	width: 100%;
	float: left;
	position: relative;
	z-index: 5;
	padding: 120px 0;
}

@media only screen and (min-width: 1360px) {
#content-main .content-out:before {
	content: ""; 
	width: 100%;
	height: 506px;
	float: left;
	background: url(../images/img-bg-bottom-left-1.png) no-repeat bottom left;
	background-size: 555px auto;
	mix-blend-mode: overlay;
	position: absolute;
	bottom: 0;
	left: 0;
}

#content-main .content-out:after {
	content: ""; 
	width: 100%;
	height: 506px;
	float: left;
	background: url(../images/img-bg-bottom-left-2.png) no-repeat bottom left;
	background-size: 555px auto;
	mix-blend-mode: overlay;
	position: absolute;
	bottom: 0;
	left: 0;
}

#content-main .content-inn:before {
	content: ""; 
	width: 100%;
	height: 506px;
	float: right;
	background: url(../images/img-bg-bottom-right-1.png) no-repeat bottom right;
	background-size: 516px auto;
	mix-blend-mode: overlay;
	position: absolute;
	bottom: 0;
	right: 0;
}

#content-main .content-inn:after {
	content: ""; 
	width: 100%;
	height: 506px;
	float: right;
	background: url(../images/img-bg-bottom-right-2.png) no-repeat bottom right;
	background-size: 516px auto;
	mix-blend-mode: overlay;
	position: absolute;
	bottom: 0;
	right: 0;
}
}

@media only screen and (max-width: 1359px) {
#content-main .content-out:before {
	content: ""; 
	width: 1400px;
	height: 100%;
	float: left;
	background: url(../images/img-bg-bottom-mobile-1.png) no-repeat bottom left;
	background-size: 1400px auto;
	mix-blend-mode: overlay;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin: 0 0 0 -700px;
}

#content-main .content-out:after {
	content: ""; 
	width: 1400px;
	height: 100%;
	float: left;
	background: url(../images/img-bg-bottom-mobile-2.png) no-repeat bottom right;
	background-size: 1400px auto;
	mix-blend-mode: overlay;
	position: absolute;
	bottom: 0;
	right: 50%;
	margin: 0 -700px 0 0;
}
}

@media only screen and (max-width: 1199px) {
#content-main .content-out:before {
	margin: 0 0 0 -600px;
}

#content-main .content-out:after {
	margin: 0 -600px 0 0;
}

#content-main .content-vis {
	padding: 81px 0;
}
}

@media only screen and (max-width: 767px) {
#content-main:before {
	background-size: auto 200px;
}

#content-main:after {
	background-size: auto 200px;
}

#content-main .content-out:before {
	margin: 0 0 0 -450px;
}

#content-main .content-out:after {
	margin: 0 -450px 0 0;
}

#content-main .content-vis {
	padding: 75px 0;
}
}


/* Content - Inner */
.content-inner {
	width: 100%;
	float: left;
	padding: 90px 0 0 0;
}

@media only screen and (max-width: 1199px) {
.content-inner {
	padding: 70px 0 0 0;
}
}

@media only screen and (max-width: 767px) {
.content-inner {
	padding: 50px 0 0 0;
}
}


/* Generate - Content */
.generate-cont {
	width: 100%;
	float: left;
	padding: 50px 360px 0 360px;
}

.generate-cont .max-middle {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
}

.generate-cont h2,
.generate-cont h3 {
	font-size: 20px;
	color: #989898;
	line-height: 26px;
}

.generate-cont .split-cl {
	width: 100%;
	float: left;
	margin: 0 0 15px 0;
}

.generate-cont .split-cl:last-child {
	margin-bottom: 0;
}

.generate-cont .split-cl .left-cl {
	width: 36%;
	float: none;
	display: inline-block;
	vertical-align: bottom;
	padding: 0 30px 0 0;
	margin: 0 -2px;
}

.generate-cont .split-cl .right-cl {
	width: 64%;
	float: none;
	display: inline-block;
	vertical-align: bottom;
	padding: 0;
	margin: 0 -2px;
}

.generate-cont .split-cl .right-cl .box-out {
	width: 103%;
	float: left;
	margin: -1.5%;
}

.generate-cont .split-cl .right-cl .box-out .box {
	width: 30.33%;
	float: left;
	font-weight: 600;
	font-size: 16px;
	line-height: 21px;
	text-align: center;
	background: rgba(255, 255, 255, .15);
	border-radius: 9px;
	padding: 11px 0 9px 0;
	margin: 1.5%;
}

.generate-cont .split-cl .right-cl .box-out .box strong {
	font-weight: inherit;
	display: block;
	color: #ffcf91;
}

.generate-cont .code-box {
	width: 100%;
	float: left;
	font-weight: 700;
	font-size: 16px;
	line-height: 21px;
	text-align: center;
	word-break: break-all;	
	background: #343434;
	box-shadow: 0px 3px 20px #00000029;
	border-radius: 5px;
	overflow: hidden;
	padding: 30px;
	margin: 0 0 15px 0;
}

.generate-cont .code-box:last-child {
	margin-bottom: 0;
}

.generate-cont .code-box p {
	padding: 0;
	margin: 0;
}

.generate-cont .btn-out {
	text-align: center;
	margin: -15px 0;
}

.generate-cont .btn-out .btn, 
.generate-cont .btn-out .button, 
.generate-cont .btn-out input[type="button"], 
.generate-cont .btn-out input[type="submit"] {
	width: 100%;
	max-width: 155px;
	height: 40px;
	font-size: 15px;
	line-height: 40px;
	border-radius: 10px;
	padding: 0;
	margin: 15px 30px;
}

@media only screen and (max-width: 1799px) {
.generate-cont {
	padding-right: 370px;
	padding-left: 50px;
}
}

@media only screen and (max-width: 991px) {
.generate-cont {
	padding: 50px 0 0 0;
}

.generate-cont .max-middle {
	max-width: 100%;
	padding: 0 40px;
}
}

@media only screen and (max-width: 767px) {
.generate-cont {
	padding: 20px 0 0 0;
}

.generate-cont .max-middle {
	max-width: 560px;
	padding: 0 30px;
}

.generate-cont .split-cl .left-cl {
	width: 100%;
	vertical-align: top;
	padding: 0;
	margin: 0 0 15px 0;
}

.generate-cont .split-cl .right-cl {
	width: 100%;
	vertical-align: top;
	padding: 0;
	margin: 0;
}

.generate-cont .split-cl .right-cl .box-out {
	width: 103%;
	margin: -1.5%;
}

.generate-cont .split-cl .right-cl .box-out .box {
	width: 30.33%;
	font-weight: 700;
	font-size: 14px;
	line-height: 19px;
	border-radius: 7px;
	padding: 11px 0 9px 0;
	margin: 1.5%;
}

.generate-cont .code-box {
	font-size: 14px;
	line-height: 19px;
	padding: 20px;
}

.generate-cont .btn-out {
	width: 106%;
	margin: -2% -3%;
}

.generate-cont .btn-out .btn, 
.generate-cont .btn-out .button, 
.generate-cont .btn-out input[type="button"], 
.generate-cont .btn-out input[type="submit"] {
	width: 96%;
	max-width: 130px;
	margin: 2%;
}
}

@media only screen and (max-width: 399px) {
.generate-cont .split-cl .right-cl .box-out .box {
	font-size: 13px;
	line-height: 18px;
}

.generate-cont .code-box {
	font-size: 13px;
	line-height: 18px;
	padding-left: 10px;
	padding-right: 10px;
}
}

@media only screen and (max-width: 359px) {
.generate-cont .max-middle {
	padding: 0 15px;
}

.generate-cont .code-box {
	padding: 20px 10px;
}
}


/* Menage - Plan */
.manage-plan {
	width: 320px;
	float: right;
	text-align: center;
	margin: 0 0 0 -320px;
}

.manage-plan h2,
.manage-plan h3 {
	width: 100%;
	height: 55px;
	float: left;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	line-height: 25px;
	text-align: center;
	background: #a5a5a5;
	box-shadow: rgba(0, 0, 0, .20) 0 0 5px;
	border-radius: 5px 5px 0 0;
	overflow: hidden;
	padding: 0 20px;
}

.manage-plan .form-out {
	width: 100%;
	float: left;
	background: #ababab url(../images/img-bg-manageplan.png) no-repeat center center;
	background-size: cover;
	border-radius: 0 0 5px 5px;
	overflow: hidden;
	padding: 35px 30px 45px 30px;
}

.manage-plan .form-out .custom-select {
	font-size: 15px;
	background-color: #9484f4;
	border-radius: 4px;
	box-shadow: 0px 3px 11px #00000047;
}

.manage-plan .form-out .custom-options { 
	background-color: #9484F4;
	border-radius: 4px;
	box-shadow: 0px 3px 11px #00000047;
}

.manage-plan .form-out .custom-options .option-item {
	font-size: 15px;
	line-height: 21px;
}

.manage-plan .form-out .selected-value {
	width: 100%;
	max-width: 160px;
	height: 40px;
	float: none;
	display: inline-table;
	vertical-align: top;
	font-weight: 700;
	font-size: 15px;
	color: #9484F4;
	line-height: 40px; 
	background: #575082;
	overflow: hidden;
}

.manage-plan .form-out .btn, 
.manage-plan .form-out .button, 
.manage-plan .form-out input[type="button"], 
.manage-plan .form-out input[type="submit"] {
	width: 100%;
	max-width: 155px;
	height: 40px;
	font-size: 13px;
	line-height: 40px;
	background-color: #9484f4;
	border-radius: 4px;
	padding: 0;
}

.manage-plan .form-out .btn:hover,
.manage-plan .form-out .btn:focus,
.manage-plan .form-out .btn:active,
.manage-plan .form-out .btn:active:focus,
.manage-plan .form-out .btn.active,
.manage-plan .form-out .btn.active:focus,
.manage-plan .form-out .button:hover,
.manage-plan .form-out .button:focus,
.manage-plan .form-out .button:active,
.manage-plan .form-out .button:active:focus,
.manage-plan .form-out .button.active,
.manage-plan .form-out .button.active:focus,
.manage-plan .form-out input[type="button"]:hover,
.manage-plan .form-out input[type="button"]:focus,
.manage-plan .form-out input[type="button"]:active,
.manage-plan .form-out input[type="button"]:active:focus,
.manage-plan .form-out input[type="button"].active,
.manage-plan .form-out input[type="button"].active:focus,
.manage-plan .form-out input[type="submit"]:hover,
.manage-plan .form-out input[type="submit"]:focus,
.manage-plan .form-out input[type="submit"]:active,
.manage-plan .form-out input[type="submit"]:active:focus,
.manage-plan .form-out input[type="submit"].active,
.manage-plan .form-out input[type="submit"].active:focus {
	background-color: #6f5ce2;
}

.manage-plan .form-out .form-group {
	width: 100%;
	max-width: 200px;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.manage-plan .form-out .form-filed {
	width: 100%;
	float: left;
	padding-bottom: 50px;
}

.manage-plan .form-out .form-filed:last-child {
	padding-bottom: 0;
}

.manage-plan .btn-out {
	padding: 0;
	margin: 0;
}

@media only screen and (max-width: 991px) {
.manage-plan {
	width: 100%;
	float: left;
	text-align: center;
	padding: 40px 40px 0 40px;
	margin: 0;
}
}

@media only screen and (max-width: 767px) {
.manage-plan {
	padding: 40px 30px 0 30px;
}
}


/* Status - Box */
.status-box {
	width: 100%;
	float: left;
	text-align: center;
	padding: 30px 40px 0 40px;
}

.status-box .box {
	width: 100%;
	max-width: 380px;
	float: none;
	display: inline-block;
	font-size: 15px;
	color: #a5a5a5;
	line-height: 20px;
	text-align: center;
	background: #2a2a2a; 
	border: 3px solid #ffcf91; 
	border-radius: 20px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out; 
	padding: 30px 20px 25px 20px;
}

.status-box .box h4 {
	font-size: 20px;
	color: #ffffff;
	line-height: 25px;
	position: relative;
	padding-bottom: 10px;
}

.status-box .box h4 em {
	font-size: 32px;
	color: #ffcf91;
	position: relative;
	top: 4px;
	margin: -20px 5px -20px 0;
}

.status-box .box h4:last-child {
	padding-bottom: 0;
}

.status-box .box p {
	padding-bottom: 10px;
}

.status-box .box p:last-child {
	padding-bottom: 0;
}

.status-box .box:hover,
.status-box .box:focus,
.status-box .box:active {
	box-shadow: #ffcf91 0 0 20px;
}

@media only screen and (max-width: 767px) {
.status-box {
	padding: 40px 30px 0 30px;
}
}


/* Password - Box */
.password-box {
	width: 100%;
	float: left;
	text-align: center;
	padding: 30px 40px 0 40px;
}

.password-box .box {
	width: 100%;
	max-width: 385px;
	float: none;
	display: inline-block;
	font-size: 15px;
	color: #a5a5a5;
	line-height: 20px;
	text-align: center;
}

.password-box .box h4 {
	font-size: 20px;
	color: #ffffff;
	line-height: 25px;
	position: relative;
	padding-bottom: 15px;
}

.password-box .box h4 em {
	font-size: 28px;
	color: #ffcf91;
	position: relative;
	top: 1px;
	margin: -20px 10px -20px 0;
}

.password-box .box h4:last-child {
	padding-bottom: 0;
}

.password-box .box p {
	padding-bottom: 10px;
}

.password-box .box p:last-child {
	padding-bottom: 0;
}

.password-box .box .form-out {
	width: 100%;
	float: left;
	position: relative;
	padding: 0;
	margin: 0;
}

.password-box .box .form-out select, 
.password-box .box .form-out textarea, 
.password-box .box .form-out input[type="text"], 
.password-box .box .form-out input[type="password"], 
.password-box .box .form-out input[type="datetime"], 
.password-box .box .form-out input[type="datetime-local"], 
.password-box .box .form-out input[type="date"], 
.password-box .box .form-out input[type="month"], 
.password-box .box .form-out input[type="time"], 
.password-box .box .form-out input[type="week"], 
.password-box .box .form-out input[type="number"], 
.password-box .box .form-out input[type="email"], 
.password-box .box .form-out input[type="url"], 
.password-box .box .form-out input[type="search"], 
.password-box .box .form-out input[type="tel"], 
.password-box .box .form-out input[type="color"], 
.password-box .box .form-out .uneditable-input {
	height: 45px;
	font-weight: 700;
	font-size: 13px;
	line-height: 18px;
	background: #2a2a2a;
	border: 3px solid #ffcf91;
	border-radius: 360px;
	box-shadow: none;
	padding: 10px 50px;
	margin: 0;
}

.password-box .box .form-out select:focus,
.password-box .box .form-out textarea:focus,
.password-box .box .form-out input[type="text"]:focus,
.password-box .box .form-out input[type="password"]:focus,
.password-box .box .form-out input[type="datetime"]:focus,
.password-box .box .form-out input[type="datetime-local"]:focus,
.password-box .box .form-out input[type="date"]:focus,
.password-box .box .form-out input[type="month"]:focus,
.password-box .box .form-out input[type="time"]:focus,
.password-box .box .form-out input[type="week"]:focus,
.password-box .box .form-out input[type="number"]:focus,
.password-box .box .form-out input[type="email"]:focus,
.password-box .box .form-out input[type="url"]:focus,
.password-box .box .form-out input[type="search"]:focus,
.password-box .box .form-out input[type="tel"]:focus,
.password-box .box .form-out input[type="color"]:focus,
.password-box .box .form-out .uneditable-input:focus {
	box-shadow: #ffcf91 0 0 15px;
}

.password-box .box .form-out .btn, 
.password-box .box .form-out .button, 
.password-box .box .form-out input[type="button"], 
.password-box .box .form-out input[type="submit"] {
	width: 51px;
	height: 45px;
	float: right;
	background: url(../fonts/img-icon-arrow-right.svg) no-repeat center center;
	background-size: 14px auto;
	border-radius: 0;
	border: none;
	text-indent: -9999px;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
}

.password-box .box .form-out .btn:hover,
.password-box .box .form-out .btn:focus,
.password-box .box .form-out .btn:active,
.password-box .box .form-out .btn:active:focus,
.password-box .box .form-out .btn.active,
.password-box .box .form-out .btn.active:focus,
.password-box .box .form-out button:hover,
.password-box .box .form-out button:focus,
.password-box .box .form-out button:active,
.password-box .box .form-out button:active:focus,
.password-box .box .form-out button.active,
.password-box .box .form-out button.active:focus,
.password-box .box .form-out input[type="button"]:hover,
.password-box .box .form-out input[type="button"]:focus,
.password-box .box .form-out input[type="button"]:active,
.password-box .box .form-out input[type="button"]:active:focus,
.password-box .box .form-out input[type="button"].active,
.password-box .box .form-out input[type="button"].active:focus,
.password-box .box .form-out input[type="submit"]:hover,
.password-box .box .form-out input[type="submit"]:focus,
.password-box .box .form-out input[type="submit"]:active,
.password-box .box .form-out input[type="submit"]:active:focus,
.password-box .box .form-out input[type="submit"].active,
.password-box .box .form-out input[type="submit"].active:focus,
.password-box .box .form-out .btn:not(:disabled):not(.disabled).active, 
.password-box .box .form-out .btn:not(:disabled):not(.disabled):active  {
	background-color: transparent;
}

@media only screen and (max-width: 767px) {
.password-box {
	padding: 40px 30px 0 30px;
}
}


/* Form - Box */
.form-box {
	width: 100%;
	float: left;
	text-align: center;
	padding: 30px 40px 0 40px;
}

.form-box .box {
	width: 100%;
	max-width: 320px;
	min-height: 470px;
	float: none;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background: #1d1d1d url(../images/img-bg-formbox.png) no-repeat top center;
	background-size: cover;
	border-radius: 4px;
	position: relative;
	padding: 100px 30px 130px 30px;
}

.form-box .box h2,
.form-box .box h3 {
	width: 100%;
	float: left;
	font-size: 24px;
	color: #ffcf91;
	line-height: 30px;
	background: #a5a5a5;
	box-shadow: rgba(0, 0, 0, .10) 0 0 5px;
	border-radius: 4px 4px 0 0;
	padding: 13px 20px 13px 20px;
	position: absolute;
	top: 0;
	left: 0;
}

.form-box .box .form-out {
	width: 100%;
	float: left;
	padding: 0;
}

.form-box .box .form-group {
	width: 100%;
	max-width: 235px;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0 0 18px 0;
}

.form-box .box .form-group:last-child {
	padding-bottom: 0;
}

.form-box .box .form-group .form-field {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0 0 28px 0;
}

.form-box .box .form-group .form-field:last-child {
	margin-bottom: 0;
}

.form-box .box .forgot-link {
	width: 100%;
	float: left;
	font-size: 13px;
	color: #ffffff;
	line-height: 17px;
	text-shadow: 0px 2px 8px #0000004d;
}

.form-box .box .forgot-link a {
	color: #ffffff;
	text-decoration: none;
}

.form-box .box .forgot-link a:hover,
.form-box .box .forgot-link a:focus,
.form-box .box .forgot-link a:active {
	color: #ffcf91;
	text-decoration: underline;
}

.form-box .box .btn,
.form-box .box .button,
.form-box .box input[type="button"],
.form-box .box input[type="submit"] {
	min-width: 146px;
	height: 36px;
	font-weight: 600;
	font-size: 15px;
	color: #ffffff;
	line-height: 36px;
	background: #a5a5a5;
	box-shadow: 0px 5px 9px #00000033;
	padding: 0 20px;
}

.form-box .box .btn:hover,
.form-box .box .btn:focus,
.form-box .box .btn:active,
.form-box .box .btn:active:focus,
.form-box .box .btn.active,
.form-box .box .btn.active:focus,
.form-box .box .button:hover,
.form-box .box .button:focus,
.form-box .box .button:active,
.form-box .box .button:active:focus,
.form-box .box .button.active,
.form-box .box .button.active:focus,
.form-box .box input[type="button"]:hover,
.form-box .box input[type="button"]:focus,
.form-box .box input[type="button"]:active,
.form-box .box input[type="button"]:active:focus,
.form-box .box input[type="button"].active,
.form-box .box input[type="button"].active:focus,
.form-box .box input[type="submit"]:hover,
.form-box .box input[type="submit"]:focus,
.form-box .box input[type="submit"]:active,
.form-box .box input[type="submit"]:active:focus,
.form-box .box input[type="submit"].active,
.form-box .box input[type="submit"].active:focus {
	background: #999999;
}

.form-box .box .btn-out {
	position: absolute;
	bottom: 55px;
	left: 0;
	padding: 0 30px;
}

@media only screen and (max-width: 767px) {
.form-box {
	padding: 40px 30px 0 30px;
}

.form-box .box {
	min-height: 400px;
}
}


/* Error - Box */
#content-main .content-404:before { 
	content: ""; 
	width: 100%; 
	height: 20px; 
	float: left; 
	background: #9484f4; 
	position: absolute; 
	top: 0; 
	left: 0;
	z-index: 1;
}

#content-main .content-404:after { 
	content: ""; 
	width: 100%; 
	height: 100%; 
	float: left; 
	background: url(../images/img-hero-curve.png) no-repeat top right; 
	background-size: auto 100%; 
	position: absolute; 
	top: 0; 
	right: 0;
	z-index: 2;
}

.error-box {
	width: 100%;
	float: left;
	text-align: center;
	padding: 30px 40px 0 40px;
}

.error-box .box {
	width: 100%;
	max-width: 980px;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.error-box .box h1 {
	font-weight: 700;
	font-size: 179px;
	color: #ffffff;
	line-height: 179px;
	padding: 0 0 5px 0;
}

.error-box .box h1:last-child {
	padding-bottom: 0;
}

.error-box .box p {
	font-weight: 700;
	font-size: 85px;
	color: #9484f4;
	line-height: 85px;
	padding: 0;
}

@media only screen and (max-width: 1199px) {
#content-main .content-404:before { 
	height: 10px; 
}

#content-main .content-404:after { 
	height: 75%; 
}

.error-box .box h1 {
	font-size: 130px;
	line-height: 130px;
}

.error-box .box p {
	font-size: 65px;
	line-height: 65px;
}
}

@media only screen and (max-width: 991px) {
#content-main .content-404:after { 
	height: 50%; 
}
}

@media only screen and (max-width: 767px) {
#content-main .content-404:before { 
	height: 5px; 
}

#content-main .content-404:after { 
	height: 200px; 
}

.error-box {
	padding: 40px 30px 0 30px;
}

.error-box .box h1 {
	font-size: 100px;
	line-height: 100px;
}

.error-box .box p {
	font-size: 50px;
	line-height: 50px;
}
}


/*
 8.) Text - Colors
----------------------------*/

.wow {
	opacity: 0;
}


/* Border - Radius */
.radius-10 {
	border-radius: 10px!important; 
}

.radius-12 {
	border-radius: 12px!important; 
}

.radius-14 {
	border-radius: 14px!important; 
}

.radius-16 {
	border-radius: 16px!important; 
}

.radius-18 {
	border-radius: 18px!important; 
}

.radius-20 {
	border-radius: 20px!important; 
}


/* Text - Positions */
.upper-case { 
	text-transform: uppercase;
}

.lower-case { 
	text-transform: none;
}

.underline {
	text-decoration: underline; 
}

.center-align {
	text-align: center;
	justify-content: center;
}

.vertical-align {
	align-items: center;
}

.left-align {
	text-align: left;
}

.righ-align {
	text-align: right;
}


/* Padding/Margin - None */
.padding-top-none {
	padding-top: 0!important;
}

.padding-bottom-none {
	padding-bottom: 0!important;
}

.margin-top-none {
	margin-top: 0!important;
}

.margin-bottom-none {
	margin-bottom: 0!important;
}


/* Text - Colors */
.white {
	color: #ffffff!important;
}

.black {
	color: #000000!important;
}

.sandle {
	color: #ffcf91!important;
}

.orange {
	color: #f8b661!important;
}

.voilet {
	color: #9484f4!important;
}


