:root {
    --primary-color: #FFD100;
    --primary-rgb: rgb(255, 209, 0);
    --secondary-color: #F0385D; 
    --secondary-rgb: rgb(240, 56, 93);
}

body, html {
    background-color: #080B0C;
}

body, html, input, select, textarea, h1, h2, h3, h4 ,h5, p, span, button {
	font-family: "Quicksand", sans-serif!important;
}

.desktop_nav {
	display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

.mobile_nav {
	display: none;
}

.hidden {
	display: none!important;
	visibility: hidden;
	opacity: 0;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	color: #fff;
	font-size: 12px;
	line-height: 18px;
	margin-bottom: 5px;
}

.form-group label span {
	color: #dc3545;
}

.form-group .form-checkbox {
	margin-bottom: 10px;
}

.form-group p {
	color: #808080;
	font-size: 10px;
	line-height: 18px;
	margin-top: 3px;
	margin-bottom: 0;
}

.form-group input, .form-group select {
	border: 1px solid #fff;
	background-color: transparent;
	color: #fff;
	font-size: 12px;
	line-height: 18px;
	padding: 10px 15px;
	border-radius: 25px;
	height: 40px!important;
}

.form-group textarea {
	border: 1px solid #fff;
	background-color: transparent;
	color: #fff;
	font-size: 12px;
	line-height: 18px;
	padding: 10px 15px;
	border-radius: 25px;
}

.form-control:focus {
	background-color: transparent;
	color: #fff;
	border-color: #FFD100;
	box-shadow: 0 0 0 0.2rem rgba(8, 11, 12, .25);
}

.form-button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

.form-button button {
	border: 1px solid #F0385D;
	border-radius: 25px;
	background-color: #F0385D;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 20px;
	padding: 5px 25px;
}

.form-button button:hover {
	background-color: #fff;
	color: #F0385D;
}

.form-checkbox {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	font-size: 14px;
	line-height: 24px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.form-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 25px;
	width: 25px;
	left: 0;
	top: 0;
}

input[disabled], input[disabled=true], .form-control:disabled {
	background-color: #c5c5c5!important;
}

.form-checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: transparent;
	border: 2px solid #fff;
}

.form-checkbox:hover input ~ .form-checkmark {
	background-color: transparent;
}

.form-checkbox input:checked ~ .form-checkmark {
	background-color: transparent;
}

.form-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.form-checkbox input:checked ~ .form-checkmark:after {
	display: block;
}

.form-checkbox .form-checkmark:after {
	left: 8px;
    top: 3px;
    width: 6px;
    height: 13px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.iti.iti--allow-dropdown {
	display: block;
	width: 100%;
	height: 40px!important;
}

.iti__arrow {
	border-top-color: #FFD100!important;
}

.iti__arrow--up {
	border-bottom-color: #FFD100!important;
}

.iti__country-list {
	background-color: #000!important;
}

.iti__country.iti__highlight, .iti__country.iti__active {
	background-color: rgba(255, 209, 0, 0.5)!important; 
}

.sweet_account .popup_close {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #FFD100;
    border: 1px solid #FFD100;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    border-radius: 0 0 0 5px;
    animation: 1s popup_fade;
    animation-fill-mode: forwards;
    visibility: hidden;
}

@keyframes popup_fade {
    99% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}

.sweet_account .popup_close:hover {
    background-color: transparent;
    color: #fff;
}

.swal2-container.swal2-backdrop-show {
    background-color: rgba(0, 0, 0, 0.6)!important;
}

.sweet_account.success.swal2-popup {
	box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
	-webkit-box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
	-moz-box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
    background: #080B0C!important;
    border-radius: 25px!important;
    overflow: hidden;
    max-width: 400px!important;
}

.sweet_account.success .swal2-html-container {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sweet_account.success .swal2-confirm {
    background-color: #F0385D!important;
    border: 1px solid #fff!important;
    border-radius: 25px!important;
    padding: 5px 50px!important;
    font-size: 14px!important;
    line-height: 20px!important;
}

.sweet_account.success .swal2-confirm:hover {
    background-color: transparent!important;
    color: #F0385D!important;
}

.marquee {
	overflow: hidden;
	opacity: 0;
}

.marquee_ready {
	background-color: #404040;
}

.marquee_ready p {
	font-size: 20px;
	line-height: 26px;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #fff;
}

.primary_title {
	font-size: 50px;
	line-height: 55px;
	font-weight: bold;
	margin-bottom: 0;
}

.secondary_title {
	font-size: 25px;
	line-height: 30px;
	font-weight: bold;
	margin-bottom: 0;
}

.primary_description {
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 0;
}

.secondary_description {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 0;
}

#scrollUp {
	background: rgb(255,209,0);
	background: -moz-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd100",endColorstr="#f0385d",GradientType=1);
}

.general_button {
	display: flex;
	justify-content: center;
	align-items: center;
}

.general_button a, .general_button button {
	background: rgb(255,209,0);
	background: -moz-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd100",endColorstr="#f0385d",GradientType=1);
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	padding: 5px 35px;
	border-radius: 25px;
	border: 0;
}

.general_button a:hover, .general_button button:hover {
	background-color: transparent;
	color: #FFD100;
}

.general_button a[href=""] {
	pointer-events: none;
	background: #E2E4E8!important;
	color: #808080;
}

.general_button a[disabled] {
	cursor: not-allowed;
	background: #E2E4E8!important;
	color: #808080;
}

.secondard_button {
	display: flex;
	justify-content: center;
	align-items: center;
}

.secondard_button a {
	background-color: #fff;
	border: 1px solid #fff;
	color: #000;
	font-size: 14px;
	line-height: 20px;
	padding: 3px 25px;
}

.secondard_button a:hover {
	background-color: #000;
	color: #fff;
}

.general_image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.general_image img {
	width: 100%;
}

.general_background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.desktop_nav {
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: rgba(0, 0, 0, 0.5);
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.desktop_nav_inner {
	display: flex;
	justify-content: center;
	align-items: center;
}

.desktop_nav_inner .desktop_nav_left a {
	width: 150px;
	display: block;
}

.desktop_nav_inner .desktop_nav_right {
	width: calc(100% - 250px);
}

.desktop_nav_inner .desktop_nav_right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.desktop_nav_inner .desktop_nav_right a {
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	margin: auto 15px;
}

.desktop_nav_inner .desktop_nav_right a:not(:last-child):hover {
	background: rgb(255,209,0);
	background: -moz-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd100",endColorstr="#f0385d",GradientType=1);
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
}

.desktop_nav_inner .desktop_nav_right a:last-child {
	margin-left: 0;
	margin-right: 0;
	border-radius: 25px;
	padding: 5px 20px;
	color: #fff;
	background: rgb(255,209,0);
	background: -moz-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd100",endColorstr="#f0385d",GradientType=1);
}

.desktop_nav_inner .desktop_nav_right a:last-child:hover {
	background: rgb(255,209,0);
	background: -moz-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd100",endColorstr="#f0385d",GradientType=1);
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
}

.flex_box_outer {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
}

.flex_box_outer .flex_box_inner {
	width: 100%;
}

.general_title {
	display: flex;
	justify-content: center;
	align-items: center;
}

.dashboard_banner {
	padding-top: 120px;
	padding-bottom: 70px;
	text-align: center;
}

.dashboard_banner_logo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.dashboard_banner_logo img {
	max-width: 75px;
}

.dashboard_keywords {
	margin-top: 50px;
	margin-bottom: 50px;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.dashboard_keywords span {
	padding-left: 30px;
	padding-right: 30px;
	font-size: 15px;
	line-height: 20px;
	font-weight: bold;
}

.dashboard_banner .secondary_title {
	margin-top: 50px;
	margin-bottom: 30px;
}

.dashboard_feature {
	padding-top: 50px;
	padding-bottom: 50px;
}

.dashboard_feature_content {
	margin-top: 50px;
}

.dashboard_feature_content .dashboard_feature_logo {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.dashboard_feature_content .dashboard_feature_logo img {
	max-width: 70px;
}

.dashboard_feature_content .secondary_title {
	margin-top: 30px;
	margin-bottom: 30px;
}

.dashboard_feature_content[attr-id="2"] .flex_box_inner {
	text-align: right;
}

.dashboard_feature_content[attr-id="2"] .flex_box_inner .dashboard_feature_logo {
	justify-content: flex-end;
}

.dashboard_feature_content[attr-id="3"] .dashboard_feature_logo img {
	max-width: 150px;
}

.dashboard_team {
	padding-top: 50px;
	padding-bottom: 50px;
}

.dashboard_team_content {
	margin-top: 50px;
}

.dashboard_team_content .general_image {
	margin-top: 30px;
	margin-bottom: 30px;
}

.dashboard_team_content .dashboard_team_member:not(:last-child) {
	margin-bottom: 50px;
}

.dashboard_team_content .dashboard_team_member p.primary_description {
	font-weight: bold;
}

.dashboard_team_content .dashboard_team_member span {
	margin-top: 10px;
	margin-bottom: 10px;
	display: block;
	font-style: italic;
}

.dashboard_mint {
	padding-top: 50px;
	padding-bottom: 50px;
}

.dashboard_mint_content {
	margin: 50px auto auto auto;
	max-width: 500px;
	text-align: center;
}

.dashboard_mint_content .dashboard_mint_logo {
	max-width: 50px;
	margin: auto;
}

.dashboard_mint_content .dashboard_mint_banner {
	max-width: 300px;
	margin: 30px auto 0 auto;
}

.dashboard_mint_content .dashboard_mint_price {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

.dashboard_mint_content .dashboard_mint_price p {
	margin-left: 15px;
	margin-right: 15px;
	font-weight: bold;
}

.dashboard_mint_content .dashboard_mint_price p small {
	margin-left: 3px;
	font-size: 70%;
}

.dashboard_mint_content .general_button {
	margin-top: 30px;
	text-transform: uppercase;
}

.dashboard_contact {
	padding-top: 50px;
	padding-bottom: 50px;
}

.dashboard_contact_content {
	margin-top: 50px;
}

.dashboard_contact_content .dashboard_contact_social_media {
	margin-top: 30px;
	margin-bottom: 30px;
}

.dashboard_contact_content .dashboard_contact_social_media a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 15px;
}

.dashboard_contact_content .dashboard_contact_social_media a img {
	width: 30px;
}

.dashboard_contact_content .dashboard_contact_social_media a p {
	margin-left: 8px;
	color: #fff;
}

.dashboard_contact_content .dashboard_contact_social_media a:hover p {
	background: rgb(255,209,0);
	background: -moz-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd100",endColorstr="#f0385d",GradientType=1);
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
}

.dashboard_contact_content .general_button {
	margin-top: 30px;
}

.dashboard_contact_content .general_button button {
	width: 100%;
}

.dashboard_partner {
	padding-top: 50px;
	padding-bottom: 50px;
}

.dashboard_partner .dashboard_partner_content {
	margin-top: 50px;
	text-align: center;
}

.dashboard_partner .dashboard_partner_each .primary_description {
	margin-bottom: 30px;
}

.dashboard_partner .dashboard_partner_each a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.dashboard_partner .dashboard_partner_each a[href=""] {
	pointer-events: none;
}

.dashboard_partner .dashboard_partner_each .dashboard_partner_each_item {
	padding-left: 30px;
	padding-right: 30px;
	display: flex;
	justify-content: center;
    align-items: center;
    height: 100%;
}

.dashboard_partner .dashboard_partner_each:not(:last-child) {
	margin-bottom: 60px;
}

footer {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer_content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

.footer_content .dashboard_keywords {
	margin-top: 0;
	margin-bottom: 0;
}

.loading_transaction {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1050;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgb(255,209,0);
    background: -moz-radial-gradient(circle, rgba(255,209,0,0.20) 0%, rgba(240,56,93,1) 100%);
    background: -webkit-radial-gradient(circle, rgba(255,209,0,0.20) 0%, rgba(240,56,93,1) 100%);
    background: radial-gradient(circle, rgba(255,209,0,0.20) 0%, rgba(240,56,93,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6517ff",endColorstr="#0f0017",GradientType=1)
}

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

.loading_transaction .loading_transaction_inner i {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 30px;
    color: #FFD100;
}

.loading_transaction .loading_transaction_inner p {
    font-size: 14px;
    line-height: 20px;
    margin: auto;
    color: #fff;
}

.mint_form {
	display: none;
	margin-top: 50px;
}

.mint_form .form-group {
	text-align: left;
}

.mint_form .form-group p {
	color: #fff;
	font-style: italic;
}

.mint_history a {
	background: rgb(255,209,0);
	background: -moz-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd100",endColorstr="#f0385d",GradientType=1);
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
	display: block;
	font-size: 12px;
	line-height: 18px;
	margin-top: 10px;
}

.mint_form label a {
	margin-left: 5px;
    background: rgb(255, 209, 0);
    background: -moz-linear-gradient(180deg, rgba(255, 209, 0, 1) 0%, rgba(240, 56, 93, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 209, 0, 1) 0%, rgba(240, 56, 93, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 209, 0, 1) 0%, rgba(240, 56, 93, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd100",endColorstr="#f0385d",GradientType=1);
    padding: 3px 15px;
    border-radius: 8px;
    text-transform: uppercase;
}

.mint_form input[disabled] {
	/*background: rgb(255,209,0);
	background: -moz-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd100",endColorstr="#f0385d",GradientType=1);*/
	border-color: #FFD100;
    box-shadow: 0 0 0 0.2rem rgba(8, 11, 12, .25);
	background: rgb(255,209,0);
	background: -moz-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd100",endColorstr="#f0385d",GradientType=1);
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
}

.sweet_account.success.sweet_history {
    width: 700px!important;
    max-width: initial!important;
    padding: 25px!important;
	background: rgb(255,209,0);
	background: -moz-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd100",endColorstr="#f0385d",GradientType=1);
}

.user_history .user_history_rows {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.user_history .user_history_rows:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% / 5 * 4);
    background-color: rgba(253, 176, 98, 0.25);
    height: 1px;
    margin: auto;
}

.user_history .user_history_rows:last-child:after {
    content: none;
}

.user_history .user_history_header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user_history .user_history_header p, .user_history .user_history_rows p, .user_history .user_history_rows .user_view {
    width: calc(100% / 4);
}

.user_history .user_history_header p {
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.user_history .user_history_rows {
    padding-top: 15px;
    padding-bottom: 15px;
}

.user_history .user_history_rows p {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
}

.user_history .user_history_rows .user_view {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user_history .user_history_rows a {
	background: rgb(255,209,0);
	background: -moz-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	background: linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd100",endColorstr="#f0385d",GradientType=1);
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
    font-size: 12px;
    line-height: 18px;
    margin: auto;
    padding: 0px 15px;
}

.user_pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.user_pagination a {
    background-color: #FDB062;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.user_pagination a.hide {
    visibility: hidden;
    opacity: 0;
}

.user_pagination a i {
    color: #fff;
    font-size: 10px;
    line-height: 1;
    padding-right: 2px;
}

.user_pagination a[attr-id="2"] i {
    padding-right: 0;
    padding-left: 2px;
}

@media only screen and (max-width: 991px) {  
	.desktop_nav {
		display: none;
	}

	.mobile_nav {
		display: block;
		position: fixed;
	    top: 0;
	    left: 0;
	    right: 0;
	    width: 100%;
	    z-index: 100;
	}

	.mobile_header_outer {
		padding-top: 15px;
		padding-bottom: 15px;
		background-color: rgba(0, 0, 0, 0.5);
	}

	.mobile_header_inner {
		display: flex;
	    justify-content: space-between;
	    align-items: center;
	}

	.mobile_header_inner a {
		width: 40px;
		display: block;
	}

	.mobile_header_inner button {
		background-color: transparent;
		color: #fff;
		border: 0;
		font-size: 20px;
		line-height: 28px;
	}

	#mobile_sidebar {
	    width: 250px;
	    position: fixed;
	    top: 0;
	    left: -250px;
	    height: 100vh;
	    z-index: 999;
		background: rgb(255,209,0);
		background: -moz-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
		background: -webkit-linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
		background: linear-gradient(180deg, rgba(255,209,0,1) 0%, rgba(240,56,93,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd100",endColorstr="#f0385d",GradientType=1);
	    color: #fff;
	    transition: all 0.3s;
	    overflow-y: scroll;
	}

	#mobile_sidebar.active {
	    left: 0;
	}

	#mobile_sidebar .sidebar_header {
	    padding: 50px 50px 25px 50px;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	}

	#mobile_sidebar ul.components {
	    padding: 15px 0;
	    border-bottom: 1px solid #fff;
	}

	#mobile_sidebar .components p {
	    color: #fff;
	    padding: 10px;
	}

	#mobile_sidebar .components li a {
	    padding: 10px;
	    display: block;
	    font-size: 12px;
	    line-height: 18px;
	    font-weight: 600;
	    color: #fff;
	    text-transform: uppercase;
	}

	#mobile_sidebar .components li.active>a, #mobile_sidebar a.collapse[aria-expanded="true"] {
		color: #0032A0;
	}

	#mobile_sidebar .components li a:hover {
	    color: #fff;
	}

	#mobile_sidebar a[data-toggle="collapse"] {
	    position: relative;
	}

	.sidebar_overlay {
	    display: none;
	    position: fixed;
	    width: 100vw;
	    height: 100vh;
	    background: rgba(0, 0, 0, 0.7);
	    z-index: 998;
	    opacity: 0;
	    transition: all 0.5s ease-in-out;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    margin: auto;
	}
	.sidebar_overlay.active {
	    display: block;
	    opacity: 1;
	}

	#sidebar_dismiss {
	    width: 25px;
	    height: 25px;
	    line-height: 25px;
	    font-size: 15px;
	    text-align: center;
	    position: absolute;
	    top: 10px;
	    right: 10px;
	    cursor: pointer;
	    -webkit-transition: all 0.3s;
	    -o-transition: all 0.3s;
	    transition: all 0.3s;
	    border-radius: 15px;
	    color: #fff;;
	}

	#sidebar_dismiss:hover {
	    background-color: #fff;
	    color: #fff;
	}

	.mobile_socials {
		margin-top: 20px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.mobile_socials a {
		display: block;
		margin-left: 8px;
		margin-right: 8px;
		width: 30px;
	}

	.mobile_socials a i {
		font-size: 20px;
		line-height: 25px;
	}

	.mobile_socials a:hover i {
		color: #FFD100;
	}
}

@media only screen and (max-width: 767px) {
	.primary_title {
		font-size: 30px;
		line-height: 35px;
	}

	.secondary_title {
		font-size: 25px;
		line-height: 30px;
	}

	.primary_description {
		font-size: 16px;
		line-height: 20px;
	}

	.secondary_description {
		font-size: 12px;
		line-height: 16px;
	}

	.general_button a, .general_button button {
		font-size: 12px;
		line-height: 18px;
	}

	.dashboard_keywords span {
		padding-left: 15px;
		padding-right: 15px;
	}

	.dashboard_feature .flex_box_inner, .dashboard_feature_content[attr-id="2"] .flex_box_inner {
		text-align: center;
	}

	.dashboard_feature .flex_box_inner .dashboard_feature_logo, .dashboard_feature_content[attr-id="2"] .flex_box_inner .dashboard_feature_logo {
		justify-content: center;
	}

	.dashboard_feature_content[attr-id="2"] {
		margin-bottom: 100px;
	}

	.dashboard_feature_content .general_image {
		margin-top: 15px;
	}

	.dashboard_team_content .dashboard_team_member:first-child {
		margin-top: 70px;
	}

	.dashboard_partner .partner_col:not(:last-child) {
		margin-bottom: 50px;
	}

	.footer_content {
		display: block;
		text-align: center;
	}

	.footer_content .copyright {
		margin-top: 15px;
	}
}